ဝီကီးပီးဒီးယား rkiwiki https://rki.wikipedia.org/wiki/%E1%80%A1%E1%80%93%E1%80%AD%E1%80%80%E1%80%85%E1%80%AC%E1%80%99%E1%80%BB%E1%80%80%E1%80%BA%E1%80%94%E1%80%BE%E1%80%AC MediaWiki 1.47.0-wmf.11 first-letter မီဒီယာ အထူး ဆွီးနွီးချက် အသုံးပြုလူ အသုံးပြုလူ ဆွီးနွီးချက် ဝီကီးပီးဒီးယား ဝီကီးပီးဒီးယား ဆွီးနွီးချက် ဖိုင် ဖိုင် ဆွီးနွီးချက် မီဒီယာဝီကီ မီဒီယာဝီကီ ဆွီးနွီးချက် တမ်းပလိတ် တမ်းပလိတ် ဆွီးနွီးချက် အကူအညီ အကူအညီ ဆွီးနွီးချက် ကဏ္ဍ ကဏ္ဍ ဆွီးနွီးချက် TimedText TimedText talk Module Module talk Event Event talk Module:Params 828 1239 19574 19485 2026-07-16T06:53:48Z Grufo 1121 Update from [[d:Special:GoToLinkedPage/mediawikiwiki/Q122696746|master]] using [[mw:Synchronizer| #Synchronizer]] 19574 Scribunto text/plain require[[strict]] --- --- --- PRIVATE ENVIRONMENT --- --- ________________________________ --- --- --- --[[ Abstract utilities ]]-- ---------------------------- -- Helper function for `string.gsub()` (for managing zero-padded numbers) local function zero_padded (str) return ('%03d%s'):format(#str, str) end -- Helper function for `table.sort()` (for natural sorting) local function natural_sort (var1, var2) return var1:gsub('%d+', zero_padded) < var2:gsub('%d+', zero_padded) end -- Return a copy or a reference to a table local function copy_or_ref_table (src, refonly) if refonly then return src end local newtab = {} for key, val in pairs(src) do newtab[key] = val end return newtab end -- Copy at most N items (of all kinds) from `src` to `dest` and return `dest` local function copy_table_maxn (dest, src, len) local idx = 1 for key, val in pairs(src) do dest[key], idx = val, idx + 1 if idx > len then break end end return dest end -- Remove some numeric elements from a table, shifting everything to the left local function remove_numeric_keys (tbl, idx, len) local cache, tmp = {}, idx + len - 1 for key, val in pairs(tbl) do if type(key) == 'number' and key >= idx then if key > tmp then cache[key - len] = val end tbl[key] = nil end end for key, val in pairs(cache) do tbl[key] = val end end -- Make a reduced copy of a table (shifting in both directions if necessary) local function copy_table_reduced (tbl, idx, len) local ret, tmp = {}, idx + len - 1 if idx > 0 then for key, val in pairs(tbl) do if type(key) ~= 'number' or key < idx then ret[key] = val elseif key > tmp then ret[key - len] = val end end elseif tmp > 0 then local nshift = 1 - idx for key, val in pairs(tbl) do if type(key) ~= 'number' then ret[key] = val elseif key > tmp then ret[key - tmp] = val elseif key < idx then ret[key + nshift] = val end end else for key, val in pairs(tbl) do if type(key) ~= 'number' or key > tmp then ret[key] = val elseif key < idx then ret[key + len] = val end end end return ret end -- Make an expanded copy of a table (shifting in both directions if necessary) local function copy_table_expanded (tbl, idx, len) local ret, tmp = {}, idx + len - 1 if idx > 0 then for key, val in pairs(tbl) do if type(key) ~= 'number' or key < idx then ret[key] = val else ret[key + len] = val end end elseif tmp > 0 then local nshift = idx - 1 for key, val in pairs(tbl) do if type(key) ~= 'number' then ret[key] = val elseif key > 0 then ret[key + tmp] = val elseif key < 1 then ret[key + nshift] = val end end else for key, val in pairs(tbl) do if type(key) ~= 'number' or key > tmp then ret[key] = val else ret[key - len] = val end end end return ret end -- Given a table, create two new tables containing the sorted list of keys local function get_key_list_sorted (tbl, sort_fn) local nums, words, nn, nw = {}, {}, 0, 0 for key, val in pairs(tbl) do if type(key) == 'number' then nn = nn + 1 nums[nn] = key else nw = nw + 1 words[nw] = key end end table.sort(nums) table.sort(words, sort_fn) return nums, words, nn, nw end -- Parse a parameter name string and return it as a string or a number local function get_parameter_name (par_str) local ret = par_str:match'^%s*(.-)%s*$' if ret ~= '0' and ret:find'^%-?[1-9]%d*$' == nil then return ret end return tonumber(ret) end -- Move a key from a table to another, but only if under a different name and -- always parsing numeric strings as numbers local function steal_if_renamed (val, src, skey, dest, dkey) local realkey = get_parameter_name(dkey) if skey ~= realkey then dest[realkey], src[skey] = val, nil end end --[[ Public strings ]]-- ------------------------ -- Special match keywords (functions and modifiers MUST avoid these names) local mkeywords = { ['or'] = 0, pattern = 1, plain = 2, strict = 3 } -- Sort functions (functions and modifiers MUST avoid these names) local sortfunctions = { alphabetically = false, naturally = natural_sort } -- Callback styles for the `mapping_*` and `renaming_*` class of modifiers -- (functions and modifiers MUST avoid these names) --[[ Meanings of the columns: col[1] = Loop type (0-3) col[2] = Number of module arguments that the style requires (1-3) col[3] = Minimum number of sequential parameters passed to the callback col[4] = Name of the callback parameter where to place each parameter name col[5] = Name of the callback parameter where to place each parameter value col[6] = Argument in the modifier's invocation that will override `col[4]` col[7] = Argument in the modifier's invocation that will override `col[5]` A value of `-1` indicates that no meaningful value is stored (i.e. `nil`) ]]-- local mapping_styles = { names_and_values = { 3, 2, 2, 1, 2, -1, -1 }, values_and_names = { 3, 2, 2, 2, 1, -1, -1 }, values_only = { 1, 2, 1, -1, 1, -1, -1 }, names_only = { 2, 2, 1, 1, -1, -1, -1 }, names_and_values_as = { 3, 4, 0, -1, -1, 2, 3 }, names_only_as = { 2, 3, 0, -1, -1, 2, -1 }, values_only_as = { 1, 3, 0, -1, -1, -1, 2 }, blindly = { 0, 2, 0, -1, -1, -1, -1 } } -- Memory slots (functions and modifiers MUST avoid these names) local memoryslots = { h = 'header', f = 'footer', i = 'itersep', l = 'lastsep', n = 'ifngiven', p = 'pairsep', s = 'oxfordsep' } -- Possible trimming modes for the `parsing` modifier local trim_parse_opts = { trim_none = { false, false }, trim_positional = { false, true }, trim_named = { true, false }, trim_all = { true, true } } -- Possible string modes for the iteration separator in the `parsing` and -- `reinterpreting` modifiers local isep_parse_opts = { splitter_pattern = false, splitter_string = true } -- Possible string modes for the key-value separator in the `parsing` and -- `reinterpreting` modifiers local psep_parse_opts = { setter_pattern = false, setter_string = true } -- Possible position references for the `splicing` modifier local position_references = { add_nothing = 0, add_smallest_number = 1, add_last_of_sequence = 2, add_largest_number = 3 } -- Possible modes for the `reassigning` modifier local a_modes = { duplicate = 0, transfer = 1, provide = 2, spare = 3, sacrifice = 4 } -- Functions and modifiers MUST avoid these names too: `here`, `in_substack`, -- `let`, `expose`, `use`, `with_flushed_glue`, `without_flushed_glue` -- `without_sorting` --[[ Private constants ]]-- --------------------------- -- Hard-coded name of the module (to avoid going through `frame:getTitle()`) local modulename = 'Module:Params' -- The functions listed here declare that they don't need the `frame.args` -- metatable to be copied into a regular table; if they are modifiers they also -- guarantee that they will make their own (modified) copy available local refpipe = { call_for_each_group = true, --coins = true, count = true, evaluating = true, for_each = true, list = true, list_values = true, list_maybe_with_names = true, value_of = true } -- The functions listed here declare that they don't need the -- `frame:getParent().args` metatable to be copied into a regular table; if -- they are modifiers they also guarantee that they will make their own -- (modified) copy available local refparams = { call_for_each_group = true, combining = true, combining_by_calling = true, combining_values = true, concat_and_call = true, concat_and_invoke = true, concat_and_magic = true, count = true, grouping_by_calling = true, mixing_names_and_values = true, keeping_at_most = true, renaming_by_mixing = true, renaming_to_sequence = true, renaming_to_uppercase = true, renaming_to_lowercase = true, --renaming_to_values = true, shifting = true, splicing = true, --swapping_names_and_values = true, value_of = true, with_name_matching = true } -- Maximum number of numeric parameters that can be filled, if missing (we -- chose an arbitrary number for this constant; you can discuss about its -- optimal value at Module talk:Params) local maxfill = 1024 -- The private table of functions local library = {} -- Functions and modifiers that can only be invoked in first position local static_iface = {} --[[ Private functions ]]-- --------------------------- -- Create a new context local function context_new (child_frame) local main_frame = child_frame:getParent() return { frame = main_frame, opipe = child_frame.args, oparams = main_frame.args, firstposonly = static_iface, iterfunc = pairs, sorttype = 0, n_parents = 0, n_children = 0, n_available = maxfill } end -- Move to the next action within the user-given list local function context_iterate (ctx, n_forward) local nextfn if ctx.pipe[n_forward] ~= nil then nextfn = ctx.pipe[n_forward]:match'^%s*(.*%S)' end if nextfn == nil then error(modulename .. ': You must specify a function to call', 0) end if library[nextfn] == nil then if ctx.firstposonly[nextfn] == nil then error(modulename .. ': The function ‘' .. nextfn .. '’ does not exist', 0) else error(modulename .. ': The ‘' .. nextfn .. '’ directive can only appear in first position', 0) end end remove_numeric_keys(ctx.pipe, 1, n_forward) return library[nextfn] end -- Main loop local function main_loop (ctx, start_with) local fn = start_with repeat fn = fn(ctx) until not fn if ctx.n_parents > 0 then error(modulename .. ': One or more ‘merging_substack’ directives are missing', 0) end if ctx.n_children > 0 then error(modulename .. ', For some of the snapshots either the ‘flushing’ directive is missing or a group has not been properly closed with ‘merging_substack’', 0) end end -- Load a `setting`-like directive string into the `dest` table local function set_strings_from_opts (dest, opts, start_from) local cmd if opts[start_from] == nil then return start_from - 1 end cmd = opts[start_from]:gsub('%s+', ''):gsub('/+', '/') :match'^/*(.*[^/])' if cmd == nil then return start_from end local vname, chr local amap, sep, argc = {}, string.byte('/'), start_from + 1 for idx = 1, #cmd do chr = cmd:byte(idx) if chr == sep then for key, val in ipairs(amap) do dest[val], amap[key] = opts[argc], nil end argc = argc + 1 else vname = memoryslots[string.char(chr)] if vname == nil then error(modulename .. ', ‘setting’: Unknown slot ‘' .. string.char(chr) .. '’', 0) end table.insert(amap, vname) end end for key, val in ipairs(amap) do dest[val] = opts[argc] end return argc end -- Add a new stack of parameters to `ctx.children` local function new_substack (ctx) local currsnap, newparams = ctx.n_children + 1, {} if ctx.children == nil then ctx.children = { newparams } else ctx.children[currsnap] = newparams end ctx.n_children = currsnap return newparams end -- Parse a raw argument containing a `sortfunctions` directive, or -- `'without_sorting'`, or `nil` local function load_sort_opt (raw_arg) if raw_arg == nil then return nil, 1, false end local trarg = raw_arg:match'^%s*(.-)%s*$' if trarg == 'without_sorting' then return nil, 2, false, trarg end local tmp = sortfunctions[trarg] if tmp == nil then return nil, 1, false, trarg end return tmp or nil, 2, true, trarg end -- Parse optional user arguments of type `...|[let/use]|[...]|[let/use]|[...]| -- [number of additional parameters]|[parameter 1]|[parameter 2]|[...]` local function load_child_opts (src, start_from, append_after, params) local tnamed, tmp1, tmp2 local pin, tbl, mem = start_from, {}, {} while src[pin] ~= nil and src[pin + 1] ~= nil do tmp1 = src[pin]:match'^%s*(.*%S)' if tmp1 == 'let' and src[pin + 2] ~= nil then tmp1 = get_parameter_name(src[pin + 1]) mem[tmp1], tbl[tmp1], pin = nil, src[pin + 2], pin + 3 --[[ elseif tmp1 == 'expose' then tmp1 = get_parameter_name(src[pin + 1]) tmp2 = params[tmp1] mem[tmp1], tbl[tmp1], pin = tmp2, tmp2, pin + 2 ]]-- elseif tmp1 == 'use' and src[pin + 2] ~= nil then tmp1 = get_parameter_name(src[pin + 2]) tmp2 = params[tmp1] mem[tmp1], tbl[get_parameter_name(src[pin + 1])], pin = tmp2, tmp2, pin + 3 else break end end local tnew = copy_or_ref_table(params, next(mem) == nil) for key in pairs(mem) do tnew[key] = nil end if pin ~= start_from then tnamed, tbl = tbl, {} end tmp1 = tonumber(src[pin]) if tmp1 ~= nil and math.floor(tmp1) == tmp1 then if tmp1 < 0 then tmp1 = -1 end tmp2 = append_after - pin for idx = pin + 1, pin + tmp1 do tbl[idx + tmp2] = src[idx] end pin = pin + tmp1 + 1 end if tnamed ~= nil then for key, val in pairs(tnamed) do tbl[key] = val end end return tbl, pin, tnew, mem end -- Load the optional arguments of some of the `mapping_*` and `renaming_*` -- class of modifiers local function load_callback_opts (src, n_skip, default_style, params) local style, shf local tmp = src[n_skip + 1] if tmp ~= nil then style = mapping_styles[tmp:match'^%s*(.-)%s*$'] end if style == nil then style, shf = default_style, n_skip - 1 else shf = n_skip end local n_exist, karg, varg = style[3], style[4], style[5] tmp = style[6] if tmp > -1 then karg = src[tmp + shf]:match'^%s*(.-)%s*$' if karg == '0' or karg:find'^%-?[1-9]%d*$' ~= nil then karg = tonumber(karg) n_exist = math.max(n_exist, karg) end end tmp = style[7] if tmp > -1 then varg = src[tmp + shf]:match'^%s*(.-)%s*$' if varg == '0' or varg:find'^%-?[1-9]%d*$' ~= nil then varg = tonumber(varg) n_exist = math.max(n_exist, varg) end end local dest, argc, tnew, mem = load_child_opts(src, style[2] + shf, n_exist, params) tmp = style[1] if (tmp == 3 or tmp == 2) and dest[karg] ~= nil then tmp = tmp - 2 end if (tmp == 3 or tmp == 1) and dest[varg] ~= nil then tmp = tmp - 1 end return dest, argc, tmp, karg, varg, tnew, mem end -- Parse the arguments of some of the `mapping_*` and `renaming_*` class of -- modifiers local function load_replace_args (opts, whoami) if opts[1] == nil then error(modulename .. ', ‘' .. whoami .. '’: No pattern string was given', 0) end if opts[2] == nil then error(modulename .. ', ‘' .. whoami .. '’: No replacement string was given', 0) end local ptn, repl, nmax, argc = opts[1], opts[2], tonumber(opts[3]), 3 if nmax ~= nil or (opts[3] or ''):match'^%s*$' ~= nil then argc = 4 end local flg = opts[argc] if flg ~= nil then flg = mkeywords[flg:match'^%s*(.-)%s*$'] end if flg == 0 then flg = nil elseif flg ~= nil then argc = argc + 1 end return ptn, repl, nmax, flg, argc, (nmax ~= nil and nmax < 1) or (flg == 3 and ptn == repl) end -- Parse the arguments of the `with_*_matching` class of modifiers local function load_pattern_args (opts, whoami) local keyw local ptns, state, nptns, cnt = {}, 0, 0, 1 for _, val in ipairs(opts) do if state == 0 then nptns, state = nptns + 1, -1 ptns[nptns] = { val, false, false } else keyw = val:match'^%s*(.*%S)' if keyw == nil or mkeywords[keyw] == nil or ( state > 0 and mkeywords[keyw] > 0 ) then break else state = mkeywords[keyw] if state > 1 then ptns[nptns][2] = true end if state == 3 then ptns[nptns][3] = true end end end cnt = cnt + 1 end if state == 0 then error(modulename .. ', ‘' .. whoami .. '’: No pattern was given', 0) end return ptns, nptns, cnt end -- Load the optional arguments of the `parsing`, `reinterpreting` and -- `evaluating` modifiers local function load_parse_opts (opts, start_from, isp, psp) local tmp local optslots, noptslots, argc, trimn, trimu, iplain, pplain = { true, true, true }, 3, start_from, true, false, true, true repeat noptslots, tmp = noptslots - 1, opts[argc] if tmp == nil then break end tmp = tmp:match'^%s*(.-)%s*$' if optslots[1] ~= nil and trim_parse_opts[tmp] ~= nil then tmp = trim_parse_opts[tmp] trimn, trimu, optslots[1] = tmp[1], tmp[2], nil elseif optslots[2] ~= nil and isep_parse_opts[tmp] ~= nil then argc = argc + 1 iplain, isp, optslots[2] = isep_parse_opts[tmp], opts[argc], nil elseif optslots[3] ~= nil and psep_parse_opts[tmp] ~= nil then argc = argc + 1 pplain, psp, optslots[3] = psep_parse_opts[tmp], opts[argc], nil else break end argc = argc + 1 until noptslots < 1 return isp, iplain, psp, pplain, trimn, trimu, argc end -- Map parameters' values using a custom callback and a referenced table local value_maps = { [0] = function (tbl, margs, karg, varg, fn) for key in pairs(tbl) do tbl[key] = fn() end end, [1] = function (tbl, margs, karg, varg, fn) for key, val in pairs(tbl) do margs[varg] = val tbl[key] = fn() end end, [2] = function (tbl, margs, karg, varg, fn) for key in pairs(tbl) do margs[karg] = key tbl[key] = fn() end end, [3] = function (tbl, margs, karg, varg, fn) for key, val in pairs(tbl) do margs[karg], margs[varg] = key, val tbl[key] = fn() end end } -- Private table for `map_names()` local name_thieves = { [0] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do steal_if_renamed(val, tbl, key, cache, fn()) end end, [1] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do rargs[varg] = val steal_if_renamed(val, tbl, key, cache, fn()) end end, [2] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do rargs[karg] = key steal_if_renamed(val, tbl, key, cache, fn()) end end, [3] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do rargs[karg], rargs[varg] = key, val steal_if_renamed(val, tbl, key, cache, fn()) end end } -- Map parameters' names using a custom callback and a referenced table local function map_names (tbl, rargs, karg, varg, looptype, fn) local cache = {} name_thieves[looptype](cache, tbl, rargs, karg, varg, fn) for key, val in pairs(cache) do tbl[key] = val end end -- Return a new table that contains `src` regrouped according to the numeric -- suffixes in its keys local function make_groups (src) -- NOTE: `src` might be the original metatable! local prefix, gid local groups = {} for key, val in pairs(src) do -- `key` must only be a string or a number... if type(key) == 'string' then prefix, gid = key:match'^%s*(.-)%s*(%-?%d*)%s*$' gid = tonumber(gid) or '' else prefix, gid = '', key end if groups[gid] == nil then groups[gid] = {} end if prefix == '0' or prefix:find'^%-?[1-9]%d*$' ~= nil then prefix = tonumber(prefix) if prefix < 1 then prefix = prefix - 1 end end groups[gid][prefix] = val end return groups end -- Split into parts a string containing the `$#` and `$@` placeholders and -- return the information as a skeleton table, a canvas table and a length local function parse_placeholder_string (target) local idx, s_pos, skel, canvas = 1, 1, {}, {} local e_pos = string.find(target, '%$[@#]', 1, false) while e_pos ~= nil do canvas[idx] = target:sub(s_pos, e_pos - 1) skel[idx + 1] = target:sub(e_pos, e_pos + 1) == '$@' idx = idx + 2 s_pos = e_pos + 2 e_pos = string.find(target, '%$[@#]', s_pos, false) end if (s_pos > target:len()) then idx = idx - 1 else canvas[idx] = target:sub(s_pos) end return skel, canvas, idx end -- Populate a table by parsing a parameter string (heavy lifting for `parsing`, -- `reinterpreting` and `evaluating`) local function parse_parameter_string (tbl, str, isp, ipl, psp, ppl, trn, tru) local key, val, spos1, spos2, pos1, pos2 local pos3, idx, lenplone = 0, 1, #str + 1 if isp == nil or isp == '' then if psp == nil or psp == '' then if tru then tbl[idx] = str:match'^%s*(.-)%s*$' else tbl[idx] = str end return idx end spos1, spos2 = str:find(psp, 1, ppl) if spos1 == nil then key = idx if tru then val = str:match'^%s*(.-)%s*$' else val = str end idx = idx + 1 else key = get_parameter_name(str:sub(1, spos1 - 1)) val = str:sub(spos2 + 1) if trn then val = val:match'^%s*(.-)%s*$' end end tbl[key] = val return idx end if psp == nil or psp == '' then repeat pos1 = pos3 + 1 pos2, pos3 = str:find(isp, pos1, ipl) val = str:sub(pos1, (pos2 or lenplone) - 1) if tru then val = val:match'^%s*(.-)%s*$' end tbl[idx], idx = val, idx + 1 until pos2 == nil return idx end repeat pos1 = pos3 + 1 pos2, pos3 = str:find(isp, pos1, ipl) val = str:sub(pos1, (pos2 or lenplone) - 1) spos1, spos2 = val:find(psp, 1, ppl) if spos1 == nil then key = idx if tru then val = val:match'^%s*(.-)%s*$' end idx = idx + 1 else key = get_parameter_name(val:sub(1, spos1 - 1)) val = val:sub(spos2 + 1) if trn then val = val:match'^%s*(.-)%s*$' end end tbl[key] = val until pos2 == nil return idx end -- Heavy lifting for `snapshotting` and `remembering` local function make_child (ctx, src, whoami) local len = tonumber(ctx.pipe[1]) if len == nil or len == 0 then local stack = new_substack(ctx) for key, val in pairs(src) do stack[key] = val end return len == nil and 1 or 2 end if len < 0 or math.floor(len) ~= len then error(modulename .. ', ‘' .. whoami .. '’: The number of parameters to copy must be an integer greater than zero', 0) end copy_table_maxn(new_substack(ctx), src, len) return 2 end -- Heavy lifting for `setting_by_flushing`, `combining` and `combining_values` local function set_strings_from_substack (ctx, dest, whoami) if ctx.n_children < 1 then error(modulename .. ', ‘' .. whoami .. '’: There are no substacks to flush', 0) end local currsnap = ctx.n_children local stack = ctx.children[currsnap] for key, val in pairs(memoryslots) do if stack[key] ~= nil then dest[val] = stack[key] end end ctx.children[currsnap], ctx.n_children = nil, currsnap - 1 end -- Heavy lifting for `combining` and `combining_values` local function combine_parameters (ctx, keyval_fn, whoami) -- NOTE: `ctx.params` might be the original metatable! This function -- MUST create a copy of it before returning local opts = ctx.pipe if ctx.pipe[1] == nil then error(modulename .. ', ‘' .. whoami .. '’: No parameter name was provided', 0) end local argc local tbl, vars = ctx.params, {} local sortfn, varsarg0, do_sort, tmp = load_sort_opt(opts[2]) if varsarg0 == 2 then tmp = opts[3] and opts[3]:match'^%s*(.-)%s*$' end if tmp == 'with_flushed_glue' then varsarg0 = varsarg0 + 1 argc = set_strings_from_opts(vars, opts, varsarg0 + 1) set_strings_from_substack(ctx, vars, whoami) else if tmp == 'without_flushed_glue' then varsarg0 = varsarg0 + 1 end argc = set_strings_from_opts(vars, opts, varsarg0 + 1) end if argc < varsarg0 then error(modulename .. ', ‘' .. whoami .. '’: No setting directive was given', 0) end if next(tbl) == nil then if vars.ifngiven ~= nil then ctx.params = { [get_parameter_name(ctx.pipe[1])] = vars.ifngiven } elseif tbl == ctx.oparams then ctx.params = {} end return argc end local cache, len if do_sort then local words cache, words, len, tmp = get_key_list_sorted(tbl, sortfn) for idx = 1, tmp do cache[len + idx] = words[idx] end len = len + tmp else len, cache = 0, {} for key in pairs(tbl) do len = len + 1 cache[len] = key end end local pmap, nss, kvs, pps = {}, 0, vars.pairsep or '', vars.itersep or '' for idx = 1, len do tmp, pmap[nss + 1] = cache[idx], pps pmap[nss + 2] = keyval_fn(tmp, tbl[tmp], kvs) nss = nss + 2 end tmp = vars.oxfordsep or vars.lastsep if tmp ~= nil and nss > 4 then pmap[nss - 1] = tmp elseif nss > 2 and vars.lastsep ~= nil then pmap[nss - 1] = vars.lastsep end pmap[1] = vars.header or '' if vars.footer ~= nil then pmap[nss + 1] = vars.footer end ctx.params = { [get_parameter_name(ctx.pipe[1])] = table.concat(pmap) } return argc end -- Concatenate the numeric keys from the table of parameters to the numeric -- keys from the table of options; non-numeric keys from the table of options -- will prevail over colliding non-numeric keys from the table of parameters local function concat_params (ctx) local retval, tbl, nmax = {}, ctx.params, table.maxn(ctx.pipe) if ctx.subset == 1 then -- We need only the sequence for key, val in ipairs(tbl) do retval[key + nmax] = val end else if ctx.subset == -1 then for key in ipairs(tbl) do tbl[key] = nil end end for key, val in pairs(tbl) do if type(key) == 'number' and key > 0 then retval[key + nmax] = val else retval[key] = val end end end for key, val in pairs(ctx.pipe) do retval[key] = val end return retval end -- Flush the parameters by calling a custom function for each value (after this -- function has been invoked `ctx.params` will be no longer usable) local function flush_params (ctx, fn) local tbl = ctx.params if ctx.subset == 1 then for key, val in ipairs(tbl) do fn(key, val) end return end if ctx.subset == -1 then for key, val in ipairs(tbl) do tbl[key] = nil end end if ctx.sorttype > 0 then local nums, words, nn, nw = get_key_list_sorted(tbl, natural_sort) if ctx.sorttype == 2 then for idx = 1, nw do fn(words[idx], tbl[words[idx]]) end for idx = 1, nn do fn(nums[idx], tbl[nums[idx]]) end return end for idx = 1, nn do fn(nums[idx], tbl[nums[idx]]) end for idx = 1, nw do fn(words[idx], tbl[words[idx]]) end return end if ctx.subset ~= -1 then for key, val in ipairs(tbl) do fn(key, val) tbl[key] = nil end end for key, val in pairs(tbl) do fn(key, val) end end -- Flush the parameters by calling one of two custom functions for each value -- (after this function has been invoked `ctx.params` will be no longer usable) local function mixed_flush_params (ctx, fn_seq, fn_oth) if ctx.subset == 1 then for key, val in ipairs(ctx.params) do fn_seq(key, val) end return end if ctx.subset == -1 then flush_params(ctx, fn_oth) return end local tbl = ctx.params if ctx.sorttype > 0 then local nums, words, nn, nw = get_key_list_sorted(tbl, natural_sort) local sequence = {} for key, val in ipairs(tbl) do sequence[key] = val end if ctx.sorttype == 2 then for idx = 1, nw do fn_oth(words[idx], tbl[words[idx]]) end end for idx = 1, nn do if sequence[nums[idx]] then fn_seq(nums[idx], sequence[nums[idx]]) else fn_oth(nums[idx], tbl[nums[idx]]) end end if ctx.sorttype ~= 2 then for idx = 1, nw do fn_oth(words[idx], tbl[words[idx]]) end end return end for key, val in ipairs(tbl) do fn_seq(key, val) tbl[key] = nil end for key, val in pairs(tbl) do fn_oth(key, val) end end -- Finalize and return a concatenated list local function finalize_and_return_concatenated_list (ctx, lst, len, modsize) if len > 0 then local tmp = ctx.oxfordsep or ctx.lastsep if tmp ~= nil and len > modsize * 2 then lst[len - modsize + 1] = tmp elseif len > modsize and ctx.lastsep ~= nil then lst[len - modsize + 1] = ctx.lastsep end lst[1] = ctx.header or '' if ctx.footer ~= nil then lst[len + 1] = ctx.footer end ctx.text = table.concat(lst) else ctx.text = ctx.ifngiven or '' end end --- --- --- PUBLIC ENVIRONMENT --- --- ________________________________ --- --- --- --[[ Modifiers ]]-- ------------------- -- Syntax: #invoke:params|sequential|pipe to library.sequential = function (ctx) if ctx.subset == 1 then error(modulename .. ': The ‘sequential’ directive has been provided more than once', 0) end if ctx.subset == -1 then error(modulename .. ': The two directives ‘non-sequential’ and ‘sequential’ are in contradiction with each other', 0) end if ctx.sorttype > 0 then error(modulename .. ': The ‘all_sorted’ and ‘reassorted’ directives are redundant when followed by ‘sequential’', 0) end ctx.iterfunc, ctx.subset = ipairs, 1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|non-sequential|pipe to library['non-sequential'] = function (ctx) if ctx.subset == -1 then error(modulename .. ': The ‘non-sequential’ directive has been provided more than once', 0) end if ctx.subset == 1 then error(modulename .. ': The two directives ‘sequential’ and ‘non-sequential’ are in contradiction with each other', 0) end ctx.iterfunc, ctx.subset = pairs, -1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|all_sorted|pipe to library.all_sorted = function (ctx) if ctx.sorttype == 1 then error(modulename .. ': The ‘all_sorted’ directive has been provided more than once', 0) end if ctx.subset == 1 then error(modulename .. ': The ‘all_sorted’ directive is redundant after ‘sequential’', 0) end if ctx.sorttype == 2 then error(modulename .. ': The two directives ‘reassorted’ and ‘sequential’ are in contradiction with each other', 0) end ctx.sorttype = 1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|reassorted|pipe to library.reassorted = function (ctx) if ctx.sorttype == 2 then error(modulename .. ': The ‘reassorted’ directive has been provided more than once', 0) end if ctx.subset == 1 then error(modulename .. ': The ‘reassorted’ directive is redundant after ‘sequential’', 0) end if ctx.sorttype == 1 then error(modulename .. ': The two directives ‘sequential’ and ‘reassorted’ are in contradiction with each other', 0) end ctx.sorttype = 2 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|setting|directives|...|pipe to library.setting = function (ctx) local argc = set_strings_from_opts(ctx, ctx.pipe, 1) if argc < 2 then error(modulename .. ', ‘setting’: No directive was given', 0) end return context_iterate(ctx, argc + 1) end -- Syntax: #invoke:params|scoring|new parameter name|[container]|pipe to library.scoring = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘scoring’: No parameter name was provided', 0) end local tmp local retval, opts = 0, ctx.pipe for _ in pairs(ctx.params) do retval = retval + 1 end if opts[2] ~= nil then tmp = opts[2]:match'^%s*(.*%S)' end if tmp == 'in_substack' then new_substack(ctx)[get_parameter_name(opts[1])] = tostring(retval) return context_iterate(ctx, 3) end ctx.params[get_parameter_name(opts[1])] = tostring(retval) return context_iterate(ctx, tmp == 'here' and 3 or 2) end -- Syntax: #invoke:params|squeezing|pipe to library.squeezing = function (ctx) local store, indices, tbl, newlen = {}, {}, ctx.params, 0 for key, val in pairs(tbl) do if type(key) == 'number' then newlen = newlen + 1 indices[newlen], store[key], tbl[key] = key, val, nil end end table.sort(indices) for idx = 1, newlen do tbl[idx] = store[indices[idx]] end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|filling_the_gaps|pipe to library.filling_the_gaps = function (ctx) local newval, tbl, tmp, nmin, nmax, nnums = ctx.pipe[1], ctx.params, {}, 1, nil, -1 if newval == nil then error(modulename .. ', ‘filling_the_gaps’: No value was provided', 0) end for key, val in pairs(tbl) do if type(key) == 'number' then if nmax == nil then if key < nmin then nmin = key end nmax = key elseif key > nmax then nmax = key elseif key < nmin then nmin = key end tmp[key], nnums = val, nnums + 1 end end if nmax ~= nil and nmax - nmin > nnums then ctx.n_available = ctx.n_available + nmin + nnums - nmax if ctx.n_available < 0 then error(modulename .. ', ‘filling_the_gaps’: It is possible to fill at most ' .. tostring(maxfill) .. ' parameters', 0) end for idx = nmin, nmax, 1 do tbl[idx] = newval end for key, val in pairs(tmp) do tbl[key] = val end end return context_iterate(ctx, 2) end -- Syntax: #invoke:params|clearing|pipe to library.clearing = function (ctx) local tbl, numerics = ctx.params, {} for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key], tbl[key] = val, nil end end for key, val in ipairs(numerics) do tbl[key] = val end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|cutting|left cut|right cut|pipe to library.cutting = function (ctx) local lcut = tonumber(ctx.pipe[1]) if lcut == nil or math.floor(lcut) ~= lcut then error(modulename .. ', ‘cutting’: Left cut must be an integer number', 0) end local rcut = tonumber(ctx.pipe[2]) if rcut == nil or math.floor(rcut) ~= rcut then error(modulename .. ', ‘cutting’: Right cut must be an integer number', 0) end local tbl = ctx.params local len = #tbl if lcut < 0 then lcut = len + lcut end if rcut < 0 then rcut = len + rcut end local tot = lcut + rcut if tot > 0 then local cache = {} if tot >= len then for key in ipairs(tbl) do tbl[key] = nil end tot = len else for idx = len - rcut + 1, len, 1 do tbl[idx] = nil end for idx = 1, lcut, 1 do tbl[idx] = nil end end for key, val in pairs(tbl) do if type(key) == 'number' and key > 0 then if key > len then cache[key - tot] = val else cache[key - lcut] = val end tbl[key] = nil end end for key, val in pairs(cache) do tbl[key] = val end end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|cropping|left crop|right crop|pipe to library.cropping = function (ctx) local lcut = tonumber(ctx.pipe[1]) if lcut == nil or math.floor(lcut) ~= lcut then error(modulename .. ', ‘cropping’: Left crop must be an integer number', 0) end local rcut = tonumber(ctx.pipe[2]) if rcut == nil or math.floor(rcut) ~= rcut then error(modulename .. ', ‘cropping’: Right crop must be an integer number', 0) end local tbl = ctx.params local nmin, nmax for key in pairs(tbl) do if type(key) == 'number' then if nmin == nil then nmin, nmax = key, key elseif key > nmax then nmax = key elseif key < nmin then nmin = key end end end if nmin ~= nil then local len = nmax - nmin + 1 if lcut < 0 then lcut = len + lcut end if rcut < 0 then rcut = len + rcut end if lcut + rcut - len > -1 then for key in pairs(tbl) do if type(key) == 'number' then tbl[key] = nil end end elseif lcut + rcut > 0 then for idx = nmax - rcut + 1, nmax do tbl[idx] = nil end for idx = nmin, nmin + lcut - 1 do tbl[idx] = nil end local lshift = nmin + lcut - 1 if lshift > 0 then for idx = lshift + 1, nmax, 1 do tbl[idx - lshift], tbl[idx] = tbl[idx], nil end end end end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|purging|start offset|length|pipe to library.purging = function (ctx) local idx = tonumber(ctx.pipe[1]) if idx == nil or math.floor(idx) ~= idx then error(modulename .. ', ‘purging’: Start offset must be an integer number', 0) end local len = tonumber(ctx.pipe[2]) if len == nil or math.floor(len) ~= len then error(modulename .. ', ‘purging’: Length must be an integer number', 0) end local tbl = ctx.params if len < 1 then len = len + table.maxn(tbl) if idx > len then return context_iterate(ctx, 3) end len = len - idx + 1 end ctx.params = copy_table_reduced(tbl, idx, len) return context_iterate(ctx, 3) end -- Syntax: #invoke:params|backpurging|start offset|length|pipe to library.backpurging = function (ctx) local last = tonumber(ctx.pipe[1]) if last == nil or math.floor(last) ~= last then error(modulename .. ', ‘backpurging’: Start offset must be an integer number', 0) end local len = tonumber(ctx.pipe[2]) if len == nil or math.floor(len) ~= len then error(modulename .. ', ‘backpurging’: Length must be an integer number', 0) end local idx local tbl = ctx.params if len > 0 then idx = last - len + 1 else for key in pairs(tbl) do if type(key) == 'number' and (idx == nil or key < idx) then idx = key end end if idx == nil then return context_iterate(ctx, 3) end idx = idx - len if last < idx then return context_iterate(ctx, 3) end len = last - idx + 1 end ctx.params = copy_table_reduced(ctx.params, idx, len) return context_iterate(ctx, 3) end -- Syntax: #invoke:params|shifting|addend|pipe to library.shifting = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local nshift = tonumber(ctx.pipe[1]) if nshift == nil or nshift == 0 or math.floor(nshift) ~= nshift then error(modulename .. ', ‘shifting’: A non-zero integer number must be provided', 0) end local tbl = {} for key, val in pairs(ctx.params) do if type(key) == 'number' then tbl[key + nshift] = val else tbl[key] = val end end ctx.params = tbl return context_iterate(ctx, 2) end -- Syntax: #invoke:params|reversing_numeric_names|pipe to library.reversing_numeric_names = function (ctx) local tbl, numerics, nmax = ctx.params, {}, 0 for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key], tbl[key] = val, nil if key > nmax then nmax = key end end end for key, val in pairs(numerics) do tbl[nmax - key + 1] = val end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|pivoting_numeric_names|pipe to --[[ library.pivoting_numeric_names = function (ctx) local tbl = ctx.params local shift = #tbl + 1 if shift < 2 then return library.reversing_numeric_names(ctx) end local numerics = {} for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key] = val tbl[key] = nil end end for key, val in pairs(numerics) do tbl[shift - key] = val end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|mirroring_numeric_names|pipe to --[[ library.mirroring_numeric_names = function (ctx) local nmax, nmin local tbl, numerics = ctx.params, {} for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key] = val tbl[key] = nil if nmax == nil then nmin, nmax = key, key elseif key > nmax then nmax = key elseif key < nmin then nmin = key end end end for key, val in pairs(numerics) do tbl[nmax + nmin - key] = val end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|swapping_numeric_names|pipe to --[[ library.swapping_numeric_names = function (ctx) local tmp local tbl, cache, nsize = ctx.params, {}, 0 for key in pairs(tbl) do if type(key) == 'number' then nsize = nsize + 1 cache[nsize] = key end end table.sort(cache) for idx = math.floor(nsize / 2), 1, -1 do tmp = tbl[cache[idx] ] tbl[cache[idx] ] = tbl[cache[nsize - idx + 1] ] tbl[cache[nsize - idx + 1] ] = tmp end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|sorting_sequential_values|[criterion]|pipe to library.sorting_sequential_values = function (ctx) local sortfn if ctx.pipe[1] ~= nil then sortfn = sortfunctions[ctx.pipe[1]:match'^%s*(.-)%s*$'] end if sortfn then table.sort(ctx.params, sortfn) else table.sort(ctx.params) end -- i.e. either `false` or `nil` if sortfn == nil then return context_iterate(ctx, 1) end return context_iterate(ctx, 2) end -- Syntax: #invoke:params|splicing|[add to position]|position|increment| -- [number of elements to write]|...|pipe to library.splicing = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local tmp2, argc, pos, refp local opts, tbl = ctx.pipe, ctx.params local tmp1 = opts[1] if tmp1 ~= nil then tmp2 = tonumber(tmp1) if tmp2 == nil or math.floor(tmp2) ~= tmp2 then pos, argc, tmp2 = tonumber(opts[2]), 4, tmp1:match'^%s*(.*%S)' if tmp2 ~= nil then refp = position_references[tmp2] if refp == nil then error(modulename .. ', ‘splicing’: ‘' .. tostring(tmp2) .. '’ is not a valid first argument', 0) end else refp = 0 end else pos, argc, refp = tmp2, 3, 0 end else pos, argc, refp = tonumber(opts[2]), 4, 0 end if pos == nil or math.floor(pos) ~= pos then error(modulename .. ', ‘splicing’: The position must be an integer number', 0) end local len = tonumber(opts[argc - 1]) if len == nil or math.floor(len) ~= len then error(modulename .. ', ‘splicing’: The increment must be an integer number', 0) end if refp == 2 then for _ in ipairs(tbl) do pos = pos + 1 end refp = 0 end tmp1, tmp2 = nil, nil if refp ~= 0 or len ~= 0 then for key, val in pairs(tbl) do if type(key) == 'number' then if tmp1 == nil then tmp1, tmp2 = key, key elseif key < tmp1 then tmp1 = key elseif key > tmp2 then tmp2 = key end end end end if tmp2 == nil then len = 0 elseif refp == 3 then pos = pos + tmp2 elseif refp == 1 then pos = pos + tmp1 end if len > 0 and pos + len > tmp1 and pos <= tmp2 then tbl = copy_table_expanded(tbl, pos, len) elseif len < 0 and pos - len > tmp1 and pos <= tmp2 then tbl = copy_table_reduced(tbl, pos, -len) else tbl = copy_or_ref_table(tbl, tbl ~= ctx.oparams) end ctx.params = tbl tmp1 = tonumber(opts[argc]) if len == 0 and (tmp1 == nil or tmp1 < 1) then error(modulename .. ', ‘splicing’: When the increment is zero the number of elements to add cannot be zero', 0) end if tmp1 == nil or tmp1 < 0 or math.floor(tmp1) ~= tmp1 then return context_iterate(ctx, argc) end tmp2 = argc - pos + 1 for key = pos, pos + tmp1 - 1 do tbl[key] = opts[key + tmp2] end return context_iterate(ctx, argc + tmp1 + 1) end -- Syntax: #invoke:params|imposing|name|value|pipe to library.imposing = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘imposing’: Missing parameter name to impose', 0) end ctx.params[get_parameter_name(ctx.pipe[1])] = ctx.pipe[2] return context_iterate(ctx, 3) end -- Syntax: #invoke:params|providing|name|value|pipe to library.providing = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘providing’: Missing parameter name to provide', 0) end local key = get_parameter_name(ctx.pipe[1]) if ctx.params[key] == nil then ctx.params[key] = ctx.pipe[2] end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|reassigning|source|destination|[mode]|pipe to library.reassigning = function (ctx) local opts, tbl = ctx.pipe, ctx.params if opts[1] == nil then error(modulename .. ', ‘reassigning’: Missing source parameter', 0) end if opts[2] == nil then error(modulename .. ', ‘reassigning’: Missing destination parameter', 0) end local mode local src = get_parameter_name(opts[1]) local val = tbl[src] if opts[3] ~= nil then mode = a_modes[opts[3]:match'^%s*(.-)%s*$'] end local argc = mode == nil and 3 or 4 if val == nil then return context_iterate(ctx, argc) end local dest = get_parameter_name(opts[2]) if mode == 1 or mode == 4 or (mode == 3 and tbl[dest] == nil) then tbl[src] = nil end if mode == nil or mode < 2 or tbl[dest] == nil then tbl[dest] = val end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|discarding|name|[how many]|pipe to library.discarding = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘discarding’: Missing parameter name to discard', 0) end local len = tonumber(ctx.pipe[2]) if len == nil then ctx.params[get_parameter_name(ctx.pipe[1])] = nil return context_iterate(ctx, 2) end local key = tonumber(ctx.pipe[1]) if key == nil or math.floor(key) ~= key then error(modulename .. ', ‘discarding’: A range was provided, but the initial parameter name is not an integer number', 0) end if len < 1 or math.floor(len) ~= len then error(modulename .. ', ‘discarding’: A range can only be an integer number greater than zero', 0) end for idx = key, key + len - 1 do ctx.params[idx] = nil end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|excluding_non-numeric_names|pipe to library['excluding_non-numeric_names'] = function (ctx) local tmp = ctx.params for key, val in pairs(tmp) do if type(key) ~= 'number' then tmp[key] = nil end end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|excluding_numeric_names|pipe to library.excluding_numeric_names = function (ctx) local tmp = ctx.params for key, val in pairs(tmp) do if type(key) == 'number' then tmp[key] = nil end end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|with_name_matching|target 1|[plain flag 1]|[or] -- |[target 2]|[plain flag 2]|[or]|[...]|[target N]|[plain flag -- N]|pipe to library.with_name_matching = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local tmp, ptn local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_name_matching') local tbl, newparams = ctx.params, {} for idx = 1, nptns do ptn = targets[idx] if ptn[3] then tmp = ptn[1] if tmp == '0' or tmp:find'^%-?[1-9]%d*$' ~= nil then tmp = tonumber(tmp) end newparams[tmp] = tbl[tmp] else for key, val in pairs(tbl) do if tostring(key):find(ptn[1], 1, ptn[2]) then newparams[key] = val end end end end ctx.params = newparams return context_iterate(ctx, argc) end -- Syntax: #invoke:params|with_name_not_matching|target 1|[plain flag 1] -- |[and]|[target 2]|[plain flag 2]|[and]|[...]|[target N]|[plain -- flag N]|pipe to library.with_name_not_matching = function (ctx) local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_name_not_matching') local tbl = ctx.params if nptns == 1 and targets[1][3] then local tmp = targets[1][1] if tmp == '0' or tmp:find'^%-?[1-9]%d*$' ~= nil then tbl[tonumber(tmp)] = nil else tbl[tmp] = nil end return context_iterate(ctx, argc) end local yesmatch, ptn for key in pairs(tbl) do yesmatch = true for idx = 1, nptns do ptn = targets[idx] if ptn[3] then if tostring(key) ~= ptn[1] then yesmatch = false break end elseif not tostring(key):find(ptn[1], 1, ptn[2]) then yesmatch = false break end end if yesmatch then tbl[key] = nil end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|with_value_matching|target 1|[plain flag 1]|[or] -- |[target 2]|[plain flag 2]|[or]|[...]|[target N]|[plain flag -- N]|pipe to library.with_value_matching = function (ctx) local nomatch, ptn local tbl = ctx.params local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_value_matching') for key, val in pairs(tbl) do nomatch = true for idx = 1, nptns do ptn = targets[idx] if ptn[3] then if val == ptn[1] then nomatch = false break end elseif val:find(ptn[1], 1, ptn[2]) then nomatch = false break end end if nomatch then tbl[key] = nil end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|with_value_not_matching|target 1|[plain flag 1] -- |[and]|[target 2]|[plain flag 2]|[and]|[...]|[target N]|[plain -- flag N]|pipe to library.with_value_not_matching = function (ctx) local yesmatch, ptn local tbl = ctx.params local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_value_not_matching') for key, val in pairs(tbl) do yesmatch = true for idx = 1, nptns do ptn = targets[idx] if ptn[3] then if val ~= ptn[1] then yesmatch = false break end elseif not val:find(ptn[1], 1, ptn[2]) then yesmatch = false break end end if yesmatch then tbl[key] = nil end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|keeping_at_most|number of parameters to pick|pipe to library.keeping_at_most = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local len = tonumber(ctx.pipe[1]) if len == nil or len < 1 or math.floor(len) ~= len then error(modulename .. ', ‘keeping_at_most’: The number of parameters to keep must be an integer greater than zero', 0) end ctx.params = copy_table_maxn({}, ctx.params, len) return context_iterate(ctx, 2) end -- Syntax: #invoke:params|trimming_values|pipe to library.trimming_values = function (ctx) local tbl = ctx.params for key, val in pairs(tbl) do tbl[key] = val:match'^%s*(.-)%s*$' end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mapping_to_lowercase|pipe to library.mapping_to_lowercase = function (ctx) local tbl = ctx.params for key, val in pairs(tbl) do tbl[key] = val:lower() end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mapping_to_uppercase|pipe to library.mapping_to_uppercase = function (ctx) local tbl = ctx.params for key, val in pairs(tbl) do tbl[key] = val:upper() end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mapping_by_calling|template name|[call -- style]|[let/use]|[...]|[let/use]|[...]|[number of additional -- parameters]|[parameter 1]|[parameter 2]|[...]|[parameter N]|pipe to library.mapping_by_calling = function (ctx) local tname local opts = ctx.pipe if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘mapping_by_calling’: No template name was provided', 0) end local margs, argc, looptype, karg, varg, tbl, mem = load_callback_opts(opts, 1, mapping_styles.values_only, ctx.params) local model = { title = tname, args = margs } value_maps[looptype](tbl, margs, karg, varg, function () return ctx.frame:expandTemplate(model) end) for key, val in pairs(mem) do tbl[key] = val end ctx.params = tbl return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_invoking|module name|function name|[call -- style]|[let/use]|[...]|[let/use]|[...]|[number of additional -- arguments]|[argument 1]|[argument 2]|[...]|[argument N]|pipe to library.mapping_by_invoking = function (ctx) local mname, fname local opts = ctx.pipe if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘mapping_by_invoking’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘mapping_by_invoking’: No function name was provided', 0) end local margs, argc, looptype, karg, varg, tbl, mem = load_callback_opts(opts, 2, mapping_styles.values_only, ctx.params) local model = { title = 'Module:' .. mname, args = margs } local mfunc = require(model.title)[fname] if mfunc == nil then error(modulename .. ', ‘mapping_by_invoking’: The function ‘' .. fname .. '’ does not exist', 0) end value_maps[looptype](tbl, margs, karg, varg, function () return tostring(mfunc(ctx.frame:newChild(model))) end) for key, val in pairs(mem) do tbl[key] = val end ctx.params = tbl return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_magic|parser function|[call -- style]|[let/use]|[...]|[let/use]|[...]|[number of additional -- arguments]|[argument 1]|[argument 2]|[...]|[argument N]|pipe to library.mapping_by_magic = function (ctx) local magic local opts = ctx.pipe if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘mapping_by_magic’: No parser function was provided', 0) end local margs, argc, looptype, karg, varg, tbl, mem = load_callback_opts(opts, 1, mapping_styles.values_only, ctx.params) value_maps[looptype](tbl, margs, karg, varg, function () return ctx.frame:callParserFunction(magic, margs) end) for key, val in pairs(mem) do tbl[key] = val end ctx.params = tbl return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_replacing|target|replace|[count]|[plain -- flag]|pipe to library.mapping_by_replacing = function (ctx) local ptn, repl, nmax, flg, argc, die = load_replace_args(ctx.pipe, 'mapping_by_replacing') if die then return context_iterate(ctx, argc) end local tbl = ctx.params if flg == 3 then for key, val in pairs(tbl) do if val == ptn then tbl[key] = repl end end else if flg == 2 then -- Copied from Module:String's `str._escapePattern()` ptn = ptn:gsub('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0') end for key, val in pairs(tbl) do tbl[key] = val:gsub(ptn, repl, nmax) end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_mixing|mixing string|pipe to library.mapping_by_mixing = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘mapping_by_mixing’: No mixing string was provided', 0) end local tbl, mix = ctx.params, ctx.pipe[1] if mix == '$#' then for key in pairs(tbl) do tbl[key] = tostring(key) end return context_iterate(ctx, 2) end local skel, cnv, n_parts = parse_placeholder_string(mix) for key, val in pairs(tbl) do for idx = 2, n_parts, 2 do if skel[idx] then cnv[idx] = val else cnv[idx] = tostring(key) end end tbl[key] = table.concat(cnv) end return context_iterate(ctx, 2) end -- Syntax: #invoke:params|mapping_to_names|pipe to --[[ library.mapping_to_names = function (ctx) local tbl = ctx.params for key in pairs(tbl) do tbl[key] = tostring(key) end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|renaming_to_lowercase|pipe to library.renaming_to_lowercase = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for key, val in pairs(ctx.params) do if type(key) == 'string' then cache[key:lower()] = val else cache[key] = val end end ctx.params = cache return context_iterate(ctx, 1) end -- Syntax: #invoke:params|renaming_to_uppercase|pipe to library.renaming_to_uppercase = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for key, val in pairs(ctx.params) do if type(key) == 'string' then cache[key:upper()] = val else cache[key] = val end end ctx.params = cache return context_iterate(ctx, 1) end -- Syntax: #invoke:params|renaming_to_sequence|[sort order]|pipe to library.renaming_to_sequence = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache, len local tbl = ctx.params local sortfn, argc, do_sort = load_sort_opt(ctx.pipe[1]) if do_sort then local words, wl cache, words, len, wl = get_key_list_sorted(tbl, sortfn) for idx = 1, len do cache[idx] = tbl[cache[idx]] end for idx = 1, wl do cache[len + idx] = tbl[words[idx]] end else len, cache = 0, {} for _, val in pairs(tbl) do len = len + 1 cache[len] = val end end ctx.params = cache return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_calling|template name|[call -- style]|[let/use]|[...]|[let/use]|[...]|[number of additional -- parameters]|[parameter 1]|[parameter 2]|[...]|[parameter N]|pipe to library.renaming_by_calling = function (ctx) local tname local opts = ctx.pipe if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘renaming_by_calling’: No template name was provided', 0) end local rargs, argc, looptype, karg, varg, tbl, mem = load_callback_opts(opts, 1, mapping_styles.names_only, ctx.params) local model = { title = tname, args = rargs } map_names(tbl, rargs, karg, varg, looptype, function () return ctx.frame:expandTemplate(model) end) for key, val in pairs(mem) do tbl[key] = val end ctx.params = tbl return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_invoking|module name|function -- name|[call style]|[let/use]|[...]|[let/use]|[...]|[number of -- additional arguments]|[argument 1]|[argument 2]|[...]|[argument -- N]|pipe to library.renaming_by_invoking = function (ctx) local mname, fname local opts = ctx.pipe if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘renaming_by_invoking’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘renaming_by_invoking’: No function name was provided', 0) end local rargs, argc, looptype, karg, varg, tbl, mem = load_callback_opts(opts, 2, mapping_styles.names_only, ctx.params) local model = { title = 'Module:' .. mname, args = rargs } local mfunc = require(model.title)[fname] if mfunc == nil then error(modulename .. ', ‘renaming_by_invoking’: The function ‘' .. fname .. '’ does not exist', 0) end map_names(tbl, rargs, karg, varg, looptype, function () return tostring(mfunc(ctx.frame:newChild(model))) end) for key, val in pairs(mem) do tbl[key] = val end ctx.params = tbl return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_magic|parser function|[call -- style]|[let/use]|[...]|[let/use]|[...]|[number of additional -- arguments]|[argument 1]|[argument 2]|[...]|[argument N]|pipe to library.renaming_by_magic = function (ctx) local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘renaming_by_magic’: No parser function was provided', 0) end local rargs, argc, looptype, karg, varg, tbl, mem = load_callback_opts(opts, 1, mapping_styles.names_only, ctx.params) map_names(tbl, rargs, karg, varg, looptype, function () return ctx.frame:callParserFunction(magic, rargs) end) for key, val in pairs(mem) do tbl[key] = val end ctx.params = tbl return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_replacing|target|replace|[count]|[plain -- flag]|pipe to library.renaming_by_replacing = function (ctx) local ptn, repl, nmax, flg, argc, die = load_replace_args(ctx.pipe, 'renaming_by_replacing') if die then return context_iterate(ctx, argc) end local tbl = ctx.params if flg == 3 then ptn = get_parameter_name(ptn) local val = tbl[ptn] if val ~= nil then tbl[ptn], tbl[get_parameter_name(repl)] = nil, val end else if flg == 2 then -- Copied from Module:String's `str._escapePattern()` ptn = ptn:gsub('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0') end local cache = {} for key, val in pairs(tbl) do steal_if_renamed(val, tbl, key, cache, tostring(key):gsub(ptn, repl, nmax)) end for key, val in pairs(cache) do tbl[key] = val end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_mixing|mixing string|pipe to library.renaming_by_mixing = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning if ctx.pipe[1] == nil then error(modulename .. ', ‘renaming_by_mixing’: No mixing string was provided', 0) end local mix = ctx.pipe[1]:match'^%s*(.-)%s*$' local cache = {} if mix == '$@' then for _, val in pairs(ctx.params) do cache[get_parameter_name(val)] = val end else local skel, canvas, n_parts = parse_placeholder_string(mix) for key, val in pairs(ctx.params) do for idx = 2, n_parts, 2 do if skel[idx] then canvas[idx] = val else canvas[idx] = tostring(key) end end cache[get_parameter_name(table.concat(canvas))] = val end end ctx.params = cache return context_iterate(ctx, 2) end -- Syntax: #invoke:params|renaming_to_values|pipe to --[[ library.renaming_to_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for _, val in pairs(ctx.params) do cache[val] = val end ctx.params = cache return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|grouping_by_calling|template -- name|[let/use]|[...]|[let/use]|[...]|[number of additional -- arguments]|[argument 1]|[argument 2]|[...]|[argument N]|pipe to library.grouping_by_calling = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local tmp, argc, tbl, mem = load_child_opts(ctx.pipe, 2, 0, ctx.params) local gargs = {} for key, val in pairs(tmp) do if type(key) == 'number' and key < 1 then gargs[key - 1] = val else gargs[key] = val end end tmp = ctx.pipe[1] if tmp ~= nil then tmp = tmp:match'^%s*(.*%S)' end if tmp == nil then error(modulename .. ', ‘grouping_by_calling’: No template name was provided', 0) end local model = { title = tmp } local groups = make_groups(tbl) for gid, group in pairs(groups) do for key, val in pairs(gargs) do group[key] = val end group[0], model.args = gid, group groups[gid] = ctx.frame:expandTemplate(model) end for key, val in pairs(mem) do groups[key] = val end ctx.params = groups return context_iterate(ctx, argc) end -- Syntax: #invoke:params|parsing|string to parse|[trim flag]|[iteration -- delimiter setter]|[...]|[key-value delimiter setter]|[...]|pipe to library.parsing = function (ctx) local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘parsing’: No string to parse was provided', 0) end local isep, iplain, psep, pplain, trimnamed, trimunnamed, argc = load_parse_opts(opts, 2, '|', '=') parse_parameter_string(ctx.params, opts[1], isep, iplain, psep, pplain, trimnamed, trimunnamed) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|reinterpreting|parameter to reinterpret|[trim -- flag]|[iteration delimiter setter]|[...]|[key-value delimiter -- setter]|[...]|pipe to library.reinterpreting = function (ctx) local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘reinterpreting’: No parameter to reinterpret was provided', 0) end local isep, iplain, psep, pplain, trimnamed, trimunnamed, argc = load_parse_opts(opts, 2, '|', '=') local tbl, tmp = ctx.params, get_parameter_name(opts[1]) local str = tbl[tmp] if str ~= nil then tbl[tmp] = nil parse_parameter_string(tbl, str, isep, iplain, psep, pplain, trimnamed, trimunnamed) end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|evaluating|string to parse|[trim flag]|[iteration -- delimiter setter]|[...]|[key-value delimiter setter]|[...]|pipe to library.evaluating = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘evaluating’: No string to parse was provided', 0) end local isep, iplain, psep, pplain, trimnamed, trimunnamed, argc = load_parse_opts(opts, 2, '!', ':') if opts[1]:match'^%s*(.*%S)' == nil then ctx.pipe = copy_or_ref_table(opts, opts ~= ctx.opipe) return context_iterate(ctx, argc) end local new_opts, cache = {}, {} local shift = parse_parameter_string(cache, opts[1], isep, iplain, psep, pplain, trimnamed, trimunnamed) - argc for key, val in pairs(opts) do if type(key) ~= 'number' or key < 1 then new_opts[key] = val elseif key >= argc then new_opts[key + shift] = val end end for key, val in pairs(cache) do new_opts[key] = val end ctx.pipe = new_opts return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mixing_names_and_values|mixing string|pipe to library.mixing_names_and_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning if ctx.pipe[1] == nil then error(modulename .. ', ‘mixing_names_and_values’: No mixing string was provided for parameter names', 0) end if ctx.pipe[2] == nil then error(modulename .. ', ‘mixing_names_and_values’: No mixing string was provided for parameter values', 0) end local tmp local mix_k = ctx.pipe[1]:match'^%s*(.-)%s*$' local cache, mix_v = {}, ctx.pipe[2] if mix_k == '$@' and mix_v == '$@' then for _, val in pairs(ctx.params) do cache[get_parameter_name(val)] = val end elseif mix_k == '$@' and mix_v == '$#' then for key, val in pairs(ctx.params) do cache[get_parameter_name(val)] = tostring(key) end elseif mix_k == '$#' and mix_v == '$#' then for key in pairs(ctx.params) do cache[key] = tostring(key) end else local skel_k, cnv_k, n_parts_k = parse_placeholder_string(mix_k) local skel_v, cnv_v, n_parts_v = parse_placeholder_string(mix_v) for key, val in pairs(ctx.params) do tmp = tostring(key) for idx = 2, n_parts_k, 2 do if skel_k[idx] then cnv_k[idx] = val else cnv_k[idx] = tmp end end for idx = 2, n_parts_v, 2 do if skel_v[idx] then cnv_v[idx] = val else cnv_v[idx] = tmp end end cache[get_parameter_name(table.concat(cnv_k))] = table.concat(cnv_v) end end ctx.params = cache return context_iterate(ctx, 3) end -- Syntax: #invoke:params|swapping_names_and_values|pipe to --[[ library.swapping_names_and_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for key, val in pairs(ctx.params) do cache[val] = key end ctx.params = cache return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|combining|new parameter name|[sort -- order]|[with/without flushed glue]|setting directives|...|pipe to library.combining = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning return context_iterate(ctx, combine_parameters( ctx, function (key, val, kvs) return key .. kvs .. val end, 'combining' ) + 1) end -- Syntax: #invoke:params|combining_values|new parameter name|[sort -- order]|[with/without flushed glue]|setting directives|...|pipe to library.combining_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning return context_iterate(ctx, combine_parameters( ctx, function (key, val, kvs) return val end, 'combining_values' ) + 1) end -- Syntax: #invoke:params|combining_by_calling|template name|new parameter -- name|pipe to library.combining_by_calling = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local tname = ctx.pipe[1] if tname ~= nil then tname = tname:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_calling’: No template name was provided', 0) end if ctx.pipe[2] == nil then error(modulename .. ', ‘combining_by_calling’: No parameter name was provided', 0) end ctx.params = { [get_parameter_name(ctx.pipe[2])] = ctx.frame:expandTemplate{ title = tname, args = ctx.params } } return context_iterate(ctx, 3) end -- Syntax: #invoke:params|combining_by_invoking|module name|function name|new -- parameter name|pipe to library.combining_by_invoking = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local mname = ctx.pipe[1] if mname ~= nil then mname = mname:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_invoking’: No module name was provided', 0) end local fname = ctx.pipe[2] if fname ~= nil then fname = fname:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_invoking’: No function name was provided', 0) end if ctx.pipe[3] == nil then error(modulename .. ', ‘combining_by_invoking’: No parameter name was provided', 0) end local model = { title = 'Module:' .. mname, args = ctx.params } local mfunc = require(model.title)[fname] if mfunc == nil then error(modulename .. ', ‘mapping_by_invoking’: The function ‘' .. fname .. '’ does not exist', 0) end ctx.params = { [get_parameter_name(ctx.pipe[3])] = tostring(mfunc(ctx.frame:newChild(model))) } return context_iterate(ctx, 4) end -- Syntax: #invoke:params|combining_by_magic|parser function|new parameter -- name|pipe to library.combining_by_magic = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local magic = ctx.pipe[1] if magic ~= nil then magic = magic:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_magic’: No parser function was provided', 0) end if ctx.pipe[2] == nil then error(modulename .. ', ‘combining_by_magic’: No parameter name was provided', 0) end ctx.params = { [get_parameter_name(ctx.pipe[2])] = ctx.frame:callParserFunction(magic, ctx.params) } return context_iterate(ctx, 3) end -- Syntax: #invoke:params|snapshotting|[maximum number]|pipe to library.snapshotting = function (ctx) return context_iterate(ctx, make_child(ctx, ctx.params, 'snapshotting')) end -- Syntax: #invoke:params|remembering|[maximum number]|pipe to library.remembering = function (ctx) return context_iterate(ctx, make_child(ctx, ctx.oparams, 'remembering')) end -- Syntax: #invoke:params|entering_substack|[new]|pipe to library.entering_substack = function (ctx) local tbl, ncurrparent = ctx.params, ctx.n_parents + 1 if ctx.parents == nil then ctx.parents = { tbl } else ctx.parents[ncurrparent] = tbl end ctx.n_parents = ncurrparent if ctx.pipe[1] ~= nil and ctx.pipe[1]:match'^%s*new%s*$' then ctx.params = {} return context_iterate(ctx, 2) end local currsnap = ctx.n_children if currsnap > 0 then ctx.params, ctx.children[currsnap], ctx.n_children = ctx.children[currsnap], nil, currsnap - 1 else local newparams = {} for key, val in pairs(tbl) do newparams[key] = val end ctx.params = newparams end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|pulling|parameter name|pipe to library.pulling = function (ctx) local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘pulling’: No parameter to pull was provided', 0) end local tmp = ctx.n_parents local parent = tmp < 1 and ctx.oparams or ctx.parents[tmp] tmp = get_parameter_name(opts[1]) if parent[tmp] ~= nil then ctx.params[tmp] = parent[tmp] end return context_iterate(ctx, 2) end -- Syntax: #invoke:params|recalling|parameter name|pipe to library.recalling = function (ctx) local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘recalling’: No parameter to recall was provided', 0) end local arg = get_parameter_name(opts[1]) if ctx.oparams[arg] ~= nil then ctx.params[arg] = ctx.oparams[arg] end return context_iterate(ctx, 2) end -- Syntax: #invoke:params|finding|parameter name|pipe to --[[ library.finding = function (ctx) local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘finding’: No parameter to find was provided', 0) end local arg = get_parameter_name(opts[1]) local parent for idx = ctx.n_parents, 1, -1 do parent = ctx.parents[idx] if parent[arg] ~= nil then ctx.params[arg] = parent[arg] return context_iterate(ctx, 2) end end if ctx.oparams[arg] ~= nil then ctx.params[arg] = ctx.oparams[arg] end return context_iterate(ctx, 2) end ]]-- -- Syntax: #invoke:params|picking|number of parameters to pick|pipe to --[[ library.picking = function (ctx) local len = tonumber(ctx.pipe[1]) if len == nil or len < 1 or math.floor(len) ~= len then error(modulename .. ', ‘picking’: The number of parameters to pick must be an integer greater than zero', 0) end if ctx.n_parents < 1 then copy_table_maxn(ctx.params, ctx.oparams, len) else copy_table_maxn(ctx.params, ctx.parents[ctx.n_parents], len) end return context_iterate(ctx, 2) end ]]-- -- Syntax: #invoke:params|detaching_substack|pipe to library.detaching_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘detaching_substack’: No substack has been created', 0) end local parent = ctx.parents[ncurrparent] for key in pairs(ctx.params) do parent[key] = nil end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|dropping_substack|pipe to library.dropping_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘dropping_substack’: No substack has been created', 0) end ctx.params, ctx.parents[ncurrparent], ctx.n_parents = ctx.parents[ncurrparent], nil, ncurrparent - 1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|leaving_substack|pipe to library.leaving_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘leaving_substack’: No substack has been created', 0) end local currsnap = ctx.n_children + 1 if ctx.children == nil then ctx.children = { ctx.params } else ctx.children[currsnap] = ctx.params end ctx.params, ctx.parents[ncurrparent], ctx.n_parents, ctx.n_children = ctx.parents[ncurrparent], nil, ncurrparent - 1, currsnap return context_iterate(ctx, 1) end -- Syntax: #invoke:params|merging_substack|pipe to library.merging_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘merging_substack’: No substack has been created', 0) end local parent, child = ctx.parents[ncurrparent], ctx.params ctx.params, ctx.parents[ncurrparent], ctx.n_parents = parent, nil, ncurrparent - 1 for key, val in pairs(child) do parent[key] = val end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|flushing|pipe to library.flushing = function (ctx) if ctx.n_children < 1 then error(modulename .. ', ‘flushing’: There are no substacks to flush', 0) end local parent, currsnap = ctx.params, ctx.n_children for key, val in pairs(ctx.children[currsnap]) do parent[key] = val end ctx.children[currsnap], ctx.n_children = nil, currsnap - 1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|setting_by_flushing|pipe to library.setting_by_flushing = function (ctx) set_strings_from_substack(ctx, ctx, 'setting_by_flushing') return context_iterate(ctx, 1) end --[[ Functions ]]-- ----------------------------- -- Syntax: #invoke:params|count library.count = function (ctx) -- NOTE: `ctx.pipe` and `ctx.params` might be the original metatables! local retval = 0 for _ in ctx.iterfunc(ctx.params) do retval = retval + 1 end if ctx.subset == -1 then retval = retval - #ctx.params end ctx.text = retval return false end -- Syntax: #invoke:args|concat_and_call|template name|[prepend 1]|[prepend 2] -- |[...]|[item n]|[named item 1=value 1]|[...]|[named item n=value -- n]|[...] library.concat_and_call = function (ctx) -- NOTE: `ctx.params` might be the original metatable! local tname local opts = ctx.pipe if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘concat_and_call’: No template name was provided', 0) end remove_numeric_keys(opts, 1, 1) ctx.text = ctx.frame:expandTemplate{ title = tname, args = concat_params(ctx) } return false end -- Syntax: #invoke:args|concat_and_invoke|module name|function name|[prepend -- 1]|[prepend 2]|[...]|[item n]|[named item 1=value 1]|[...]|[named -- item n=value n]|[...] library.concat_and_invoke = function (ctx) -- NOTE: `ctx.params` might be the original metatable! local mname, fname local opts = ctx.pipe if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘concat_and_invoke’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘concat_and_invoke’: No function name was provided', 0) end remove_numeric_keys(opts, 1, 2) local mfunc = require('Module:' .. mname)[fname] if mfunc == nil then error(modulename .. ', ‘concat_and_invoke’: The function ‘' .. fname .. '’ does not exist', 0) end ctx.text = mfunc(ctx.frame:newChild{ title = 'Module:' .. mname, args = concat_params(ctx) }) return false end -- Syntax: #invoke:args|concat_and_magic|parser function|[prepend 1]|[prepend -- 2]|[...]|[item n]|[named item 1=value 1]|[...]|[named item n= -- value n]|[...] library.concat_and_magic = function (ctx) -- NOTE: `ctx.params` might be the original metatable! local magic local opts = ctx.pipe if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘concat_and_magic’: No parser function was provided', 0) end remove_numeric_keys(opts, 1, 1) ctx.text = ctx.frame:callParserFunction(magic, concat_params(ctx)) return false end -- Syntax: #invoke:params|value_of|parameter name library.value_of = function (ctx) -- NOTE: `ctx.pipe` and `ctx.params` might be the original metatables! local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘value_of’: No parameter name was provided', 0) end local val local key = opts[1]:match'^%s*(.-)%s*$' if key == '0' or key:find'^%-?[1-9]%d*$' ~= nil then key = tonumber(key) val = ctx.params[key] -- No worries: #ctx.params is unused when the modifier is in -- first position (and therefore `ctx.params` is a metatable) if val ~= nil and ( ctx.subset ~= -1 or key > #ctx.params or key < 1 ) and ( ctx.subset ~= 1 or (key <= #ctx.params and key > 0) ) then ctx.text = (ctx.header or '') .. val .. (ctx.footer or '') else ctx.text = ctx.ifngiven or '' end else val = ctx.params[key] if ctx.subset ~= 1 and val ~= nil then ctx.text = (ctx.header or '') .. val .. (ctx.footer or '') else ctx.text = ctx.ifngiven or '' end end return false end -- Syntax: #invoke:params|list library.list = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local ret, nss, kvs, pps = {}, 0, ctx.pairsep or '', ctx.itersep or '' flush_params(ctx, function (key, val) ret[nss + 1], ret[nss + 2], ret[nss + 3], ret[nss + 4], nss = pps, key, kvs, val, nss + 4 end) finalize_and_return_concatenated_list(ctx, ret, nss, 4) return false end -- Syntax: #invoke:params|list_values library.list_values = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! -- NOTE: `library.coins()` and `library.unique_coins()` rely on us local ret, nss, pps = {}, 0, ctx.itersep or '' flush_params(ctx, function (key, val) ret[nss + 1], ret[nss + 2], nss = pps, val, nss + 2 end) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|list_maybe_with_names library.list_maybe_with_names = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local ret, nss, kvs, pps = {}, 0, ctx.pairsep or '', ctx.itersep or '' mixed_flush_params( ctx, function (key, val) ret[nss + 1], ret[nss + 2], ret[nss + 3], ret[nss + 4], nss = pps, '', '', val, nss + 4 end, function (key, val) ret[nss + 1], ret[nss + 2], ret[nss + 3], ret[nss + 4], nss = pps, key, kvs, val, nss + 4 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 4) return false end -- Syntax: #invoke:params|coins|[first coin = value 1]|[second coin = value -- 2]|[...]|[last coin = value N] --[[ library.coins = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local opts, tbl = ctx.pipe, ctx.params for key, val in pairs(tbl) do tbl[key] = opts[get_parameter_name(val)] end return library.list_values(ctx) end ]]-- -- Syntax: #invoke:params|unique_coins|[first coin = value 1]|[second coin = -- value 2]|[...]|[last coin = value N] --[[ library.unique_coins = function (ctx) local tmp local opts, tbl = ctx.pipe, ctx.params for key, val in pairs(tbl) do tmp = get_parameter_name(val) tbl[key], opts[tmp] = opts[tmp], nil end return library.list_values(ctx) end ]] -- Syntax: #invoke:params|for_each|wikitext library.for_each = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local ret, nss, pps, txt = {}, 0, ctx.itersep or '', ctx.pipe[1] or '' local skel, cnv, n_parts = parse_placeholder_string(txt) flush_params(ctx, function (key, val) for idx = 2, n_parts, 2 do if skel[idx] then cnv[idx] = val else cnv[idx] = tostring(key) end end ret[nss + 1], nss = pps, nss + 2 ret[nss] = table.concat(cnv) end) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|call_for_each|template name|[append 1]|[append 2] -- |[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.call_for_each = function (ctx) local tname local opts = ctx.pipe if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘call_for_each’: No template name was provided', 0) end local model = { title = tname, args = opts } local ret, nss, ccs = {}, 0, ctx.itersep or '' table.insert(opts, 1, true) flush_params(ctx, function (key, val) opts[1], opts[2], ret[nss + 1], nss = key, val, ccs, nss + 2 ret[nss] = ctx.frame:expandTemplate(model) end) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|invoke_for_each|module name|module function|[append -- 1]|[append 2]|[...]|[append n]|[named param 1=value 1]|[...] -- |[named param n=value n]|[...] library.invoke_for_each = function (ctx) local mname, fname local opts = ctx.pipe if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘invoke_for_each’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘invoke_for_each’: No function name was provided', 0) end local model = { title = 'Module:' .. mname, args = opts } local mfunc = require(model.title)[fname] local ret, nss, ccs = {}, 0, ctx.itersep or '' flush_params(ctx, function (key, val) opts[1], opts[2], ret[nss + 1], nss = key, val, ccs, nss + 2 ret[nss] = mfunc(ctx.frame:newChild(model)) end) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|magic_for_each|parser function|[append 1]|[append 2] -- |[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.magic_for_each = function (ctx) local magic local opts = ctx.pipe if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘magic_for_each’: No parser function was provided', 0) end local ret, nss, ccs = {}, 0, ctx.itersep or '' table.insert(opts, 1, true) flush_params(ctx, function (key, val) opts[1], opts[2], ret[nss + 1], nss = key, val, ccs, nss + 2 ret[nss] = ctx.frame:callParserFunction(magic, opts) end) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|call_for_each_value|template name|[append 1]|[append -- 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.call_for_each_value = function (ctx) local tname local opts = ctx.pipe if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘call_for_each_value’: No template name was provided', 0) end local model = { title = tname, args = opts } local ret, nss, ccs = {}, 0, ctx.itersep or '' flush_params(ctx, function (key, val) opts[1], ret[nss + 1], nss = val, ccs, nss + 2 ret[nss] = ctx.frame:expandTemplate(model) end) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|invoke_for_each_value|module name|[append 1]|[append -- 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.invoke_for_each_value = function (ctx) local opts = ctx.pipe local mname, fname if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘invoke_for_each_value’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘invoke_for_each_value’: No function name was provided', 0) end local model = { title = 'Module:' .. mname, args = opts } local mfunc = require(model.title)[fname] local ret, nss, ccs = {}, 0, ctx.itersep or '' remove_numeric_keys(opts, 1, 1) flush_params(ctx, function (key, val) opts[1], ret[nss + 1], nss = val, ccs, nss + 2 ret[nss] = mfunc(ctx.frame:newChild(model)) end) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|magic_for_each_value|parser function|[append 1] -- |[append 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named -- param n=value n]|[...] library.magic_for_each_value = function (ctx) local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘magic_for_each_value’: No parser function was provided', 0) end local ret, nss, ccs = {}, 0, ctx.itersep or '' flush_params(ctx, function (key, val) opts[1], ret[nss + 1], nss = val, ccs, nss + 2 ret[nss] = ctx.frame:callParserFunction(magic, opts) end) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|call_for_each_group|template name|[append 1]|[append -- 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.call_for_each_group = function (ctx) -- NOTE: `ctx.pipe` and `ctx.params` might be the original metatables! local tmp if ctx.pipe[1] ~= nil then tmp = ctx.pipe[1]:match'^%s*(.*%S)' end if tmp == nil then error(modulename .. ', ‘call_for_each_group’: No template name was provided', 0) end local model = { title = tmp } local opts, ret, nss, ccs = {}, {}, 0, ctx.itersep or '' for key, val in pairs(ctx.pipe) do if type(key) == 'number' then opts[key - 1] = val else opts[key] = val end end ctx.pipe = opts ctx.params = make_groups(ctx.params) flush_params(ctx, function (gid, group) for key, val in pairs(opts) do group[key] = val end group[0], model.args, ret[nss + 1], nss = gid, group, ccs, nss + 2 ret[nss] = ctx.frame:expandTemplate(model) end) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end --[[ First-position-only modifiers ]]-- --------------------------------------- -- Syntax: #invoke:params|new|pipe to static_iface.new = function (child_frame) local ctx = context_new(child_frame) ctx.pipe = copy_or_ref_table(ctx.opipe, false) ctx.params = {} main_loop(ctx, context_iterate(ctx, 1)) return ctx.text end --[[ First-position-only functions ]]-- --------------------------------------- -- Syntax: #invoke:params|self static_iface.self = function (frame) return frame:getParent():getTitle() end --[[ Public metatable of functions ]]-- --------------------------------------- return setmetatable({}, { __index = function (_, query) local fname = query:match'^%s*(.*%S)' if fname == nil then error(modulename .. ': You must specify a function to call', 0) end local func = static_iface[fname] if func ~= nil then return func end func = library[fname] if func == nil then error(modulename .. ': The function ‘' .. fname .. '’ does not exist', 0) end return function (child_frame) local ctx = context_new(child_frame) ctx.pipe = copy_or_ref_table(ctx.opipe, refpipe[fname]) ctx.params = copy_or_ref_table(ctx.oparams, refparams[fname]) main_loop(ctx, func) return ctx.text end end }) jm8x5ug81bre69dpt2csm0n3owsmu2i ၂၀၂၅ ခုနှစ် မြန်မာတွင်း ငလျင် 0 1364 19573 13272 2026-07-16T06:53:48Z YaThaWinTha 42 19573 wikitext text/x-wiki [[File:2025_Myanmar_earthquake_(M_7.7)_shakemap.pdf|thumb|]] '''၂၀၂၅ ခုနှစ်တွင် မြန်မာနိုန့်ငလျင်'''ရေ ၂၀၂၅ ခုနှစ် [[မာတ်ချ်လ]] ၂၈ ရက်နေ့ [[မြန်မာစံတော်ချိန်]] မွန်းလွဲ ၁၂ နာရီ ၅၀ မိနစ် ၅၄ စက္ကန့် (06:20:54 UTC)တွင် မြန်မာနိုန့် စစ်ကိုင်းမြို့နှန့် မန္တလေးမြို့ အနီး၌ ဗဟိုပြု လှုပ်ခတ်ခဲ့ရေ မိုးမင့် စကေး Mw၇.၇ ရှိ ငလျင်ဖြစ်ရေ။<ref>{{Cite news|title=ငလျင်ကြောင့် အဆောက်အဦး ၃၀၀၀ နီးပါး ထိခိုက်ပျက်စီးခဲ့ကြောင်း NUG ထုတ်ပြန်|lang=my|url=https://www.rfa.org/burmese/news/myanmar-earthquake-buildings-roads-bridge-03292025041316.html|access-date=29 March 2025|work=[[Radio Free Asia]]|date=29 March 2025}}</ref> [[Category:မြန်မာနိုင်ငံတွင်း ငလျင်တိ]] == ကိုးကား == {{Reflist}} c47nhr59g1tcixsftawrenistfqn9ho 19575 19573 2026-07-16T06:55:42Z YaThaWinTha 42 19575 wikitext text/x-wiki [[File:2025_Myanmar_earthquake_(M_7.7)_shakemap.pdf|thumb|]] '''၂၀၂၅ ခုနှစ်မာ မြန်မာနန့် ငလျင်'''စွာ ၂၀၂၅ ခုနှစ် [[မာတ်ချ်လ]] ၂၈ ရက်နိ [[မြန်မာစံတော်ချိန်]] မွန်းလွဲ ၁၂ နာရီ ၅၀ မိနစ် ၅၄ စက္ကန့် (06:20:54 UTC)မာ မြန်မာ၊ စစ်ကိုင်းမြို့နန့် မန္တလေးမြို့ အနီးမာ ဗဟိုပြု လှုပ်ခတ်ခရေ မိုးရေ စကေး Mw၇.၇ဟိ ငလျင်ဖြစ်ရေ။<ref>{{Cite news|title=ငလျင်ကြောင့် အဆောက်အဦး ၃၀၀၀ နီးပါး ထိခိုက်ပျက်စီးခကြောင်း NUG ထုတ်ပြန်|lang=my|url=https://www.rfa.org/burmese/news/myanmar-earthquake-buildings-roads-bridge-03292025041316.html|access-date=29 March 2025|work=[[Radio Free Asia]]|date=29 March 2025}}</ref> [[Category:မြန်မာနိုင်ငံတွင်း ငလျင်တိ]] == ကိုးကား == {{Reflist}} qq5qnnqix5w0wbvp69td7thb65akhlb 19576 19575 2026-07-16T06:56:22Z YaThaWinTha 42 YaThaWinTha moved page [[၂၀၂၅ ခုနှစ်တွင် မြန်မာနိုန့်ငလျင်]] to [[၂၀၂၅ ခုနှစ် မြန်မာတွင်း ငလျင်]] 19575 wikitext text/x-wiki [[File:2025_Myanmar_earthquake_(M_7.7)_shakemap.pdf|thumb|]] '''၂၀၂၅ ခုနှစ်မာ မြန်မာနန့် ငလျင်'''စွာ ၂၀၂၅ ခုနှစ် [[မာတ်ချ်လ]] ၂၈ ရက်နိ [[မြန်မာစံတော်ချိန်]] မွန်းလွဲ ၁၂ နာရီ ၅၀ မိနစ် ၅၄ စက္ကန့် (06:20:54 UTC)မာ မြန်မာ၊ စစ်ကိုင်းမြို့နန့် မန္တလေးမြို့ အနီးမာ ဗဟိုပြု လှုပ်ခတ်ခရေ မိုးရေ စကေး Mw၇.၇ဟိ ငလျင်ဖြစ်ရေ။<ref>{{Cite news|title=ငလျင်ကြောင့် အဆောက်အဦး ၃၀၀၀ နီးပါး ထိခိုက်ပျက်စီးခကြောင်း NUG ထုတ်ပြန်|lang=my|url=https://www.rfa.org/burmese/news/myanmar-earthquake-buildings-roads-bridge-03292025041316.html|access-date=29 March 2025|work=[[Radio Free Asia]]|date=29 March 2025}}</ref> [[Category:မြန်မာနိုင်ငံတွင်း ငလျင်တိ]] == ကိုးကား == {{Reflist}} qq5qnnqix5w0wbvp69td7thb65akhlb ဖီဖာ ကမ္ဘာ့ဖလား 0 4470 19618 18560 2026-07-16T09:23:06Z YaThaWinTha 42 19618 wikitext text/x-wiki {{Featured article}} {{Protection padlock|small=yes}} {{Use dmy dates|date=February 2026}} {{Use British English|date=June 2012}} {{About|the men's association football tournament|the women's tournament|FIFA Women's World Cup|the competition among club teams|FIFA Club World Cup|the video games|FIFA World Cup video games|the 2026 event|2026 FIFA World Cup}} {{Infobox football tournament | name = ဖီဖာ ကမ္ဘာ့ဖလား | image = FIFA World Cup wordmark (2023).svg{{!}}class=skin-invert | imagesize = 250 | caption = | organiser = [[ဖီဖာ]] | founded = {{Start date and age|df=yes|1930}} | region = နိုင်ငံတကာ | number of teams = {{Nowrap|48}} | current champions = {{Nowrap|{{fb|ARG}} (3rd title)}} | most successful team = {{Nowrap|{{fb|BRA}} (5 titles)}} | broadcasters = | website = {{URL|https://www.fifa.com/tournaments/mens/worldcup|fifa.com/worldcup}} | current = [[၂၀၂၆ ဖီဖာ ကမ္ဘာ့ဖလား]] | related comps =[[ဖီဖာ အမျိုးသမီး ကမ္ဘာ့ဖလား]]}} {{Season sidebar | image = [[File:ARG Line-up - ARG vs MEX for 2022 FIFA WC.jpg|250px]] | caption = [[အာဂျင်တီးနား အမျိုးသား ဘောလုံးအသင်း|အာဂျင်တီးနား]]၊ လက်ဟိ ချန်ပီယံ | title = ပြိုင်ပွဲတိ | list = * [[၁၉၃၀ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၃၀]] * [[၁၉၃၄ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၃၄]] * [[၁၉၃၈ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၃၈]] * [[၁၉၅၀ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၅၀]] * [[၁၉၅၄ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၅၄]] * [[၁၉၅၈ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၅၈]] * [[၁၉၆၂ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၆၂]] * [[၁၉၆၆ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၆၆]] * [[၁၉၇၀ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၇၀]] * [[၁၉၇၄ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၇၄]] * [[၁၉၇၈ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၇၈]] * [[၁၉၈၂ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၈၂]] * [[၁၉၈၆ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၈၆]] * [[၁၉၉၀ ဖီဖာ ကမ္ဘာ့ဖလား ဖလား|၁၉၉၀]] * [[၁၉၉၄ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၉၄]] * [[၁၉၉၈ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၉၈]] * [[၂၀၀၂ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၀၂]] * [[၂၀၀၆ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၀၆]] * [[၂၀၁၀ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၁၀]] * [[၂၀၁၄ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၁၄]] * [[၂၀၁၈ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၁၈]] * [[၂၀၂၂ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၂၂]] * ''[[၂၀၂၆ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၂၆]]'' * ''[[၂၀၃၀ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၃၀]]'' * ''[[၂၀၃၄ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၃၄]]'' }} '''FIFA ကမ္ဘာ့ဖလား''' စွာ အားကစားဧ့ ကမ္ဘာ့အုပ်ချုပ်မှုအဖွဲ့ [[FIFA|Fédération Internationale de Football Association]] (ဖီဖာ) အဖွဲ့ဝင်တိ၏ အကြီးတန်း [[အမျိုးသား ဘောလုံးအသင်းတိစာရင်း | အမျိုးသား အသင်းတိ]]အကြား နိုင်ငံတကာ [[အသင်းဘောလုံး]] ပြိုင်ပွဲတခုဖြစ်တေ။ [[ဒုတိယကမ္ဘာစစ်]] ကြောင့် 1942 နန့် 1946 လွဲပြီးကေ[[ဒုတိယကမ္ဘာစစ်]] လွဲပြီးကေ ပြိုင်ပွဲကို လေးနှစ်တခေါက်ကျင်းပ ခပါရေ။ လက်ဟိချန်ပီယံတိစွာ [[အာဂျင်တီးနား အမျိုးသား ဘောလုံးအသင်း|အာဂျင်တီးနား]]၊ [[၂၀၂၂ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၂၂ ကမ္ဘာ့ဖလား]] မာ [[ပြင်သစ် အမျိုးသား ဘောလုံးအသင်း|ပြင်သစ်]] ကိုအနိုင်ယူပြီး ယင်းရို့၏တတိယဆုဖလားကို ရဟိခရေ။ ပြိုင်ပွဲအဆင့်မာ ဇာအသင်းတိစွာ ပြိုင်ပွဲအဆင့်အတွက် အရည်အခြင်းပြည့်မီကြောင်း ဆုံးဖြတ်ရန် ရှိ့သုံးနှစ်အထဲ ကျင်းပရေ[[ဖီဖာ ကမ္ဘာ့ဖလား ခြီစစ်ပွဲတိ|ခြီစစ်ပွဲ အဆင့်]] နန့် စတင်ရေ။ ပြိုင်ပွဲအဆင့်မာ အသင်း ၃၂ သင်းစွာ အိမ်ရှင်နိုင်ငံအထဲ ကျင်းပရေ နီရာတိမာ တလခန့်ကြာ ယှဥ်ပြိုင်ကတ်တေ။ အိမ်ရှင်နိုင်ငံ(တိ)စွာ ပြိုင်ပွဲဧ့ အုပ်စုအဆင့်သို့ အလိုအလျောက် အရည်အခြင်းပြည့်မီ ဖို့ဖြစ်တေ။ ပြိုင်ပွဲကို [[၂၀၂၆ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၂၆ ကမ္ဘာ့ဖလား]]မှစတင်ပနာ 48 သင်းအထိတိုးချဲ့ဖို့ စီစိုင်ထားရေ။ 2022 ကမ္ဘာ့ဖလားပြိုင်ပွဲကို 1930 ခုနှစ် စတင်ကျင်းပချိန်မှစပြီးကေ နောက်ဆုံးပြိုင်ပွဲ 22 ခုကျင်းပခပြီးကေ နိုင်ငံအသင်းပေါင်း 80 ယှဥ်ပြိုင်ခရေ။ [[FIFA World Cup Trophy|The trophy]] စွာ နိုင်ငံအသင်း ၈သင်းဖြင့် အနိုင်ရဟိထားရေ။ 5 ကြိမ်အနိုင်ရဟိခြင်းနန့် [[ဘရာဇီးလက်ရွီးစင်|ဘရာဇီး]]<!--- လိုက်လျောညီထွီဟိဖို့အတွက် ဆောင်းပါးတလျှောက်လုံးမာ အိန်းဂလိချ်အိန်းဂလိချ်ကို အများကိန်းနာမ်တိအဖြစ် သတ်မှတ်ပီးစွာ၊ နမူနာ၊ "Brazil are" "Brazil is" အစား "Brazil is"--> စွာ ပြိုင်ပွဲတိုင်းမာ ကစပ်ဖူးရေ တခုတည်းသော အသင်းဖြစ်တေ။ အရာကမ္ဘာ့ဖလားအနိုင်ရသူတိစွာ [[Germany national football team|Germany]] နန့် [[Italy national football team|Italy]]၊ အာဂျင်တီးနား၊ ပြင်သစ်နန့် အဖွင့်ဆုရှင် [[Uruguay national football team|Uruguay]]၊ အလှည့်ကျ နန့် [[England national football team|England]] နန့် [[Spain men's national football team|Spain]]၊ရို့ဖြစ်ကတ်တေ။ ကမ္ဘာ့ဖလားပြိုင်ပွဲစွာ ကမ္ဘာတဝှမ်းမာ ဂုဏ်သိက္ခာအဟိဆုံး အသင်းဘောလုံးပြိုင်ပွဲအဖြစ် သတ်မှတ်ခံရရေအပြင် ကမ္ဘာထက်မာ အကျယ်ပြန့်ဆုံးကြည့်ရှု အားပီးရေ အားကစားပွဲလည်းဖြစ်တေ။<ref name="DobsonGoddard2006">Stephen Dobson and John Goddard, [{{GBurl|id=GxyG0XXdvR4C|p=407}} The Economics of Football], page 407, quote "The World Cup is the most widely viewed sporting event in the world: the estimated cumulative television audience for the 2006 World Cup in Germany was 26.2&nbsp;billion, an average of 409&nbsp;million viewers per match."</ref><ref>Glenn M. Wong, [{{GBurl|id=qEELS7T_Tm0C|p=144}} The Comprehensive Guide to Careers in Sports], page 144, quote "The World Cup is the most-watched sporting event in the world. In 2006, more than 30&nbsp;billion viewers in 214 countries watched the World Cup on television, and more than 3.3&nbsp;million spectators attended the 64 matches of the tournament."</ref> [[2018 FIFA World Cup|2018 World Cup]] ဧ့ကြည့်ရှုသူဦးရီမာ 3.57 ဘီလီယံလှောက်ဟိပြီးကေ ကမ္ဘာ့လူဦးရွီ 10KTOKEND ထက်ဝက်နီးပါး၊WKTOKEN10KENDWKEND 2022 ကမ္ဘာ့ဖလားပြိုင်ပွဲနန့် ထိတွိဆက်ဆံမှုကို 5 ဘီလီယံလှောက်ဟိဖို့လို့ ခန့်မှန်းရရေ [[2022 FIFA World Cup final|the final match]] ကို ကြည့်ရှုသူ 1.5 ဘီလီယံလှောက်ဟိရေ။<ref>{{cite web |url=https://www.fifa.com/tournaments/mens/worldcup/qatar2022/news/one-month-on-5-billion-engaged-with-the-fifa-world-cup-qatar-2022-tm |title=One Month On: 5 billion engaged with the FIFA World Cup Qatar 2022 |publisher=FIFA |access-date=18 January 2023 |archive-date=18 January 2023 |archive-url=https://web.archive.org/web/20230118183433/https://www.fifa.com/tournaments/mens/worldcup/qatar2022/news/one-month-on-5-billion-engaged-with-the-fifa-world-cup-qatar-2022-tm |url-status=live}}</ref> 2022 ပွဲကို အိမ်ရှင်အဖြစ် လက်ခံကျင်းပခါ [[Qatar]] စွာ ကမ္ဘာ့ဖလားပြိုင်ပွဲကို နိုင်ငံပေါင်း 18 နိုင်ငံက အိမ်ရှင်အဖြစ် လက်ခံကျင်းပ ခပါရေ။ 2026 ပြိုင်ပွဲကို ကနေဒါ၊ မက္ကစီကိုနန့် အမေရိကန်ရို့က ပူးတွဲအိမ်ရှင်အဖြစ် လက်ခံကျင်းပ ဖို့ဖြစ်ပြီးကေ ယင်းစွာ မက္ကစီကိုကမ္ဘာ့ဖလား ပြိုင်ပွဲတိကို ပထမဆုံး အိမ်ရှင်အဖြစ် လက်ခံကျင်းပရေ ပထမဆုံးနိုင်ငံဖြစ်လှာ ဖို့ဖြစ်တေ။ == သမိုင်း == {{အဓိက|ဖီဖာ ကမ္ဘာ့ဖလား၏ သမိုင်း}} === အရင် နိုင်ငံတကာ ပြိုင်ပွဲတိ=== ကမ္ဘာ့ပထမဆုံး နိုင်ငံတကာဘောလုံးပြိုင်ပွဲစွာ 1872 ခုနှစ်မာ [[Scotland national football team|Scotland]] နန့် [[England national football team|England]] ရို့ကြားမာ ကဇပ် ခရေ စိန်ခေါ်ပွဲဖြစ်တေ။<ref>{{cite web |url=http://www.englandfootballonline.com/Seas1872-00/1872-73/M0001Sco1872.html |title=England National Football Team Match No. 1 |publisher=England Football Online |access-date=19 November 2007 |archive-url=https://web.archive.org/web/20030314074901/http://www.englandfootballonline.com/Seas1872-00/1872-73/M0001Sco1872.html |archive-date=14 March 2003 |url-status=live}}</ref> နိုင်ငံတိအတွက် ပထမဆုံးသော နိုင်ငံတကာပြိုင်ပွဲ၊ စတင်ဖွင့်လှစ်ရေ [[British Home Championship]] စွာ 1884 ခုနှစ်မာ ကျင်းပခပြီးကေ အင်္ဂလန်၊ [[British Home Championship]] နန့် အင်္ဂလန်နိုင်ငံ၊ Scotland နန့် 6၊ [[Ireland national football team (1882–1950)|Ireland]].<ref>{{cite web |url=https://int.soccerway.com/news/2007/November/22/british-pm-backs-return-of-home-nations-championship |title=British PM backs return of Home Nations championship |publisher=Agence France-Presse |access-date=16 December 2007 |archive-url=https://web.archive.org/web/20150619053845/http://int.soccerway.com/news/2007/November/22/british-pm-backs-return-of-home-nations-championship/ |archive-date=19 June 2015 |url-status=dead}}</ref> 20 ရာစုအစမာ ကမ္ဘာဧ့ အရာနီရာတိမာ ဘောလုံးရီပန်းစားလာစွာ နန့်တတူ၊ [[demonstration sport]] မာ ဆုတံဆိပ်မရဟိခဘဲ [[demonstration sport]] အဖြစ် ကျင်းပခ ပါရေ။ ဇာပိုင်ပင်ဖြစ်ဖြစ် [[International Olympic Committee]] စွာ ယင်းရို့၏ အခြီအနီကို တရားဝင်ဖြစ်ရပ်တိ အဖြစ် [[Football at the 1906 Summer Olympics|1906 Intercalated Games]] သို့ ပြန်ပနာ အဆင့်မြှင့်ထားရေ။<ref>{{cite web |first1=Søren |last1=Elbech |first2=Karel |last2=Stokkermans |url=https://www.rsssf.org/tableso/ol1906f.html |title=Intermediate Games of the IV. Olympiad |website=[[RSSSF]] |date=26 June 2008 |access-date=3 February 2023 |archive-date=11 July 2022 |archive-url=https://web.archive.org/web/20220711203917/https://www.rsssf.org/tableso/ol1906f.html |url-status=live}}</ref> [[ဖီဖာ]] ကို 1904 ခုနှစ်မာ စတင်တည်ထောင်ခပြီးကေ 1906 ခုနှစ်မာ ဆွစ်ဇာလန်ဟိ အိုလံပစ်ဘောင်အပြင်ဘက်ဟိ နိုင်ငံတိအကြား နိုင်ငံတကာဘောလုံးပြိုင်ပွဲကို စီစိုင်ရန်ကြိုးစားခရေ။ ယင်းရို့စွာ နိုင်ငံတကာဘောလုံးပွဲအတွက် အလွန်စောစီးစွာရေ နိရက်တိဖြစ်ပြီးကေ FIFA ဧ့တရားဝင်သမိုင်းမာ ပြိုင်ပွဲယှူရေကြောင်းဖော်ပြပါရေ။<ref>{{cite web |url=https://www.fifa.com/classicfootball/history/fifa/fifa-takes-shape.html |archive-url=https://web.archive.org/web/20130329051342/http://www.fifa.com/classicfootball/history/fifa/fifa-takes-shape.html |url-status=dead |archive-date=29 March 2013 |title=History of FIFA – FIFA takes shape |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> [[File:London 1908 English Amateur Football National Team.jpg|thumb|Team of Great Britain that won the Olympic tournament in 1908]] [[London]] ဟိ [[Football at the 1908 Summer Olympics|1908 Summer Olympics]] မာ ဘောလုံးစွာ တရားဝင် အိုလံပစ်အားကစားတခု ဖြစ်လာခရေ။ အင်္ဂလန်ဘောလုံးအဖွဲ့ချုပ် [[the Football Association]] (FA) က စီစိုင်ထားအတွက်နန့် ယင့်ချင့်ပွဲကို [[amateurism|amateur]] ကစပ်သမားတိအတွက်သာ ဖြစ်ပြီးကေ ပြိုင်ပွဲထက် သံသယဖြစ်ဖွယ် ဟိုးပွဲတခုအဖြစ် သတ်မှတ် ခံခရရေ။ ဂရိတ်ဗြိတိန် ([[England national amateur football team]] က တက်စားပြု) [[gold medal]]s ကိုအနိုင်ရဟိခရေ။ ယင်းရို့စွာ [[Stockholm]] ဟိ [[Football at the 1912 Summer Olympics|1912 Summer Olympics]] မာ စွမ်းဆောင်မှုကို အရာထခါ ပြုလုပ်ခကတ်တေ။<ref>{{cite book |last=Butler |first=Bryon |author-link=Bryon Butler |title=The Official History of The Football Association |publisher=Queen Anne Press |location=[[London]] |year=1991 |isbn=0-356-19145-1 |page=54}}</ref> အိုလံပစ်ပြိုင်ပွဲစွာ အပျော်တမ်းအသင်းတိကြားမာရာ ပြိုင်ပွဲတခုအဖြစ် ဆက်ပနာတည်ဟိနိန်တွက်နန့် [[Thomas Lipton|Sir Thomas Lipton]] စွာ [[Sir Thomas Lipton Trophy]] ပြိုင်ပွဲကို 1909 ခုနှစ်မာ [[Turin]] မာ ကျင်းပခရေ။ Lipton ပြိုင်ပွဲစွာ နိုင်ငံအသီးသီးမှ ကလပ်အသင်းတိ (နိုင်ငံအသင်းတိမဟုတ်) အချင်းချင်း ချန်ပီယံဖြစ်ခပြီးကေ အသီးသီးရေ နိုင်ငံတခုလုံးကို တက်စားပြုရေ။ ပြိုင်ပွဲကို '' ပထမကမ္ဘာ့ဖလား''၊<ref>{{cite web |url=http://www.shrewsbury.gov.uk/Public/news/thomaslipton.htm |title='The First World Cup'. The Sir Thomas Lipton Trophy |publisher=[[Shrewsbury and Atcham Borough Council]] |date=10 October 2003 |access-date=11 April 2006 |archive-url=https://web.archive.org/web/20031129221811/http://www.shrewsbury.gov.uk/Public/news/thomaslipton.htm |archive-date=29 November 2003}}</ref> နန့် အီတလီ၊ ဂျာမနီနန့် ဆွစ်ဇာလန်ရို့ကဂုဏ်သိက္ခာအဟိဆုံး ပရော်ဖက်ရှင်နယ်ကလပ်အသင်းတိအဖြစ် ဖော်ပြကေလေ့ အင်္ဂလန် FA စွာ ပြိုင်ပွဲနန့်ဆက်စပ်ရန် ငြင်းဆိုခပြီးကေ ပရော်ဖက်ရှင်နယ်အသင်းစီလွှတ်ရန် ကမ်းလှမ်းမှုကို ငြင်းဆိုခရေ။ Lipton စွာ [[County Durham]] မှ အပျော်တမ်းအဖွဲ့ဖြစ်ရေ [[West Auckland Town F.C.|West Auckland]] ကို အင်္ဂလန်အစား တက်စားပြုဖို့ ဖိတ်ကြားခရေ။ West Auckland စွာ ပြိုင်ပွဲကို အောင်မြင်စွာ ကာကွယ်နှိုင်ခပြီး 1911 ခုနှစ်မာ ပြန်ပါလတ်တေ။ <ref>{{cite news |title=West Auckland's World Cup Rematch |url=https://news.bbc.co.uk/local/tees/hi/people_and_places/history/newsid_8173000/8173881.stm|access-date=1 October 2020 |agency=BBC |archive-url=https://web.archive.org/web/20121002204445/http://news.bbc.co.uk/local/tees/hi/people_and_places/history/newsid_8173000/8173881.stm |archive-date=2 October 2012 |url-status=live}}</ref> Lipton ပြိုင်ပွဲ မရောက်ခင် 1876 မှ 1904 ခုနှစ်အထိ "[[Football World Championship|football world championship]]" ဟု သတ်မှတ်ခံရရေ ကစပ်ပွဲတိစွာ အင်္ဂလန်နန့် စကောတလန် ထိပ်တန်းကလပ်တိဖြစ်ရေ [[1895 World Championship (football)|1895 game]] နန့် [[1895 World Championship (football)|1895 game]] ရို့အကြား တွိ့ဆုံမှုတိဖြစ်တေ။ [[Heart of Midlothian F.C.]]၊ ဆန်းဒါးလန်း အနိုင်ရခရေ။<ref>{{Cite web |url=https://www.theguardian.com/football/blog/2020/apr/25/even-when-sunderland-ruled-the-globe-club-world-cups-were-controversial |title=Sunderland's Victorian all-stars blazed trail for money's rule of football |work=The Guardian |author=Jonathan Wilson |date=25 April 2020|access-date=9 August 2022|archive-url=https://web.archive.org/web/20200425193627/https://www.theguardian.com/football/blog/2020/apr/25/even-when-sunderland-ruled-the-globe-club-world-cups-were-controversial|archive-date=25 April 2020|url-status=live}}</ref> 1914 ခုနှစ်မာ FIFA မှ [[Football at the Summer Olympics|Olympic tournament]] ကို "အပျော်တမ်းတိအတွက်ကမ္ဘာ့ဘောလုံးချန်ပီယံဆု" အဖြစ်အသိအမှတ်ပြုဖို့ သဘောတူခပြီးကေ ပွဲကိုစီမံခန့်ခွဲရန် တာဝန်ယူခရေ။<ref>{{cite web |url=https://www.fifa.com/classicfootball/history/fifa/more-associations-follow.html |archive-url=https://web.archive.org/web/20130329051320/http://www.fifa.com/classicfootball/history/fifa/more-associations-follow.html |url-status=dead |archive-date=29 March 2013 |title=History of FIFA – More associations follow |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> ယင်းစွာနိုင်ငံတိအတွက် ကမ္ဘာ့ပထမဆုံးသော နိုင်ငံတိအတွက်ပြိုင်ပွဲ [[Football at the 1920 Summer Olympics|1920 Summer Olympics]] မာ [[Egypt national football team|Egypt]] က အနိုင်ရရေ ဥရောပအသင်း 3 သင်းနန့် အနိုင်ရဟိခရေ၊ [[Belgium national football team|Belgium]].<ref>{{cite web |last=Reyes |first=Macario |date=18 October 1999 |url=https://www.rsssf.org/tableso/ol1920f-det.html |title=VII. Olympiad Antwerp 1920 Football Tournament |publisher=rec.sport.soccer Statistics Foundation |access-date=10 June 2006 |archive-date=22 September 2022 |archive-url=https://web.archive.org/web/20220922145329/https://www.rsssf.org/tableso/ol1920f-det.html |url-status=live}}</ref> [[Uruguay national football team|Uruguay]] စွာ [[Football at the 1924 Summer Olympics|1924]] နန့် [[Football at the 1928 Summer Olympics|1928]] မာ နောက်ထပ်အိုလံပစ်ဘောလုံးပြိုင်ပွဲနှစ်ခုကို အနိုင်ရဟိခရေ။ ယင်းရို့စွာ 1924 ဖီဖာဧ့ ပရော်ဖက်ရှင်နယ်ခေတ်ဧ့အစဖြစ်တေအတွက် ပထမဆုံး [[Open (sport)|open]] ကမ္ဘာ့ချန်ပီယံနှစ်ပွဲလည်းဖြစ်ခပြီးကေ [[Four stars above Uruguay's football crest|Uruguay is allowed to wear 4 stars]].<ref>{{cite news |title=Olympic Football Tournament Paris 1924 |url=https://www.fifa.com/tournaments/mens/mensolympic/paris1924/match-center|access-date=1 October 2020 |agency=FIFA|archive-date=17 July 2021|archive-url=https://web.archive.org/web/20210717042750/https://www.fifa.com/tournaments/mens/mensolympic/paris1924/match-center|url-status=live}}</ref><ref>{{cite web |url=http://www.fourfourtwo.premiumtv.co.uk/page/BigRead/0,,11442~1034860,00.html |title=Uruguay 1930|archive-url=https://web.archive.org/web/20070715011817/http://www.fourfourtwo.premiumtv.co.uk/page/BigRead/0%2C%2C11442~1034860%2C00.html|archive-date=15 July 2007 |magazine=Four Four Two|url-status=dead}}</ref> အကြောင်းရင်းလည်းဖြစ်တေ။ === ဒုတိယကမ္ဘာစစ်မတိုင်ခင် ကမ္ဘာ့ဖလားတိ === [[File:Jules Rimet 1933.jpg|thumb|left|upright|FIFA president [[Jules Rimet]] စွာ [[FIFA#Six confederations and 211 national associations|confederations]] အား နိုင်ငံတကာ ဘောလုံးပြိုင်ပွဲကို ကြော်ငြာရန် စည်းရုံးခရေ]] အိုလံပစ်ဘောလုံးပြိုင်ပွဲတိ၏ အောင်မြင်မှုတိကြောင့် FIFA က [[List of Presidents of FIFA|President]] [[Jules Rimet]] ၏ မောင်းနှင်အားအဖြစ် အိုလံပစ်ပြိုင်ပွဲပြင်ပမာ သူ့ကိုယ်ပိုင်နိုင်ငံတကာပြိုင်ပွဲကို စတင်ကျင်းပဖို့ စတင်ကြည့်ရှုခပါရေ။ 1928 ခုနှစ် မေလ 28 ရက်နိမာ [[Amsterdam]] ဟိ ဖီဖာကွန်ဂရက်က ကမ္ဘာ့ချန်ပီယံပြိုင်ပွဲကိုကျင်းပရန် ဆုံးဖြတ်ခရေ။<ref>{{cite web |url=https://www.fifa.com/classicfootball/history/fifa/first-fifa-world-cup.html |archive-url=https://web.archive.org/web/20130329051339/http://www.fifa.com/classicfootball/history/fifa/first-fifa-world-cup.html |url-status=dead |archive-date=29 March 2013 |title=History of FIFA – The first FIFA World Cup |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> ဥရုဂွေးစွာ ဂုချိန်ခါ တရားဝင်ဘောလုံးကမ္ဘာ့ချန်ပီယံ နှစ်ကြိမ်နန့် ယင်းရို့၏ [[centenary]] ကို 1930 ခုနှစ်မာ ကျင်းပရန် FIFA မှ [[Uruguay]] ဧ့ အိမ်ရှင်နိုင်ငံအဖြစ် သတ်မှတ်ခရေ။ [[1930 FIFA World Cup|inaugural World Cup tournament]].<ref name="WC origin">{{Cite web |url=https://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_02e_fwc-origin_8816.pdf |title=FIFA World Cup Origin |website=FIFA |archive-url=https://web.archive.org/web/20100615195236/http://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_02e_fwc-origin_8816.pdf |archive-date=15 June 2010 |url-status=dead |access-date=1 October 2020}}</ref> ရွီးချယ်ထားရေ နိုင်ငံတိ၏ အမျိုးသားအသင်းအဖွဲ့တိကို အသင်းတသင်းစီလွှတ်ရန် ဖိတ်ကြားခကေလေ့ ပြိုင်ပွဲကျင်းပရာနီရာအဖြစ် ဥရုဂွေးဧ့ ရွီးချယ်မှုစွာ အထူးအနိန်နန့် [[Great Depression]] အလယ်မာ ဥရောပနိုင်ငံတိအတွက် အတ္တလန္တိတ်သမုဒ္ဒရာကိုဖြတ်ပနာ ရှည်လျားပြီး ဖေသာကုန်ကြီးကျများရေ ခရီးတခုဖြစ်တေ။ ယင်းအတွက်နန့် ပြိုင်ပွဲမစတင်မီ နှစ်လအလိုမာ ဇာဥရောပနိုင်ငံမှ အသင်းတသင်းကို စီလွှတ်ရန် ကတိပြုထားရေ။ Rimet စွာ နောက်ဆုံးမှာ [[Belgium national football team|Belgium]]၊ [[France national football team|France]]၊ [[Romania national football team|Romania]] နန့် [[Yugoslavia national football team|Yugoslavia]] မှ အဖွဲ့တိကို ခရီးစိုင်ပြုလုပ်ဖို့ သိမ်းသွင်းခရေ။<ref name="WC origin" /> In total, 13 nations took part: seven from South America, four from Europe, and two from North America.<ref>{{cite web |url=https://www.fifa.com/worldcup/archive/uruguay1930/awards/ |archive-url=https://web.archive.org/web/20180516082100/http://www.fifa.com/worldcup/archive/uruguay1930/awards/ |url-status=dead |archive-date=16 May 2018 |title=Final Tournament Standings |publisher=FIFA |work=1930 FIFA World Cup Uruguay |access-date=14 June 2014}}</ref> [[File:Estadio Centenario (vista aérea).jpg|thumb|[[Centenario Stadium|Estadio Centenario]]၊ 1930 ခုနှစ် [[Montevideo]]၊ ဥရုဂွေးမာ ပထမဆုံးကမ္ဘာ့ဖလားဗိုလ်လုပွဲကျင်းပရေနီရာ]] ပထမကမ္ဘာ့ဖလားပြိုင်ပွဲနှစ်ခုကို ၁၉၃၀ ခုနှစ် ဂျူလိုင်လ ၁၃ ရက်နိမာ တပြိုင်တည်းကျင်းပခပြီးကေ ပြင်သစ်နန့် [[United States men's national soccer team|United States]] ရို့က [[Mexico national football team|Mexico]] 4-1 နန့် Belgium 3-0 အသီးသီးအနိုင်ရဟိခကတ်တေ။ ကမ္ဘာ့ဖလားသမိုင်းတလျှောက် ပထမဆုံးဂိုးကို ပြင်သစ်နိုင်ငံမှ [[Lucien Laurent]] က သွင်းယူပါခခြင်းဖြစ်တေ။<ref>{{cite news |first=John F |last=Molinaro |title=The World Cup's 1st goal scorer |publisher=[[Canadian Broadcasting Corporation|CBC]] |url=http://www.cbc.ca/sports/soccer/the-world-cup-s-1st-goal-scorer-1.825335 |access-date=12 July 2014 |archive-url=https://web.archive.org/web/20150402100933/http://www.cbc.ca/sports/soccer/the-world-cup-s-1st-goal-scorer-1.825335 |archive-date=2 April 2015 |url-status=live}}</ref> စွာ [[1930 FIFA World Cup final|final]] မာ [[Uruguay national football team|Uruguay]] က [[Argentina national football team|Argentina]] 4-2 ဖြင့် အနိုင်ယူပြီး [[Montevideo]] မာ ပရိသတ် 93,000 ရှိနှစ်မှာ [[Montevideo]] ကို အနိုင်ယူကာ ပထမဆုံးအနိန်နန့်ရေ ကမ္ဘာ့ဖလားပြိုင်ပွဲကို ဆွတ်ခူးနိုင်ခရေ။ ကမ္ဘာ့ဖလားပြိုင်ပွဲ၊ FIFA နန့် [[International Olympic Committee|IOC]] ရို့စွာ အပျော်တမ်းကစပ်သမားတိ၏ အဆင့်အတန်းနန့် ပတ်သက်ပြီးကေ သဘောမတူကတ်ပါ၊၊ ဘောလုံးစွာ [[1932 Summer Olympics]].<ref name="SR">{{cite web |url=https://www.sports-reference.com/olympics/summer/1936/FTB/ |archive-url=https://web.archive.org/web/20200417041849/https://www.sports-reference.com/olympics/summer/1936/FTB/ |url-status=dead |archive-date=17 April 2020 |title=Football at the 1936 Berlin Summer Games |work=Sports Reference |access-date=7 October 2018}}</ref><ref>{{cite web |url=https://www.fifa.com/tournaments/archive/mensolympic/athens2004/news/newsid=92851/index.html |archive-url=https://web.archive.org/web/20140715174431/http://www.fifa.com/tournaments/archive/mensolympic/athens2004/news/newsid=92851/index.html |url-status=dead |archive-date=15 July 2014 |title=The Olympic Odyssey so far&nbsp;... (Part 1: 1908–1964) |work=FIFA.com |publisher=Fédération Internationale de Football Association |date=9 June 2004 |access-date=12 July 2014}}</ref> IOC နန့် FIFA ရို့၏ ကွဲပြားမှုတိကို ဖော်ထုတ်ပြီးကေ အိုလံပစ်ဘောလုံးစွာ [[Football at the 1936 Summer Olympics|1936 Summer Olympics]] မာ ပြန်ပနာရောက်ဟိလာခရေ်လည်း ဂုချိန်ခါ ပိုပြီးကေဂုဏ်သိက္ခာဟိရေ ကမ္ဘာ့ဖလားပြိုင်ပွဲဖြင့် လွှမ်းမိုးလားခီရေ။<ref name="SR" /> အစောပိုင်းကမ္ဘာ့ဖလားပြိုင်ပွဲတိမာ ကြုံတွိနိန်ရရေ ပြဿနာတိမာ နိုင်ငံတကာခရီးလားလာမှုနန့် စစ်ပွဲတိ၏ အခက်အခဲတိဖြစ်တေ။ [[1934 FIFA World Cup|1934 World Cup]] အတွက် တောင်အမေရိကအသင်းစိကေချေစွာ ဥရောပသို့လားရောက်ရန် ဆန္ဒဟိပြီးး [[Brazil national football team|Brazil]] နန့် [[Cuba national football team|Cuba]] လွဲပြီးကေ မြောက်နန့်တောင်အမေရိကနိုင်ငံတိအားလုံး [[1938 FIFA World Cup|1938]] ပြိုင်ပွဲကို သပိတ်မှောက်ခကတ်တေ။ ဘရာဇီးလ်စွာ တောင်အမေရိကအသင်း နှစ်သင်းစလုံးမာ ယှဥ်ပြိုင်ရေ တခုတည်းရေ အသင်းဖြစ်တေ။ [[Nazi Germany|Germany]] နန့် [[Brazil]] ရို့က အိမ်ရှင်အဖြစ် လက်ခံကျင်းပရန် ကြိုးပမ်းခဲ့ရေ 1942 နန့် 1946 ပြိုင်ပွဲတိ၊ <ref>{{cite web |url=http://www.cristal.com.pe/articulo/los-datos-mas-curiosos-de-la-fiesta-del-futbol-brasil-1950 |title=Los datos más curiosos de la Fiesta del Fútbol – Brasil 1950 |access-date=17 April 2012 |language=es |archive-url=https://web.archive.org/web/20120701133216/http://www.cristal.com.pe/articulo/los-datos-mas-curiosos-de-la-fiesta-del-futbol-brasil-1950 |archive-date=1 July 2012}}</ref> စွာ [[World War II]] ကြောင့် ဖျက်သိမ်း ခရပါရေ။<ref>{{cite web |last=Braswell |first=Sean |title=How Brazil Saved The World Cup In The Aftermatch Of World War II |publisher=NPR |date=11 June 2014 |url=https://www.npr.org/sections/parallels/2014/06/11/320727176/how-brazil-saved-the-world-cup-in-the-aftermath-of-world-war-ii |access-date=6 March 2022 |archive-url=https://web.archive.org/web/20150921132543/https://www.npr.org/sections/parallels/2014/06/11/320727176/how-brazil-saved-the-world-cup-in-the-aftermath-of-world-war-ii |archive-date=21 September 2015 |url-status=live}}</ref> === World Cups after World War II === [[File:Jogo no Estádio do Maracanã, antes da Copa do Mundo de 1950.tif|thumb|The opening game of the [[Maracanã Stadium]]၊ [[Rio de Janeiro]]၊ ဘရာဇီး၊ [[1950 FIFA World Cup]] မရောက်ခင်မာ]] [[Brazil]] မာကျင်းပရေ [[1950 FIFA World Cup|1950 World Cup]] စွာ ဗြိတိန်ဘောလုံးအသင်းတိမာ ပထမဆုံးပါဝင်ခရေ။ [[Scotland national football team|Scotland]]၊ [[England national football team|England]]၊ [[Wales national football team|Wales]] နန့် [[Northern Ireland national football team|Northern Ireland]] ရို့စွာ 1920 ခုနှစ်မာ FIFA က နုတ်ထွက်ခပြီး တစိတ်တစ်အာဒါးအားဖြင့် စစ်ဖြစ်ပွားနိန်ရေ နိုင်ငံတိကို ဆန့်ကျင်ရန် ဆန္ဒမဟိခြင်းကြောင့် တစိတ်တစ်အာဒါးနန့် ဘောလုံးအပေါ် နိုင်ငံခြားလွှမ်းမိုးမှုကို ဆန့်ကျင်ရေ ဆန္ဒပြမှုတခုအဖြစ် ပါဝင်ခရေ။<ref>{{cite news |url=https://www.bbc.co.uk/scotland/sportscotland/asportingnation/article/0001/index.shtml |title=Scotland and the 1950 World Cup |publisher=BBC |access-date=13 May 2007 |archive-url=https://web.archive.org/web/20081216135901/http://www.bbc.co.uk/scotland/sportscotland/asportingnation/article/0001/index.shtml |archive-date=16 December 2008 |url-status=live}}</ref> 4 သင်းဧ့နောက်ဆက်တွဲတိ ဖိတ်ကြားချက်။{{sfn|Glanville|2005}} ပြိုင်ပွဲစွာ အယင်ကမ္ဘာ့ဖလားနှစ်လုံးကို သပိတ်မှောက်ခရေ ၁၉၃၀ ချန်ပီယံ [[Uruguay national football team|Uruguay]] ဧ့ ပြန်လှာမှုကိုလည်း တွိမြင်ခရရေ။ "[[Uruguay v Brazil (1950 FIFA World Cup)|Maracanazo]]" (ပေါ်တူဂီ- ''Maracanaço'') <ref>{{cite news |url=http://sportsillustrated.cnn.com/2010/soccer/world-cup-2010/writers/jonathan_wilson/07/04/uruguay.history/index.html |publisher=CNN |title=Uruguay's 1950 World Cup triumph a testament to the spirit of garra |date=4 July 2010 | archive-url=https://web.archive.org/web/20100707110332/http://sportsillustrated.cnn.com/2010/soccer/world-cup-2010/writers/jonathan_wilson/07/04/uruguay.history/index.html | archive-date=7 July 2010 | url-status=dead}}</ref> ပွဲမာ အိမ်ရှင် ဘရာဇီးကို အနိုင်ရပြီးနောက် ဥရုဂွေးစွာ ပြိုင်ပွဲကို ထပ်မံအနိုင်ရဟိခရေ။ 1934 နန့် [[1978 FIFA World Cup|1978]] အကြားပြိုင်ပွဲတိမာ ပြိုင်ပွဲတစ်ခုကျမာ 16 သင်းပါဝင်ယှဥ်ပြိုင်ခကတ်တေ၊ 1938 ခုနှစ်မာ [[Austria national football team|Austria]] မှ [[Anschluss|absorbed]] မှ [[Anschluss|absorbed]] သို့ခြီစစ်ပွဲပြီးကေ [[Nazi Germany|Germany]] သို့ 15 သင်းပါဝင်ယှဥ်ပြိုင်ခပြီး [[Austria national football team|Austria]] နန့် [[Anschluss|absorbed]] မာ၊ စကော့တလန်နန့် [[Turkey national football team|Turkey]] ရို့ နုတ်ထွက်ခပြီး ပြိုင်ပွဲကို 13 သင်းဖြင့် ထွက်ခွာခရေ။{{sfn|Glanville|2005|p=45}} ပါဝင်ယှဥ်ပြိုင်ရေ နိုင်ငံအများစုကတော့ခါ ဥရောပနန့် တောင်အမေရိက က ဖြစ်ပြီးကေ မြောက်အမေရိက၊ အာဖရိက၊ အာသျှနန့် Oceania ရို့မှ လူနည်းစုချေတိ ဖြစ်တေ။ ဒေအသင်းတိစွာ များရေအားဖြင့် ဥရောပနန့် တောင်အမေရိကအသင်းတိက အလွယ်ချေ ယှုံးနိမ့်ခကတ်တေ။ 1982 ခုနှစ်မရောက်ခင်အထိ၊ ပထမအကျော့ကို ဥရောပနန့် တောင်အမေရိကပြင်ပမှ တခုတည်းသော အသင်းတိမာ- [[United States men's national soccer team|United States]]၊ 1930 ခုနှစ်မာ ဆီမီးဖိုင်နယ်သို့ တက်ရောက်နိုင်ခရေ။ [[Cuba national football team|Cuba]]၊ 1938 ကွာတားဖိုင်နယ်၊ [[North Korea national football team|North Korea]]၊ [[1966 FIFA World Cup|1966]] ဟိ ကွာတားဖိုင်နယ်သို့၊ နန့် [[Mexico national football team|Mexico]]၊ [[1970 FIFA World Cup|1970]] ကွာတားဖိုင်နယ်။ === အသင်း ၂၄ သင်းနှင့် ၃၂ သင်းအထိ တိုးချဲ့ခြင်း === [[File:FIFA World Cup 2010 Uruguay Ghana.jpg|thumb|Inside [[Soccer City]]၊ တောင်အာဖရိက၊ [[Johannesburg]] ဟိ [[2010 FIFA World Cup]]]] ပြိုင်ပွဲကို [[1982 FIFA World Cup|1982]]၊ {{sfn|Glanville|2005|p=238}} မာ ၃၂ သင်းအထိ တိုးချဲ့ခပြီးကေ [[1998 FIFA World Cup|1998]]၊ {{sfn|Glanville|2005|p=359}} မာ အာဖရိက၊ အာသျှနန့် မြောက်အမေရိကရို့မှ အသင်းတိ ထပ်မံပါဝင် ခွင့်ပြုခရေ။ ယင်းအချိန်မှစပြီးကေ၊ ဒေသိယ အသင်းတိစွာ ကွာတားဖိုင်နယ်သို့ ရောက်ဟိခကတ်သဖြင့် များစွာသော အောင်မြင်မှုတိ ရဟိခရေ- [[Mexico national football team|Mexico]]၊ [[1986 FIFA World Cup|1986]] မာ ကွာတားဖိုင်နယ်သို့ ရောက်ဟိခရေ။ [[Cameroon national football team|Cameroon]]၊ [[1990 FIFA World Cup|1990]] ဟိ ကွာတားဖိုင်နယ်သို့၊ [[South Korea national football team|South Korea]]၊ [[2002 FIFA World Cup|2002]] မာ စတုတ္ထနီရာမာ ရပ်တည်ခရေ။ [[Senegal national football team|Senegal]]၊ [[United States men's national soccer team|USA]] နန့်အတူ ၂၀၀၂ ခုနှစ်မာ ကွာတားဖိုင်နယ်သို့ နှစ်ဦးစလုံး၊ [[Ghana national football team|Ghana]]၊ 2010 ခုနှစ်မာ ကွာတားဖိုင်နယ်၊ [[Costa Rica national football team|Costa Rica]]၊ 2014 ခုနှစ် ကွာတားဖိုင်နယ်၊ [[Morocco national football team|Morocco]] နန့် 2022 ခုနှစ်မာ စတုတ္ထနီရာဖြင့် ပြီးဆုံးခရေ။ ဥရောပနန့် တောင်အမေရိကအသင်းတိစွာ 1994၊ 1998၊ 2006 နန့် 2018 ရို့မာ ကွာတားဖိုင်နယ်သို့ ဆက်ပနာလွှမ်းမိုးထားကာ ဥရောပ သို့မဟုတ် တောင်အမေရိကမှဖြစ်ပြီးကေ အဂုအချိန်အထိ ပြိုင်ပွဲအားလုံးဧ့ နောက်ဆုံးဆန်ခါတင်တိ ဖြစ်ခရေ။ အသင်း ၂၀၀ သော [[2002 FIFA World Cup]] အရည်အခြင်းစစ်အဆင့်သို့ ဝင်ရောက်ခရေ။ နိုင်ငံပေါင်း 198 စွာ [[2006 FIFA World Cup]] အတွက် အရည်အခြင်းပြည့်မီရန် ကြိုးပမ်းခကတ်တေ။ [[2010 FIFA World Cup]] အတွက် အရည်အခြင်းပြည့်မီရေ နိုင်ငံပေါင်း 204 နိုင်ငံမှ စံချိန်တင်ဝင်ရောက်ခပါရေ။<ref>{{cite web |url=https://www.fifa.com/tournaments/archive/worldcup/southafrica2010/news/newsid=122766/index.html |archive-url=https://web.archive.org/web/20140419065837/http://www.fifa.com/tournaments/archive/worldcup/southafrica2010/news/newsid=122766/index.html |url-status=dead |archive-date=19 April 2014 |title=Record number of 204 teams enter preliminary competition |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> === အသင်း ၄၈ သင်းအထိ တိုးချဲ့ခြင်း === 2013 ခုနှစ် အောက်တိုဘာလမာ၊ Sepp Blatter စွာ [[Caribbean Football Union]] ဧ့ ဒေသအား ကမ္ဘာ့ဖလားမာ ရာထူးနီရာတခု အာမခံချက်ပီးကြောင်း ပြောကြားခရေ။<ref>{{cite web |last=Whittaker |first=James |title=Caribbean pro league can work |url=http://www.compasscayman.com/caycompass/2013/10/23/Caribbean-pro-league-can-work/ |publisher=CompassCayman.com|access-date=28 October 2013 |location=Cayman Islands |date=23 October 2013|archive-url=https://web.archive.org/web/20131029200646/http://www.compasscayman.com/caycompass/2013/10/23/Caribbean-pro-league-can-work/|archive-date=29 October 2013|url-status=dead}}</ref> ဧ့ ''FIFA ဧ့ အပတ်စိုင် 25 October 2013 မာ အပတ်စိုင်'' Blatter က "နောက်ဆုံးမာတော့ခါ တကမ္ဘာလုံးကို ရှုဒေါင့်ကနိန် ကြည့်ရစွာ အားကစားကို ဗွေယူလိုပါရေ၊ အာဖရိကနန့် အာသျှနိုင်ငံအသင်းတိစွာ ဖီဖာကမ္ဘာ့ဖလားမာ ယင်းရို့နန့် ထိုက်တန်ရေ အနိန်အထားကို အသိအမှတ်ပြုခကတ်တေ ကမ္ဘာ့ဖလားမာ ဥရောပနန့် တောင်အမေရိက အဖွဲ့ချုပ်တိက ဆိုက်ကပ်ထားရေ နီရာအများစုကို တောင်းဆိုခြင်းမျိုး မဖြစ်နှိုင်ပါ၊၊ မဂ္ဂဇင်းထုတ်ဝီပြီးကေမာ ဖီဖာဥက္ကဋ္ဌရာထူးအတွက် Blatter ဧ့ပြိုင်ဘက် [[UEFA]] ဥက္ကဌ [[Michel Platini]] က သူစွာ ကမ္ဘာ့ဖလားပြိုင်ပွဲကို နိုင်ငံပေါင်း ၄၀ အထိ တိုးချဲ့ကျင်းပရန် ရည်ရွယ်ထားပြီးသား ပါဝင်သူအရွီအတွက်ကို ၈ဦးအထိ တိုးမြင့်လာစီရန် တုံ့ပြန်ခရေ။ ပလာတီနီက သူစွာ UEFA အတွက် နောက်ထပ် ဆိုက်ကပ်တခု၊ [[Asian Football Confederation]] နန့် [[Confederation of African Football]] နှစ်ခု၊ [[CONCACAF]] နန့် [[CONMEBOL]] ရို့ကြား နှစ်ခုနန့် [[Oceania Football Confederation]] အတွက် အာမခံချက်ဟိရေ နီရာတခုရို့ကို ခွဲဝီပီးဖို့ဟု ပလာတီနီက ပြောကြားခရေ။ ယင်းက [[ကမ္ဘာ့ဖလား]]စွာ ကောင်းဘီယက် 32 ယောက်မဟိရေတွက်ကြောင့် အသင်းတိ၏ အရည်အသွီးကို အခြီခံထားခြင်းမဟုတ်... ယကေလေ့ ယင်းစွာ ကောင်းရေ အပီးအယူတခုဖြစ်တေ။ ... နိုင်ငံရီးကိစ္စဖြစ်တေအတွက် အာဖရိကနိုင်ငံသားတိ ဇာကြောင့် နောက်ထပ်မဟိရလဲ။ 2016 ခုနှစ် အောက်တိုဘာလမာ ဖီဖာဥက္ကဋ္ဌ [[Gianni Infantino]] က 2026 ခုနှစ်မာ 48 သင်းကမ္ဘာ့ဖလားပြိုင်ပွဲအတွက် ယင်းဧ့ ထောက်ခံမှုကို ပြောကြားခပါရေ။<ref>[https://www.theguardian.com/football/2016/oct/03/world-cup-expand-48-teams-fifa-gianni-infantino-suggests World Cup could expand to 48 teams, Fifa's Gianni Infantino suggests] {{webarchive |url=https://web.archive.org/web/20161004005336/https://www.theguardian.com/football/2016/oct/03/world-cup-expand-48-teams-fifa-gianni-infantino-suggests |date=4 October 2016 }} – The Guardian, 3 October 2016</ref> 2017 ခုနှစ် ဂျန်နဝါရီလ 10 ရက်နိမာ FIFA မှ 2026 ကမ္ဘာ့ဖလားပြိုင်ပွဲမာ နောက်ဆုံးဆန်ခါတင် 48 သင်းပါဝင်ဖို့ဖြစ်ကြောင်း FIFA မှအတည်ပြုခရေ။<ref>{{cite news |url=http://www.spiegel.de/sport/fussball/fifa-beschliesst-fussball-wm-mit-48-mannschaften-a-1129295.html |title=Ab 2026: 48 Teams – Fifa vergrößert die WM |newspaper=Der Spiegel |date=10 January 2017 |publisher=SPIEGEL ONLINE |language=de |archive-url=https://web.archive.org/web/20170110124409/http://www.spiegel.de/sport/fussball/fifa-beschliesst-fussball-wm-mit-48-mannschaften-a-1129295.html |archive-date=10 January 2017 |url-status=live}}</ref> === ၂၀၁၅ ခုနှစ် FIFA အဂတိလိုက်စားမှုအမှု === {{Main|၂၀၁၅ ခုနှစ် FIFA အဂတိလိုက်စားမှုအမှု}} 2015 ခုနှစ် မေလမာ၊ ဂိမ်းတိစွာ ဖီဖာဂိမ်းတိအတွက် လာဘ်ပီးလာဘ်ယူမှု၊ ဝါမှုနန့် ငွီကြေးခဝါချမှု ယိုးစွပ်ချက်တိ၊ လာဘ်ပီးလာဘ်ယူမှု၊ လိမ်ညာမှုနန့် ငွီကြေးခဝါချမှုဆိုင်ရေ စွဲချက်တိနန့် ရာဇ၀တ်မှုတိကြောင့် ဂိမ်းတိ အထူးအမိုက်ဖုံး လွှမ်းလားခီရေ။ FIFA ဂိမ်းတိအတွက် <ref>{{cite news |last=No byline |date=3 December 2015 |title=The FIFA Investigation, Explained |url=https://www.nytimes.com/2015/12/04/sports/soccer/fifa-investigation.html |archive-url=https://ghostarchive.org/archive/20220102/https://www.nytimes.com/2015/12/04/sports/soccer/fifa-investigation.html |archive-date=2 January 2022 |url-access=limited |url-status=live |newspaper=New York Times |location=New York, NY, USA |access-date=3 December 2015}}{{cbignore}}</ref> စွာ စုစုပေါင်း $15 သန်းကျော် လာဘ်ဖေသာ 15 သိန်းကျော် ပီးဆောင်ခရေ။ မေလနှောင်းပိုင်းမာ၊ အမေရိကန်တရားရီးဌာနစွာ လူ ၁၄ ဦးအား ငွီကြေးခဝါချမှု ပူးပေါင်းကြံစည်မှုဖြင့် စွဲချက် ၄၇ မှုဖြင့် စွဲချက် ၄၇ ချက်ကို ထုတ်ပြန်ကြေညာခရေ။ အထူးအနိန်နန့် မေလ ၂၉ နန့် ဒီဇန်ဘာ ၃ ရက်ရို့မာ FIFA အရာဟိတဒါဇင်ကျော်ကို ထိုအချိန်ကစပနာ ဖမ်းဆီးခရေ။<ref>{{cite web |url=https://edition.cnn.com/2015/05/27/football/fifa-corruption-charges-justice-department/ |title=FIFA corruption probe targets 'World Cup of fraud,' IRS chief says |last1=McLaughlin |first1=Eliott C. |last2=Botelho |first2=Greg |date=28 May 2015 |website=CNN |publisher=Cable News Network. Turner Broadcasting System, Inc. |access-date=3 December 2015 |archive-url=https://web.archive.org/web/20150527160034/http://edition.cnn.com/2015/05/27/football/fifa-corruption-charges-justice-department/ |archive-date=27 May 2015 |url-status=live}}</ref> 2015 ခုနှစ် မေလကုန်မာ FIFA အရာဟိ ကိုးဦးနန့် အားကစားနန့် ရုပ်သံရွှင့်စျီးကွက်တိက အမှုဆောင်ငါးဦးကို အကျင့်ပျက်ခြစားမှုဖြင့် တရားစွဲဆိုထားပြီးသားဖြစ်တေ။ ယင်းချိန်မာ FIFA ဥက္ကဋ္ဌ Sepp Blatter စွာ 2016 ခုနှစ် ဖေဖဝါရီလမာ ရာထူးက နုတ်ထွက်ဖို့ဖြစ်ကြောင်း ကြေညာခရေ။<ref>{{cite news |url=https://www.bbc.com/sport/0/football/34991874 |title=Fifa crisis: US charges 16 more officials after earlier Zurich arrests |date=4 December 2015 |work=BBC News |archive-url=https://web.archive.org/web/20151203195200/https://www.bbc.com/sport/0/football/34991874 |archive-date=3 December 2015 |url-status=live}}</ref> 2015 ခုနှစ် ဂျုန်လ 4 ရက်နိမာ [[Chuck Blazer]] နန့် Swiss အာဏာပိုင်တိနန့် ပူးပေါင်းဆောင်ရွက်နီစဉ် သူနန့် FIFA ဧ့ ထိုအချိန်က အမှုဆောင်ကော်မတီအဖွဲ့ဝင်တိစွာ 1998 နန့် 2010 ကမ္ဘာ့ဖလားပြိုင်ပွဲတိကို မြှင့်တင်ဖို့အတွက် လာဘ်ထိုးခကြောင်း ဝန်ခံခရေ။<ref>{{cite web |url=https://www.telegraph.co.uk/sport/football/sepp-blatter/11647665/Sepp-Blatter-FBI-investigation-live.html |archive-url=https://ghostarchive.org/archive/20220110/https://www.telegraph.co.uk/sport/football/sepp-blatter/11647665/Sepp-Blatter-FBI-investigation-live.html |archive-date=10 January 2022 |url-access=subscription |url-status=live |title=Blazer: Bribes accepted for 1998 and 2010 World Cups – Telegraph |date=3 June 2015 |work=Telegraph.co.uk}}{{cbignore}}</ref> မှ ဂျုန်လ 1 ရက်နိအထိ အာဏာပိုင်တိပါးက အချက်အလက်တိကို ကွန်ပျူတာဖြင့် သိမ်းဆည်းခရေ။ [[Sepp Blatter]].<ref>[https://www.bbc.co.uk/news/world-europe-33088747 "Swiss police seize IT data from Fifa headquarters", ''The BBC'', 10 June 2015]. {{webarchive |url=https://web.archive.org/web/20150610194510/http://www.bbc.com/news/world-europe-33088747 |date=10 June 2015 }}. Retrieved 10 June 2015</ref> ဧ့ရုံးတိမာ ထိုနိမှာပင် FIFA စွာ [[2026 FIFA World Cup]] အတွက် 2018 နန့် 2022 ပြိုင်ပွဲတိကို ဆုချီးမြှင့်ခြင်းအတွက် [[2026 FIFA World Cup]] အတွက် လီလံဈီးလုပ်ငန်းစဉ်ကို ရွှိ့ဆိုင်းခပါရေ။ ယပြီးနောက် ထိုဟင့် ဒေဟင့် အတွင်းရီးမှူး [[Jérôme Valcke]] က "အခြီအနီကြောင့်၊ လက်ဟိအချိန်မာ လီလံဈီး လုပ်ငန်းစဉ်ကို စတင်ခြင်းစွာ ကောက်ကရမင်းကျဟု ကျွန်တော်ထင်ပါရေ။" <ref>{{cite news |url=https://www.bbc.co.uk/sport/football/33078284 |title=Fifa World Cup 2026 bidding process delayed |work=[[BBC Sport]] |date=10 June 2015 | access-date=10 June 2015 | archive-url=https://web.archive.org/web/20150610144829/http://www.bbc.com/sport/0/football/33078284 | archive-date=10 June 2015 | url-status=live}}</ref> 2015 ခုနှစ် အောက်တိုဘာလ 28 ရက်နိမာ Blatter နန့် FIFA ဒုတိယသမ္မတလောင်း Michel Platini ရို့စွာ သမ္မတရာထူးအတွက် အလားအလာဟိရေ သမ္မတလောင်းအဖြစ် ရက်ပေါင်း 90 ဆိုင်းငံ့ထား ခပါရေ။ နှစ်ဦးစလုံးစွာ သတင်း မီဒီယာသို့ ဖော်ထုတ်ပြောဆိုမှုတိမာ ယင်းရို့၏ အပြစ်ကင်းစင်မှုကို ထိန်းသိမ်းထားရေ။<ref>{{cite web |url=http://www.cbc.ca/sports/soccer/blatter-platini-suspended-1.3262043 |title=Sepp Blatter, Michel Platini handed 90-day FIFA suspensions |last=Associated Press |date=8 October 2015 |website=CBC Sports |publisher=CBC/Radio Canada |access-date=3 December 2015 |archive-url=https://web.archive.org/web/20151009040617/http://www.cbc.ca/sports/soccer/blatter-platini-suspended-1.3262043 |archive-date=9 October 2015 |url-status=live}}</ref> 2015 ခုနှစ် ဒီဇန်ဘာလ 3 ရက်နိမာ FIFA မှ ဒုဥက္ကဌ နှစ်ဦးအား လာဘ်ပီးလာဘ်ယူမှုနန့် Zurich ဟိုရေမာ မေလအထဲ ဖမ်းဆီးခံခရရေ FIFA အရာဟိ 7 ဦးအား လာဘ်ပီးလာဘ်ယူမှုဖြင့် ဖမ်းဆီးခြင်းခံ ခရပါရေ။<ref>{{cite news |last=Ruiz |first=Rebecca |date=3 December 2015 |title=FIFA Corruption: Top Officials Arrested at Zurich Hotel |url=https://www.nytimes.com/2015/12/03/sports/fifa-scandal-arrests-in-switzerland.html |archive-url=https://ghostarchive.org/archive/20220102/https://www.nytimes.com/2015/12/03/sports/fifa-scandal-arrests-in-switzerland.html |archive-date=2 January 2022 |url-access=limited |url-status=live |newspaper=New York Times |location=New York, USA |access-date=3 December 2015}}{{cbignore}}</ref> အမေရိကန်တရားရီးဌာနက နောက်ထပ် စွဲချက် 16 ခုကို ထိုနိမာ ထုတ်ပြန်ကြေညာခပါရေ။<ref>{{cite web |url=https://www.bbc.com/sport/0/football/34991874 |title=Fifa crisis: US charges 16 more officials after earlier Zurich arrests |last=no byline |date=3 December 2015 |website=BBC Sport |publisher=BBC |access-date=3 December 2015 |archive-url=https://web.archive.org/web/20151203195200/https://www.bbc.com/sport/0/football/34991874 |archive-date=3 December 2015 |url-status=live}}</ref> === နှစ်နှစ်တစ်ကြိမ် ကမ္ဘာ့ဖလား အဆိုပြုချက် === နှစ်နှစ်တခေါက် ကမ္ဘာ့ဖလားအစီအစိုင်ကို 2021 ခုနှစ် မေလ 21 ရက်နိမာကျင်းပရေ 71st [[FIFA Congress]] မာ [[Saudi Arabian Football Federation]]က ပထမဆုံးအဆိုပြုခပြီး Arsenal မန်နီဂျာဟောင်း [[Arsène Wenger]] နန့် အာဖရိကနန့် အာသျှဟိ နိုင်ငံဆိုင်ရေ အဖွဲ့ချုပ်တိက ထင်ရှားစွာပံ့ပိုးပီးခပါရေ။<ref>{{cite news |title=Africa backs two-yearly World Cup despite biennial Nations Cup |url=https://www.bbc.co.uk/sport/africa/57873547 |access-date=23 January 2023 |publisher=BBC |archive-date=23 January 2023 |archive-url=https://web.archive.org/web/20230123014053/https://www.bbc.co.uk/sport/africa/57873547 |url-status=live}}</ref> UEFA နန့် CONMEBOL ပိုင်ယှောင် Continental confederations တိစွာ အစီအစိုင်<ref>{{Cite web |date=23 September 2021 |title=EU opposes biennial World Cup |url=https://www.politico.eu/article/eu-opposes-fifa-world-cup-two-year-plan/|access-date=27 October 2021 |website=POLITICO |language=en-US|archive-url=https://web.archive.org/web/20210923175302/https://www.politico.eu/article/eu-opposes-fifa-world-cup-two-year-plan/|archive-date=23 September 2021|url-status=live}}</ref><ref>{{Cite news |date=10 September 2021 |title=South America comes out against idea of biennial World Cup |language=en |work=Reuters |url=https://www.reuters.com/lifestyle/sports/south-america-comes-out-against-idea-biennial-world-cup-2021-09-10/|access-date=27 October 2021|archive-url=https://web.archive.org/web/20211027031109/https://www.reuters.com/lifestyle/sports/south-america-comes-out-against-idea-biennial-world-cup-2021-09-10/|archive-date=27 October 2021|url-status=live}}</ref> မာပါဝင်ခြင်းမဟိရေ်လည်း၊ စုစုပေါင်း၊ FIFA ဧ့အသင်းဝင်အသင်းပေါင်း 210 မာ 166 က အကြံဥာဏ်ပီးထားရေ။<ref>{{cite news |title=Four South Asian nations back FIFA's biennial World Cup push |url=https://www.reuters.com/lifestyle/sports/four-south-asian-nations-back-fifas-biennial-world-cup-push-2021-09-06/ |access-date=23 January 2023 |work=Reuters |archive-date=23 January 2023 |archive-url=https://web.archive.org/web/20230123014049/https://www.reuters.com/lifestyle/sports/four-south-asian-nations-back-fifas-biennial-world-cup-push-2021-09-06/ |url-status=live}}</ref> === အခြား FIFA ပြိုင်ပွဲတိ=== [[2015 FIFA Women's World Cup|2015 Women's World Cup]] ပွဲစဉ်ကို လက်ခံကျင်းပနီရေ [[File:Round of 16 Canada vs Switzerland (18852958960).jpg|thumb|[[BC Place]]]] [[Women's association football|women's football]]၊ [[FIFA Women's World Cup]] အတွက် ညီမျှရေပြိုင်ပွဲကို [[FIFA Women's World Cup 1991|1991]] မာ ပထမဆုံးကျင်းပခပါရေ။<ref>{{cite web |url=https://www.fifa.com/womensworldcup/index.html |archive-url=https://web.archive.org/web/20080703220738/http://www.fifa.com/womensworldcup/index.html |url-status=dead |archive-date=3 July 2008 |title=FIFA Women's World Cup |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=22 December 2007}}</ref> အမျိုးသမီးပြိုင်ပွဲစွာ အမျိုးသားတိထက် အရွယ်အစားနန့် ပရိုဖိုင်းပိုသိမ့်ကေလည်း ကြီးထွားလာပါရေ။ 2007 ပြိုင်ပွဲအတွက် ဝင်ရောက်ယှဥ်ပြိုင်သူဦးရေ 120 ဟိပြီးး 1991 ခုနှစ်ထက် နှစ်ဆပိုပြီးကေများရေ။<ref>[http://www.chinapost.com.tw/editorial/2010/06/30/262694/we-are.htm "We Are the World ... Cup"] {{webarchive|url=https://web.archive.org/web/20170909005900/http://www.chinapost.com.tw/editorial/2010/06/30/262694/we-are.htm |date=9 September 2017}}. China Post. Retrieved 8 September 2017</ref> အမျိုးသားဘောလုံးပြိုင်ပွဲကို 1896 နန့် 1932 လွဲပြီးကေ [[Summer Olympic Games]] တိုင်းမာ ထည့်သွင်းထားပါရေ။ အရာအားကစားတိနန့်မတူဘဲ၊ [[Football at the Summer Olympics|football tournament at the Olympics]] စွာ ထိပ်တန်းအဆင့်ပြိုင်ပွဲမဟုတ်ရေအပြင် 1992 ခုနှစ်မှစပြီးကေ အသင်းတသင်းစီနန့် အသက် 23 နှစ်အောက်ပြိုင်ပွဲကို အသက်ပိုကစပ်သမား 3 ဦးကို ခွင့်ပြုခရေ။[[Football at the Summer Olympics|football tournament at the Olympics]] စွာ အမျိုးသမီးဘောလုံးပြိုင်ပွဲကို ပြုလုပ်ခရေ။ [[FIFA Confederations Cup]] စွာ လာဖို့ကမ္ဘာ့ဖလားပြိုင်ပွဲအတွက် ၀တ်စားဆင်ယင် လိ့ကျင့်မှုအဖြစ် ကမ္ဘာ့ဖလားအိမ်ရှင်နိုင်ငံ(တိ)မာ ကမ္ဘာ့ဖလားမကျင်းပခင် တနှစ်အလိုမာ ကျင်းပရေ ပြိုင်ပွဲတခုဖြစ်တေ။ ယင်းကို FIFA ကွန်ဖက်ဒရီးရှင်းချန်ပီယံ ခြောက်ခုစီမှ ဖီဖာကမ္ဘာ့ဖလားချန်ပီယံနန့် အိမ်ရှင်နိုင်ငံရို့နန့်အတူ ယှဥ်ပြိုင်ဖို့ဖြစ်တေ။<ref>{{cite web |url=https://www.fifa.com/confederationcup/index.html |archive-url=https://web.archive.org/web/20070609165833/http://www.fifa.com/confederationcup/index.html |url-status=dead |archive-date=9 June 2007 |title=FIFA Confederations Cup |work=FIFA.com |access-date=22 December 2007 |publisher=Fédération Internationale de Football Association}}</ref> ပထမအကြိမ်ထုတ်ဝီခြင်းကို [[1992 FIFA Confederations Cup|1992]] မာကျင်းပခပြီးကေ နောက်ဆုံးထုတ်ဝီမှုကို [[2017 FIFA Confederations Cup|2017]] မာ ကစားခပါရေ။ 2019 ခုနှစ် မာ့ခ်ျလမာ၊ FIFA မှ [[FIFA Club World Cup]] ကို 2021 ခုနှစ်မာ တိုးချဲ့လာမှုကြောင့် ပြိုင်ပွဲစွာ အသက်ဝင်ဖို့ရာမဟုတ်ကြောင်း အတည်ပြုခရေ။<ref>{{cite news |url=https://www.fifa.com/about-fifa/who-we-are/news/fifa-council-votes-for-the-introduction-of-a-revamped-fifa-club-world-cup |title=FIFA Council votes for the introduction of a revamped FIFA Club World Cup |website=FIFA.com |date=15 March 2019 |access-date=17 June 2019 |archive-date=16 July 2019 |archive-url=https://web.archive.org/web/20190716174909/https://www.fifa.com/about-fifa/who-we-are/news/fifa-council-votes-for-the-introduction-of-a-revamped-fifa-club-world-cup |url-status=live}}</ref> ဖီဖာစွာ လူငယ်ဘောလုံးပြိုင်ပွဲတိ ([[FIFA U-20 World Cup]]၊ [[FIFA U-17 World Cup]]၊ [[FIFA U-20 Women's World Cup]]၊ [[FIFA U-17 Women's World Cup]])၊ ကလပ်ဘောလုံး ([[FIFA Club World Cup]]၊ [[FIFA Women's Club World Cup]] ([[2028]]WKTOKENKENKENKENWKEND8)၊ နန့် [[futsal]] ([[FIFA Futsal World Cup]]၊ [[FIFA Futsal Women's World Cup]]) နန့် [[beach soccer]] ([[FIFA Beach Soccer World Cup]]) ပိုင်ယှောင် ဘောလုံးမျိုးကွဲတိ စွာ အမျိုးသမီးဗားရှင်းမပါဝင်ပါ။ FIFA U-20 အမျိုးသမီးကမ္ဘာ့ဖလားပြိုင်ပွဲကို အမျိုးသမီးကမ္ဘာ့ဖလားမစခင် တနှစ်အပါအဝင် နှစ်စိုင်နှစ်တိုင်း ကျင်းပပါရေ။ ပြိုင်ပွဲနှစ်ခုစလုံးကို တခေါက်တည်း လီလံဈီး လုပ်ငန်းစဉ် ၃ ကြိမ်ဖြင့် ဆုချီးမြှင့်ခပြီးကေ U-20 ပြိုင်ပွဲစွာ တခေါက်စီမာ ကြီးမားရေပြိုင်ပွဲအတွက် ၀တ်စားဆင်ယင်မှု အစမ်းလီ့ကျင့်မှုအဖြစ် ([[2010 FIFA U-20 Women's World Cup|2010]]၊ [[2014 FIFA U-20 Women's World Cup|2014]] နန့် [[2018 FIFA U-20 Women's World Cup|2018]]) <ref>[https://www.cbc.ca/m/sports/soccer/fifau20/fifa-women-s-world-cup-next-up-for-canada-in-2015-1.2745557 "FIFA Women's World Cup next up for Canada in 2015"]. {{webarchive |url=https://web.archive.org/web/20200916193432/https://www.cbc.ca/sports/soccer/fifau20/fifa-women-s-world-cup-next-up-for-canada-in-2015-1.2745557 |date=16 September 2020 }}. CBC Sports. Retrieved 8 September 2017</ref> == ဆုဖလား == {{Main|FIFA World Cup Trophy}} {{multiple image |align = |total_width = 270 |image1 = FIFA World Cup Trophy (Ank Kumar, Infosys Limited) 04.jpg |caption1 = The current trophy, first awarded in 1974 |image2 = Jules rimet trophy at preston museum.jpg |caption2 = The Jules Rimet trophy, awarded from 1930 to 1970 }} [[File:Maradona-Mundial 86 con la copa.JPG|thumb|180px|Diego Maradona with the current trophy in 1986]] 1930 မှ 1970 ခုနှစ်အထိ၊ ''[[Jules Rimet Trophy]]'' ကို ကမ္ဘာ့ဖလားချန်ပီယံအသင်းအား ချီးမြှင့်ခရေ။ ယင်းအား မူလက ''World Cup'' သို့မဟုတ် ''Coupe du Monde'' ဟုခေါ် ခကေလေ့ 1946 ခုနှစ်မာ ပထမဆုံးပြိုင်ပွဲကို စတင်ကျင်းပခရေ FIFA ဥက္ကဋ္ဌ [[Jules Rimet]] ပြီးကေ နာမည်ပြောင်းခရေ။ [[1970 FIFA World Cup|1970]] မာ၊ ပြိုင်ပွဲမာ [[Brazil national football team|Brazil]] ဧ့ တတိယမြောက်အောင်ပွဲစွာ ယင်းရို့အား ဆုဖလားကို ထာဝရထိန်းသိမ်းထားနိုင်စီခရေ။ ယကေလေ့သော့ ဖလားကို 1983 ခုနှစ်မာ ခိုးယူခံခရပြီး သခိုးတိ၏ အရည်ပျော်လား ခပုံရရေ။<ref>{{cite web |url=https://www.fifa.com/classicfootball/history/fifa-world-cup/jules-rimet-cup.html |archive-url=https://web.archive.org/web/20130329051215/http://www.fifa.com/classicfootball/history/fifa-world-cup/jules-rimet-cup.html |url-status=dead |archive-date=29 March 2013 |title=Jules Rimet Cup |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> 1970 ခုနှစ်နောက်ပိုင်းမာ FIFA World Cup Trophy ဟုလူသိများရေ ဆုဖလားအသစ်ကို ဒီဇိုင်းထုတ်ခရေ။ နိုင်ငံပေါင်း ခနစ်နိုင်ငံမှ ရောက်ဟိလာရေ FIFA မှ တတ်ကျွမ်းသူတိစွာ တင်ပြထားရေ မော်ဒယ် ၅၃ ခုကို အကဲဖြတ်ကာ နောက်ဆုံးမှာ အီတလီ ဒီဇိုင်နာ [[Silvio Gazzaniga]] ဧ့ လက်ရာကို ရွီးချယ်ခရေ။ ဆုဖလားအသစ်စွာ {{convert|36|cm|in|1|abbr=on}} မြင့်မားပြီး၊ အစိုင်အခဲ 18 [[carat (purity)|carat]] (75%) ရွှီဖြင့်ပြုလုပ်ထားပြီးသား အလီးချိန် {{Convert|6.175|kg|1|abbr=on}}.<ref name="Trophy">{{cite news |title=FIFA World Cup Trophy |url=https://www.fifa.com/about-fifa/marketing/brand/trophy.html |archive-url=https://web.archive.org/web/20150601013627/http://www.fifa.com/about-fifa/marketing/brand/trophy.html |url-status=dead |archive-date=1 June 2015 |agency=FIFA.com |date=24 June 2018}}</ref> အောက်ခြီမာ [[1974 FIFA World Cup|1974]] မှစတင်ပနာ ဖီဖာကမ္ဘာ့ဖလားအနိုင်ရသူတိုင်းဧ့နာမည်ကို ထွင်းထုထားရေနှစ်နန့် ဖလားဧ့အောက်ခြီမာ တန်ဖိုးကြီး [[malachite]] အလွှာနှစ်ထပ်ပါဟိရေ။<ref name="Trophy" /> The description of the trophy by Gazzaniga was: "The lines spring out from the base, rising in spirals, stretching out to receive the world. From the remarkable dynamic tensions of the compact body of the sculpture rise the figures of two athletes at the stirring moment of victory."<ref>{{cite web |url=https://www.fifa.com/classicfootball/history/fifa-world-cup/trophy.html |archive-url=https://web.archive.org/web/20130329051244/http://www.fifa.com/classicfootball/history/fifa-world-cup/trophy.html |url-status=dead |archive-date=29 March 2013 |title=FIFA World Cup Trophy |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> ဒေဆုဖလားအသစ်စွာ အနိုင်ရရေနိုင်ငံအား အပြီးအပိုင်ချီးမြှင့်ခြင်းမဟုတ်။ ကမ္ဘာ့ဖလားဆုရှင်တိစွာ ပွဲပြီးယင့်အချိန်အထိ အောင်ပွဲခံလောက်ရုံရာ ဆုဖလားကို ဆက်ပနာထိန်းသိမ်းထားနှိုင်ရေ။ ယင်းရို့စွာ နောက်ပိုင်းမာ နနောင်းရေ ရွှီအစစ်မဟုတ်ဘဲ မူရင်းရွှီဖြင့်ပြုလုပ်ထားရေ ပုံစံတူကို ချီးမြှင့်ခြင်း ခံရရေ။<ref>{{cite web |url=https://www.fifa.com/aboutfifa/marketingtv/marketing/fifaassets/trophy.html |title=FIFA Assets – Trophy |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=19 November 2007 |url-status=dead |archive-url=https://web.archive.org/web/20071104165903/http://www.fifa.com/aboutfifa/marketingtv/marketing/fifaassets/trophy.html <!-- Bot retrieved archive --> |archive-date=4 November 2007}}</ref> အသင်း၃သင်းက အဖွဲ့ဝင်တိအားလုံး (ကစပ်သမားတိ၊ နည်းပြတိနန့် မန်နီဂျာတိ) စွာ ကမ္ဘာ့ဖလားဆုဖလားဧ့ အဆောင်အယောင်ဖြင့် ဆုတံဆိပ်တိရ ဟိဖို့ဖြစ်တေ။ အနိုင်ရဟိသူ (ရွှီ)၊ ဒုတိယဆု (ဖေသာ) နန့် တတိယဆု (ကြီးတံဆိပ်)။ [[2002 FIFA World Cup|2002 edition]] မာ အိမ်ရှင် [[South Korea national football team|South Korea]] အား စတုတ္ထဆုတံဆိပ်တိ ချီးမြှင့်ခရေ။ 1978 ပြိုင်ပွဲမရောက်ခင်မာ ဗိုလ်လုပွဲအပြီးမာ ကွင်းအထဲမှ ကစပ်သမား 11 ဦးကိုရာ ဆုတံဆိပ်တိ ပီးအပ်ခပြီးကေ တတိယဆုရဟိခရေ။ 2007 ခုနှစ် နိုဗန်ဘာလမာ ဖီဖာမှ 1930 ခုနှစ်မှ 1974 ခုနှစ်အထဲ ကမ္ဘာ့ဖလားရခရေ အသင်းတိ၏ အဖွဲ့ဝင်အားလုံးကို ဆုတံဆိပ်တိကို နောက်ကြောင်းပြန်လှည့်ပနာ ချီးမြှင့်ကြောင်း ကြေညာခရေ။<ref name="espnheroes">{{cite news |url=http://soccernet.espn.go.com/news/story?id=484715&cc=4716 |title=122 forgotten heroes get World Cup medals |work=ESPNSoccernet.com |publisher=[[ESPN]] |date=25 November 2007 |access-date=10 December 2009 |archive-date=20 October 2012 |archive-url=https://web.archive.org/web/20121020074058/http://soccernet.espn.go.com/news/story?id=484715&cc=4716 |url-status=dead}}</ref><ref>{{cite news |url=https://news.bbc.co.uk/sport2/hi/football/8093891.stm |title=World Cup 1966 winners honoured |work=BBC Sport |date=10 June 2009 |archive-url=https://web.archive.org/web/20090612032102/http://news.bbc.co.uk/sport2/hi/football/8093891.stm |archive-date=12 June 2009 |url-status=live}}</ref><ref>{{cite news |url=https://www.mirror.co.uk/news/top-stories/2009/06/11/greavsie-gets-66-medal-115875-21431367/ |title=Jimmy Greaves finally gets his 1966 World Cup medal |work=Mirror.co.uk |publisher=MGN |archive-url=https://web.archive.org/web/20090614074134/https://www.mirror.co.uk/news/top-stories/2009/06/11/greavsie-gets-66-medal-115875-21431367/ |archive-date=14 June 2009 |url-status=live}}</ref> 2006 ခုနှစ်မှစတင်ပနာ ပြိုင်ပွဲမာအနိုင်ရဟိသူတိစွာ [[FIFA Champions Badge]] ကို ဝတ်ဆင်ခွင့် ချီးမြှင့်ခံရယား နောက်ပြိုင်ပွဲမာ အနိုင်ရသူကို ဆုံးဖြတ်ယင့်အချိန်အထိ <ref>{{cite web |url=https://www.fifa.com/news/first-fifa-world-champions-badge-presented-italy-868119|archive-url=https://web.archive.org/web/20191222150939/https://www.fifa.com/news/first-fifa-world-champions-badge-presented-italy-868119|url-status=dead|archive-date=22 December 2019 |title=First 'FIFA World Champions Badge' presented to Italy |website=[[FIFA]] |date=2 September 2008|access-date=22 December 2019}}</ref> == ပုံစံ == {{Update|date=May 2025|reason=Tournament format has been changed}} === အရည်အချင်း === {{Main|FIFA World Cup qualifiers}} [[1934 FIFA World Cup|1934]] မာ ဒုတိယအကြိမ်ကမ္ဘာ့ဖလားပြိုင်ပွဲကျင်းပပြီးကပင်၊ နောက်ဆုံးပြိုင်ပွဲအတွက် ကွင်းကိုပါးလွှာစီဖို့ အတွက် ခြီစစ်ပွဲပြိုင်ပွဲတိကို ကျင်းပခရေ။<ref>{{cite web |url=https://www.fifa.com/worldcup/preliminarydraw/news/newsid=576440.html |archive-url=https://web.archive.org/web/20071118182153/http://www.fifa.com/worldcup/preliminarydraw/news/newsid=576440.html |url-status=dead |archive-date=18 November 2007 |title=FIFA World Cup qualifying: Treasure-trove of the weird and wonderful |work=FIFA |access-date=23 December 2007}}</ref> ယင်းရို့ကို FIFA ဇုန်ခြောက်ခု ([[Confederation of African Football|Africa]]၊ [[Asian Football Confederation|Asia]]၊ [[CONCACAF|North and Central America and Caribbean]]၊ WKTOKENKENK7WKEND၊ [[UEFA|Europe]])၊ ယင်းရို့၏သက်ဆိုင်ရေ အသင်းချုပ်တိက ကြီးကြပ်ရေ။ ပြိုင်ပွဲတစ်ခုကျအတွက်၊ ယေဘုယျအနိန်နန့် ကွန်ဖက်ဒရီးရှင်းအသင်းတိ၏ အင်အားအပေါ်အခြီခံပနာ ဇုန်တစ်ခုကျအတွက် ချီးမြှင့်ဖို့ နီရာအရွီအတွက်ကို ဖီဖာက ဆုံးဖြတ်ရေ။ အရည်အခြင်းစစ် လုပ်ငန်းစဉ်စွာ နောက်ဆုံးပြိုင်ပွဲမရောက်ခင် သုံးနှစ်နီးပါးအစောဆုံး စတင်နှိုင်ပြီးကေ နှစ်နှစ်စွာကာလအထိ ကြာမြင့်နှိုင်ရေ။ အရည်အခြင်းစစ်ပြိုင်ပွဲတိ၏ ပုံစံတိစွာ အဖွဲ့ချုပ်တိကြားမာ ကွဲပြားရေ။ အများအားဖြင့်၊ [[play-off]]s ဆုရဟိသူတိကို နီရာတခု သို့မဟုတ် နှစ်ခု ချီးမြှင့်ရေ။ ဥပမာအနိန်နန့်၊ သမုဒ္ဒရာပိုင်းဇုန်က အနိုင်ရဟိသူနန့် အာသျှဇုန်မှ ပဉ္စမနီရာမှ အသင်းရို့စွာ [[2010 FIFA World Cup|2010 World Cup]] မာ play-off မာ ပါဝင်ခရေ။<ref>{{cite news |url=http://soccernet.espn.go.com/print?id=468907&type=story&cc= |title=2010 World Cup Qualifying |work=ESPNSoccernet.com |publisher=ESPN |date=26 November 2009 |access-date=23 December 2009 |url-status=dead |archive-url=https://web.archive.org/web/20081216151218/http://soccernet.espn.go.com/print?id=468907&type=story&cc= |archive-date=16 December 2008}}</ref> [[1938 FIFA World Cup|1938 World Cup]] မှစတင်ပနာ အိမ်ရှင်နိုင်ငံတိစွာ နောက်ဆုံးပြိုင်ပွဲသို့ အလိုအလျောက် အရည်အခြင်းစစ်ကို ရဟိကတ်တေ။ ယင့်ချင့်အခွင့်အရီးကို 1938 နန့် 2002 ခုနှစ်ကြားမာ ချန်ပီယံတိကို ပီးအပ်ထားကေလေ့ အယင်ချန်ပီယံတိစွာ ဖီဖာကမ္ဘာ့ဖလားပြိုင်ပွဲဧ့ နောက်ဆက်တွဲပြိုင်ပွဲတိမာ ယှဥ်ပြိုင်နိုင်စွမ်းမဟိရေ စွမ်းဆောင်ရည်တိဟိရေကြောင့် ချန်ပီယံတိကို [[2006 FIFA World Cup]] မှ နုတ်ထွက်ခရေ။ [[Brazil national football team|Brazil]]၊ [[2002 FIFA World Cup|2002]] မာ အနိုင်ရသူတိစွာ ခြီစစ်ပွဲတိကစားရေ ပထမဆုံးရေ ချန်ပီယံတိဖြစ်တေ။<ref>{{cite web |url=https://www.fifa.com/mm/document/fifafacts/mencompwc/51/97/75/fs-201_19a_fwc-prel-history.pdf |title=History of the FIFA World Cup Preliminary Competition (by year) |work=FIFA.com |publisher=Fédération Internationale de Football Association |url-status=dead |archive-url=https://web.archive.org/web/20100614212731/http://www.fifa.com/mm/document/fifafacts/mencompwc/51/97/75/fs-201_19a_fwc-prel-history.pdf |archive-date=14 June 2010}}</ref> === နောက်ဆုံးပြိုင်ပွဲ === {{For|the various formats used in previous tournaments|History of the FIFA World Cup#Evolution of the format}} ၁၉၉၈ ခုနှစ်နောက်ပိုင်း နောက်ဆုံးပြိုင်ပွဲပုံစံမာ အိမ်ရှင်နိုင်ငံအဖြစ် တလတာ ကာလအထဲ နိုင်ငံပေါင်း ၃၂ သင်း ပါဝင်ယှဥ်ပြိုင်ခရေ။ အဆင့်နှစ်ထပ် ဟိရေ- အုပ်စုအဆင့်၊ နောက်ကောက်ကျရေအဆင့်။<ref name="FIFAformat">{{cite web |url=https://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_04e_fwc_formats_slots_8821.pdf |archive-url=https://web.archive.org/web/20080227032244/http://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_04e_fwc_formats_slots_8821.pdf |url-status=dead |archive-date=27 February 2008 |title=Formats of the FIFA World Cup final competitions 1930–2010 |work=FIFA.com |access-date=1 January 2008 |publisher=Fédération Internationale de Football Association}}</ref> အုပ်စုအဆင့်မာ လေးသင်းက ၈ သင်းစီ ယှဥ်ပြိုင်ကတ်တေ။ အိမ်ရှင်တိအပါအဝင် ၈သင်းကို [[FIFA World Rankings]] ပေါ်အခြီခံပနာ ဖော်မြူလာကိုအသုံးပြုကာ ရွီးချယ်ထားရေ အရာမျိုးစိ အသင်းတိနန့် တအောင့်လောက်က ကမ္ဘာ့ဖလားပြိုင်ပွဲတိမာ တင်ဆက်မှုတိပြုလုပ်ပနာ သီးသန့်အုပ်စုတိသို့ ရီးဆွဲခရေ။<ref>{{cite web |url=https://www.fifa.com/mm/document/fifafacts/mencompwc/82/40/89/fs-201_12a_fwc-seededteams.pdf |archive-url=https://web.archive.org/web/20100215190232/http://www.fifa.com/mm/document/fifafacts/mencompwc/82/40/89/fs-201_12a_fwc-seededteams.pdf |url-status=dead |archive-date=15 February 2010 |title=FIFA World Cup: seeded teams 1930–2010 |publisher=Fédération Internationale de Football Association |work=FIFA.com |access-date=12 May 2014}}</ref> အရာအသင်းတိကို မတူညီရေ "အိုးတိ" မာ သတ်မှတ်ထားပြီးသား များရေအားဖြင့် ပထဝီဝင်စံနှုန်းတိအပေါ်အခြီခံပနာ အိုးတစ်ခုကျဟိအသင်းတိကို အုပ်စု ၈စုသို့ ကျပန်းယတ် ကတ်တေ။ [[1998 FIFA World Cup|1998]] မှစတင်ပနာ အုပ်စုနှစ်စုထက်ပိုရေ ဥရောပအသင်းတိ သို့မဟုတ် အရာအသင်းအဖွဲ့တိက တသင်းထက်ပိုရေအသင်းမပါဝင်ကြောင်းသေချာစီဖို့ မဲခွဲရာမာကန့်သတ်ချက်တိကိုအသုံးပြုခရေ။<ref>Previously, due to there being fewer finals places and a bigger ratio of European finalists, there had been several occasions where three European teams were in a single group, for example, 1986 (West Germany, Scotland, and Denmark), 1990 (Italy, Czechoslovakia, and Austria), and 1994 (Italy, Republic of Ireland, and Norway). ({{cite web |url=https://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_10e-fwcdraw-history_52560.pdf |archive-url=https://web.archive.org/web/20091123034518/http://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_10e-fwcdraw-history_52560.pdf |url-status=dead |archive-date=23 November 2009 |title=History of the World Cup Final Draw |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 May 2014}})</ref> အုပ်စုတစ်ခုကျစွာ [[round-robin tournament]] ကစပ်ကတ်ပြီး တသင်းစီစွာ အငယ်တအုပ်စုတည်းဟိ အရာအသင်းတိနန့် သုံးပွဲကဇတ်ရရောင် စီစိုင်ထားရေ။ ဆိုလိုစွာက အုပ်စုတခုအထဲ စုစုပေါင်း ခြောက်ပွဲ ကစပ်တေ။ အုပ်စုတစ်ခုကျဧ့ နောက်ဆုံးအကျော့ပွဲစဉ်တိကို လေးသင်းစလုံးကြား တရားမျှတမှုဟိစီရန် တချိန်တည်းမာ စီစိုင်ထားရေ။<ref>This practice has been installed since the [[1986 FIFA World Cup]]. In some cases during previous tournaments, for example, Argentina 6–0 Peru in [[1978 FIFA World Cup|Argentina 1978]] and [[West Germany 1–0 Austria (1982 FIFA World Cup)|West Germany 1–0 Austria]] in [[1982 FIFA World Cup|Spain 1982]], teams that played the latter match were perceived to gain an unfair advantage by knowing the score of the earlier match, and subsequently [[Match fixing#Match fixing to a draw or a fixed score|obtaining a result that ensured advancement to the next stage]]. ({{cite news |url=http://www.cbc.ca/sports/soccer/1978-world-cup-a-first-title-for-argentina-1.816202 |title=1978 Argentina |publisher=CBC |archive-url=https://web.archive.org/web/20130928003655/http://www.cbc.ca/sports/soccer/1978-world-cup-a-first-title-for-argentina-1.816202 |archive-date=28 September 2013 |url-status=live}}; {{cite news |url=http://www.cbc.ca/sports/soccer/1982-world-cup-rossi-to-the-resuce-for-italy-1.793678 |title=1982 Spain |publisher=CBC |archive-url=https://web.archive.org/web/20150212035951/http://www.cbc.ca/sports/soccer/1982-world-cup-rossi-to-the-resuce-for-italy-1.793678 |archive-date=12 February 2015 |url-status=live}})</ref> အုပ်စုတစ်ခုကျမှ ထိပ်ဆုံးနှစ်သင်းစွာ နောက်ဆုံးအဆင့်သို့ တက်ရောက်လားဖို့ဖြစ်တေ။ အုပ်စုဟိ အသင်းတိကို အဆင့်သတ်မှတ်ဖို့အမှတ်တိကို အသုံးပြုရေ။ [[1994 FIFA World Cup|1994]]၊ [[Three points for a win|three points have been awarded for a win]]၊ သရေတပွဲအတွက် တပွဲနန့် အယှုံးမဟိပါ (အယင်၊ အနိုင်ရသူတိစွာ အမှတ်နှစ်မှတ်ရဟိရေ)။ ဖြစ်နှိုင်ခြီဟိရေ ရလဒ်သုံးမျိုး (အနိုင်၊ သရေ၊ အယှုံး) ဟိရေ အုပ်စုတစ်ခုကျမာ ခြောက်ပွဲစီသုံးသပ်ကြည့်ကေ 729 (= 3<sup>6</sup>) ဖြစ်နှိုင်ခြီဟိရေ နောက်ဆုံးဇယားရလဒ်တိ 40 သင်းဧ့ ဖြစ်နှိုင်ခြီဟိရေ 40 တွဲအတွက် ဖြစ်နှိုင်ခြီဟိရေ။<ref>{{Cite web |last=gadamico |date=25 July 2021 |title=Soccer and Statistics: Modeling the Group Stage |url=https://github.com/gadamico/soccer_and_statistics/blob/main/soccer_and_statistics.ipynb |access-date=2 March 2024 |website=github.com}}</ref> သို့ ရေ် 40 မှတ် ပေါင်းစပ်မှု 14 မှတ် (သို့မဟုတ် 207 နန့် com အကြားမာ ဖြစ်နှိုင်ခြီဟိရေ 209 ) အကြား တတိယနီရာသို့ ဦးတည်ရေ။ ယင်းပိုင်ရေအခြီအနီမာ၊ ဒေအသင်းတိကြားမာ အဆင့်သတ်မှတ်ချက်ကို-<ref>{{cite web |url=https://www.uefa.com/MultimediaFiles/Download/Regulations/uefaorg/Regulations/01/87/54/21/1875421_DOWNLOAD.pdf |title=Regulations – 2018 FIFA World Cup Russia |page=43 |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=24 June 2018 |archive-url=https://web.archive.org/web/20171013234125/https://www.uefa.com/MultimediaFiles/Download/Regulations/uefaorg/Regulations/01/87/54/21/1875421_DOWNLOAD.pdf |archive-date=13 October 2017 |url-status=dead}}</ref> မှ ဆုံးဖြတ်ရေ။ # အုပ်စုပွဲအားလုံးမာ ပေါင်းစပ်ဂိုးကွာခြားချက် အကြီးမားဆုံး # အုပ်စုပွဲအားလုံးမာ အများဆုံးပေါင်းစပ်ထားရေ ဂိုးအရွီအတွက် # အထက်ဖော်ပြပါ သတ်မှတ်ချက်တိကို လိုက်နာပြီးကေ အသင်းတသင်းထက်ပိုပြီးကေ အဆင့်ဆက်ဟိနီပါက၊ ယင်းရို့၏ အဆင့်သတ်မှတ်ချက်ကို အောက်ပါအတိုင်း ဆုံးဖြတ်ဖို့ဖြစ်ပါရေ။ ## ထိုအသင်းတိအကြား ထိပ်တိုက်တွိ့ဆုံမှုမာ ရမှတ်အများဆုံးအရွီအတွက် ## ထိုအသင်းတိကြားမာ ထိပ်တိုက်တွိ့ဆုံပွဲတိမာ ဂိုးကွာခြားချက်အကြီးမားဆုံးဖြစ်တေ။ ## ထိုအသင်းတိအကြား ထိပ်တိုက်တွိ့ဆုံမှုမာ ဂိုးအများဆုံးသွင်းသူအရွီအတွက် ## အုပ်စုအဆင့်မာ လက်ခံရဟိရေ အဝါနန့် အနီကတ်အရွီအတွက်ဖြင့် သတ်မှတ်ထားရေ မျှတရေကစပ်ရမှတ်တိ- ### အဝါကတ်- အနုတ် ၁ မှတ် ### အရိပ်ချအနီကတ် (ဒုတိယအဝါကတ်ဧ့ရလဒ်အဖြစ်): အနုတ် 3 မှတ် ### တိုက်ရိုက်အနီကတ်- အနှုတ် 4 မှတ် ### အဝါကတ်နန့် တိုက်ရိုက်အနီကတ်- အနုတ် 5 မှတ် #အထက်ပါအသင်းတိ စွာ အထက်ဖော်ပြပါ စံသတ်မှတ်ချက်တိကို လိုက်နာပြီး အဆင့်ဆက်ပနာရပ်တည်ပါက၊ ယင်းရို့၏ အမှတ်ပီးဇယားကို မဲထွတ်ခြင်းနန့် သတ်မှတ်ပီးဖို့ဖြစ်ပါရေ။ ယှုံးထွက်အဆင့်စွာ [[single-elimination tournament]] ဖြစ်ပြီးကေ လိုအပ်ပါကေ အနိုင်ရသူကို ဆုံးဖြတ်ဖို့အတွက် အသင်းတိစွာ တပွဲမှတပွဲ ကစပ်ရေ [[extra time]] နန့် [[penalty shootout (association football)|penalty shootouts]] ရို့ဖြစ်တေ။ အုပ်စုတစ်ခုကျဧ့အနိုင်ရသူတိစွာ အရာအုပ်စုဧ့ဒုတိယအကျော့နန့်ယှဥ်ပြိုင်ရေ 16 ပတ် (သို့မဟုတ်ဒုတိယအကျော့) ဖြင့်စတင်ရေ။ ယေပြီးနောက်မာ ကွာတားဖိုင်နယ်၊ ဆီမီးဖိုင်နယ်၊ [[match for third place]] (ယှုံးထွက်ဆီမီးဖိုင်နယ်တိ) နန့် ဖိုင်နယ်ရို့ဖြစ်တေ။ <ref name="FIFAformat" /> On 10 January 2017, FIFA approved a new format, the 48-team World Cup (to accommodate more teams), which was to consist of 16 groups of three teams each, with two teams qualifying from each group, to form a round of 32 knockout stage, to be implemented by 2026.<ref>{{cite news |first=Stephen |last=Turner |url=http://www.skysports.com/football/news/11095/10723865/fifa-council-votes-in-favour-of-48-team-world-cup-from-2026 |title=FIFA approves 48-team World Cup |work=[[Sky Sports News]] |date=10 January 2017 |access-date=10 January 2017 |archive-url=https://web.archive.org/web/20170111005600/http://www.skysports.com/football/news/11095/10723865/fifa-council-votes-in-favour-of-48-team-world-cup-from-2026 |archive-date=11 January 2017 |url-status=live}}</ref> စွာ မာ့ခ်ျလ 14 ရက်နိ 2023 မာ FIFA မှ 2026 ပြိုင်ပွဲဧ့ ပြန်ပနာပြင်ဆင်ထားရေပုံစံကို အတည်ပြုခပြီး အုပ်စု 4 ဖွဲ့ကေအုပ်စု 12 ဖွဲ့ပါဝင်ကာ အုပ်စုအဆင့်အနိုင်ရသူတိမာ ထိပ်ဆုံး 8 သင်းပါဝင်ပါရေ။ 32.<ref>{{cite news |last=Ziegler |first=Martyn |url=https://www.thetimes.com/article/7d38da2c-c24b-11ed-8e20-0f5794810aad |title=World Cup will be a week longer — but Fifa scraps three-team group plan |work=[[The Times]] |date=14 March 2023 |access-date=14 March 2023 |archive-date=14 March 2023 |archive-url=https://web.archive.org/web/20230314110957/https://www.thetimes.co.uk/article/7d38da2c-c24b-11ed-8e20-0f5794810aad |url-status=live}}</ref><ref>{{cite news |last1=Slater |first1=Matt |last2=Ornstein |first2=David |url=https://www.nytimes.com/athletic/4307230/2023/03/14/world-cup-2026-format-usa/ |title=World Cup 2026 format expands again with four-team groups and 104 matches |work=[[The Athletic]] |date=14 March 2023 |access-date=14 March 2023 |archive-date=14 March 2023 |archive-url=https://web.archive.org/web/20230314103434/https://theathletic.com/4307230/2023/03/14/world-cup-2026-format-usa/ |url-status=live}}</ref> ဧ့အသစ် 2025 ခုနှစ် မာ့ခ်ျလမာ FIFA စွာ FIFA World Cup ဧ့ နှစ်တရာပြည့်နှစ်ပတ်လည်ဖြစ်ရေ [[2030 FIFA World Cup]] အတွက် အသင်း 64 သင်းသို့ တသင်းတည်း တိုးချဲ့ရန် စဉ်းစားနီကြောင်း သတင်းတိထွက်ပေါ်ခရေ။<ref>{{Cite web|url=https://www.nytimes.com/2025/03/06/world/europe/fifa-world-cup-64-teams.html|title=FIFA to Consider Expanding World Cup to 64 Teams|first=Tariq|last=Panja|date=March 6, 2025|website=NYTimes.com}}</ref> == အိမ်ရှင်တိ == {{Main|List of FIFA World Cup hosts}} === Selection process === {{Choropleth map | countries = #006400: MX #33CC33: US; BR; FR; IT; DE; ES #99EE99: UY; CH; SE; CL; GB; AR; KR; JP; ZA; RU; QA; CA; PT; MA #FFFF99: SA #808080: CO | view = World | width = 300 | height = 225 | caption = Number of times each nation has hosted the FIFA World Cup {{legend|#006400|Hosted 3 times}} {{legend|#33CC33|Hosted 2 times}} {{legend|#99EE99|Hosted 1 time|outline=silver}} {{legend|#FFFF99|Planned (2034)|outline=silver}} {{legend|#808080|Cancelled}} }} ဖီဖာဧ့ ကွန်ဂရက်အစည်းအဝေးတိမာ နိုင်ငံတိအား အစောပိုင်းကမ္ဘာ့ဖလားတိ ပီးအပ်ခရေ။ တောင်အမေရိကနန့် ဥရောပရို့စွာ ဘောလုံးလောကမာ ခွန်အားဗဟိုချက်နှစ်ခုဟိကာ ယင်းရို့ကြားမာ သုံးပတ်ကြာ လောင်းဖြင့်လားလာရန် လိုအပ်ရေကြောင့် ယင့်ချင့်နီရာတိစွာ စကားအက်ဖွယ်ရာဖြစ်ခရေ။ ဥပမာအနိန်နန့် ဥရုဂွေးမာ [[1930 FIFA World Cup|first World Cup]] ကျင်းပရန် ဆုံးဖြတ်ချက်စွာ ဥရောပနိုင်ငံလေးနိုင်ငံသာ ယှဥ်ပြိုင်ခွင့်ရခရေ။<ref>{{cite news |url=https://news.bbc.co.uk/sport3/worldcup2002/hi/history/newsid_1632000/1632201.stm |title=Uruguay 1930 |work=BBC Sport |date=11 April 2002 |access-date=13 May 2006 |archive-url=https://web.archive.org/web/20031122125127/http://news.bbc.co.uk/sport3/worldcup2002/hi/history/newsid_1632000/1632201.stm |archive-date=22 November 2003 |url-status=live}}</ref> နောက်ထပ်ကမ္ဘာ့ဖလားနှစ်လုံးကို ဥရောပမာ ကျင်းပခရေ။ ယင့်ထဲက ဒုတိယမြောက်ကို ပြင်သစ်မာ ကျင်းပရန် ဆုံးဖြတ်ချက်ကို တောင်အမေရိကနိုင်ငံတိက တိုက်ကြီးနှစ်ခုကြားမာ တလှည့်စီ တည်ဟိနီဖို့ဟု နားလည်ထားအတွက်နန့် စကားအက်ခရေ။ ယင်းအတွက်နန့် အာဂျင်တီးနားနန့် ဥရုဂွေးနှစ်နိုင်ငံစလုံးစွာ [[1938 FIFA World Cup]] ကို သပိတ်မှောက်ခကတ်တေ။<ref>{{cite news |url=https://news.bbc.co.uk/sport3/worldcup2002/hi/history/newsid_1632000/1632206.stm |title=France 1938 |work=BBC Sport |date=17 April 2002 |access-date=13 May 2006 |archive-url=https://web.archive.org/web/20031122125158/http://news.bbc.co.uk/sport3/worldcup2002/hi/history/newsid_1632000/1632206.stm |archive-date=22 November 2003 |url-status=live}}</ref> [[1958 FIFA World Cup]] မှစလို့ အနာဂတ်မာ သပိတ်မှောက်မှုတိ သို့မဟုတ် စကားအက်ဖွယ်ရာတိကို ယှောင်ရှားရန် FIFA စွာ [[1998 FIFA World Cup]] မရောက်ခင်အထိ ဆက်ပနာတည်ဟိနီရေ အမေရိကနန့် ဥရောပရို့ကြား အိမ်ရှင်တိကို ဖရေပုံစံကို စတင်ခရေ။ တောင်ကိုရီးယားနန့် ဂျပန်ရို့ ပူးပေါင်းကျင်းပရေ [[2002 FIFA World Cup]] စွာ အာသျှမာ ပထမဆုံးကျင်းပရေ ပြိုင်ပွဲဖြစ်ပြီးကေ အိမ်ရှင်မကန်မဝှန်ပါဝင်ရေ ပထမဆုံးပြိုင်ပွဲဖြစ်တေ။<ref>{{cite web |url=http://sportsillustrated.cnn.com/soccer/world/2002/world_cup/news/2002/06/03/au_asia_rb/ |title=Asia takes World Cup center stage |date=3 June 2002 |publisher=CNN |access-date=1 January 2008 |archive-date=1 April 2013 |archive-url=https://web.archive.org/web/20130401144059/http://sportsillustrated.cnn.com/soccer/world/2002/world_cup/news/2002/06/03/au_asia_rb/ |url-status=dead}}</ref> တောင်အာဖရိကရေ [[2010 FIFA World Cup|2010]] မာ ကမ္ဘာ့ဖလားအိမ်ရှင်ကျင်းပရေ ပထမဆုံးအာဖရိကနိုင်ငံဖြစ်လာခရေ။ [[2014 FIFA World Cup]] ကို ဘရာဇီးမှ အိမ်ရှင်အဖြစ် လက်ခံကျင်းပခခြင်းဖြစ်ပြီးကေ [[1978 FIFA World Cup|Argentina 1978]]၊ <ref>{{cite news |url=https://news.bbc.co.uk/sport2/hi/football/internationals/7068848.stm |title=Brazil will stage 2014 World Cup |date=10 October 2007 |work=BBC Sport |access-date=1 January 2008 |archive-url=https://web.archive.org/web/20071031095538/http://news.bbc.co.uk/sport2/hi/football/internationals/7068848.stm |archive-date=31 October 2007 |url-status=live}}</ref> နောက်ပိုင်း တောင်အမေရိကမာ ပထမဆုံးကျင်းပခပြီးကေ ဥရောပအပြင်ဖက်မာ ဆက်တိုက်ကမ္ဘာ့ဖလားတိ ဆက်တိုက်ကျင်းပရေ ပထမဆုံးအခွင့်အရီးဖြစ်တေ။<ref>{{cite news |title=World Cup 2014: All you need to know about Brazil finals |url=https://www.bbc.co.uk/sport/football/24518819 |access-date=6 October 2020 |work=BBC Sport |archive-url=https://web.archive.org/web/20200712154826/https://www.bbc.com/sport/football/24518819 |archive-date=12 July 2020 |url-status=live}}</ref> [[File:Russia 2018 World Cup.jpeg|thumb|Russian delegates celebrate being chosen as the host of the [[2018 FIFA World Cup]]]] အိမ်ရှင်နိုင်ငံကို FIFA ကောင်စီက မဲခွဲဆုံးဖြတ်ပြီး ဂုချိန်ခါ ရွီးချယ်လိုက်ယာဖြစ်တေ။ ယင်းကို [[exhaustive ballot]] စနစ်ဖြင့် လုပ်ဆောင်ရေ။ ပြိုင်ပွဲကို အိမ်ရှင်အဖြစ် လက်ခံကျင်းပလိုရေ နိုင်ငံတခုဧ့ အမျိုးသားဘောလုံးအသင်းစွာ FIFA ပါးက "အိမ်ရှင်သဘောတူစာချုပ်" ကို လက်ခံရဟိပြီး နနောင်းရေလေလံပွဲမှ မျှော်လင့်ရဖို့ အဆင့်တိနန့် လိုအပ်ချက်တိကို ယှင်းပြထားရေ။ လေလံအဖွဲ့စွာ ကိုယ်စားလှယ်လောင်းအဖြစ် တရားဝင်အတည်ပြုချက်ကို တက်စားပြုရေ တင်သွင်းလွှာပုံစံကိုလေ့ လက်ခံရဟိပါရေ။ ယင်းနောက်မာ ဖီဖာမှ သတ်မှတ်ထားရေ စစ်ဆီးရီး အဖွဲ့တစ်တိုင်သားစွာ မြန်မာနိုင်ငံသို့ ပြိုင်ပွဲကျင်းပရန် လိုအပ်ရေ လိုအပ်ချက်တိနန့် ကိုက်ညီကြောင်း ဖော်ထုတ်ရန်နန့် နိုင်ငံဆိုင်ရေ အစီအစာခံစာကို ထုတ်ပြန်ရန် နိုင်ငံသို့ လားရောက်ခရေ။ ကမ္ဘာ့ဖလားကို ဇာသူက အိမ်ရှင်အဖြစ် လက်ခံကျင်းပဖို့လဲဆိုရေ ဆုံးဖြတ်ချက်ကို များရေအားဖြင့် ပြိုင်ပွဲမရောက်ခင် ခြောက်နှစ် ယင်းပိုင်ဟုတ်ကေ ခနစ်နှစ်ကြိုတင် ဆုံးဖြတ်လေ့ဟိပါရေ။ [[Russia]] နန့် [[Qatar]] ရို့အား ပီးအပ်ချီးမြှင့်ရေ [[2018 and 2022 FIFA World Cup bids|2018 and 2022 World Cups]] နန့် [[Qatar]] ရို့ကဲ့သို့ပင် အနာဂတ်ပြိုင်ပွဲများစွာကို အိမ်ရှင်အဖြစ် တချိန်တည်းမာ ကြေငြာခဲ့ရေ အခါသမယမာ ကာစွာရေ ပြိုင်ပွဲကို အိမ်ရှင်အဖြစ် လက်ခံကျင်းပရေ ပထမဆုံး အရှိအလယ်ပိုင်းနိုင်ငံ ဖြစ်လာခရေ။<ref>{{cite news |url=https://www.theguardian.com/football/2010/dec/02/england-russia-win-2018-world-cup |title=England beaten as Russia win 2018 World Cup bid |date=2 December 2010 |work=The Guardian |location=London |access-date=8 September 2017 |first=Owen |last=Gibson |archive-url=https://web.archive.org/web/20140308044324/https://www.theguardian.com/football/2010/dec/02/england-russia-win-2018-world-cup |archive-date=8 March 2014 |url-status=live}}</ref><ref>{{cite news |url=https://www.theguardian.com/football/2010/dec/02/qatar-win-2022-world-cup-bid |title=Qatar win 2022 World Cup bid |date=2 December 2010 |work=The Guardian |location=London |access-date=8 September 2017 |first=Jamie |last=Jackson |archive-url=https://web.archive.org/web/20131005083825/https://www.theguardian.com/football/2010/dec/02/qatar-win-2022-world-cup-bid |archive-date=5 October 2013 |url-status=live}}</ref> 2010 နန့် 2014 ကမ္ဘာ့ဖလားတိအတွက် နောက်ဆုံးပြိုင်ပွဲကို confederations တိကြားမာ အလှည့်ကျကျင်းပခပြီးကေ ရွီးချယ်ထားရေ confederation (အာဖရိက 2010 ၊ 2014 မာ တောင်အမေရိက) မှ ပြိုင်ပွဲကို အိမ်ရှင်အဖြစ် လက်ခံကျင်းပရန် ခွင့်ပြုခရေ။ [[2006 FIFA World Cup|2006 tournament]] ကို အိမ်ရှင်အဖြစ် လက်ခံကျင်းပရန် မဲခွဲရာမာ တောင်အာဖရိကကို ဂျာမနီအနိုင်ရယားနောက် [[FIFA World Cup hosts#2006 FIFA World Cup|controversy]] စွာ အလှည့်ကျမူဝါဒကို မိတ်ဆက်ခရေ။ ယကေလေ့သော့၊ တိုက်ကြီးလည်ပတ်မှုမူဝါဒစွာ 2014 ခုနှစ်ထက် ကျော်လွန်ခြင်းမဟိခဲ့သဖြင့် အယင်ပြိုင်ပွဲနှစ်ခုကို လက်ခံကျင်းပခဲ့ရေ ကွန်ဖက်ဒရီးရှင်းတိကလွဲလို့ ဇာနိုင်ငံမဆို [[2018 FIFA World Cup|2018]] မှစတင်ကာ ကမ္ဘာ့ဖလားပြိုင်ပွဲအတွက် အိမ်ရှင်အဖြစ် လျှောက်ထားနှိုင်ပါရေ။<ref>{{cite web |url=https://www.fifa.com/worldcup/russia2018/organisation/media/newsid=625122/index.html |archive-url=https://web.archive.org/web/20130324161949/http://www.fifa.com/worldcup/russia2018/organisation/media/newsid=625122/index.html |url-status=dead |archive-date=24 March 2013 |title=Rotation ends in 2018 |publisher=Fédération Internationale de Football Association |work=FIFA.com |date=29 October 2007 |access-date=30 March 2013}}</ref> ဒေချင့်စွာမာာ တစိတ်တစ်အာဒါးအားဖြင့် ယင်းနည်းပိုင်အခြီအနီမျိုးမှ ယှောင်ရှားရန် ဖြစ်ပါရေ၊ 2014 ဘရာဇီးနိုင်ငံစွာ ပြိုင်ပွဲအတွက် တရားဝင်သာဖြစ်တေ၊ လေလံဆွဲသူ။<ref>Collett, Mike (30 October 2007), [https://web.archive.org/web/20180704215911/https://uk.reuters.com/article/uk-soccer-world-brazil-idUKL3026608120071030 "Brazil officially named 2014 World Cup hosts"]. . Reuters. Retrieved 6 July 2018</ref> [[2026 FIFA World Cup]] ကို အမေရိကန်၊ ကနိန်ဒါနန့် မက္ကစီကိုရို့မာ ကျင်းပရန် ရွီးချယ်ထားပြီးသား ကမ္ဘာ့ဖလားကို အိမ်ရှင်နိုင်ငံသုံးနိုင်ငံမှ ပထမဆုံးအကြိမ် မျှဝီခြင်းဖြစ်တေ။<ref name="World Cup26">{{cite news |title=World Cup 2026: Canada, US & Mexico joint bid wins right to host tournament |url=https://www.bbc.co.uk/sport/football/44464913 |access-date=13 June 2018 |agency=BBC Sport |date=13 June 2018 |archive-url=https://web.archive.org/web/20180613145402/https://www.bbc.com/sport/football/44464913 |archive-date=13 June 2018 |url-status=live}}</ref> 2026 ပြိုင်ပွဲစွာ အသင်း ၄၈ သင်းဖြင့် ၁၀၄ ပွဲကစပ်ကာ အကြီးမားဆုံး ကမ္ဘာ့ဖလားပြိုင်ပွဲ ဖြစ်လှာဖို့ဖြစ်တေ။ ကွာတားဖိုင်နယ်မှ ပွဲစဉ်အားလုံးအပါအဝင် အမေရိကန်မာ ပွဲစဉ်ခြောက်ဆယ်ကျင်းပဖို့ဖြစ်ပြီးကေ ကနိန်ဒါနန့် မက္ကစီကိုနိုင်ငံရို့က ၁၀ ပွဲစီ လက်ခံကျင်းပဖို့ဖြစ်တေ။<ref name="World Cup26" /> === အဖွဲ့ချုပ် အကျဉ်းချုပ် === {| class="wikitable sortable" style="text-align:left" |- ! scope="row" | ကွန်ဖက်ဒရီးရှင်း ! scope="col" style=width:4em:| လက်ခံကျင်းပဖို့အချိန်တိ ! scope="col" class="unsortable"| မိတ်ဆုံစားပွဲ ! scope="col" class="unsortable"| လာဖို့အိမ်ရှင်တိ |- | [[UEFA]] <br> (ဥရောပ) | style="text-align:center"| ၁၁ | {{Nowrap|[[1934 FIFA World Cup|1934]], Italy}}; {{Nowrap|[[1938 FIFA World Cup|1938]], France}}; {{Nowrap|[[1954 FIFA World Cup|1954]], Switzerland}}; {{Nowrap|[[1958 FIFA World Cup|1958]], Sweden}}; {{Nowrap|[[1966 FIFA World Cup|1966]], England}}; {{Nowrap|[[1974 FIFA World Cup|1974]], West Germany}}; {{Nowrap|[[1982 FIFA World Cup|1982]], Spain}}; {{Nowrap|[[1990 FIFA World Cup|1990]], Italy}}; {{Nowrap|[[1998 FIFA World Cup|1998]], France}}; {{Nowrap|[[2006 FIFA World Cup|2006]], Germany}}; {{Nowrap|[[2018 FIFA World Cup|2018]], Russia}} | {{Nowrap|[[2030 FIFA World Cup|2030]], Spain & Portugal}} |- | [[CONMEBOL]] <br> (တောင်အမေရိက) | style="text-align:center"| ၅ | {{Nowrap|[[1930 FIFA World Cup|1930]], Uruguay}}; {{Nowrap|[[1950 FIFA World Cup|1950]], Brazil}}; {{Nowrap|[[1962 FIFA World Cup|1962]], Chile}}; {{Nowrap|[[1978 FIFA World Cup|1978]], Argentina}}; {{Nowrap|[[2014 FIFA World Cup|2014]], Brazil}} | |- | [[CONCACAF]] <br> {{Nowrap|(North and Central America <br> and Caribbean)}} | style="text-align:center"| ၃ | {{Nowrap|[[1970 FIFA World Cup|1970]], Mexico}}; {{Nowrap|[[1986 FIFA World Cup|1986]], Mexico}}; {{Nowrap|[[1994 FIFA World Cup|1994]], United States}} | {{Nowrap|[[2026 FIFA World Cup|2026]], Canada, Mexico & United States}} |- | [[Asian Football Confederation|AFC]] <br> (အာသျှ) | style="text-align:center"| ၂ | {{Nowrap|[[2002 FIFA World Cup|2002]], South Korea & Japan}}; {{Nowrap|[[2022 FIFA World Cup|2022]], Qatar}} | {{Nowrap|[[2034 FIFA World Cup|2034]], Saudi Arabia}} |- | [[Confederation of African Football|CAF]] <br> (အာဖရိက) | style="text-align:center"| ၁ | {{Nowrap|[[2010 FIFA World Cup|2010]], South Africa}} | {{Nowrap|[[2030 FIFA World Cup|2030]], Morocco}} |- | [[Oceania Football Confederation|OFC]] <br> (အိုစီနီးယား) | style="text-align:center"| ၀ယ်ရေ။ | မဟိ | |} === Performances === {{See also|National team appearances in the FIFA World Cup#Hosts|l1=Results of host nations in the FIFA World Cup}} ချန်ပီယံ၈ခုအနက် ခြောက်ခုစွာ ယင်းရို့၏မွီးရပ်မြီမာကစပ်စဉ် ယင်းရို့၏ဆုဖလားတိထဲက တခုကို ဆွတ်ခူးနှိုင်ခပြီး ခြွင်းချက်အနိန်နန့် [[Brazil national football team|Brazil]] မာ 1950 ခုနှစ်မာ အိမ်ကွင်းမာ [[Uruguay v Brazil (1950 FIFA World Cup)|deciding match]] ကိုယှုံးပြီး 2014 ခုနှစ်မာ ဂျာမနီနန့် [[Brazil v Germany (2014 FIFA World Cup)|semi-final]] ကို ယှုံးနိမ့်ခပြီးကေ ဒုတိယအကျော့မာ ဒုတိယအကျော့အဖြစ် ပြီးဆုံးခရေ [[Brazil national football team|Brazil]] မှ ခြွင်းချက်ဖြစ်တေ။ [[England national football team|England]] (1966) စွာ အိမ်ရှင်နိုင်ငံအဖြစ် ကစပ်နေစဉ် ယင်းဧ့ တခုတည်းရေ ဆုဖလားကို ရဟိခရေ။ [[Uruguay national football team|Uruguay]] (1930)၊ [[Italy national football team|Italy]] (1934)၊ [[Argentina national football team|Argentina]] (1978) နန့် [[France national football team|France]] (1998) ရို့စွာ အိမ်ရှင်နိုင်ငံအဖြစ် ပထမဆုံး ချန်ပီယံဆုတိကို ဆွတ်ခူးခကေလေ့ ထပ်မံအနိုင်ရဟိခပြီးကေ [[Germany national football team|Germany]] (1974 မာ ယင်းရို့၏ အိမ်ကွင်း ဒုတိယဆုဖလား) ဆွတ်ခူးနိုင်ခရေ။ မြီဆီလွှာ။<ref>[https://news.bbc.co.uk/sport2/hi/football/world_cup_2010/8684839.stm "World Cup 1974 – West Germany win on home soil"]. [https://news.bbc.co.uk/sport2/hi/football/world_cup_2010/8684839.stm]. BBC. Retrieved 2 December 2017</ref><ref name=host /> Other nations have also been successful when hosting the tournament. [[Switzerland national football team|Switzerland]] (quarter-finals 1954), [[Sweden men's national football team|Sweden]] (runners-up in 1958), [[Chile national football team|Chile]] (third place in 1962), [[South Korea national football team|South Korea]] (fourth place in 2002), [[Russia national football team|Russia]] (quarter-finals 2018), and [[Mexico national football team|Mexico]] (quarter-finals in 1970 and 1986) all have their best results when serving as hosts.<ref name=host>{{cite web |url=https://www.skysports.com/football/news/13956/11392096/world-cup-home-advantage-how-the-hosts-have-fared-and-why-there-is-hope-for-russia |title=World Cup home advantage: How the hosts have fared and why there is hope for Russia |author=Smith, Peter |publisher=Sky Sports|access-date=20 December 2022|archive-date=20 December 2022|archive-url=https://web.archive.org/web/20221220145414/https://www.skysports.com/football/news/13956/11392096/world-cup-home-advantage-how-the-hosts-have-fared-and-why-there-is-hope-for-russia|url-status=live}}</ref><ref>{{cite web |url=https://www.bbc.co.uk/sport/football/44591345 |title=World Cup 2018: Russia reach quarter-finals after 4-3 penalty shootout win over Spain |publisher=BBC Sport |date=1 July 2018 |author=Bevan, Chris|access-date=20 December 2022|archive-date=22 June 2021|archive-url=https://web.archive.org/web/20210622203909/https://www.bbc.co.uk/sport/football/44591345|url-status=live}}</ref> အဂုအချိန်အထိ၊ [[South Africa national football team|South Africa]] (2010) နန့် [[Qatar national football team|Qatar]] (2022) ရို့စွာ ပထမအကျော့ထက် ကျော်လွန်ပြီးကေ မရခပါ။<ref>Bevan, Chris. [https://news.bbc.co.uk/sport2/hi/football/world_cup_2010/matches/match_34/default.stm "France 1–2 South Africa"]. [https://news.bbc.co.uk/sport2/hi/football/world_cup_2010/matches/match_34/default.stm]. BBC. Retrieved 2 December 2017</ref><ref>{{cite web |url=https://www.sportingnews.com/us/soccer/news/qatar-world-cup-worst-record-host-nation/darxjzu4goctrbquje8vfbyo |title=Qatar's World Cup flop: The Maroon finish with worst record for a host nation in FIFA history |publisher=Sporting News |author=Brischetto, Patrick |date=30 November 2022|access-date=20 December 2022|archive-date=17 December 2022|archive-url=https://web.archive.org/web/20221217073029/https://www.sportingnews.com/us/soccer/news/qatar-world-cup-worst-record-host-nation/darxjzu4goctrbquje8vfbyo|url-status=live}}</ref> အိမ်ရှင်နိုင်ငံအဖြစ် ဖီဖာကမ္ဘာ့ဖလားပြိုင်ပွဲကို ချန်ပီယံကာကွယ်ပွဲအဖြစ် ဇာနိုင်ငံမှ မဝင်ဖူးပါကား။ 2026 ခုနှစ်စာရင်းအရတော့ နံဘေးစပ်ဆုံးကတော့ ၂၀၀၂ ဖိုင်နယ်မာ ဘရာဇီးကို ၂-၀ နန့် ယှုံးနိမ့်ပြီးကေ ဂျာမနီက ၂၀၀၆ မာ ဖြစ်ခစွာပါ။ {{clear}} == Broadcasting and promotion == [[File:Coca cola world cup 2002.jpg|thumb|upright|A [[Coca-Cola]] ပုလင်းကို အရောင်းမြှင့်တင်ခြင်း]] ကမ္ဘာ့ဖလားပြိုင်ပွဲကို [[1954 FIFA World Cup|1954]] မာ ပထမဆုံး ရုပ်မြင်သံကြားပြသခပြီးကေ {{as of|2006|lc=y}} စွာ ကမ္ဘာထက်မာ လူကြည့်အများဆုံးနန့် လိုက်ကတ်ည့်ရေ အားကစားပွဲဖြစ်တေ။ 2006 ကမ္ဘာ့ဖလားပြိုင်ပွဲဧ့ ပွဲစဉ်အားလုံးကို ကြည့်ရှုသူဦးရေ 26.29 ဘီလီယံအထိ ဟိဖို့ဟု လှောက်မှန်းထားရေ။<ref name=DobsonGoddard2006 /> 715.1&nbsp;million individuals watched the final match of the tournament, almost a ninth of the entire population of the planet. The [[2006 FIFA World Cup|2006 World Cup]] draw, which decided the distribution of teams into groups, was watched by 300&nbsp;million viewers.<ref>{{cite web |publisher=[[Australian Broadcasting Corporation|ABC Sport]] |url=http://www.abc.net.au/sport/content/200512/s1528128.htm |title=Socceroos face major challenge: Hiddink |date=10 December 2005 |access-date=13 May 2006 |archive-url=https://web.archive.org/web/20060430001531/http://www.abc.net.au/sport/content/200512/s1528128.htm <!-- Bot retrieved archive --> |archive-date=30 April 2006}}</ref> ကမ္ဘာ့ဖလားပြိုင်ပွဲစွာ [[Coca-Cola]]၊ [[McDonald's]] နန့် [[Adidas]] ပိုင်ယှောင် အဓိကစပွန်ဆာတိကို သိမ်းသွင်းထားရေ။ ဒေကုမ္ပဏီတိနန့် အရာမကန်မဝှန်အတွက်၊ စပွန်ဆာတဦးဖြစ်ခြင်းစွာ ယင်းရို့၏ကမ္ဘာ့အမှတ်တံဆိပ်တိကို ပြင်းထန်စွာ သက်ရောက်မှုဟိရေ။ အိမ်ရှင်နိုင်ငံတိစွာ ပုံမှန်ဆိုလို့ဟိကေ တလတာအစီအစိုင်မှ ဒေါ်လာသန်းပေါင်းများစွာ ဝင်ငွီတိုးလာလိဟိရေ။ အားကစားဧ့ အုပ်ချုပ်မှုအဖွဲ့ [[FIFA]] စွာ [[2014 FIFA World Cup|2014 tournament]]၊ <ref>{{cite news |title=FIFA Financial Report 2014: Frequently Asked Questions |url=https://www.fifa.com/about-fifa/news/y=2015/m=3/news=fifa-financial-report-2014-frequently-asked-questions-2568090.html|archive-url=https://web.archive.org/web/20150512093326/http://www.fifa.com/about-fifa/news/y=2015/m=3/news=fifa-financial-report-2014-frequently-asked-questions-2568090.html|url-status=dead|archive-date=12 May 2015 |agency=FIFA.com |date=9 December 2017}}</ref> မှ ဒေါ်လာ 4.8 ဘီလီယံနန့် [[2018 FIFA World Cup|2018 tournament]] မှ ဒေါ်လာ 6.1 ဘီလီယံ ဝင်ငွီရဟိခရေ။<ref>{{cite news |title=FIFA Set to Make $6.1 billion From 2018 World Cup |url=https://www.nytimes.com/2018/06/12/sports/fifa-revenue.html |archive-url=https://ghostarchive.org/archive/20220102/https://www.nytimes.com/2018/06/12/sports/fifa-revenue.html |archive-date=2 January 2022 |url-access=limited |url-status=live |access-date=12 July 2019 |work=The New York Times |date=13 June 2018 |last1=Panja |first1=Tariq}}{{cbignore}}</ref> [[1970 FIFA World Cup|1970 World Cup]] မှစတင်ပနာ [[File:FIFA - world cup ballen.JPG|thumb|left|Manufactured by [[Adidas]]၊ [[FIFA headquarters]] မာ [[FIFA headquarters]] မာပြသထားရေတရားဝင်ပွဲစဉ်ဘောလုံးတိ]]] [[1966 FIFA World Cup|1966]] မှစတင်ပနာ FIFA World Cup တစ်ခုကျမာ ယင်းဧ့ကိုယ်ပိုင် [[mascot]] သို့မဟုတ် လိုဂိုဟိရေ။ ''World Cup 1966 ပြိုင်ပွဲအတွက် Mascot ဖြစ်ရေ Willie'' စွာ ပထမဆုံး [[FIFA World Cup mascots|World Cup mascot]] ဖြစ်တေ။<ref>{{cite web |url=https://www.fifa.com/aboutfifa/marketingtv/marketing/fifaassets/mascots.html |title=FIFA Assets – Mascots |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=19 November 2007 |url-status=dead |archive-url=https://web.archive.org/web/20071104232128/http://fifa.com/aboutfifa/marketingtv/marketing/fifaassets/mascots.html <!-- Bot retrieved archive --> |archive-date=4 November 2007}}</ref> ကမ္ဘာ့ဖလားပြိုင်ပွဲတစ်ခုကျအတွက် အထူးဒီဇိုင်းထုတ်ထားရေ [[List of FIFA World Cup official match balls|official match balls]] အင်္ဂါရပ်ဖြစ်တေ။ [[Slazenger]] စွာ 1966 ကမ္ဘာ့ဖလားအတွက် ဘောလုံးကို ထုတ်လုပ်ပြီးကေ Adidas စွာ FIFA အတွက် တရားဝင် ပီးသွင်းသူ ဖြစ်လာခရေ။<ref>{{cite web |url=http://footballs.fifa.com/Football-Facts/FIFA-World-Cup-Footballs |title=The Footballs during the FIFA World Cup |work=Football Facts |publisher=[[FIFA]]|access-date=6 July 2018|archive-url=https://web.archive.org/web/20131128080230/http://footballs.fifa.com/Football-Facts/FIFA-World-Cup-Footballs|archive-date=28 November 2013|url-status=dead}}</ref> ကမ္ဘာ့ဖလားတစ်ခုကျမာ [[List of FIFA World Cup anthems and songs|official song]] ဟိပြီးး [[Shakira]] မှ [[Will Smith]] မှ အရာအနုပညာသျှင်တိက ဖျော်ဖြီပေးရေ [[List of FIFA World Cup anthems and songs|official song]] တေးခြင်းတိလေ့ ပါဝင်ရေ။WKTOKEN၊ World Cup ဖျော်ဖြီပွဲ ချေကြိမ်မာ [[The Three Tenors]] မှ ဖျော်ဖြီရေ "[[Nessun dorma]]" ကို ပြိုင်ပွဲနန့်အတူ ဖော်ထုတ်ခရေ။<ref>{{cite news |title=A riot of colour, emotion and memories: the World Cup stands alone in the field of sport |url=https://www.independent.co.uk/sport/football/world-cup/world-cup-russia-2018-preview-lionel-messi-ronaldo-italia-90-98-england-brazil-germany-france-a8392211.html |access-date=26 August 2018 |work=The Independent |archive-url=https://web.archive.org/web/20180820181206/https://www.independent.co.uk/sport/football/world-cup/world-cup-russia-2018-preview-lionel-messi-ronaldo-italia-90-98-england-brazil-germany-france-a8392211.html |archive-date=20 August 2018 |url-status=live}}</ref> 1970 ခုနှစ်မာ FIFA နန့် ပူးပေါင်းကာ [[Panini Group|Panini]] စွာ ယင်းဧ့ ပထမဆုံး [[sticker album]] ကို 1970 ကမ္ဘာ့ဖလားအတွက် ထုတ်ပြန်ခရေ။ <ref name="Brand" /> Since then, collecting and trading stickers and [[Association football trading card|cards]] has become part of the World Cup experience, especially for the younger generation.<ref>{{cite news |title=Panini World Cup sticker book |url=https://www.theguardian.com/football/2018/mar/29/cost-to-fill-panini-world-cup-sticker-book-is-734-says-maths-prof |access-date=8 September 2018 |work=The Guardian |archive-url=https://web.archive.org/web/20180330002756/https://www.theguardian.com/football/2018/mar/29/cost-to-fill-panini-world-cup-sticker-book-is-734-says-maths-prof |archive-date=30 March 2018 |url-status=live}}</ref> FIFA စွာ [[1986 FIFA World Cup|1986]]6WKEND မှ စပွန်ဆာပီးရေ WKTOKEN7WKEN3WKEND မှစတင်ပနာ [[Electronic Arts]]6WKEND မှကမ္ဘာ့ဖလား [[FIFA World Cup video games|video games]] ကို လိုင်စင်ထုတ်ပီးခပါရေ။ == Results == {{See also|List of FIFA World Cup finals}} {{World Cup Champions}} နိုင်ငံပေါင်း 80 မာ [[National team appearances in the FIFA World Cup|played in at least one World Cup]].{{refn|name=successor|group=n|FIFA considers that the national team of [[Russia national football team|Russia]] succeeds the [[Soviet Union national football team|Soviet Union]], the national team of [[Serbia national football team|Serbia]] succeeds the [[Yugoslavia national football team|Yugoslavia]]/[[Serbia and Montenegro national football team|Serbia and Montenegro]], and the national teams of the [[Czech Republic national football team|Czech Republic]] and [[Slovakia national football team|Slovakia]] succeed the [[Czechoslovakia national football team|Czechoslovakia]].<ref>{{Cite web |title=Russian Football Union |url=https://www.fifa.com/about-fifa/associations/origin1904-p.cxm.fifa.com/en/about-fifa/associations/RUS |access-date=19 January 2024 |website=www.fifa.com |language=en}}</ref><ref>{{Cite web |title=FIFA |url=https://www.fifa.com/about-fifa/associations/origin1904-p.cxm.fifa.com/en/about-fifa/associations/SRB |access-date=19 January 2024 |website=www.fifa.com |language=en}}</ref><ref>{{Cite web |title=FIFA |url=https://www.fifa.com/about-fifa/associations/origin1904-p.cxm.fifa.com/en/about-fifa/associations/CZE |access-date=19 January 2024 |website=www.fifa.com |language=en}}</ref><ref>{{Cite web |title=FIFA |url=https://www.fifa.com/about-fifa/associations/origin1904-p.cxm.fifa.com/en/about-fifa/associations/SVK |access-date=19 January 2024 |website=www.fifa.com |language=en}}</ref>}} ဒေနိုင်ငံပေါင်း 80 မာကမ္ဘာ့ဖလား၊ <ref>{{cite web |last=Venkat |first=Rahul |title=FIFA World Cup winners: Why Brazilians are unique and Germany, Italy relentless – full roll of honour |publisher=Olympics.com |date=19 December 2022 |url=https://olympics.com/en/news/fifa-world-cup-winners-list-champions-record|access-date=4 February 2024}}</ref> နန့်ကမ္ဘာ့ဖလားတက်စားပြု [[Star (football badge)|stars to their badges]] ကြယ်ပွင့်တစ်ဦးချင်းစီပါဟိရေ။ ယကေလေ့သော့ ဥရုဂွေးစွာ ယင်းရို့၏ ရွှီတံဆိပ်နှစ်ခုကို တက်စားပြုရေ 1924 နန့် 1928 နွီရာသီအိုလံပစ်တိမာ [[Four stars above Uruguay's football crest|four stars on their badge]] ကိုပြသဖို့ ရွီးချယ်ခပြီး FIFA မှ ကမ္ဘာ့ချန်ပီယံ၈အဖြစ် အသိအမှတ်ပြုခံရပြီးကေ 1930 နန့် 1950 ခုနှစ်တိမာ ယင်းရို့၏ကမ္ဘာ့ဖလား နှစ်ကြိမ်ကို ပြသဖို့ ရွီးချယ်ခရေ။ ဂေါင်းစိုင်ငါးခုဖြင့်၊ <!---ညီညွတ်မှုအတွက်၊ အိန်းဂလိချ်အိန်းဂလိချ်ကို ဆောင်းပါးတလျှောက်လုံးမာ အသုံးပြုစွာ၊ နမူနာ၊ "Brazil are" အစား "Brazil are" အစား "Brazil are" -->Brazil စွာ ကမ္ဘာ့ဖလားပြိုင်ပွဲမာ အအောင်မြင်ဆုံးအသင်းဖြစ်ပြီးကေ [[National team appearances in the FIFA World Cup#Finals records by team|played in every World Cup]] (22) မှ ဒေနိအထိ ကမ္ဘာ့ဖလားကို ပထမဆုံးရဟိရေ ဘရာဇီးအသင်းလည်းဖြစ်တေ။WKTOKEN12 (၁၉၇၀)၊ စတုတ္ထ (၁၉၉၄) နန့် ပဉ္စမအကြိမ် (၂၀၀၂)။ အီတလီ (၁၉၃၄ နန့် ၁၉၃၈) နန့် ဘရာဇီး (၁၉၅၈ နန့် ၁၉၆၂) ရို့စွာ နှစ်ဆက်ချန်ပီယံဆုတိ ဆွတ်ခူးနှိုင်ရေ တခုတည်းရေနိုင်ငံဖြစ်တေ။ အနောက်ဂျာမနီ (1982–1990) နန့် ဘရာဇီး (1994–2002) ရို့စွာ ကမ္ဘာ့ဖလားဖိုင်နယ် (၃) နှစ်ဆက်တိုက် ဗိုလ်လုပွဲသို့ တက်ရောက်နှိုင်ရေ တခုတည်းရေနိုင်ငံဖြစ်တေ။ ဂျာမနီစွာ အမှတ်ပီးဇယား (၁၃) မှတ်၊ ဆုတံဆိပ် (၁၂) ခုနန့် ဖိုင်နယ်အများဆုံး (၈) မှတ်အထိ ရဟိထားရေ။ [[File:FIFA World Cup best results.svg|thumb|upright=3|center|Map of countries' best results. The inset map at the lower right shows former Eastern European participants (USSR, Yugoslavia, Czechoslovakia and East Germany).]] === ထိပ်ဆုံးလေးသင်းသို့ ရောက်ဟိလားရေ အသင်းတိ=== {{See also|FIFA World Cup records and statistics|National team appearances in the FIFA World Cup}} {| class="wikitable sortable" |+ ထိပ်ဆုံးလေးသင်းသို့ ရောက်ဟိလားရေ အသင်းတိ |- ! အဖွဲ့ !! တံဆိပ်တိ !! ဒုတိယဆု!! တတိယနီရာ !! စတုတ္ထနီရာ !! data-sort-type="number"|ထိပ်တန်း 4 <br />စုစုပေါင်း |- |style="background:gold"|{{fb|BRA}} |style="background:gold"|'''5''' ([[1958 FIFA World Cup|1958]]၊ [[1962 FIFA World Cup|1962]]၊ [[1970 FIFA World Cup|1970]]၊ [[1994 FIFA World Cup|1994]]၊ [[2002 FIFA World Cup|2002]]) |style="background:#C0C0C0"|2 ({{Nowrap|[[1950 FIFA World Cup|1950]] [[#*|*]]}}၊ [[1998 FIFA World Cup|1998]]) |style="background:#cc9966"|2 ([[1938 FIFA World Cup|1938]]၊ [[1978 FIFA World Cup|1978]]) |style="background:#9acdff"|2 ([[1974 FIFA World Cup|1974]]၊ {{Nowrap|[[2014 FIFA World Cup|2014]] [[#*|*]]}}) |align=center| ၁၁ |- |style="background:gold"|{{fb|GER}}<sup>[[#1|1]]</sup> |style="background:gold"|4 ([[1954 FIFA World Cup|1954]]၊ {{Nowrap|[[1974 FIFA World Cup|1974]] [[#*|*]]}}၊ [[1990 FIFA World Cup|1990]]၊ [[2014 FIFA World Cup|2014]]) |style="background:#C0C0C0"|'''4''' ([[1966 FIFA World Cup|1966]]၊ [[1982 FIFA World Cup|1982]]၊ [[1986 FIFA World Cup|1986]]၊ [[2002 FIFA World Cup|2002]]) |style="background:#cc9966"|'''4''' ([[1934 FIFA World Cup|1934]]၊ [[1970 FIFA World Cup|1970]]၊ {{Nowrap|[[2006 FIFA World Cup|2006]] [[#*|*]]}}၊ [[2010 FIFA World Cup|2010]]) |style="background:#9acdff"|1 ([[1958 FIFA World Cup|1958]]) |align=center| ၁၃ |- |style="background:gold"|{{fb|ITA}} |style="background:gold"|4 ({{Nowrap|[[1934 FIFA World Cup|1934]] [[#*|*]]}}၊ [[1938 FIFA World Cup|1938]]၊ [[1982 FIFA World Cup|1982]]၊ [[2006 FIFA World Cup|2006]]) |style="background:#C0C0C0"|2 ([[1970 FIFA World Cup|1970]]၊ [[1994 FIFA World Cup|1994]]) |style="background:#cc9966"|1 ({{Nowrap|[[1990 FIFA World Cup|1990]] [[#*|*]]}}) |style="background:#9acdff"|1 ([[1978 FIFA World Cup|1978]]) |align=center| ၈ |- |style="background:gold"|{{fb|ARG}} |style="background:gold"|3 ({{Nowrap|[[1978 FIFA World Cup|1978]] [[#*|*]]}}၊ [[1986 FIFA World Cup|1986]]၊ [[2022 FIFA World Cup|2022]]) |style="background:#C0C0C0"|3 ([[1930 FIFA World Cup|1930]]၊ [[1990 FIFA World Cup|1990]]၊ [[2014 FIFA World Cup|2014]]) | | |align=center| ၆ |- |style="background:gold"|{{fb|FRA}} |style="background:gold"|2 ({{Nowrap|[[1998 FIFA World Cup|1998]] [[#*|*]]}}၊ [[2018 FIFA World Cup|2018]]) |style="background:#C0C0C0"|2 ([[2006 FIFA World Cup|2006]]၊ [[2022 FIFA World Cup|2022]]) |style="background:#cc9966"|2 ([[1958 FIFA World Cup|1958]]၊ [[1986 FIFA World Cup|1986]]) |style="background:#9acdff"|1 ([[1982 FIFA World Cup|1982]]) |align=center| ၇ |- |style="background:gold"|{{fb|URU}} |style="background:gold"|2 ({{Nowrap|[[1930 FIFA World Cup|1930]] [[#*|*]]}}၊ [[1950 FIFA World Cup|1950]]) | | |style="background:#9acdff"|'''3''' ([[1954 FIFA World Cup|1954]]၊ [[1970 FIFA World Cup|1970]]၊ [[2010 FIFA World Cup|2010]]) |align=center| ၅ |- |style="background:gold"|{{fb|ENG}} |style="background:gold"|1 ({{Nowrap|[[1966 FIFA World Cup|1966]] [[#*|*]]}}) | | |style="background:#9acdff"|2 ([[1990 FIFA World Cup|1990]]၊ [[2018 FIFA World Cup|2018]]) |align=center| ၃ |- |style="background:gold"|{{fb|ESP}} |style="background:gold"|1 ([[2010 FIFA World Cup|2010]]) | | |style="background:#9acdff"|1 ([[1950 FIFA World Cup|1950]]) |align=center| ၂ |- |style="background:#C0C0C0"|{{fb|NED}} | |style="background:#C0C0C0"|3 ([[1974 FIFA World Cup|1974]]၊ [[1978 FIFA World Cup|1978]]၊ [[2010 FIFA World Cup|2010]]) |style="background:#cc9966"|1 ([[2014 FIFA World Cup|2014]]) |style="background:#9acdff"|1 ([[1998 FIFA World Cup|1998]]) |align=center| ၅ |- |style="background:#C0C0C0"|{{fb|HUN}} | |style="background:#C0C0C0"|2 ([[1938 FIFA World Cup|1938]]၊ [[1954 FIFA World Cup|1954]]) | | |align=center| ၂ |- |style="background:#C0C0C0"|{{Flag icon|Czech Republic}} [[Czech Republic national football team|Czech Republic]]<sup>[[#2|2]]</sup> | |style="background:#C0C0C0"|2 ([[1934 FIFA World Cup|1934]]၊ [[1962 FIFA World Cup|1962]]) | | |align=center| ၂ |- |style="background:#C0C0C0"|{{fb|SWE}} | |style="background:#C0C0C0"|1 ({{Nowrap|[[1958 FIFA World Cup|1958]] [[#*|*]]}}) |style="background:#cc9966"|2 ([[1950 FIFA World Cup|1950]]၊ [[1994 FIFA World Cup|1994]]) |style="background:#9acdff"|1 ([[1938 FIFA World Cup|1938]]) |align=center| ၄ |- |style="background:#C0C0C0"|{{fb|CRO}} | |style="background:#C0C0C0"|1 ([[2018 FIFA World Cup|2018]]) |style="background:#cc9966"|2 ([[1998 FIFA World Cup|1998]]၊ [[2022 FIFA World Cup|2022]]) | |align=center| ၃ |- |style="background:#cc9966"|{{fb|POL}} | | |style="background:#cc9966"|2 ([[1974 FIFA World Cup|1974]]၊ [[1982 FIFA World Cup|1982]]) | |align=center| ၂ |- |style="background:#cc9966"|{{fb|AUT}} | | |style="background:#cc9966"|1 ([[1954 FIFA World Cup|1954]]) |style="background:#9acdff"|1 ([[1934 FIFA World Cup|1934]]) |align=center| ၂ |- |style="background:#cc9966"|{{fb|POR}} | | |style="background:#cc9966"|1 ([[1966 FIFA World Cup|1966]]) |style="background:#9acdff"|1 ([[2006 FIFA World Cup|2006]]) |align=center| ၂ |- |style="background:#cc9966"|{{fb|BEL}} | | |style="background:#cc9966"|1 ([[2018 FIFA World Cup|2018]]) |style="background:#9acdff"|1 ([[1986 FIFA World Cup|1986]]) |align=center| ၂ |- |style="background:#cc9966"|{{fb|USA}} | | |style="background:#cc9966"|1 ([[1930 FIFA World Cup|1930]]) | |align=center| ၁ |- |style="background:#cc9966"|{{fb|CHI}} | | |style="background:#cc9966"|1 ({{Nowrap|[[1962 FIFA World Cup|1962]] [[#*|*]]}}) | |align=center| ၁ |- |style="background:#cc9966"|{{fb|TUR}} | | |style="background:#cc9966"|1 ([[2002 FIFA World Cup|2002]]) | |align=center| ၁ |- |style="background:#9acdff"|{{fb|SRB}}<sup>[[#3|3]]</sup> | | | |style="background:#9acdff"|2 ([[1930 FIFA World Cup|1930]]၊ [[1962 FIFA World Cup|1962]]) |align=center| ၂ |- |style="background:#9acdff"|{{fb|RUS}}<sup>[[#4|4]]</sup> | | | |style="background:#9acdff"|1 ([[1966 FIFA World Cup|1966]]) |align=center| ၁ |- |style="background:#9acdff"|{{fb|BUL}} | | | |style="background:#9acdff"|1 ([[1994 FIFA World Cup|1994]]) |align=center| ၁ |- |style="background:#9acdff"|{{fb|KOR}} | | | |style="background:#9acdff"|1 ({{Nowrap|[[2002 FIFA World Cup|2002]] [[#*|*]]}}) |align=center| ၁ |- |style="background:#9acdff"|{{fb|MAR}} | | | |style="background:#9acdff"|1 ([[2022 FIFA World Cup|2022]]) |align=center| ၁ |} :<div id="*"><nowiki>*</nowiki> ''hosts''</div> :<div id="1"><sup>1</sup> '' မာ [[Germany national football team#Three German national teams (1945–1990)|West Germany]] (1954–1990)'' ကိုတက်စားပြုရေရလဒ်တိ ပါဝင်ရေ</div> - <div id="2"><sup>2</sup> '' မာ [[Czechoslovakia national football team|Czechoslovakia]] (1934–1990)'' ကို တက်စားပြုရေ ရလဒ်တိ ပါဝင်ရေ</div> - <div id="3"><sup>3</sup> '' မာ [[Yugoslavia national football team|Yugoslavia]] (1930–1990) နန့် [[Serbia and Montenegro national football team|FR Yugoslavia / Serbia and Montenegro]] (1998–2006)''</div> - <div id="4"><sup>4</sup> '' မာ [[Soviet Union national football team|Soviet Union]] (1958–1990)'' ကိုတက်စားပြုရေရလဒ်တိ ပါဝင်ရေ</div> === Best performances by confederations === {{See also|National team appearances in the FIFA World Cup#Results by confederation|l1=FIFA World Cup results by confederation}} ၂၀၀၂ ကမ္ဘာ့ဖလားပြိုင်ပွဲအထဲ [[File:Seoul Plaza 2002 FIFA World Cup.jpg|thumb|right|upright=1.09|South Koreans watching their nation on the big screens in [[Seoul Plaza]] စွာ ဆီမီးဖိုင်နယ်သို့ရောက်နှိုင်ရေ ပထမဆုံးအာသျှနိုင်ငံဖြစ်လာခရေ။]] ဒေနိအထိ၊ ကမ္ဘာ့ဖလားဗိုလ်လုပွဲကို [[UEFA]] (ဥရောပ) နန့် [[CONMEBOL]] (တောင်အမေရိက) အဖွဲ့ချုပ်တိက အသင်းတိရာ ဝင်ရောက်ယှဥ်ပြိုင်ခရေ။ ဥရောပနိုင်ငံတိက ချန်ပီယံဆု ၁၂ ကြိမ်ရထားပြီးသား တောင်အမေရိကနိုင်ငံတိက ၁၀ ကြိမ် အနိုင်ရထားပါရေ။ ယင့်ချင့်တိုက်ကြီးနှစ်ခုပြင်ပမှအသင်းသုံးသင်းသာပြိုင်ပွဲဧ့ဆီမီးဖိုင်နယ်သို့ရောက်ဟိဖူးရေ- [[United States men's national soccer team|United States]] ([[CONCACAF|North, Central America and Caribbean]]) 1930; 2002 ခုနှစ်မာ [[South Korea national football team|South Korea]] ([[Asian Football Confederation|Asia]]) နန့် [[Morocco national football team|Morocco]] ([[Confederation of African Football|Africa]]) 2022။ 2006 ခုနှစ်မာ [[Oceania Football Confederation|Oceanian]] တခုတည်းရေ ခြီစစ်ပွဲ [[Australia men's national soccer team|Australia]] စွာ ဒုတိယအကျော့သို့ ရောက်ဟိလာခပြီး 2022 ခုနှစ်မာ ပြန်ပနာအရာတွင်ခရေ စွမ်းဆောင်မှုတခုဖြစ်တေ။{{refn|group=n|Australia's qualification in 2006 was through the Oceanian zone as they were a member of the [[Oceania Football Confederation|OFC]] member during qualifying. However, on 1 January 2006, they left the Oceania Football Confederation and joined the [[Asian Football Confederation]]. In 2022, they again reached the second round, albeit representing Asia.}} [[Brazil national football team|Brazil]]၊ [[Argentina national football team|Argentina]]၊ [[Spain men's national football team|Spain]] နန့် [[Germany national football team|Germany]] ရို့စွာ ယင်းရို့၏ ကွန်ဖက်ဒရီးရှင်းပြင်ပမာ ကျင်းပရေ ကမ္ဘာ့ဖလားပြိုင်ပွဲကို အနိုင်ရရေ တခုတည်းရေအသင်းတိဖြစ်တေ။ [[UEFA|Europe]] ([[1958 FIFA World Cup|1958]])၊ [[CONCACAF|North America]] ([[1970 FIFA World Cup|1970]] နန့် [[1994 FIFA World Cup|1994]]) နန့် [[Asian Football Confederation|Asia]] ([[2002 FIFA World Cup|2002]]) ရို့မာ ဘရာဇီးက အနိုင်ရဟိခရေ။ အာဂျင်တီးနားစွာ [[1986 FIFA World Cup|1986]] မာ မြောက်အမေရိကမာ ကမ္ဘာ့ဖလားနန့် အာသျှမာ [[2022 FIFA World Cup|2022]] မာ အနိုင်ရခရေ။ စပိန်စွာ [[Confederation of African Football|Africa]] မာ [[2010 FIFA World Cup|2010]] မာ အနိုင်ရခရေ။ [[2014 FIFA World Cup|2014]] မာ ဂျာမနီစွာ အမေရိကမာ အနိုင်ရရေ ပထမဆုံးရေ ဥရောပအသင်းဖြစ်လာခရေ။ ကမ္ဘာ့ ဖလား ငါးကြိမ် ဆက်တိုက် သာ ရဟိ ခပြီးကေ တိုက်ကြီး တခု မှ အသင်း တိ ၊ ယူအီးအက်ဖ်အေအသင်း (အီတလီ၊ စပိန်၊ ဂျာမနီ၊ ပြင်သစ်၊ နန့် ပြင်သစ်ရို့ အသီးသီး) ဖြင့် အနိုင်ရရေ အရှည်ကြာဆုံးပြိုင်ပွဲ လေးခုမာ [[2006 FIFA World Cup|2006]]၊ [[2010 FIFA World Cup|2010]]၊ [[2014 FIFA World Cup|2014]]၊ {| class="wikitable" style="text-align:center" |+ အဖွဲ့ချုပ်မှ အရည်အခြင်းပြည့်မီရေ အသင်းတိ စုစုပေါင်းအကြိမ် |- ! scope="row" | ကွန်ဖက်ဒရီးရှင်း ! scope="col" |[[Asian Football Confederation|AFC]] ! scope="col" |[[Confederation of African Football|CAF]] ! scope="col" |[[CONCACAF]] ! scope="col" |[[CONMEBOL]] ! scope="col" |[[Oceania Football Confederation|OFC]] ! scope="col" |[[UEFA]] ! scope="col" | စုစုပေါင်း |- | သင်း|| 43 || 49 || 46 || 89 || 4 || 258 || ၄၈၉ |- | ထိပ်တန်း 16 || 9 || 11 || 15 || ၃၇ || ၁ || 99 || ၁၇၂ |- | ထိပ်တန်း 8 || 2 || 4 || 5 || ၃၆ || 0 || 105 || ၁၅၂ |- | ထိပ်တန်း 4 || ၁ || ၁ || ၁ || ၂၃ || 0 || 62 || ၈၈ |- | ထိပ်တန်း 2 || 0 || 0 || 0 || 15 || 0 || ၂၉ || ၄၄ |- | style="background: #9acdff" | 4th || ၁ || ၁ || 0 || 5 || 0 || 15 || ၂၂ |- | style="background: #cc9966" | 3rd || 0 || 0 || ၁ || ၃ || 0 || ၁၈ || ၂၂ |- | style="background: #C0C0C0" | 2nd || 0 || 0 || 0 || 5 || 0 || 17 || ၂၂ |- style="border-top:3px အစိမ်းရင့်ရောင်" | style="background: ရွှီ" | 1st || 0 || 0 || 0 || 10 || 0 || ၁၂|| ၂၂ |} == Records and statistics == {{Main|FIFA World Cup records and statistics|National team appearances in the FIFA World Cup}} {{See also|List of players who have appeared in the most FIFA World Cups|List of FIFA World Cup winning players|List of FIFA World Cup winning managers}} [[File:Lionel-Messi-Argentina-2022-FIFA-World-Cup (cropped).jpg|thumb|upright|Argentina's [[Lionel Messi]] စွာ ပူးတွဲ စံချိန်တင် ပြိုင်ပွဲ ၅ ခုမာ ကမ္ဘာ့ဖလား ၂၆ ပွဲ စံချိန်တင် ကစပ်ထားရေ။]] [[File:Cristiano Ronaldo 20120609.jpg|thumb|upright|[[Cristiano Ronaldo]] စွာ ပြိုင်ပွဲငါးခုမာ ဂိုးသွင်းယူနှိုင်ရေ ပထမဆုံးနန့် တဦးတည်းရေ ကစပ်သမားဖြစ်တေ။]] ကစပ်သမား ခြောက်ဦးစွာ [[List of players who have appeared in multiple FIFA World Cups|playing in the most World Cups]] အတွက် မှတ်တမ်းကို မျှဝီရေ။ [[Mexico national football team|Mexico]] ဧ့ [[Antonio Carbajal]] (1950–1966), [[Rafael Márquez]] (2002–2018), နန့် [[Andrés Guardado]] (2006–2022); [[Germany national football team|Germany]] ဧ့ [[Lothar Matthäus]] (1982–1998); [[Argentina national football team|Argentina]] ဧ့ [[Lionel Messi]] (2006–2022); [[Portugal national football team|Portugal]] ဧ့ [[Cristiano Ronaldo]] (2006-2022) စွာ ပြိုင်ပွဲ 5 ခုမာ ပါဝင်ကစားခပြီး ရော်နယ်ဒိုစွာ ပြိုင်ပွဲ 5 ခုမာ ဂိုးသွင်းယူနှိုင်ရေ ပထမဆုံးနန့် တဦးတည်းရေကစပ်သမားလည်းဖြစ်တေ။<ref>{{cite news |url=https://query.nytimes.com/gst/fullpage.html?res=9C00EFD8103AF933A25752C1A96F958260 |title=Matthaus Is the Latest MetroStars Savior |work=[[The New York Times]] |last=Yannis |first=Alex |date=10 November 1999 |access-date=23 December 2007 |archive-url=https://web.archive.org/web/20081217020729/https://query.nytimes.com/gst/fullpage.html?res=9C00EFD8103AF933A25752C1A96F958260 |archive-date=17 December 2008 |url-status=live}}</ref><ref>{{cite news |last1=Church |first1=Ben |title=Cristiano Ronaldo refuses to let light dim on his career as he makes history at Qatar 2022 |url=https://www.cnn.com/2022/11/24/football/portugal-ghana-cristiano-ronaldo-spt-intl/index.html |work=CNN |date=24 November 2022 |access-date=25 November 2022 |archive-date=25 November 2022 |archive-url=https://web.archive.org/web/20221125202102/https://www.cnn.com/2022/11/24/football/portugal-ghana-cristiano-ronaldo-spt-intl/index.html |url-status=live}}</ref> Messi စွာ ကမ္ဘာ့ဖလားပြိုင်ပွဲစုစုပေါင်း 26 ကြိမ်ကစပ်ထားပြီးသား 26 ကြိမ်ပါဝင်ကစပ်ထားရေ။ [[Brazil national football team|Brazil]] ဧ့ [[Djalma Santos]] (1954–1962)၊ အနောက်ဂျာမနီမှ [[Franz Beckenbauer]] (1966–1974) နန့် ဂျာမနီမှ [[Philipp Lahm]] (2006–2014) ရို့စွာ ကမ္ဘာ့ဖလားပြိုင်ပွဲမာ [[Franz Beckenbauer]] (၃)ကြိမ် အဖို့ပီးခံရရေ တဦးတည်းရေ ကစပ်သမားတိဖြစ်တေ။ ဂျာမနီမှ [[Miroslav Klose]] (2002-2014) စွာ 16 ဂိုးဖြင့် ကမ္ဘာ့ဖလားမာ ဂိုးသွင်းအများဆုံးဖြစ်တေ။ သူစွာ [[Brazil v Germany (2014 FIFA World Cup)|2014 semi-final match against Brazil]] အတွင်းမာ ဘရာဇီး၏ 15 ဂိုး (1998-2006) စံချိန်ကို ချိုးဖျက်ခပါရေ။ အနောက်ဂျာမနီမှ [[Gerd Müller]] (1970–1974) စွာ 14 ဂိုးဖြင့် တတိယ နီရာတွင် ရပ်တည်ခရေ။<ref>{{cite news |url=https://news.bbc.co.uk/sport2/hi/football/world_cup_2006/teams/brazil/5112982.stm |title=Ronaldo's riposte |work=BBC Sport |date=27 June 2006 |last=Chowdhury |first=Saj |access-date=23 December 2007 |archive-url=https://web.archive.org/web/20060706072508/http://news.bbc.co.uk/sport1/hi/football/world_cup_2006/teams/brazil/5112982.stm |archive-date=6 July 2006 |url-status=live}}</ref> စတုတ္ထနီရာမှ ဂိုးသွင်းသူ [[France national football team|France]] ဧ့ [[Just Fontaine]] စွာ ကမ္ဘာ့ဖလား တခေါက်တည်းမာ ဂိုးအများဆုံးသွင်းသူအဖြစ် မှတ်တမ်းဝင်ခရေ။ သူ့ 13 ဂိုးအားလုံးကို 1958 ပြိုင်ပွဲမာ သွင်းယူနှိုင်ခပါရေ။<ref>{{cite news |url=https://news.bbc.co.uk/sport3/worldcup2002/hi/team_pages/france/newsid_1752000/1752740.stm |title=Goal machine was Just superb |work=BBC Sport |date=4 April 2002 |access-date=23 December 2007 |archive-url=https://web.archive.org/web/20020804032601/http://news.bbc.co.uk/sport3/worldcup2002/hi/team_pages/france/newsid_1752000/1752740.stm |archive-date=4 August 2002 |url-status=live}}</ref> [[File:Pelé à la Coupe du monde de football 1970, 'Mexico 70 - World Cup Story', Panini figurina n°38.jpg|thumb|upright|[[Pelé]] စွာ ကစပ်သမားအဖြစ် သုံးကတ်ိမ်လုံးလုံး ကမ္ဘာ့ဖလားကို ဆွတ်ခူးနိုင်သူဖြစ်တေ။]] 2007 ခုနှစ် နိုဗန်ဘာလမာ ဖီဖာမှ 1930 ခုနှစ်မှ 1974 ခုနှစ်အထဲ ကမ္ဘာ့ဖလားရခရေ အသင်းတိ၏ အဖွဲ့ဝင်အားလုံးကို ဆုတံဆိပ်တိကို နောက်ကြောင်းပြန် ချီးမြှင့်ကြောင်း ကြေညာခရေ။ <ref name="espnheroes" /> This made Brazil's [[Pelé]] the only player to have won three World Cup winners' medals (1958, 1962, and 1970, although he did not play in the 1962 final due to injury),<ref>{{cite news |url=http://sports.espn.go.com/espn/classic/bio/news/story?page=Pele |title=Pele, King of Futbol |publisher=ESPN |last=Kirby |first=Gentry |date=5 July 2006 |access-date=23 December 2007 |url-status=dead |archive-url=https://web.archive.org/web/20081216151353/http://sports.espn.go.com/espn/classic/bio/news/story?page=Pele |archive-date=16 December 2008}}</ref> နန့် [[List of players who have won multiple FIFA World Cups|20 other players who have won two winners' medals]]။ ကစပ်သမား ခနစ်ဦးစွာ ကမ္ဘာ့ဖလားဆုတံဆိပ် (၃)မျိုးစလုံး (ဆုရှင်၊ ဒုတိယဆုနန့် တတိယဆု) ရို့ကို စုဆောင်းခရေ။ အနောက်ဂျာမနီအသင်းဧ့ 1966-1974 ခုနှစ်မှ ကစပ်သမားငါးဦးစွာ Franz Beckenbauer၊ [[Jürgen Grabowski]]၊ [[Horst-Dieter Höttges]]၊ [[Sepp Maier]] နန့် [[Wolfgang Overath]] (1966–1974)၊ အီတလီနိုင်ငံ WKTOKEN 119 (159)၊ 1994) နန့် နောက်ဆုံးထွက်စာရင်းမာ ဂျာမနီနိုင်ငံဧ့ [[Miroslav Klose]] (2002-2014) မှ လေးနှစ်ဆက်တိုက် ဆုတံဆိပ်တိရဟိခရေ။<ref>{{cite news |title=Brazil, Germany & Every World Cup Winner from 1930 to 2014 |url=http://www.goal.com/en-gb/lists/brazil-germany-every-world-cup-winner-from-1930-to-2014/1elichzqoj1py1xvzpnd3ykw7m |work=Goal |date=13 May 2018|archive-url=https://web.archive.org/web/20180319121604/http://www.goal.com/en-gb/lists/brazil-germany-every-world-cup-winner-from-1930-to-2014/1elichzqoj1py1xvzpnd3ykw7m|archive-date=19 March 2018|url-status=live}}</ref> ဘရာဇီးမှ [[Mário Zagallo]]၊ အနောက်ဂျာမနီမှ Franz Beckenbauer နန့် ပြင်သစ်မှ [[Didier Deschamps]] ရို့စွာ ကစပ်သမားနန့် နည်းပြချုပ်အဖြစ် ကမ္ဘာ့ဖလားကို ဒေနိအထိ ဆွတ်ခူးနှိုင်ရေ တဦးတည်းရေသူတိဖြစ်တေ။ Zagallo စွာ 1958 နန့် 1962 မာကစပ်သမားအဖြစ်အနိုင်ရခပြီးကေ 1970 မာနည်းပြအဖြစ်တာဝန်ယူခရေ။<ref>{{cite news |last=Hughes |first=Rob |date=11 March 1998 |url=http://www.iht.com/articles/1998/03/11/soccer.t_7.php |title=No Alternative to Victory for National Coach : 150 Million Brazilians Keep Heat on Zagalo |work=International Herald Tribune |access-date=31 December 2007 |archive-url=https://web.archive.org/web/20080226063509/http://www.iht.com/articles/1998/03/11/soccer.t_7.php <!-- Bot retrieved archive --> |archive-date = 26 February 2008}}</ref> Beckenbauer စွာ 1974 မာအသင်းဂေါင်းဆောင်အဖြစ်အနိုင်ရခပြီးကေ 1990 မာအသင်းနည်းပြအဖြစ် <ref>{{cite news |url=http://soccernet.espn.go.com/archive/worldcup/editorial/legends_beckenbauer.html |title=World Cup Legends – Franz Beckenbauer |website=ESPNSoccernet.com |publisher=ESPN |last=Brewin |first=John |date=21 December 2001 |access-date=31 December 2007|archive-url=https://web.archive.org/web/20091119134454/http://soccernet.espn.go.com/archive/worldcup/editorial/legends_beckenbauer.html |archive-date=19 November 2009}}</ref> နန့် Deschamps ရို့စွာ 2018 မာစွမ်းဆောင်ရည်ကိုအရာထခါပြုလုပ်ခရေ။49WK TO စွာအသင်းဂေါင်းဆောင်အဖြစ် 1990 မာအနိုင်ရဟိပြီးကေ [[Italy national football team|Italy]] ဧ့ [[Vittorio Pozzo]] စွာ ကမ္ဘာ့ဖလား နှစ်ကြိမ် (1934 နန့် 1938) ကို ဆွတ်ခူးဖူးရေ တဦးတည်းရေ နည်းပြဖြစ်တေ။<ref>{{cite news |url=http://www.cbc.ca/sports/soccer/1938-world-cup-italy-repeats-as-champions-1.853724 |title=1938 World Cup: Italy repeats as champions |publisher=CBC |date=21 November 2009|access-date=12 July 2014 |archive-url=https://web.archive.org/web/20140519223256/http://www.cbc.ca/sports/soccer/1938-world-cup-italy-repeats-as-champions-1.853724 |archive-date=19 May 2014 |url-status=live}}</ref> ကမ္ဘာ့ဖလားရဖူးရေ နည်းပြတိအားလုံး အောင်ပွဲရရန် နည်းပြခရေ နိုင်ငံမှ မွီးရပ်မြီတိ ဖြစ်တေ။<ref>{{cite news |title=The Curse of the Foreign-Born Coach |url=https://www.wsj.com/articles/SB10001424052748704366504575278893868082062 |work=[[The Wall Street Journal]] |date=13 May 2018|archive-url=https://web.archive.org/web/20150725200956/https://www.wsj.com/articles/SB10001424052748704366504575278893868082062|archive-date=25 July 2015|url-status=live}}</ref> နိုင်ငံအသင်းတိထဲမှာ ဘရာဇီးက ကမ္ဘာ့ဖလားအများဆုံး (၁၁၄)ပွဲ၊ ဂျာမနီက အများဆုံး (၈)ပွဲ၊ ဆီမီးဖိုင်နယ် (၁၃)နန့် ကွာတားဖိုင်နယ် (၁၆)ပွဲ၊ ဘရာဇီးက ကမ္ဘာ့ဖလား (၂၂)ပွဲ၊ အများဆုံး (၇၆)ပွဲနန့် ဂိုးအများဆုံး (၂၃၇)ဂိုး သွင်းယူထားပါရေ။ကမ္ဘာ့ဖလား (၂၃၇)ကြိမ်၊ <ref>{{cite web |url=https://www.worldfootball.net/competition/co139/records-all-time-table/ |title=World Football – All time table |publisher=World Football |access-date=13 July 2014 |archive-date=9 June 2022 |archive-url=https://web.archive.org/web/20220609165606/https://www.worldfootball.net/alltime_table/wm/ |url-status=live}}</ref>WKTOKEN၊ [[2002 FIFA World Cup Final|2002 final]] နန့် [[Brazil v Germany (2014 FIFA World Cup)|2014 semi-final]].<ref>{{cite news |title=Five Aside: Germany – Brazil preview |url=https://www.espn.com/soccer/story/_/id/37398297/brazil-neymar-play-world-cup-semifinal-match-vs-germany |publisher=ESPN|access-date=13 May 2018 |date=7 July 2014|archive-url=https://web.archive.org/web/20180514141642/http://www.espn.com/soccer/blog/name/77/post/1936258/headline|archive-date=14 May 2018|url-status=live}}</ref> မာ === ဂိုးသွင်းအများဆုံးကစားသမား === {{Main|List of FIFA World Cup top goalscorers}} ;တဦးချင်း {{small|Players in '''bold''' are still active.}} [[File:Miroslav Klose Portrait.JPG|thumb|upright|[[Miroslav Klose]] စွာ ကမ္ဘာ့ဖလား ချေကြိမ်မာ 16 ဂိုး စံချိန်တင် သွင်းခရေ။]] {| class="sortable wikitable" style="text-align:center" |- !အဆင့် !ကစပ်သမား !ပန်းတိုင် !ပွဲတိ !တပွဲကေဂိုးတိ |- |၁ |align=left|{{fbicon|GER}} [[Miroslav Klose]] |၁၆ |၂၄ |{{Decimals|16/24|2}} |- |၂ |align=left|{{fbicon|BRA}} [[Ronaldo (Brazilian footballer)|Ronaldo]] |၁၅ |၁၉ |{{Decimals|16/19|2}} |- |၃ |align=left|{{fbicon|FRG}} [[Gerd Müller]] |၁၄ |၁၃ |{{Decimals|14/13|2}} |- |rowspan=2|4 |align=left|{{fbicon|FRA}} [[Just Fontaine]] |၁၃ |၆ |{{Decimals|13/6|2}} |- |align=left|{{fbicon|ARG}} '''[[Lionel Messi]]''' |၁၃ |၂၆ |{{Decimals|13/26|2}} |- |rowspan=2|6 |align=left|{{fbicon|FRA}} '''[[Kylian Mbappé]]''' |၁၂ |၁၄ |{{Decimals|12/14|2}} |- |align=left|{{fbicon|BRA}} [[Pelé]] |၁၂ |၁၄ |{{Decimals|12/14|2}} |- |rowspan=2|8 |align=left|{{fbicon|HUN|1949}} [[Sándor Kocsis]] |၁၁ |၅ |{{Decimals|11/5|2}} |- |align=left|{{fbicon|GER}} [[Jürgen Klinsmann]] |၁၁ |၁၇ |{{Decimals|11/17|2}} |- |rowspan=6|10 |align=left|{{fbicon|GER}} [[Helmut Rahn]] |၁၀ |၁၀ |{{Decimals|10/10|2}} |- |align=left|{{fbicon|ARG}} [[Gabriel Batistuta]] |၁၀ |၁၂ |{{Decimals|10/12|2}} |- |align=left|{{fbicon|ENG}} [[Gary Lineker]] |၁၀ |၁၂ |{{Decimals|10/12|2}} |- |align=left|{{fbicon|PER}} [[Teófilo Cubillas]] |၁၀ |၁၃ |{{Decimals|10/13|2}} |- |align=left|{{fbicon|GER}} [[Thomas Müller]] |၁၀ |၁၉ |{{Decimals|10/19|2}} |- |align=left|{{fbicon|POL}} [[Grzegorz Lato]] |၁၀ |၂၀ |{{Decimals|10/20|2}} |- |} ;နိုင်ငံ {| class="wikitable" style="text-align:center" |- !အဆင့် !အမျိုးသားအသင်း !ဂိုးတိသွင်းရေ။ |- | ၁ || align="left"|{{fb|Brazil}} || ၂၃၇ |- | 2 || align="left"|{{fb|Germany}} || ၂၃၂ |- | ၃ || align="left"|{{fb|Argentina}} || ၁၅၂ |- | 4 || align="left"|{{fb|France}} || ၁၃၆ |- | 5 || align="left"|{{fb|Italy}} || ၁၂၈ |- | 6 || align="left"|{{fb|Spain}} || ၁၀၈ |- | ၇ || align="left"|{{fb|England}} || ၁၀၄ |- | 8 || align="left"|{{fb|Netherlands}} || ၉၆ |- | 9 || align="left"|{{fb|Uruguay}} || ၈၉ |- | 10 || align="left"|{{fb|Hungary}} || ၈၇ |} == Awards == {{Main|FIFA World Cup awards}} ကမ္ဘာ့ဖလားပြိုင်ပွဲတစ်ခုကျဧ့ အဆုံးမာ၊ ပြိုင်ပွဲမာ ယင်းရို့၏နောက်ဆုံးအသင်းနီရာတိကလွဲလို့ အရာအောင်မြင်မှုတိအတွက် ကစပ်သမားတိနန့် အသင်းတိအား ဆုတိပီးအပ်ဖို့ဖြစ်တေ။ * FIFA နည်းပညာလိလာရီးအဖွဲ့မှ ဆုငါးဆု ဟိရေ- <ref>{{cite web |url=https://www.fifa.com/worldcup/awards/index.html|archive-url=https://web.archive.org/web/20100628013902/http://www.fifa.com/worldcup/awards/index.html|url-status=dead|archive-date=28 June 2010 |title=2010 FIFA World Cup: Awards |publisher=FIFA.com|access-date=20 July 2014}}</ref><ref>{{cite news |title=2018 FIFA World Cup Technical Report |url=https://digitalhub.fifa.com/m/649e84967b086928/original/evdvpfdkueqrdlbbrrus-pdf.pdf |access-date=13 November 2022 |publisher=FIFA.com |archive-url=https://web.archive.org/web/20210808062317/https://digitalhub.fifa.com/m/649e84967b086928/original/evdvpfdkueqrdlbbrrus-pdf.pdf |archive-date=8 August 2021 |url-status=live}}</ref> [[File:Argentina celebrando copa (cropped).jpg|thumb|upright|[[Diego Maradona]] (ကမ္ဘာ့ဖလားကိုင်ဆောင်ခြင်း) စွာ 1986 ကမ္ဘာ့ဖလားမာ ကောင်းဘီယက်ကစပ်သမားအတွက် ရွှီဘောလုံးကို ရဟိခရေ။]] **ကောင်းဘီယက်ကစပ်သမားအတွက် '''Golden Ball''' (ယင်းဧ့စပွန်ဆာ "[[Adidas]] Golden Ball" အတွက် အဖို့ပီးထားရေ)၊ [[1982 FIFA World Cup|1982]] မာ ပထမဆုံးချီးမြှင့်ရေ ကောင်းဘီယက်ကစပ်သမား၊ **'''Golden Boot''' (ယင်းဧ့စပွန်ဆာ "Adidas ရွှီဖိနပ်" ဟုအဖို့ပီးထားရေ 1982 ခုနှစ်မှ 2006 ခုနှစ်အထိ "adidas ရွှီဖိနပ်" ဟုအဖို့ပီးထားရေ) ထိပ်တန်းဂိုးသွင်းရှင်အတွက် 1982 ခုနှစ်မာ ပထမဆုံးချီးမြှင့်ရေ၊ **The '''Golden Glove''' (ယင်းဧ့စပွန်ဆာ "Adidas Golden Glove" ဟုအဖို့ပီးထားရေ အယင်က "[[Lev Yashin]] Award" အဖြစ် 1994 မှ 2006 အထိ)) ကောင်းဘီယက်ဂိုးစောင့်အတွက် [[1994 FIFA World Cup|1994]] မာ ပထမဆုံးချီးမြှင့်ရေ၊ **'''FIFA လူငယ်ကစပ်သမားဆု''' (အယင် "ကောင်းဘီယက်လူငယ်ကစပ်သမားဆု" အဖြစ် 2006 ခုနှစ်မှ 2010 ခုနှစ်အထိ) အသက် 21 နှစ်အောက် ကောင်းဘီယက်ကစပ်သမားအတွက် ပက္ခဒိန်နှစ်အစမာ [[2006 FIFA World Cup|2006]] မာ ပထမဆုံးချီးမြှင့်ရေ၊ **'''FIFA Fair Play Trophy''' စွာ ကောင်းဘီယက်မျှတရေကစပ်နည်းနန့် ဒုတိယအကျော့သို့ တက်လှမ်းခရေအဖွဲ့အတွက် [[1970 FIFA World Cup|1970]] မာ ပထမဆုံးချီးမြှင့်ရေ။ *အဂုအချိန်မာ ပြိုင်ပွဲအထဲ ပရိသတ်တိ မဲပီးရွီးချယ်ရေ ဆုတဆု ဟိပါရေ။ **''' ပွဲစဉ်ဧ့ ''' ကစပ်သမား (အဂုလက်ဟိ စီးပွားရီးအရ "[[Budweiser]] ပွဲဧ့ကစပ်သမား" ဟုခေါ်မာရေ အယင်က "ပွဲစဉ်ဧ့လူ" အဖြစ် လူသိများရေ 2002 မှ 2018 ခုနှစ်အထိ) ပြိုင်ပွဲဧ့ ပွဲစဉ်တိုင်းအထဲ ထူးချွန်ရေစွမ်းဆောင်ရည်အတွက် KEN24WKTO မှ ပထမဆုံး ချီးမြှင့်ရေ။ * ပြိုင်ပွဲအပြီးမာ ပရိသတ်တိက မဲပီးရွီးချယ်ရေ ဆုနှစ်ခုဟိရေ။ **ပြိုင်ပွဲဧ့ '''Goal''' (ဂုခေတ်မာ "[[Hyundai Motor Company|Hyundai]] Goal of the Tournament") စွာ ပြိုင်ပွဲအထဲ ပရိသတ်တိ၏ကောင်းဘီယက်သွင်းဂိုးအတွက် [[2006 FIFA World Cup|2006]] မာ ပထမဆုံးချီးမြှင့်ရေ၊ **ကမ္ဘာ့ဖလားနောက်ဆုံးပြိုင်ပွဲအထဲ ''' ဖျော်ဖြီမှုအဟိဆုံးအသင်း''' စွာ အများသူငှာ စစ်တမ်းတခုမှ ဆုံးဖြတ်ထားရေအတိုင်း၊ * ၁၉၉၄ မှ ၂၀၀၆ အထဲ အရာဆုတခု ပီးအပ်ခရေ- <ref>{{cite web |work=USA Today |url=http://usatoday30.usatoday.com/sports/soccer/2010-07-21-3892418419_x.htm |title=FIFA eliminates official World Cup All-Star team |date=21 July 2010|archive-url=https://web.archive.org/web/20140721001113/http://usatoday30.usatoday.com/sports/soccer/2010-07-21-3892418419_x.htm|archive-date=21 July 2014|url-status=live}}</ref> **FIFA နည်းပညာလိလာရီးအဖွဲ့မှ ရွီးချယ်ထားရေ ပြိုင်ပွဲဧ့ကောင်းဘီယက်ကစပ်သမားတိပါဝင်ရေ '''All-Star Team'''။ 2010 ခုနှစ်မှစတင်ပနာ ဖီဖာကိုယ်တိုင် အစီအစာခံထားရေအတိုင်း Dream Teams သို့မဟုတ် Statistical Teams တိအားလုံးစွာ တရားဝင်မဟုတ်လီ။ {| class="wikitable" !ကမ္ဘာ့ဖလား !ရွှီဘောလုံး !ရွှီဖိနပ် !ပန်းတိုင် !ရွှီလက်အိတ် !စာရွက်တိ ရှင်းသန့်ပါ။ !FIFA လူငယ်ကစပ်သမားဆု !FIFA Fair Play ဆုဖလား |- |{{flagicon|Uruguay}} [[1930 FIFA World Cup|1930 Uruguay]] |rowspan="11" align=center|'' ဆုမချီးမြှင့်ပါ'' |{{fbicon|ARG}} [[Guillermo Stábile]] |align=center|၈ |rowspan="14" align=center|'' ဆုမချီးမြှင့်ပါ'' |rowspan="14" align=center|''N/A'' |rowspan="5" align=center|'' ဆုမချီးမြှင့်ပါ'' |rowspan="8" align=center|'' ဆုမချီးမြှင့်ပါ'' |- |{{flagicon|Italy|1861}} [[1934 FIFA World Cup|1934 Italy]] |{{fbicon|TCH}} [[Oldřich Nejedlý]] |align=center| ၅ |- |{{flagicon|France|1794}} [[1938 FIFA World Cup|1938 France]] |{{fbicon|BRA|1889}} [[Leônidas (footballer, born 1913)|Leônidas]] |align=center|၇ |- |{{flagicon|Brazil|1889}} [[1950 FIFA World Cup|1950 Brazil]] |{{fbicon|BRA|1889}} [[Ademir Marques de Menezes|Ademir]] |align=center|၉ |- |{{flagicon|Switzerland}} [[1954 FIFA World Cup|1954 Switzerland]] |{{fbicon|HUN|1949}} [[Sándor Kocsis]] |align=center|၁၁ |- |{{flagicon|Sweden}} [[1958 FIFA World Cup|1958 Sweden]] |{{fbicon|FRA}} [[Just Fontaine]] |align=center|၁၃ |{{fbicon|BRA|1889}} [[Pelé]] |- |{{flagicon|Chile}} [[1962 FIFA World Cup|1962 Chile]] |{{fbicon|HUN}} [[Flórián Albert]]<br />{{fbicon|BRA|1960}} [[Garrincha]]<br />{{fbicon|BRA|1960}} [[Vavá]]<br />{{fbicon|URS|1955}} [[Valentin Kozmich Ivanov|Valentin Ivanov]]<br />{{fbicon|BRA|1960}}7 />{{fbicon|CHI}} [[Leonel Sánchez]] |align=center|၄ |{{fbicon|HUN}} [[Flórián Albert]] |- |{{flagicon|England}} [[1966 FIFA World Cup|1966 England]] |{{fbicon|POR}} [[Eusébio]] |align=center|၉ |{{fbicon|FRG}} [[Franz Beckenbauer]] |- |{{flagicon|Mexico}} [[1970 FIFA World Cup|1970 Mexico]] |{{fbicon|FRG}} [[Gerd Müller]] |align=center|၁၀ |{{fbicon|PER|state}} [[Teófilo Cubillas]] |{{fb|PER|state}} |- |{{Nowrap|{{flagicon|West Germany}}}} [[1974 FIFA World Cup|1974 West Germany]] |{{fbicon|POL|1928}} [[Grzegorz Lato]] |align=center|၇ |{{fbicon|POL|1928}} [[Władysław Żmuda (born 1954)|Władysław Żmuda]] |{{fb|FRG}} |- |{{flagicon|Argentina}} [[1978 FIFA World Cup|1978 Argentina]] |{{fbicon|ARG}} [[Mario Kempes]] |align=center|၆ |{{fbicon|ITA|1946}} [[Antonio Cabrini]] |{{fb|ARG}} |- |{{flagicon|Spain}} [[1982 FIFA World Cup|1982 Spain]] |{{fbicon|ITA|1946}} [[Paolo Rossi]] |{{fbicon|ITA}} [[Paolo Rossi]] |align=center|၆ |{{fbicon|FRA|1974}} [[Manuel Amoros]] |{{fb|BRA|1968}} |- |{{flagicon|Mexico}} [[1986 FIFA World Cup|1986 Mexico]] |{{fbicon|ARG}} [[Diego Maradona]] |{{fbicon|ENG}} [[Gary Lineker]] |align=center|၆ |{{fbicon|BEL}} [[Enzo Scifo]] |{{fb|BRA|1968}} |- |{{flagicon|Italy|1946}} [[1990 FIFA World Cup|1990 Italy]] |{{fbicon|ITA|1946}} [[Salvatore Schillaci]] |{{fbicon|ITA}} [[Salvatore Schillaci]] |align=center|၆ |{{fbicon|YUG}} [[Robert Prosinečki]] |{{fb|ENG}} |- |{{flagicon|United States}} [[1994 FIFA World Cup|1994 United States]] |{{fbicon|BRA}} [[Romário]] |{{fbicon|RUS}} [[Oleg Salenko]]<br />{{fbicon|BUL}} [[Hristo Stoichkov]] |align=center|၆ |{{fbicon|BEL}} [[Michel Preud'homme]] |align=center|၂ |{{fbicon|NED}} [[Marc Overmars]] |{{fb|BRA}} |- |{{flagicon|France|1974}} [[1998 FIFA World Cup|1998 France]] |{{fbicon|BRA}} [[Ronaldo (Brazilian footballer)|Ronaldo]] |{{flagicon|CRO}} [[Davor Šuker]] |align=center|၆ |{{fbicon|FRA|1974}} [[Fabien Barthez]] |align=center|၅ |{{fbicon|ENG}} [[Michael Owen]] |{{fb|ENG}}<br />{{fb|FRA}} |- |{{flagicon|South Korea|1997}}{{flagicon|Japan}} [[2002 FIFA World Cup|2002 South Korea/Japan]] |{{fbicon|GER}} [[Oliver Kahn]] |{{fbicon|BRA}} [[Ronaldo (Brazilian footballer)|Ronaldo]] |align=center|၈ |{{fbicon|GER}} [[Oliver Kahn]] |align=center|၅ |{{fbicon|USA}} [[Landon Donovan]] |{{fb|BEL}} |- |{{flagicon|Germany}} [[2006 FIFA World Cup|2006 Germany]] |{{fbicon|FRA|1974}} [[Zinedine Zidane]] |{{fbicon|GER}} [[Miroslav Klose]] |align=center|၅ |{{fbicon|ITA|2003}} [[Gianluigi Buffon]] |align=center|၅ |{{fbicon|GER}} [[Lukas Podolski]] |{{fb|BRA}}<br />{{fb|ESP}} |- |{{flagicon|South Africa}} [[2010 FIFA World Cup|2010 South Africa]] |{{fbicon|URU}} [[Diego Forlán]] |{{fbicon|GER}} [[Thomas Müller]] |align=center|၅ |{{fbicon|ESP}} [[Iker Casillas]] |align=center|၅ |{{fbicon|GER}} [[Thomas Müller]] |{{fb|ESP}} |- |{{flagicon|Brazil}} [[2014 FIFA World Cup|2014 Brazil]] |{{fbicon|ARG}} [[Lionel Messi]] |{{fbicon|COL}} [[James Rodríguez]] |align=center|၆ |{{fbicon|GER}} [[Manuel Neuer]] |align=center|၄ |{{fbicon|FRA|1974}} [[Paul Pogba]] |{{fb|COL}} |- |{{flagicon|Russia}} [[2018 FIFA World Cup|2018 Russia]] |{{fbicon|CRO}} [[Luka Modrić]] |{{fbicon|ENG}} [[Harry Kane]] |align=center|၆ |{{fbicon|BEL}} [[Thibaut Courtois]] |align=center|၃ |{{fbicon|FRA|1974}} [[Kylian Mbappé]] |{{fb|ESP}} |- |{{flagicon|Qatar}} [[2022 FIFA World Cup|2022 Qatar]] |{{fbicon|ARG}} [[Lionel Messi]] |{{fbicon|FRA}} [[Kylian Mbappé]] |align=center|၈ |{{fbicon|ARG}} [[Emiliano Martínez]] |align=center|၃ |{{fbicon|ARG}} [[Enzo Fernández]] |{{fb|ENG}} |} == ဆက်စပ်ကြေ့ပါ == * [[ဖီဖာ ကမ္ဘာ့ဖလား ဗိုလ်လုပွဲများစာရင်း]] * [[ဖီဖာ ကမ္ဘာ့ဖလား မှတ်တမ်းတိနန့် စာရင်းအင်းများ]] * [[ဖီဖာ ကမ္ဘာ့ဖလား ဆုတိ]] * [[ဖီဖာ အသက် ၂၀ နှစ်အောက် ကမ္ဘာ့ဖလား]] * [[ဖီဖာ အသက် ၁၇ နှစ်အောက် ကမ္ဘာ့ဖလား]] * [[ဖီဖာ ကလပ် ကမ္ဘာ့ဖလား]] * [[ဖီဖာ ကမ်းခြီဘောလုံး ကမ္ဘာ့ဖလား]] * [[ဖီဖာ ဖူဆယ် ကမ္ဘာ့ဖလား]] * [[ဖီဖာ ကွန်ဖက်ဒရေးရှင်း ဖလား]] * [[အသင်းအဖွဲ့ ဘောလုံးပြိုင်ပွဲများစာရင်း]] == မှတ်စုတိ == {{reflist|group=n}} == ကိုးကားချက်တိ == {{Reflist}} == စာစုစာရင်း == {{refbegin}} * {{cite book |last=Glanville |first=Brian |year=2005 |title=The Story of the World Cup |publisher=Faber |isbn=0-571-22944-1}} {{refend}} == ပြင်ပလင့်ခ်တိ == * {{Official website}} * [[RSSSF]] မာ [https://www.rsssf.org/tablesw/worldcup.html World Cup overview] {{Commons category}} {{Portal bar|Sports|Association football|World}} {{FIFA World Cup}} {{Navboxes |titlestyle = background:#ccccff |list = {{FIFA World Cup winners}} {{FIFA World Cup winning managers}} {{FIFA World Cup top scorers}} {{FIFA World Cup Golden Ball}} {{FIFA World Cup Golden Glove}} {{FIFA World Cup official match balls}} {{FIFA World Cup video games}} {{FIFA World Cup Best Young Player}} {{Countries at the FIFA World Cup}} {{FIFA World Cup music}} {{FIFA World Cup bids}} }} {{FIFA navbox}} {{World football championships}} {{International football}} {{National football teams}} {{Main world cups}} {{Main world championships}} {{Authority control}} [[Category:ဖီဖာ ကမ္ဘာ့ဖလားပြိုင်ပွဲ]] [[Category:အပြည်ပြည်ဆိုင်ရာ ဘောလုံးပြိုင်ပွဲတိ]] [[Category:ဖီဖာ ကမ္ဘာ့ဖလားဆုရဟိသူတိ]] [[Category:ဖီဖာ ကမ္ဘာ့ဖလား အနိုင်ရအသင်းတိ]] [[Category:ဖီဖာ]] [[Category:အပြည်ပြည်ဆိုင်ရာ ဘောလုံးပြိုင်ပွဲတိ]] [[Category:ကမ္ဘာ့ဖလား]] [[Category:အားကဇပ်ပြိုင်ပွဲတိ]] [[Category:ဘောလုံးပြိုင်ပွဲတိ]] 2nyp1mfg1qj72w3npxw3vk1p6gowshg 19626 19618 2026-07-16T10:16:46Z YaThaWinTha 42 19626 wikitext text/x-wiki {{Featured article}} {{Protection padlock|small=yes}} {{Use dmy dates|date=February 2026}} {{Use British English|date=June 2012}} {{About|the men's association football tournament|the women's tournament|FIFA Women's World Cup|the competition among club teams|FIFA Club World Cup|the video games|FIFA World Cup video games|the 2026 event|2026 FIFA World Cup}} {{Infobox football tournament | name = ဖီဖာ ကမ္ဘာ့ဖလား | image = FIFA World Cup wordmark (2023).svg{{!}}class=skin-invert | imagesize = 250 | caption = | organiser = [[ဖီဖာ]] | founded = {{Start date and age|df=yes|1930}} | region = နိုင်ငံတကာ | number of teams = {{Nowrap|48}} | current champions = {{Nowrap|{{fb|ARG}} (3rd title)}} | most successful team = {{Nowrap|{{fb|BRA}} (5 titles)}} | broadcasters = | website = {{URL|https://www.fifa.com/tournaments/mens/worldcup|fifa.com/worldcup}} | current = [[၂၀၂၆ ဖီဖာ ကမ္ဘာ့ဖလား]] | related comps =[[ဖီဖာ အမျိုးသမီး ကမ္ဘာ့ဖလား]]}} {{Season sidebar | image = [[File:ARG Line-up - ARG vs MEX for 2022 FIFA WC.jpg|250px]] | caption = [[အာဂျင်တီးနား အမျိုးသား ဘောလုံးအသင်း|အာဂျင်တီးနား]]၊ လက်ဟိ ချန်ပီယံ | title = ပြိုင်ပွဲတိ | list = * [[၁၉၃၀ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၃၀]] * [[၁၉၃၄ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၃၄]] * [[၁၉၃၈ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၃၈]] * [[၁၉၅၀ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၅၀]] * [[၁၉၅၄ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၅၄]] * [[၁၉၅၈ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၅၈]] * [[၁၉၆၂ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၆၂]] * [[၁၉၆၆ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၆၆]] * [[၁၉၇၀ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၇၀]] * [[၁၉၇၄ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၇၄]] * [[၁၉၇၈ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၇၈]] * [[၁၉၈၂ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၈၂]] * [[၁၉၈၆ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၈၆]] * [[၁၉၉၀ ဖီဖာ ကမ္ဘာ့ဖလား ဖလား|၁၉၉၀]] * [[၁၉၉၄ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၉၄]] * [[၁၉၉၈ ဖီဖာ ကမ္ဘာ့ဖလား|၁၉၉၈]] * [[၂၀၀၂ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၀၂]] * [[၂၀၀၆ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၀၆]] * [[၂၀၁၀ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၁၀]] * [[၂၀၁၄ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၁၄]] * [[၂၀၁၈ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၁၈]] * [[၂၀၂၂ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၂၂]] * ''[[၂၀၂၆ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၂၆]]'' * ''[[၂၀၃၀ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၃၀]]'' * ''[[၂၀၃၄ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၃၄]]'' }} '''FIFA ကမ္ဘာ့ဖလား''' စွာ အားကစားဧ့ ကမ္ဘာ့အုပ်ချုပ်မှုအဖွဲ့ [[FIFA|Fédération Internationale de Football Association]] (ဖီဖာ) အဖွဲ့ဝင်တိ၏ အကြီးတန်း [[အမျိုးသား ဘောလုံးအသင်းတိစာရင်း | အမျိုးသား အသင်းတိ]]အကြား နိုင်ငံတကာ [[အသင်းဘောလုံး]] ပြိုင်ပွဲတခုဖြစ်တေ။ [[ဒုတိယကမ္ဘာစစ်]] ကြောင့် 1942 နန့် 1946 လွဲပြီးကေ[[ဒုတိယကမ္ဘာစစ်]] လွဲပြီးကေ ပြိုင်ပွဲကို လေးနှစ်တခေါက်ကျင်းပ ခပါရေ။ လက်ဟိချန်ပီယံတိစွာ [[အာဂျင်တီးနား အမျိုးသား ဘောလုံးအသင်း|အာဂျင်တီးနား]]၊ [[၂၀၂၂ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၂၂ ကမ္ဘာ့ဖလား]] မာ [[ပြင်သစ် အမျိုးသား ဘောလုံးအသင်း|ပြင်သစ်]] ကိုအနိုင်ယူပြီး ယင်းရို့၏တတိယဆုဖလားကို ရဟိခရေ။ ပြိုင်ပွဲအဆင့်မာ ဇာအသင်းတိစွာ ပြိုင်ပွဲအဆင့်အတွက် အရည်အခြင်းပြည့်မီကြောင်း ဆုံးဖြတ်ရန် ရှိ့သုံးနှစ်အထဲ ကျင်းပရေ[[ဖီဖာ ကမ္ဘာ့ဖလား ခြီစစ်ပွဲတိ|ခြီစစ်ပွဲ အဆင့်]] နန့် စတင်ရေ။ ပြိုင်ပွဲအဆင့်မာ အသင်း ၃၂ သင်းစွာ အိမ်ရှင်နိုင်ငံအထဲ ကျင်းပရေ နီရာတိမာ တလခန့်ကြာ ယှဥ်ပြိုင်ကတ်တေ။ အိမ်ရှင်နိုင်ငံ(တိ)စွာ ပြိုင်ပွဲဧ့ အုပ်စုအဆင့်သို့ အလိုအလျောက် အရည်အခြင်းပြည့်မီ ဖို့ဖြစ်တေ။ ပြိုင်ပွဲကို [[၂၀၂၆ ဖီဖာ ကမ္ဘာ့ဖလား|၂၀၂၆ ကမ္ဘာ့ဖလား]]မှစတင်ပနာ 48 သင်းအထိတိုးချဲ့ဖို့ စီစိုင်ထားရေ။ 2022 ကမ္ဘာ့ဖလားပြိုင်ပွဲကို 1930 ခုနှစ် စတင်ကျင်းပချိန်မှစပြီးကေ နောက်ဆုံးပြိုင်ပွဲ 22 ခုကျင်းပခပြီးကေ နိုင်ငံအသင်းပေါင်း 80 ယှဥ်ပြိုင်ခရေ။ [[FIFA World Cup Trophy|The trophy]] စွာ နိုင်ငံအသင်း ၈သင်းဖြင့် အနိုင်ရဟိထားရေ။ 5 ကြိမ်အနိုင်ရဟိခြင်းနန့် [[ဘရာဇီးလက်ရွီးစင်|ဘရာဇီး]]<!--- လိုက်လျောညီထွီဟိဖို့အတွက် ဆောင်းပါးတလျှောက်လုံးမာ အိန်းဂလိချ်အိန်းဂလိချ်ကို အများကိန်းနာမ်တိအဖြစ် သတ်မှတ်ပီးစွာ၊ နမူနာ၊ "Brazil are" "Brazil is" အစား "Brazil is"--> စွာ ပြိုင်ပွဲတိုင်းမာ ကစပ်ဖူးရေ တခုတည်းသော အသင်းဖြစ်တေ။ အရာကမ္ဘာ့ဖလားအနိုင်ရသူတိစွာ [[Germany national football team|Germany]] နန့် [[Italy national football team|Italy]]၊ အာဂျင်တီးနား၊ ပြင်သစ်နန့် အဖွင့်ဆုရှင် [[Uruguay national football team|Uruguay]]၊ အလှည့်ကျ နန့် [[England national football team|England]] နန့် [[Spain men's national football team|Spain]]၊ရို့ဖြစ်ကတ်တေ။ ကမ္ဘာ့ဖလားပြိုင်ပွဲစွာ ကမ္ဘာတဝှမ်းမာ ဂုဏ်သိက္ခာအဟိဆုံး အသင်းဘောလုံးပြိုင်ပွဲအဖြစ် သတ်မှတ်ခံရရေအပြင် ကမ္ဘာထက်မာ အကျယ်ပြန့်ဆုံးကြည့်ရှု အားပီးရေ အားကစားပွဲလည်းဖြစ်တေ။<ref name="DobsonGoddard2006">Stephen Dobson and John Goddard, [{{GBurl|id=GxyG0XXdvR4C|p=407}} The Economics of Football], page 407, quote "The World Cup is the most widely viewed sporting event in the world: the estimated cumulative television audience for the 2006 World Cup in Germany was 26.2&nbsp;billion, an average of 409&nbsp;million viewers per match."</ref><ref>Glenn M. Wong, [{{GBurl|id=qEELS7T_Tm0C|p=144}} The Comprehensive Guide to Careers in Sports], page 144, quote "The World Cup is the most-watched sporting event in the world. In 2006, more than 30&nbsp;billion viewers in 214 countries watched the World Cup on television, and more than 3.3&nbsp;million spectators attended the 64 matches of the tournament."</ref> [[2018 FIFA World Cup|2018 World Cup]] ဧ့ကြည့်ရှုသူဦးရီမာ 3.57 ဘီလီယံလှောက်ဟိပြီးကေ ကမ္ဘာ့လူဦးရွီ 10KTOKEND ထက်ဝက်နီးပါး၊WKTOKEN10KENDWKEND 2022 ကမ္ဘာ့ဖလားပြိုင်ပွဲနန့် ထိတွိဆက်ဆံမှုကို 5 ဘီလီယံလှောက်ဟိဖို့လို့ ခန့်မှန်းရရေ [[2022 FIFA World Cup final|the final match]] ကို ကြည့်ရှုသူ 1.5 ဘီလီယံလှောက်ဟိရေ။<ref>{{cite web |url=https://www.fifa.com/tournaments/mens/worldcup/qatar2022/news/one-month-on-5-billion-engaged-with-the-fifa-world-cup-qatar-2022-tm |title=One Month On: 5 billion engaged with the FIFA World Cup Qatar 2022 |publisher=FIFA |access-date=18 January 2023 |archive-date=18 January 2023 |archive-url=https://web.archive.org/web/20230118183433/https://www.fifa.com/tournaments/mens/worldcup/qatar2022/news/one-month-on-5-billion-engaged-with-the-fifa-world-cup-qatar-2022-tm |url-status=live}}</ref> 2022 ပွဲကို အိမ်ရှင်အဖြစ် လက်ခံကျင်းပခါ [[Qatar]] စွာ ကမ္ဘာ့ဖလားပြိုင်ပွဲကို နိုင်ငံပေါင်း 18 နိုင်ငံက အိမ်ရှင်အဖြစ် လက်ခံကျင်းပ ခပါရေ။ 2026 ပြိုင်ပွဲကို ကနေဒါ၊ မက္ကစီကိုနန့် အမေရိကန်ရို့က ပူးတွဲအိမ်ရှင်အဖြစ် လက်ခံကျင်းပ ဖို့ဖြစ်ပြီးကေ ယင်းစွာ မက္ကစီကိုကမ္ဘာ့ဖလား ပြိုင်ပွဲတိကို ပထမဆုံး အိမ်ရှင်အဖြစ် လက်ခံကျင်းပရေ ပထမဆုံးနိုင်ငံဖြစ်လှာ ဖို့ဖြစ်တေ။ == သမိုင်း == {{အဓိက|ဖီဖာ ကမ္ဘာ့ဖလား၏ သမိုင်း}} === အရင် နိုင်ငံတကာ ပြိုင်ပွဲတိ=== ကမ္ဘာ့ပထမဆုံး နိုင်ငံတကာဘောလုံးပြိုင်ပွဲစွာ 1872 ခုနှစ်မာ [[Scotland national football team|Scotland]] နန့် [[England national football team|England]] ရို့ကြားမာ ကဇပ် ခရေ စိန်ခေါ်ပွဲဖြစ်တေ။<ref>{{cite web |url=http://www.englandfootballonline.com/Seas1872-00/1872-73/M0001Sco1872.html |title=England National Football Team Match No. 1 |publisher=England Football Online |access-date=19 November 2007 |archive-url=https://web.archive.org/web/20030314074901/http://www.englandfootballonline.com/Seas1872-00/1872-73/M0001Sco1872.html |archive-date=14 March 2003 |url-status=live}}</ref> နိုင်ငံတိအတွက် ပထမဆုံးသော နိုင်ငံတကာပြိုင်ပွဲ၊ စတင်ဖွင့်လှစ်ရေ [[British Home Championship]] စွာ 1884 ခုနှစ်မာ ကျင်းပခပြီးကေ အင်္ဂလန်၊ [[British Home Championship]] နန့် အင်္ဂလန်နိုင်ငံ၊ Scotland နန့် 6၊ [[Ireland national football team (1882–1950)|Ireland]].<ref>{{cite web |url=https://int.soccerway.com/news/2007/November/22/british-pm-backs-return-of-home-nations-championship |title=British PM backs return of Home Nations championship |publisher=Agence France-Presse |access-date=16 December 2007 |archive-url=https://web.archive.org/web/20150619053845/http://int.soccerway.com/news/2007/November/22/british-pm-backs-return-of-home-nations-championship/ |archive-date=19 June 2015 |url-status=dead}}</ref> 20 ရာစုအစမာ ကမ္ဘာဧ့ အရာနီရာတိမာ ဘောလုံးရီပန်းစားလာစွာ နန့်တတူ၊ [[demonstration sport]] မာ ဆုတံဆိပ်မရဟိခဘဲ [[demonstration sport]] အဖြစ် ကျင်းပခ ပါရေ။ ဇာပိုင်ပင်ဖြစ်ဖြစ် [[International Olympic Committee]] စွာ ယင်းရို့၏ အခြီအနီကို တရားဝင်ဖြစ်ရပ်တိ အဖြစ် [[Football at the 1906 Summer Olympics|1906 Intercalated Games]] သို့ ပြန်ပနာ အဆင့်မြှင့်ထားရေ။<ref>{{cite web |first1=Søren |last1=Elbech |first2=Karel |last2=Stokkermans |url=https://www.rsssf.org/tableso/ol1906f.html |title=Intermediate Games of the IV. Olympiad |website=[[RSSSF]] |date=26 June 2008 |access-date=3 February 2023 |archive-date=11 July 2022 |archive-url=https://web.archive.org/web/20220711203917/https://www.rsssf.org/tableso/ol1906f.html |url-status=live}}</ref> [[ဖီဖာ]] ကို 1904 ခုနှစ်မာ စတင်တည်ထောင်ခပြီးကေ 1906 ခုနှစ်မာ ဆွစ်ဇာလန်ဟိ အိုလံပစ်ဘောင်အပြင်ဘက်ဟိ နိုင်ငံတိအကြား နိုင်ငံတကာဘောလုံးပြိုင်ပွဲကို စီစိုင်ရန်ကြိုးစားခရေ။ ယင်းရို့စွာ နိုင်ငံတကာဘောလုံးပွဲအတွက် အလွန်စောစီးစွာရေ နိရက်တိဖြစ်ပြီးကေ FIFA ဧ့တရားဝင်သမိုင်းမာ ပြိုင်ပွဲယှူရေကြောင်းဖော်ပြပါရေ။<ref>{{cite web |url=https://www.fifa.com/classicfootball/history/fifa/fifa-takes-shape.html |archive-url=https://web.archive.org/web/20130329051342/http://www.fifa.com/classicfootball/history/fifa/fifa-takes-shape.html |url-status=dead |archive-date=29 March 2013 |title=History of FIFA – FIFA takes shape |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> [[File:London 1908 English Amateur Football National Team.jpg|thumb|Team of Great Britain that won the Olympic tournament in 1908]] [[London]] ဟိ [[Football at the 1908 Summer Olympics|1908 Summer Olympics]] မာ ဘောလုံးစွာ တရားဝင် အိုလံပစ်အားကစားတခု ဖြစ်လာခရေ။ အင်္ဂလန်ဘောလုံးအဖွဲ့ချုပ် [[the Football Association]] (FA) က စီစိုင်ထားအတွက်နန့် ယင့်ချင့်ပွဲကို [[amateurism|amateur]] ကစပ်သမားတိအတွက်သာ ဖြစ်ပြီးကေ ပြိုင်ပွဲထက် သံသယဖြစ်ဖွယ် ဟိုးပွဲတခုအဖြစ် သတ်မှတ် ခံခရရေ။ ဂရိတ်ဗြိတိန် ([[England national amateur football team]] က တက်စားပြု) [[gold medal]]s ကိုအနိုင်ရဟိခရေ။ ယင်းရို့စွာ [[Stockholm]] ဟိ [[Football at the 1912 Summer Olympics|1912 Summer Olympics]] မာ စွမ်းဆောင်မှုကို အရာထခါ ပြုလုပ်ခကတ်တေ။<ref>{{cite book |last=Butler |first=Bryon |author-link=Bryon Butler |title=The Official History of The Football Association |publisher=Queen Anne Press |location=[[London]] |year=1991 |isbn=0-356-19145-1 |page=54}}</ref> အိုလံပစ်ပြိုင်ပွဲစွာ အပျော်တမ်းအသင်းတိကြားမာရာ ပြိုင်ပွဲတခုအဖြစ် ဆက်ပနာတည်ဟိနိန်တွက်နန့် [[Thomas Lipton|Sir Thomas Lipton]] စွာ [[Sir Thomas Lipton Trophy]] ပြိုင်ပွဲကို 1909 ခုနှစ်မာ [[Turin]] မာ ကျင်းပခရေ။ Lipton ပြိုင်ပွဲစွာ နိုင်ငံအသီးသီးမှ ကလပ်အသင်းတိ (နိုင်ငံအသင်းတိမဟုတ်) အချင်းချင်း ချန်ပီယံဖြစ်ခပြီးကေ အသီးသီးရေ နိုင်ငံတခုလုံးကို တက်စားပြုရေ။ ပြိုင်ပွဲကို '' ပထမကမ္ဘာ့ဖလား''၊<ref>{{cite web |url=http://www.shrewsbury.gov.uk/Public/news/thomaslipton.htm |title='The First World Cup'. The Sir Thomas Lipton Trophy |publisher=[[Shrewsbury and Atcham Borough Council]] |date=10 October 2003 |access-date=11 April 2006 |archive-url=https://web.archive.org/web/20031129221811/http://www.shrewsbury.gov.uk/Public/news/thomaslipton.htm |archive-date=29 November 2003}}</ref> နန့် အီတလီ၊ ဂျာမနီနန့် ဆွစ်ဇာလန်ရို့ကဂုဏ်သိက္ခာအဟိဆုံး ပရော်ဖက်ရှင်နယ်ကလပ်အသင်းတိအဖြစ် ဖော်ပြကေလေ့ အင်္ဂလန် FA စွာ ပြိုင်ပွဲနန့်ဆက်စပ်ရန် ငြင်းဆိုခပြီးကေ ပရော်ဖက်ရှင်နယ်အသင်းစီလွှတ်ရန် ကမ်းလှမ်းမှုကို ငြင်းဆိုခရေ။ Lipton စွာ [[County Durham]] မှ အပျော်တမ်းအဖွဲ့ဖြစ်ရေ [[West Auckland Town F.C.|West Auckland]] ကို အင်္ဂလန်အစား တက်စားပြုဖို့ ဖိတ်ကြားခရေ။ West Auckland စွာ ပြိုင်ပွဲကို အောင်မြင်စွာ ကာကွယ်နှိုင်ခပြီး 1911 ခုနှစ်မာ ပြန်ပါလတ်တေ။ <ref>{{cite news |title=West Auckland's World Cup Rematch |url=https://news.bbc.co.uk/local/tees/hi/people_and_places/history/newsid_8173000/8173881.stm|access-date=1 October 2020 |agency=BBC |archive-url=https://web.archive.org/web/20121002204445/http://news.bbc.co.uk/local/tees/hi/people_and_places/history/newsid_8173000/8173881.stm |archive-date=2 October 2012 |url-status=live}}</ref> Lipton ပြိုင်ပွဲ မရောက်ခင် 1876 မှ 1904 ခုနှစ်အထိ "[[Football World Championship|football world championship]]" ဟု သတ်မှတ်ခံရရေ ကစပ်ပွဲတိစွာ အင်္ဂလန်နန့် စကောတလန် ထိပ်တန်းကလပ်တိဖြစ်ရေ [[1895 World Championship (football)|1895 game]] နန့် [[1895 World Championship (football)|1895 game]] ရို့အကြား တွိ့ဆုံမှုတိဖြစ်တေ။ [[Heart of Midlothian F.C.]]၊ ဆန်းဒါးလန်း အနိုင်ရခရေ။<ref>{{Cite web |url=https://www.theguardian.com/football/blog/2020/apr/25/even-when-sunderland-ruled-the-globe-club-world-cups-were-controversial |title=Sunderland's Victorian all-stars blazed trail for money's rule of football |work=The Guardian |author=Jonathan Wilson |date=25 April 2020|access-date=9 August 2022|archive-url=https://web.archive.org/web/20200425193627/https://www.theguardian.com/football/blog/2020/apr/25/even-when-sunderland-ruled-the-globe-club-world-cups-were-controversial|archive-date=25 April 2020|url-status=live}}</ref> 1914 ခုနှစ်မာ FIFA မှ [[Football at the Summer Olympics|Olympic tournament]] ကို "အပျော်တမ်းတိအတွက်ကမ္ဘာ့ဘောလုံးချန်ပီယံဆု" အဖြစ်အသိအမှတ်ပြုဖို့ သဘောတူခပြီးကေ ပွဲကိုစီမံခန့်ခွဲရန် တာဝန်ယူခရေ။<ref>{{cite web |url=https://www.fifa.com/classicfootball/history/fifa/more-associations-follow.html |archive-url=https://web.archive.org/web/20130329051320/http://www.fifa.com/classicfootball/history/fifa/more-associations-follow.html |url-status=dead |archive-date=29 March 2013 |title=History of FIFA – More associations follow |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> ယင်းစွာနိုင်ငံတိအတွက် ကမ္ဘာ့ပထမဆုံးသော နိုင်ငံတိအတွက်ပြိုင်ပွဲ [[Football at the 1920 Summer Olympics|1920 Summer Olympics]] မာ [[Egypt national football team|Egypt]] က အနိုင်ရရေ ဥရောပအသင်း 3 သင်းနန့် အနိုင်ရဟိခရေ၊ [[Belgium national football team|Belgium]].<ref>{{cite web |last=Reyes |first=Macario |date=18 October 1999 |url=https://www.rsssf.org/tableso/ol1920f-det.html |title=VII. Olympiad Antwerp 1920 Football Tournament |publisher=rec.sport.soccer Statistics Foundation |access-date=10 June 2006 |archive-date=22 September 2022 |archive-url=https://web.archive.org/web/20220922145329/https://www.rsssf.org/tableso/ol1920f-det.html |url-status=live}}</ref> [[Uruguay national football team|Uruguay]] စွာ [[Football at the 1924 Summer Olympics|1924]] နန့် [[Football at the 1928 Summer Olympics|1928]] မာ နောက်ထပ်အိုလံပစ်ဘောလုံးပြိုင်ပွဲနှစ်ခုကို အနိုင်ရဟိခရေ။ ယင်းရို့စွာ 1924 ဖီဖာဧ့ ပရော်ဖက်ရှင်နယ်ခေတ်ဧ့အစဖြစ်တေအတွက် ပထမဆုံး [[Open (sport)|open]] ကမ္ဘာ့ချန်ပီယံနှစ်ပွဲလည်းဖြစ်ခပြီးကေ [[Four stars above Uruguay's football crest|Uruguay is allowed to wear 4 stars]].<ref>{{cite news |title=Olympic Football Tournament Paris 1924 |url=https://www.fifa.com/tournaments/mens/mensolympic/paris1924/match-center|access-date=1 October 2020 |agency=FIFA|archive-date=17 July 2021|archive-url=https://web.archive.org/web/20210717042750/https://www.fifa.com/tournaments/mens/mensolympic/paris1924/match-center|url-status=live}}</ref><ref>{{cite web |url=http://www.fourfourtwo.premiumtv.co.uk/page/BigRead/0,,11442~1034860,00.html |title=Uruguay 1930|archive-url=https://web.archive.org/web/20070715011817/http://www.fourfourtwo.premiumtv.co.uk/page/BigRead/0%2C%2C11442~1034860%2C00.html|archive-date=15 July 2007 |magazine=Four Four Two|url-status=dead}}</ref> အကြောင်းရင်းလည်းဖြစ်တေ။ === ဒုတိယကမ္ဘာစစ်မတိုင်ခင် ကမ္ဘာ့ဖလားတိ === [[File:Jules Rimet 1933.jpg|thumb|left|upright|FIFA president [[Jules Rimet]] စွာ [[FIFA#Six confederations and 211 national associations|confederations]] အား နိုင်ငံတကာ ဘောလုံးပြိုင်ပွဲကို ကြော်ငြာရန် စည်းရုံးခရေ]] အိုလံပစ်ဘောလုံးပြိုင်ပွဲတိ၏ အောင်မြင်မှုတိကြောင့် FIFA က [[List of Presidents of FIFA|President]] [[Jules Rimet]] ၏ မောင်းနှင်အားအဖြစ် အိုလံပစ်ပြိုင်ပွဲပြင်ပမာ သူ့ကိုယ်ပိုင်နိုင်ငံတကာပြိုင်ပွဲကို စတင်ကျင်းပဖို့ စတင်ကြည့်ရှုခပါရေ။ 1928 ခုနှစ် မေလ 28 ရက်နိမာ [[Amsterdam]] ဟိ ဖီဖာကွန်ဂရက်က ကမ္ဘာ့ချန်ပီယံပြိုင်ပွဲကိုကျင်းပရန် ဆုံးဖြတ်ခရေ။<ref>{{cite web |url=https://www.fifa.com/classicfootball/history/fifa/first-fifa-world-cup.html |archive-url=https://web.archive.org/web/20130329051339/http://www.fifa.com/classicfootball/history/fifa/first-fifa-world-cup.html |url-status=dead |archive-date=29 March 2013 |title=History of FIFA – The first FIFA World Cup |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> ဥရုဂွေးစွာ ဂုချိန်ခါ တရားဝင်ဘောလုံးကမ္ဘာ့ချန်ပီယံ နှစ်ကြိမ်နန့် ယင်းရို့၏ [[centenary]] ကို 1930 ခုနှစ်မာ ကျင်းပရန် FIFA မှ [[Uruguay]] ဧ့ အိမ်ရှင်နိုင်ငံအဖြစ် သတ်မှတ်ခရေ။ [[1930 FIFA World Cup|inaugural World Cup tournament]].<ref name="WC origin">{{Cite web |url=https://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_02e_fwc-origin_8816.pdf |title=FIFA World Cup Origin |website=FIFA |archive-url=https://web.archive.org/web/20100615195236/http://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_02e_fwc-origin_8816.pdf |archive-date=15 June 2010 |url-status=dead |access-date=1 October 2020}}</ref> ရွီးချယ်ထားရေ နိုင်ငံတိ၏ အမျိုးသားအသင်းအဖွဲ့တိကို အသင်းတသင်းစီလွှတ်ရန် ဖိတ်ကြားခကေလေ့ ပြိုင်ပွဲကျင်းပရာနီရာအဖြစ် ဥရုဂွေးဧ့ ရွီးချယ်မှုစွာ အထူးအနိန်နန့် [[Great Depression]] အလယ်မာ ဥရောပနိုင်ငံတိအတွက် အတ္တလန္တိတ်သမုဒ္ဒရာကိုဖြတ်ပနာ ရှည်လျားပြီး ဖေသာကုန်ကြီးကျများရေ ခရီးတခုဖြစ်တေ။ ယင်းအတွက်နန့် ပြိုင်ပွဲမစတင်မီ နှစ်လအလိုမာ ဇာဥရောပနိုင်ငံမှ အသင်းတသင်းကို စီလွှတ်ရန် ကတိပြုထားရေ။ Rimet စွာ နောက်ဆုံးမှာ [[Belgium national football team|Belgium]]၊ [[France national football team|France]]၊ [[Romania national football team|Romania]] နန့် [[Yugoslavia national football team|Yugoslavia]] မှ အဖွဲ့တိကို ခရီးစိုင်ပြုလုပ်ဖို့ သိမ်းသွင်းခရေ။<ref name="WC origin" /> In total, 13 nations took part: seven from South America, four from Europe, and two from North America.<ref>{{cite web |url=https://www.fifa.com/worldcup/archive/uruguay1930/awards/ |archive-url=https://web.archive.org/web/20180516082100/http://www.fifa.com/worldcup/archive/uruguay1930/awards/ |url-status=dead |archive-date=16 May 2018 |title=Final Tournament Standings |publisher=FIFA |work=1930 FIFA World Cup Uruguay |access-date=14 June 2014}}</ref> [[File:Estadio Centenario (vista aérea).jpg|thumb|[[Centenario Stadium|Estadio Centenario]]၊ 1930 ခုနှစ် [[Montevideo]]၊ ဥရုဂွေးမာ ပထမဆုံးကမ္ဘာ့ဖလားဗိုလ်လုပွဲကျင်းပရေနီရာ]] ပထမကမ္ဘာ့ဖလားပြိုင်ပွဲနှစ်ခုကို ၁၉၃၀ ခုနှစ် ဂျူလိုင်လ ၁၃ ရက်နိမာ တပြိုင်တည်းကျင်းပခပြီးကေ ပြင်သစ်နန့် [[United States men's national soccer team|United States]] ရို့က [[Mexico national football team|Mexico]] 4-1 နန့် Belgium 3-0 အသီးသီးအနိုင်ရဟိခကတ်တေ။ ကမ္ဘာ့ဖလားသမိုင်းတလျှောက် ပထမဆုံးဂိုးကို ပြင်သစ်နိုင်ငံမှ [[Lucien Laurent]] က သွင်းယူပါခခြင်းဖြစ်တေ။<ref>{{cite news |first=John F |last=Molinaro |title=The World Cup's 1st goal scorer |publisher=[[Canadian Broadcasting Corporation|CBC]] |url=http://www.cbc.ca/sports/soccer/the-world-cup-s-1st-goal-scorer-1.825335 |access-date=12 July 2014 |archive-url=https://web.archive.org/web/20150402100933/http://www.cbc.ca/sports/soccer/the-world-cup-s-1st-goal-scorer-1.825335 |archive-date=2 April 2015 |url-status=live}}</ref> စွာ [[1930 FIFA World Cup final|final]] မာ [[Uruguay national football team|Uruguay]] က [[Argentina national football team|Argentina]] 4-2 ဖြင့် အနိုင်ယူပြီး [[Montevideo]] မာ ပရိသတ် 93,000 ရှိနှစ်မှာ [[Montevideo]] ကို အနိုင်ယူကာ ပထမဆုံးအနိန်နန့်ရေ ကမ္ဘာ့ဖလားပြိုင်ပွဲကို ဆွတ်ခူးနိုင်ခရေ။ ကမ္ဘာ့ဖလားပြိုင်ပွဲ၊ FIFA နန့် [[International Olympic Committee|IOC]] ရို့စွာ အပျော်တမ်းကစပ်သမားတိ၏ အဆင့်အတန်းနန့် ပတ်သက်ပြီးကေ သဘောမတူကတ်ပါ၊၊ ဘောလုံးစွာ [[1932 Summer Olympics]].<ref name="SR">{{cite web |url=https://www.sports-reference.com/olympics/summer/1936/FTB/ |archive-url=https://web.archive.org/web/20200417041849/https://www.sports-reference.com/olympics/summer/1936/FTB/ |url-status=dead |archive-date=17 April 2020 |title=Football at the 1936 Berlin Summer Games |work=Sports Reference |access-date=7 October 2018}}</ref><ref>{{cite web |url=https://www.fifa.com/tournaments/archive/mensolympic/athens2004/news/newsid=92851/index.html |archive-url=https://web.archive.org/web/20140715174431/http://www.fifa.com/tournaments/archive/mensolympic/athens2004/news/newsid=92851/index.html |url-status=dead |archive-date=15 July 2014 |title=The Olympic Odyssey so far&nbsp;... (Part 1: 1908–1964) |work=FIFA.com |publisher=Fédération Internationale de Football Association |date=9 June 2004 |access-date=12 July 2014}}</ref> IOC နန့် FIFA ရို့၏ ကွဲပြားမှုတိကို ဖော်ထုတ်ပြီးကေ အိုလံပစ်ဘောလုံးစွာ [[Football at the 1936 Summer Olympics|1936 Summer Olympics]] မာ ပြန်ပနာရောက်ဟိလာခရေ်လည်း ဂုချိန်ခါ ပိုပြီးကေဂုဏ်သိက္ခာဟိရေ ကမ္ဘာ့ဖလားပြိုင်ပွဲဖြင့် လွှမ်းမိုးလားခီရေ။<ref name="SR" /> အစောပိုင်းကမ္ဘာ့ဖလားပြိုင်ပွဲတိမာ ကြုံတွိနိန်ရရေ ပြဿနာတိမာ နိုင်ငံတကာခရီးလားလာမှုနန့် စစ်ပွဲတိ၏ အခက်အခဲတိဖြစ်တေ။ [[1934 FIFA World Cup|1934 World Cup]] အတွက် တောင်အမေရိကအသင်းစိကေချေစွာ ဥရောပသို့လားရောက်ရန် ဆန္ဒဟိပြီးး [[Brazil national football team|Brazil]] နန့် [[Cuba national football team|Cuba]] လွဲပြီးကေ မြောက်နန့်တောင်အမေရိကနိုင်ငံတိအားလုံး [[1938 FIFA World Cup|1938]] ပြိုင်ပွဲကို သပိတ်မှောက်ခကတ်တေ။ ဘရာဇီးလ်စွာ တောင်အမေရိကအသင်း နှစ်သင်းစလုံးမာ ယှဥ်ပြိုင်ရေ တခုတည်းရေ အသင်းဖြစ်တေ။ [[Nazi Germany|Germany]] နန့် [[Brazil]] ရို့က အိမ်ရှင်အဖြစ် လက်ခံကျင်းပရန် ကြိုးပမ်းခဲ့ရေ 1942 နန့် 1946 ပြိုင်ပွဲတိ၊ <ref>{{cite web |url=http://www.cristal.com.pe/articulo/los-datos-mas-curiosos-de-la-fiesta-del-futbol-brasil-1950 |title=Los datos más curiosos de la Fiesta del Fútbol – Brasil 1950 |access-date=17 April 2012 |language=es |archive-url=https://web.archive.org/web/20120701133216/http://www.cristal.com.pe/articulo/los-datos-mas-curiosos-de-la-fiesta-del-futbol-brasil-1950 |archive-date=1 July 2012}}</ref> စွာ [[World War II]] ကြောင့် ဖျက်သိမ်း ခရပါရေ။<ref>{{cite web |last=Braswell |first=Sean |title=How Brazil Saved The World Cup In The Aftermatch Of World War II |publisher=NPR |date=11 June 2014 |url=https://www.npr.org/sections/parallels/2014/06/11/320727176/how-brazil-saved-the-world-cup-in-the-aftermath-of-world-war-ii |access-date=6 March 2022 |archive-url=https://web.archive.org/web/20150921132543/https://www.npr.org/sections/parallels/2014/06/11/320727176/how-brazil-saved-the-world-cup-in-the-aftermath-of-world-war-ii |archive-date=21 September 2015 |url-status=live}}</ref> === World Cups after World War II === [[File:Jogo no Estádio do Maracanã, antes da Copa do Mundo de 1950.tif|thumb|The opening game of the [[Maracanã Stadium]]၊ [[Rio de Janeiro]]၊ ဘရာဇီး၊ [[1950 FIFA World Cup]] မရောက်ခင်မာ]] [[Brazil]] မာကျင်းပရေ [[1950 FIFA World Cup|1950 World Cup]] စွာ ဗြိတိန်ဘောလုံးအသင်းတိမာ ပထမဆုံးပါဝင်ခရေ။ [[Scotland national football team|Scotland]]၊ [[England national football team|England]]၊ [[Wales national football team|Wales]] နန့် [[Northern Ireland national football team|Northern Ireland]] ရို့စွာ 1920 ခုနှစ်မာ FIFA က နုတ်ထွက်ခပြီး တစိတ်တစ်အာဒါးအားဖြင့် စစ်ဖြစ်ပွားနိန်ရေ နိုင်ငံတိကို ဆန့်ကျင်ရန် ဆန္ဒမဟိခြင်းကြောင့် တစိတ်တစ်အာဒါးနန့် ဘောလုံးအပေါ် နိုင်ငံခြားလွှမ်းမိုးမှုကို ဆန့်ကျင်ရေ ဆန္ဒပြမှုတခုအဖြစ် ပါဝင်ခရေ။<ref>{{cite news |url=https://www.bbc.co.uk/scotland/sportscotland/asportingnation/article/0001/index.shtml |title=Scotland and the 1950 World Cup |publisher=BBC |access-date=13 May 2007 |archive-url=https://web.archive.org/web/20081216135901/http://www.bbc.co.uk/scotland/sportscotland/asportingnation/article/0001/index.shtml |archive-date=16 December 2008 |url-status=live}}</ref> 4 သင်းဧ့နောက်ဆက်တွဲတိ ဖိတ်ကြားချက်။{{sfn|Glanville|2005}} ပြိုင်ပွဲစွာ အယင်ကမ္ဘာ့ဖလားနှစ်လုံးကို သပိတ်မှောက်ခရေ ၁၉၃၀ ချန်ပီယံ [[Uruguay national football team|Uruguay]] ဧ့ ပြန်လှာမှုကိုလည်း တွိမြင်ခရရေ။ "[[Uruguay v Brazil (1950 FIFA World Cup)|Maracanazo]]" (ပေါ်တူဂီ- ''Maracanaço'') <ref>{{cite news |url=http://sportsillustrated.cnn.com/2010/soccer/world-cup-2010/writers/jonathan_wilson/07/04/uruguay.history/index.html |publisher=CNN |title=Uruguay's 1950 World Cup triumph a testament to the spirit of garra |date=4 July 2010 | archive-url=https://web.archive.org/web/20100707110332/http://sportsillustrated.cnn.com/2010/soccer/world-cup-2010/writers/jonathan_wilson/07/04/uruguay.history/index.html | archive-date=7 July 2010 | url-status=dead}}</ref> ပွဲမာ အိမ်ရှင် ဘရာဇီးကို အနိုင်ရပြီးနောက် ဥရုဂွေးစွာ ပြိုင်ပွဲကို ထပ်မံအနိုင်ရဟိခရေ။ 1934 နန့် [[1978 FIFA World Cup|1978]] အကြားပြိုင်ပွဲတိမာ ပြိုင်ပွဲတစ်ခုကျမာ 16 သင်းပါဝင်ယှဥ်ပြိုင်ခကတ်တေ၊ 1938 ခုနှစ်မာ [[Austria national football team|Austria]] မှ [[Anschluss|absorbed]] မှ [[Anschluss|absorbed]] သို့ခြီစစ်ပွဲပြီးကေ [[Nazi Germany|Germany]] သို့ 15 သင်းပါဝင်ယှဥ်ပြိုင်ခပြီး [[Austria national football team|Austria]] နန့် [[Anschluss|absorbed]] မာ၊ စကော့တလန်နန့် [[Turkey national football team|Turkey]] ရို့ နုတ်ထွက်ခပြီး ပြိုင်ပွဲကို 13 သင်းဖြင့် ထွက်ခွာခရေ။{{sfn|Glanville|2005|p=45}} ပါဝင်ယှဥ်ပြိုင်ရေ နိုင်ငံအများစုကတော့ခါ ဥရောပနန့် တောင်အမေရိက က ဖြစ်ပြီးကေ မြောက်အမေရိက၊ အာဖရိက၊ အာသျှနန့် Oceania ရို့မှ လူနည်းစုချေတိ ဖြစ်တေ။ ဒေအသင်းတိစွာ များရေအားဖြင့် ဥရောပနန့် တောင်အမေရိကအသင်းတိက အလွယ်ချေ ယှုံးနိမ့်ခကတ်တေ။ 1982 ခုနှစ်မရောက်ခင်အထိ၊ ပထမအကျော့ကို ဥရောပနန့် တောင်အမေရိကပြင်ပမှ တခုတည်းသော အသင်းတိမာ- [[United States men's national soccer team|United States]]၊ 1930 ခုနှစ်မာ ဆီမီးဖိုင်နယ်သို့ တက်ရောက်နိုင်ခရေ။ [[Cuba national football team|Cuba]]၊ 1938 ကွာတားဖိုင်နယ်၊ [[North Korea national football team|North Korea]]၊ [[1966 FIFA World Cup|1966]] ဟိ ကွာတားဖိုင်နယ်သို့၊ နန့် [[Mexico national football team|Mexico]]၊ [[1970 FIFA World Cup|1970]] ကွာတားဖိုင်နယ်။ === အသင်း ၂၄ သင်းနှင့် ၃၂ သင်းအထိ တိုးချဲ့ခြင်း === [[File:FIFA World Cup 2010 Uruguay Ghana.jpg|thumb|Inside [[Soccer City]]၊ တောင်အာဖရိက၊ [[Johannesburg]] ဟိ [[2010 FIFA World Cup]]]] ပြိုင်ပွဲကို [[1982 FIFA World Cup|1982]]၊ {{sfn|Glanville|2005|p=238}} မာ ၃၂ သင်းအထိ တိုးချဲ့ခပြီးကေ [[1998 FIFA World Cup|1998]]၊ {{sfn|Glanville|2005|p=359}} မာ အာဖရိက၊ အာသျှနန့် မြောက်အမေရိကရို့မှ အသင်းတိ ထပ်မံပါဝင် ခွင့်ပြုခရေ။ ယင်းအချိန်မှစပြီးကေ၊ ဒေသိယ အသင်းတိစွာ ကွာတားဖိုင်နယ်သို့ ရောက်ဟိခကတ်သဖြင့် များစွာသော အောင်မြင်မှုတိ ရဟိခရေ- [[Mexico national football team|Mexico]]၊ [[1986 FIFA World Cup|1986]] မာ ကွာတားဖိုင်နယ်သို့ ရောက်ဟိခရေ။ [[Cameroon national football team|Cameroon]]၊ [[1990 FIFA World Cup|1990]] ဟိ ကွာတားဖိုင်နယ်သို့၊ [[South Korea national football team|South Korea]]၊ [[2002 FIFA World Cup|2002]] မာ စတုတ္ထနီရာမာ ရပ်တည်ခရေ။ [[Senegal national football team|Senegal]]၊ [[United States men's national soccer team|USA]] နန့်အတူ ၂၀၀၂ ခုနှစ်မာ ကွာတားဖိုင်နယ်သို့ နှစ်ဦးစလုံး၊ [[Ghana national football team|Ghana]]၊ 2010 ခုနှစ်မာ ကွာတားဖိုင်နယ်၊ [[Costa Rica national football team|Costa Rica]]၊ 2014 ခုနှစ် ကွာတားဖိုင်နယ်၊ [[Morocco national football team|Morocco]] နန့် 2022 ခုနှစ်မာ စတုတ္ထနီရာဖြင့် ပြီးဆုံးခရေ။ ဥရောပနန့် တောင်အမေရိကအသင်းတိစွာ 1994၊ 1998၊ 2006 နန့် 2018 ရို့မာ ကွာတားဖိုင်နယ်သို့ ဆက်ပနာလွှမ်းမိုးထားကာ ဥရောပ သို့မဟုတ် တောင်အမေရိကမှဖြစ်ပြီးကေ အဂုအချိန်အထိ ပြိုင်ပွဲအားလုံးဧ့ နောက်ဆုံးဆန်ခါတင်တိ ဖြစ်ခရေ။ အသင်း ၂၀၀ သော [[2002 FIFA World Cup]] အရည်အခြင်းစစ်အဆင့်သို့ ဝင်ရောက်ခရေ။ နိုင်ငံပေါင်း 198 စွာ [[2006 FIFA World Cup]] အတွက် အရည်အခြင်းပြည့်မီရန် ကြိုးပမ်းခကတ်တေ။ [[2010 FIFA World Cup]] အတွက် အရည်အခြင်းပြည့်မီရေ နိုင်ငံပေါင်း 204 နိုင်ငံမှ စံချိန်တင်ဝင်ရောက်ခပါရေ။<ref>{{cite web |url=https://www.fifa.com/tournaments/archive/worldcup/southafrica2010/news/newsid=122766/index.html |archive-url=https://web.archive.org/web/20140419065837/http://www.fifa.com/tournaments/archive/worldcup/southafrica2010/news/newsid=122766/index.html |url-status=dead |archive-date=19 April 2014 |title=Record number of 204 teams enter preliminary competition |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> === အသင်း ၄၈ သင်းအထိ တိုးချဲ့ခြင်း === 2013 ခုနှစ် အောက်တိုဘာလမာ၊ Sepp Blatter စွာ [[Caribbean Football Union]] ဧ့ ဒေသအား ကမ္ဘာ့ဖလားမာ ရာထူးနီရာတခု အာမခံချက်ပီးကြောင်း ပြောကြားခရေ။<ref>{{cite web |last=Whittaker |first=James |title=Caribbean pro league can work |url=http://www.compasscayman.com/caycompass/2013/10/23/Caribbean-pro-league-can-work/ |publisher=CompassCayman.com|access-date=28 October 2013 |location=Cayman Islands |date=23 October 2013|archive-url=https://web.archive.org/web/20131029200646/http://www.compasscayman.com/caycompass/2013/10/23/Caribbean-pro-league-can-work/|archive-date=29 October 2013|url-status=dead}}</ref> ဧ့ ''FIFA ဧ့ အပတ်စိုင် 25 October 2013 မာ အပတ်စိုင်'' Blatter က "နောက်ဆုံးမာတော့ခါ တကမ္ဘာလုံးကို ရှုဒေါင့်ကနိန် ကြည့်ရစွာ အားကစားကို ဗွေယူလိုပါရေ၊ အာဖရိကနန့် အာသျှနိုင်ငံအသင်းတိစွာ ဖီဖာကမ္ဘာ့ဖလားမာ ယင်းရို့နန့် ထိုက်တန်ရေ အနိန်အထားကို အသိအမှတ်ပြုခကတ်တေ ကမ္ဘာ့ဖလားမာ ဥရောပနန့် တောင်အမေရိက အဖွဲ့ချုပ်တိက ဆိုက်ကပ်ထားရေ နီရာအများစုကို တောင်းဆိုခြင်းမျိုး မဖြစ်နှိုင်ပါ၊၊ မဂ္ဂဇင်းထုတ်ဝီပြီးကေမာ ဖီဖာဥက္ကဋ္ဌရာထူးအတွက် Blatter ဧ့ပြိုင်ဘက် [[UEFA]] ဥက္ကဌ [[Michel Platini]] က သူစွာ ကမ္ဘာ့ဖလားပြိုင်ပွဲကို နိုင်ငံပေါင်း ၄၀ အထိ တိုးချဲ့ကျင်းပရန် ရည်ရွယ်ထားပြီးသား ပါဝင်သူအရွီအတွက်ကို ၈ဦးအထိ တိုးမြင့်လာစီရန် တုံ့ပြန်ခရေ။ ပလာတီနီက သူစွာ UEFA အတွက် နောက်ထပ် ဆိုက်ကပ်တခု၊ [[Asian Football Confederation]] နန့် [[Confederation of African Football]] နှစ်ခု၊ [[CONCACAF]] နန့် [[CONMEBOL]] ရို့ကြား နှစ်ခုနန့် [[Oceania Football Confederation]] အတွက် အာမခံချက်ဟိရေ နီရာတခုရို့ကို ခွဲဝီပီးဖို့ဟု ပလာတီနီက ပြောကြားခရေ။ ယင်းက [[ကမ္ဘာ့ဖလား]]စွာ ကောင်းဘီယက် 32 ယောက်မဟိရေတွက်ကြောင့် အသင်းတိ၏ အရည်အသွီးကို အခြီခံထားခြင်းမဟုတ်... ယကေလေ့ ယင်းစွာ ကောင်းရေ အပီးအယူတခုဖြစ်တေ။ ... နိုင်ငံရီးကိစ္စဖြစ်တေအတွက် အာဖရိကနိုင်ငံသားတိ ဇာကြောင့် နောက်ထပ်မဟိရလဲ။ 2016 ခုနှစ် အောက်တိုဘာလမာ ဖီဖာဥက္ကဋ္ဌ [[Gianni Infantino]] က 2026 ခုနှစ်မာ 48 သင်းကမ္ဘာ့ဖလားပြိုင်ပွဲအတွက် ယင်းဧ့ ထောက်ခံမှုကို ပြောကြားခပါရေ။<ref>[https://www.theguardian.com/football/2016/oct/03/world-cup-expand-48-teams-fifa-gianni-infantino-suggests World Cup could expand to 48 teams, Fifa's Gianni Infantino suggests] {{webarchive |url=https://web.archive.org/web/20161004005336/https://www.theguardian.com/football/2016/oct/03/world-cup-expand-48-teams-fifa-gianni-infantino-suggests |date=4 October 2016 }} – The Guardian, 3 October 2016</ref> 2017 ခုနှစ် ဂျန်နဝါရီလ 10 ရက်နိမာ FIFA မှ 2026 ကမ္ဘာ့ဖလားပြိုင်ပွဲမာ နောက်ဆုံးဆန်ခါတင် 48 သင်းပါဝင်ဖို့ဖြစ်ကြောင်း FIFA မှအတည်ပြုခရေ။<ref>{{cite news |url=http://www.spiegel.de/sport/fussball/fifa-beschliesst-fussball-wm-mit-48-mannschaften-a-1129295.html |title=Ab 2026: 48 Teams – Fifa vergrößert die WM |newspaper=Der Spiegel |date=10 January 2017 |publisher=SPIEGEL ONLINE |language=de |archive-url=https://web.archive.org/web/20170110124409/http://www.spiegel.de/sport/fussball/fifa-beschliesst-fussball-wm-mit-48-mannschaften-a-1129295.html |archive-date=10 January 2017 |url-status=live}}</ref> === ၂၀၁၅ ခုနှစ် FIFA အဂတိလိုက်စားမှုအမှု === {{Main|၂၀၁၅ ခုနှစ် FIFA အဂတိလိုက်စားမှုအမှု}} 2015 ခုနှစ် မေလမာ၊ ဂိမ်းတိစွာ ဖီဖာဂိမ်းတိအတွက် လာဘ်ပီးလာဘ်ယူမှု၊ ဝါမှုနန့် ငွီကြေးခဝါချမှု ယိုးစွပ်ချက်တိ၊ လာဘ်ပီးလာဘ်ယူမှု၊ လိမ်ညာမှုနန့် ငွီကြေးခဝါချမှုဆိုင်ရေ စွဲချက်တိနန့် ရာဇ၀တ်မှုတိကြောင့် ဂိမ်းတိ အထူးအမိုက်ဖုံး လွှမ်းလားခီရေ။ FIFA ဂိမ်းတိအတွက် <ref>{{cite news |last=No byline |date=3 December 2015 |title=The FIFA Investigation, Explained |url=https://www.nytimes.com/2015/12/04/sports/soccer/fifa-investigation.html |archive-url=https://ghostarchive.org/archive/20220102/https://www.nytimes.com/2015/12/04/sports/soccer/fifa-investigation.html |archive-date=2 January 2022 |url-access=limited |url-status=live |newspaper=New York Times |location=New York, NY, USA |access-date=3 December 2015}}{{cbignore}}</ref> စွာ စုစုပေါင်း $15 သန်းကျော် လာဘ်ဖေသာ 15 သိန်းကျော် ပီးဆောင်ခရေ။ မေလနှောင်းပိုင်းမာ၊ အမေရိကန်တရားရီးဌာနစွာ လူ ၁၄ ဦးအား ငွီကြေးခဝါချမှု ပူးပေါင်းကြံစည်မှုဖြင့် စွဲချက် ၄၇ မှုဖြင့် စွဲချက် ၄၇ ချက်ကို ထုတ်ပြန်ကြေညာခရေ။ အထူးအနိန်နန့် မေလ ၂၉ နန့် ဒီဇန်ဘာ ၃ ရက်ရို့မာ FIFA အရာဟိတဒါဇင်ကျော်ကို ထိုအချိန်ကစပနာ ဖမ်းဆီးခရေ။<ref>{{cite web |url=https://edition.cnn.com/2015/05/27/football/fifa-corruption-charges-justice-department/ |title=FIFA corruption probe targets 'World Cup of fraud,' IRS chief says |last1=McLaughlin |first1=Eliott C. |last2=Botelho |first2=Greg |date=28 May 2015 |website=CNN |publisher=Cable News Network. Turner Broadcasting System, Inc. |access-date=3 December 2015 |archive-url=https://web.archive.org/web/20150527160034/http://edition.cnn.com/2015/05/27/football/fifa-corruption-charges-justice-department/ |archive-date=27 May 2015 |url-status=live}}</ref> 2015 ခုနှစ် မေလကုန်မာ FIFA အရာဟိ ကိုးဦးနန့် အားကစားနန့် ရုပ်သံရွှင့်စျီးကွက်တိက အမှုဆောင်ငါးဦးကို အကျင့်ပျက်ခြစားမှုဖြင့် တရားစွဲဆိုထားပြီးသားဖြစ်တေ။ ယင်းချိန်မာ FIFA ဥက္ကဋ္ဌ Sepp Blatter စွာ 2016 ခုနှစ် ဖေဖဝါရီလမာ ရာထူးက နုတ်ထွက်ဖို့ဖြစ်ကြောင်း ကြေညာခရေ။<ref>{{cite news |url=https://www.bbc.com/sport/0/football/34991874 |title=Fifa crisis: US charges 16 more officials after earlier Zurich arrests |date=4 December 2015 |work=BBC News |archive-url=https://web.archive.org/web/20151203195200/https://www.bbc.com/sport/0/football/34991874 |archive-date=3 December 2015 |url-status=live}}</ref> 2015 ခုနှစ် ဂျုန်လ 4 ရက်နိမာ [[Chuck Blazer]] နန့် Swiss အာဏာပိုင်တိနန့် ပူးပေါင်းဆောင်ရွက်နီစဉ် သူနန့် FIFA ဧ့ ထိုအချိန်က အမှုဆောင်ကော်မတီအဖွဲ့ဝင်တိစွာ 1998 နန့် 2010 ကမ္ဘာ့ဖလားပြိုင်ပွဲတိကို မြှင့်တင်ဖို့အတွက် လာဘ်ထိုးခကြောင်း ဝန်ခံခရေ။<ref>{{cite web |url=https://www.telegraph.co.uk/sport/football/sepp-blatter/11647665/Sepp-Blatter-FBI-investigation-live.html |archive-url=https://ghostarchive.org/archive/20220110/https://www.telegraph.co.uk/sport/football/sepp-blatter/11647665/Sepp-Blatter-FBI-investigation-live.html |archive-date=10 January 2022 |url-access=subscription |url-status=live |title=Blazer: Bribes accepted for 1998 and 2010 World Cups – Telegraph |date=3 June 2015 |work=Telegraph.co.uk}}{{cbignore}}</ref> မှ ဂျုန်လ 1 ရက်နိအထိ အာဏာပိုင်တိပါးက အချက်အလက်တိကို ကွန်ပျူတာဖြင့် သိမ်းဆည်းခရေ။ [[Sepp Blatter]].<ref>[https://www.bbc.co.uk/news/world-europe-33088747 "Swiss police seize IT data from Fifa headquarters", ''The BBC'', 10 June 2015]. {{webarchive |url=https://web.archive.org/web/20150610194510/http://www.bbc.com/news/world-europe-33088747 |date=10 June 2015 }}. Retrieved 10 June 2015</ref> ဧ့ရုံးတိမာ ထိုနိမှာပင် FIFA စွာ [[2026 FIFA World Cup]] အတွက် 2018 နန့် 2022 ပြိုင်ပွဲတိကို ဆုချီးမြှင့်ခြင်းအတွက် [[2026 FIFA World Cup]] အတွက် လီလံဈီးလုပ်ငန်းစဉ်ကို ရွှိ့ဆိုင်းခပါရေ။ ယပြီးနောက် ထိုဟင့် ဒေဟင့် အတွင်းရီးမှူး [[Jérôme Valcke]] က "အခြီအနီကြောင့်၊ လက်ဟိအချိန်မာ လီလံဈီး လုပ်ငန်းစဉ်ကို စတင်ခြင်းစွာ ကောက်ကရမင်းကျဟု ကျွန်တော်ထင်ပါရေ။" <ref>{{cite news |url=https://www.bbc.co.uk/sport/football/33078284 |title=Fifa World Cup 2026 bidding process delayed |work=[[BBC Sport]] |date=10 June 2015 | access-date=10 June 2015 | archive-url=https://web.archive.org/web/20150610144829/http://www.bbc.com/sport/0/football/33078284 | archive-date=10 June 2015 | url-status=live}}</ref> 2015 ခုနှစ် အောက်တိုဘာလ 28 ရက်နိမာ Blatter နန့် FIFA ဒုတိယသမ္မတလောင်း Michel Platini ရို့စွာ သမ္မတရာထူးအတွက် အလားအလာဟိရေ သမ္မတလောင်းအဖြစ် ရက်ပေါင်း 90 ဆိုင်းငံ့ထား ခပါရေ။ နှစ်ဦးစလုံးစွာ သတင်း မီဒီယာသို့ ဖော်ထုတ်ပြောဆိုမှုတိမာ ယင်းရို့၏ အပြစ်ကင်းစင်မှုကို ထိန်းသိမ်းထားရေ။<ref>{{cite web |url=http://www.cbc.ca/sports/soccer/blatter-platini-suspended-1.3262043 |title=Sepp Blatter, Michel Platini handed 90-day FIFA suspensions |last=Associated Press |date=8 October 2015 |website=CBC Sports |publisher=CBC/Radio Canada |access-date=3 December 2015 |archive-url=https://web.archive.org/web/20151009040617/http://www.cbc.ca/sports/soccer/blatter-platini-suspended-1.3262043 |archive-date=9 October 2015 |url-status=live}}</ref> 2015 ခုနှစ် ဒီဇန်ဘာလ 3 ရက်နိမာ FIFA မှ ဒုဥက္ကဌ နှစ်ဦးအား လာဘ်ပီးလာဘ်ယူမှုနန့် Zurich ဟိုရေမာ မေလအထဲ ဖမ်းဆီးခံခရရေ FIFA အရာဟိ 7 ဦးအား လာဘ်ပီးလာဘ်ယူမှုဖြင့် ဖမ်းဆီးခြင်းခံ ခရပါရေ။<ref>{{cite news |last=Ruiz |first=Rebecca |date=3 December 2015 |title=FIFA Corruption: Top Officials Arrested at Zurich Hotel |url=https://www.nytimes.com/2015/12/03/sports/fifa-scandal-arrests-in-switzerland.html |archive-url=https://ghostarchive.org/archive/20220102/https://www.nytimes.com/2015/12/03/sports/fifa-scandal-arrests-in-switzerland.html |archive-date=2 January 2022 |url-access=limited |url-status=live |newspaper=New York Times |location=New York, USA |access-date=3 December 2015}}{{cbignore}}</ref> အမေရိကန်တရားရီးဌာနက နောက်ထပ် စွဲချက် 16 ခုကို ထိုနိမာ ထုတ်ပြန်ကြေညာခပါရေ။<ref>{{cite web |url=https://www.bbc.com/sport/0/football/34991874 |title=Fifa crisis: US charges 16 more officials after earlier Zurich arrests |last=no byline |date=3 December 2015 |website=BBC Sport |publisher=BBC |access-date=3 December 2015 |archive-url=https://web.archive.org/web/20151203195200/https://www.bbc.com/sport/0/football/34991874 |archive-date=3 December 2015 |url-status=live}}</ref> === နှစ်နှစ်တစ်ကြိမ် ကမ္ဘာ့ဖလား အဆိုပြုချက် === နှစ်နှစ်တခေါက် ကမ္ဘာ့ဖလားအစီအစိုင်ကို 2021 ခုနှစ် မေလ 21 ရက်နိမာကျင်းပရေ 71st [[FIFA Congress]] မာ [[Saudi Arabian Football Federation]]က ပထမဆုံးအဆိုပြုခပြီး Arsenal မန်နီဂျာဟောင်း [[Arsène Wenger]] နန့် အာဖရိကနန့် အာသျှဟိ နိုင်ငံဆိုင်ရေ အဖွဲ့ချုပ်တိက ထင်ရှားစွာပံ့ပိုးပီးခပါရေ။<ref>{{cite news |title=Africa backs two-yearly World Cup despite biennial Nations Cup |url=https://www.bbc.co.uk/sport/africa/57873547 |access-date=23 January 2023 |publisher=BBC |archive-date=23 January 2023 |archive-url=https://web.archive.org/web/20230123014053/https://www.bbc.co.uk/sport/africa/57873547 |url-status=live}}</ref> UEFA နန့် CONMEBOL ပိုင်ယှောင် Continental confederations တိစွာ အစီအစိုင်<ref>{{Cite web |date=23 September 2021 |title=EU opposes biennial World Cup |url=https://www.politico.eu/article/eu-opposes-fifa-world-cup-two-year-plan/|access-date=27 October 2021 |website=POLITICO |language=en-US|archive-url=https://web.archive.org/web/20210923175302/https://www.politico.eu/article/eu-opposes-fifa-world-cup-two-year-plan/|archive-date=23 September 2021|url-status=live}}</ref><ref>{{Cite news |date=10 September 2021 |title=South America comes out against idea of biennial World Cup |language=en |work=Reuters |url=https://www.reuters.com/lifestyle/sports/south-america-comes-out-against-idea-biennial-world-cup-2021-09-10/|access-date=27 October 2021|archive-url=https://web.archive.org/web/20211027031109/https://www.reuters.com/lifestyle/sports/south-america-comes-out-against-idea-biennial-world-cup-2021-09-10/|archive-date=27 October 2021|url-status=live}}</ref> မာပါဝင်ခြင်းမဟိရေ်လည်း၊ စုစုပေါင်း၊ FIFA ဧ့အသင်းဝင်အသင်းပေါင်း 210 မာ 166 က အကြံဥာဏ်ပီးထားရေ။<ref>{{cite news |title=Four South Asian nations back FIFA's biennial World Cup push |url=https://www.reuters.com/lifestyle/sports/four-south-asian-nations-back-fifas-biennial-world-cup-push-2021-09-06/ |access-date=23 January 2023 |work=Reuters |archive-date=23 January 2023 |archive-url=https://web.archive.org/web/20230123014049/https://www.reuters.com/lifestyle/sports/four-south-asian-nations-back-fifas-biennial-world-cup-push-2021-09-06/ |url-status=live}}</ref> === အခြား FIFA ပြိုင်ပွဲတိ=== [[2015 FIFA Women's World Cup|2015 Women's World Cup]] ပွဲစဉ်ကို လက်ခံကျင်းပနီရေ [[File:Round of 16 Canada vs Switzerland (18852958960).jpg|thumb|[[BC Place]]]] [[Women's association football|women's football]]၊ [[FIFA Women's World Cup]] အတွက် ညီမျှရေပြိုင်ပွဲကို [[FIFA Women's World Cup 1991|1991]] မာ ပထမဆုံးကျင်းပခပါရေ။<ref>{{cite web |url=https://www.fifa.com/womensworldcup/index.html |archive-url=https://web.archive.org/web/20080703220738/http://www.fifa.com/womensworldcup/index.html |url-status=dead |archive-date=3 July 2008 |title=FIFA Women's World Cup |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=22 December 2007}}</ref> အမျိုးသမီးပြိုင်ပွဲစွာ အမျိုးသားတိထက် အရွယ်အစားနန့် ပရိုဖိုင်းပိုသိမ့်ကေလည်း ကြီးထွားလာပါရေ။ 2007 ပြိုင်ပွဲအတွက် ဝင်ရောက်ယှဥ်ပြိုင်သူဦးရေ 120 ဟိပြီးး 1991 ခုနှစ်ထက် နှစ်ဆပိုပြီးကေများရေ။<ref>[http://www.chinapost.com.tw/editorial/2010/06/30/262694/we-are.htm "We Are the World ... Cup"] {{webarchive|url=https://web.archive.org/web/20170909005900/http://www.chinapost.com.tw/editorial/2010/06/30/262694/we-are.htm |date=9 September 2017}}. China Post. Retrieved 8 September 2017</ref> အမျိုးသားဘောလုံးပြိုင်ပွဲကို 1896 နန့် 1932 လွဲပြီးကေ [[Summer Olympic Games]] တိုင်းမာ ထည့်သွင်းထားပါရေ။ အရာအားကစားတိနန့်မတူဘဲ၊ [[Football at the Summer Olympics|football tournament at the Olympics]] စွာ ထိပ်တန်းအဆင့်ပြိုင်ပွဲမဟုတ်ရေအပြင် 1992 ခုနှစ်မှစပြီးကေ အသင်းတသင်းစီနန့် အသက် 23 နှစ်အောက်ပြိုင်ပွဲကို အသက်ပိုကစပ်သမား 3 ဦးကို ခွင့်ပြုခရေ။[[Football at the Summer Olympics|football tournament at the Olympics]] စွာ အမျိုးသမီးဘောလုံးပြိုင်ပွဲကို ပြုလုပ်ခရေ။ [[FIFA Confederations Cup]] စွာ လာဖို့ကမ္ဘာ့ဖလားပြိုင်ပွဲအတွက် ၀တ်စားဆင်ယင် လိ့ကျင့်မှုအဖြစ် ကမ္ဘာ့ဖလားအိမ်ရှင်နိုင်ငံ(တိ)မာ ကမ္ဘာ့ဖလားမကျင်းပခင် တနှစ်အလိုမာ ကျင်းပရေ ပြိုင်ပွဲတခုဖြစ်တေ။ ယင်းကို FIFA ကွန်ဖက်ဒရီးရှင်းချန်ပီယံ ခြောက်ခုစီမှ ဖီဖာကမ္ဘာ့ဖလားချန်ပီယံနန့် အိမ်ရှင်နိုင်ငံရို့နန့်အတူ ယှဥ်ပြိုင်ဖို့ဖြစ်တေ။<ref>{{cite web |url=https://www.fifa.com/confederationcup/index.html |archive-url=https://web.archive.org/web/20070609165833/http://www.fifa.com/confederationcup/index.html |url-status=dead |archive-date=9 June 2007 |title=FIFA Confederations Cup |work=FIFA.com |access-date=22 December 2007 |publisher=Fédération Internationale de Football Association}}</ref> ပထမအကြိမ်ထုတ်ဝီခြင်းကို [[1992 FIFA Confederations Cup|1992]] မာကျင်းပခပြီးကေ နောက်ဆုံးထုတ်ဝီမှုကို [[2017 FIFA Confederations Cup|2017]] မာ ကစားခပါရေ။ 2019 ခုနှစ် မာ့ခ်ျလမာ၊ FIFA မှ [[FIFA Club World Cup]] ကို 2021 ခုနှစ်မာ တိုးချဲ့လာမှုကြောင့် ပြိုင်ပွဲစွာ အသက်ဝင်ဖို့ရာမဟုတ်ကြောင်း အတည်ပြုခရေ။<ref>{{cite news |url=https://www.fifa.com/about-fifa/who-we-are/news/fifa-council-votes-for-the-introduction-of-a-revamped-fifa-club-world-cup |title=FIFA Council votes for the introduction of a revamped FIFA Club World Cup |website=FIFA.com |date=15 March 2019 |access-date=17 June 2019 |archive-date=16 July 2019 |archive-url=https://web.archive.org/web/20190716174909/https://www.fifa.com/about-fifa/who-we-are/news/fifa-council-votes-for-the-introduction-of-a-revamped-fifa-club-world-cup |url-status=live}}</ref> ဖီဖာစွာ လူငယ်ဘောလုံးပြိုင်ပွဲတိ ([[FIFA U-20 World Cup]]၊ [[FIFA U-17 World Cup]]၊ [[FIFA U-20 Women's World Cup]]၊ [[FIFA U-17 Women's World Cup]])၊ ကလပ်ဘောလုံး ([[FIFA Club World Cup]]၊ [[FIFA Women's Club World Cup]] ([[2028]]WKTOKENKENKENKENWKEND8)၊ နန့် [[futsal]] ([[FIFA Futsal World Cup]]၊ [[FIFA Futsal Women's World Cup]]) နန့် [[beach soccer]] ([[FIFA Beach Soccer World Cup]]) ပိုင်ယှောင် ဘောလုံးမျိုးကွဲတိ စွာ အမျိုးသမီးဗားရှင်းမပါဝင်ပါ။ FIFA U-20 အမျိုးသမီးကမ္ဘာ့ဖလားပြိုင်ပွဲကို အမျိုးသမီးကမ္ဘာ့ဖလားမစခင် တနှစ်အပါအဝင် နှစ်စိုင်နှစ်တိုင်း ကျင်းပပါရေ။ ပြိုင်ပွဲနှစ်ခုစလုံးကို တခေါက်တည်း လီလံဈီး လုပ်ငန်းစဉ် ၃ ကြိမ်ဖြင့် ဆုချီးမြှင့်ခပြီးကေ U-20 ပြိုင်ပွဲစွာ တခေါက်စီမာ ကြီးမားရေပြိုင်ပွဲအတွက် ၀တ်စားဆင်ယင်မှု အစမ်းလီ့ကျင့်မှုအဖြစ် ([[2010 FIFA U-20 Women's World Cup|2010]]၊ [[2014 FIFA U-20 Women's World Cup|2014]] နန့် [[2018 FIFA U-20 Women's World Cup|2018]]) <ref>[https://www.cbc.ca/m/sports/soccer/fifau20/fifa-women-s-world-cup-next-up-for-canada-in-2015-1.2745557 "FIFA Women's World Cup next up for Canada in 2015"]. {{webarchive |url=https://web.archive.org/web/20200916193432/https://www.cbc.ca/sports/soccer/fifau20/fifa-women-s-world-cup-next-up-for-canada-in-2015-1.2745557 |date=16 September 2020 }}. CBC Sports. Retrieved 8 September 2017</ref> == ဆုဖလား == {{Main|FIFA World Cup Trophy}} {{multiple image |align = |total_width = 270 |image1 = FIFA World Cup Trophy (Ank Kumar, Infosys Limited) 04.jpg |caption1 = The current trophy, first awarded in 1974 |image2 = Jules rimet trophy at preston museum.jpg |caption2 = The Jules Rimet trophy, awarded from 1930 to 1970 }} [[File:Maradona-Mundial 86 con la copa.JPG|thumb|180px|Diego Maradona with the current trophy in 1986]] 1930 မှ 1970 ခုနှစ်အထိ၊ ''[[Jules Rimet Trophy]]'' ကို ကမ္ဘာ့ဖလားချန်ပီယံအသင်းအား ချီးမြှင့်ခရေ။ ယင်းအား မူလက ''World Cup'' သို့မဟုတ် ''Coupe du Monde'' ဟုခေါ် ခကေလေ့ 1946 ခုနှစ်မာ ပထမဆုံးပြိုင်ပွဲကို စတင်ကျင်းပခရေ FIFA ဥက္ကဋ္ဌ [[Jules Rimet]] ပြီးကေ နာမည်ပြောင်းခရေ။ [[1970 FIFA World Cup|1970]] မာ၊ ပြိုင်ပွဲမာ [[Brazil national football team|Brazil]] ဧ့ တတိယမြောက်အောင်ပွဲစွာ ယင်းရို့အား ဆုဖလားကို ထာဝရထိန်းသိမ်းထားနိုင်စီခရေ။ ယကေလေ့သော့ ဖလားကို 1983 ခုနှစ်မာ ခိုးယူခံခရပြီး သခိုးတိ၏ အရည်ပျော်လား ခပုံရရေ။<ref>{{cite web |url=https://www.fifa.com/classicfootball/history/fifa-world-cup/jules-rimet-cup.html |archive-url=https://web.archive.org/web/20130329051215/http://www.fifa.com/classicfootball/history/fifa-world-cup/jules-rimet-cup.html |url-status=dead |archive-date=29 March 2013 |title=Jules Rimet Cup |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> 1970 ခုနှစ်နောက်ပိုင်းမာ FIFA World Cup Trophy ဟုလူသိများရေ ဆုဖလားအသစ်ကို ဒီဇိုင်းထုတ်ခရေ။ နိုင်ငံပေါင်း ခနစ်နိုင်ငံမှ ရောက်ဟိလာရေ FIFA မှ တတ်ကျွမ်းသူတိစွာ တင်ပြထားရေ မော်ဒယ် ၅၃ ခုကို အကဲဖြတ်ကာ နောက်ဆုံးမှာ အီတလီ ဒီဇိုင်နာ [[Silvio Gazzaniga]] ဧ့ လက်ရာကို ရွီးချယ်ခရေ။ ဆုဖလားအသစ်စွာ {{convert|36|cm|in|1|abbr=on}} မြင့်မားပြီး၊ အစိုင်အခဲ 18 [[carat (purity)|carat]] (75%) ရွှီဖြင့်ပြုလုပ်ထားပြီးသား အလီးချိန် {{Convert|6.175|kg|1|abbr=on}}.<ref name="Trophy">{{cite news |title=FIFA World Cup Trophy |url=https://www.fifa.com/about-fifa/marketing/brand/trophy.html |archive-url=https://web.archive.org/web/20150601013627/http://www.fifa.com/about-fifa/marketing/brand/trophy.html |url-status=dead |archive-date=1 June 2015 |agency=FIFA.com |date=24 June 2018}}</ref> အောက်ခြီမာ [[1974 FIFA World Cup|1974]] မှစတင်ပနာ ဖီဖာကမ္ဘာ့ဖလားအနိုင်ရသူတိုင်းဧ့နာမည်ကို ထွင်းထုထားရေနှစ်နန့် ဖလားဧ့အောက်ခြီမာ တန်ဖိုးကြီး [[malachite]] အလွှာနှစ်ထပ်ပါဟိရေ။<ref name="Trophy" /> The description of the trophy by Gazzaniga was: "The lines spring out from the base, rising in spirals, stretching out to receive the world. From the remarkable dynamic tensions of the compact body of the sculpture rise the figures of two athletes at the stirring moment of victory."<ref>{{cite web |url=https://www.fifa.com/classicfootball/history/fifa-world-cup/trophy.html |archive-url=https://web.archive.org/web/20130329051244/http://www.fifa.com/classicfootball/history/fifa-world-cup/trophy.html |url-status=dead |archive-date=29 March 2013 |title=FIFA World Cup Trophy |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 July 2014}}</ref> ဒေဆုဖလားအသစ်စွာ အနိုင်ရရေနိုင်ငံအား အပြီးအပိုင်ချီးမြှင့်ခြင်းမဟုတ်။ ကမ္ဘာ့ဖလားဆုရှင်တိစွာ ပွဲပြီးယင့်အချိန်အထိ အောင်ပွဲခံလောက်ရုံရာ ဆုဖလားကို ဆက်ပနာထိန်းသိမ်းထားနှိုင်ရေ။ ယင်းရို့စွာ နောက်ပိုင်းမာ နနောင်းရေ ရွှီအစစ်မဟုတ်ဘဲ မူရင်းရွှီဖြင့်ပြုလုပ်ထားရေ ပုံစံတူကို ချီးမြှင့်ခြင်း ခံရရေ။<ref>{{cite web |url=https://www.fifa.com/aboutfifa/marketingtv/marketing/fifaassets/trophy.html |title=FIFA Assets – Trophy |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=19 November 2007 |url-status=dead |archive-url=https://web.archive.org/web/20071104165903/http://www.fifa.com/aboutfifa/marketingtv/marketing/fifaassets/trophy.html <!-- Bot retrieved archive --> |archive-date=4 November 2007}}</ref> အသင်း၃သင်းက အဖွဲ့ဝင်တိအားလုံး (ကစပ်သမားတိ၊ နည်းပြတိနန့် မန်နီဂျာတိ) စွာ ကမ္ဘာ့ဖလားဆုဖလားဧ့ အဆောင်အယောင်ဖြင့် ဆုတံဆိပ်တိရ ဟိဖို့ဖြစ်တေ။ အနိုင်ရဟိသူ (ရွှီ)၊ ဒုတိယဆု (ဖေသာ) နန့် တတိယဆု (ကြီးတံဆိပ်)။ [[2002 FIFA World Cup|2002 edition]] မာ အိမ်ရှင် [[South Korea national football team|South Korea]] အား စတုတ္ထဆုတံဆိပ်တိ ချီးမြှင့်ခရေ။ 1978 ပြိုင်ပွဲမရောက်ခင်မာ ဗိုလ်လုပွဲအပြီးမာ ကွင်းအထဲမှ ကစပ်သမား 11 ဦးကိုရာ ဆုတံဆိပ်တိ ပီးအပ်ခပြီးကေ တတိယဆုရဟိခရေ။ 2007 ခုနှစ် နိုဗန်ဘာလမာ ဖီဖာမှ 1930 ခုနှစ်မှ 1974 ခုနှစ်အထဲ ကမ္ဘာ့ဖလားရခရေ အသင်းတိ၏ အဖွဲ့ဝင်အားလုံးကို ဆုတံဆိပ်တိကို နောက်ကြောင်းပြန်လှည့်ပနာ ချီးမြှင့်ကြောင်း ကြေညာခရေ။<ref name="espnheroes">{{cite news |url=http://soccernet.espn.go.com/news/story?id=484715&cc=4716 |title=122 forgotten heroes get World Cup medals |work=ESPNSoccernet.com |publisher=[[ESPN]] |date=25 November 2007 |access-date=10 December 2009 |archive-date=20 October 2012 |archive-url=https://web.archive.org/web/20121020074058/http://soccernet.espn.go.com/news/story?id=484715&cc=4716 |url-status=dead}}</ref><ref>{{cite news |url=https://news.bbc.co.uk/sport2/hi/football/8093891.stm |title=World Cup 1966 winners honoured |work=BBC Sport |date=10 June 2009 |archive-url=https://web.archive.org/web/20090612032102/http://news.bbc.co.uk/sport2/hi/football/8093891.stm |archive-date=12 June 2009 |url-status=live}}</ref><ref>{{cite news |url=https://www.mirror.co.uk/news/top-stories/2009/06/11/greavsie-gets-66-medal-115875-21431367/ |title=Jimmy Greaves finally gets his 1966 World Cup medal |work=Mirror.co.uk |publisher=MGN |archive-url=https://web.archive.org/web/20090614074134/https://www.mirror.co.uk/news/top-stories/2009/06/11/greavsie-gets-66-medal-115875-21431367/ |archive-date=14 June 2009 |url-status=live}}</ref> 2006 ခုနှစ်မှစတင်ပနာ ပြိုင်ပွဲမာအနိုင်ရဟိသူတိစွာ [[FIFA Champions Badge]] ကို ဝတ်ဆင်ခွင့် ချီးမြှင့်ခံရယား နောက်ပြိုင်ပွဲမာ အနိုင်ရသူကို ဆုံးဖြတ်ယင့်အချိန်အထိ <ref>{{cite web |url=https://www.fifa.com/news/first-fifa-world-champions-badge-presented-italy-868119|archive-url=https://web.archive.org/web/20191222150939/https://www.fifa.com/news/first-fifa-world-champions-badge-presented-italy-868119|url-status=dead|archive-date=22 December 2019 |title=First 'FIFA World Champions Badge' presented to Italy |website=[[FIFA]] |date=2 September 2008|access-date=22 December 2019}}</ref> == ပုံစံ == {{Update|date=May 2025|reason=Tournament format has been changed}} === အရည်အချင်း === {{Main|FIFA World Cup qualifiers}} [[1934 FIFA World Cup|1934]] မာ ဒုတိယအကြိမ်ကမ္ဘာ့ဖလားပြိုင်ပွဲကျင်းပပြီးကပင်၊ နောက်ဆုံးပြိုင်ပွဲအတွက် ကွင်းကိုပါးလွှာစီဖို့ အတွက် ခြီစစ်ပွဲပြိုင်ပွဲတိကို ကျင်းပခရေ။<ref>{{cite web |url=https://www.fifa.com/worldcup/preliminarydraw/news/newsid=576440.html |archive-url=https://web.archive.org/web/20071118182153/http://www.fifa.com/worldcup/preliminarydraw/news/newsid=576440.html |url-status=dead |archive-date=18 November 2007 |title=FIFA World Cup qualifying: Treasure-trove of the weird and wonderful |work=FIFA |access-date=23 December 2007}}</ref> ယင်းရို့ကို FIFA ဇုန်ခြောက်ခု ([[Confederation of African Football|Africa]]၊ [[Asian Football Confederation|Asia]]၊ [[CONCACAF|North and Central America and Caribbean]]၊ WKTOKENKENK7WKEND၊ [[UEFA|Europe]])၊ ယင်းရို့၏သက်ဆိုင်ရေ အသင်းချုပ်တိက ကြီးကြပ်ရေ။ ပြိုင်ပွဲတစ်ခုကျအတွက်၊ ယေဘုယျအနိန်နန့် ကွန်ဖက်ဒရီးရှင်းအသင်းတိ၏ အင်အားအပေါ်အခြီခံပနာ ဇုန်တစ်ခုကျအတွက် ချီးမြှင့်ဖို့ နီရာအရွီအတွက်ကို ဖီဖာက ဆုံးဖြတ်ရေ။ အရည်အခြင်းစစ် လုပ်ငန်းစဉ်စွာ နောက်ဆုံးပြိုင်ပွဲမရောက်ခင် သုံးနှစ်နီးပါးအစောဆုံး စတင်နှိုင်ပြီးကေ နှစ်နှစ်စွာကာလအထိ ကြာမြင့်နှိုင်ရေ။ အရည်အခြင်းစစ်ပြိုင်ပွဲတိ၏ ပုံစံတိစွာ အဖွဲ့ချုပ်တိကြားမာ ကွဲပြားရေ။ အများအားဖြင့်၊ [[play-off]]s ဆုရဟိသူတိကို နီရာတခု သို့မဟုတ် နှစ်ခု ချီးမြှင့်ရေ။ ဥပမာအနိန်နန့်၊ သမုဒ္ဒရာပိုင်းဇုန်က အနိုင်ရဟိသူနန့် အာသျှဇုန်မှ ပဉ္စမနီရာမှ အသင်းရို့စွာ [[2010 FIFA World Cup|2010 World Cup]] မာ play-off မာ ပါဝင်ခရေ။<ref>{{cite news |url=http://soccernet.espn.go.com/print?id=468907&type=story&cc= |title=2010 World Cup Qualifying |work=ESPNSoccernet.com |publisher=ESPN |date=26 November 2009 |access-date=23 December 2009 |url-status=dead |archive-url=https://web.archive.org/web/20081216151218/http://soccernet.espn.go.com/print?id=468907&type=story&cc= |archive-date=16 December 2008}}</ref> [[1938 FIFA World Cup|1938 World Cup]] မှစတင်ပနာ အိမ်ရှင်နိုင်ငံတိစွာ နောက်ဆုံးပြိုင်ပွဲသို့ အလိုအလျောက် အရည်အခြင်းစစ်ကို ရဟိကတ်တေ။ ယင့်ချင့်အခွင့်အရီးကို 1938 နန့် 2002 ခုနှစ်ကြားမာ ချန်ပီယံတိကို ပီးအပ်ထားကေလေ့ အယင်ချန်ပီယံတိစွာ ဖီဖာကမ္ဘာ့ဖလားပြိုင်ပွဲဧ့ နောက်ဆက်တွဲပြိုင်ပွဲတိမာ ယှဥ်ပြိုင်နိုင်စွမ်းမဟိရေ စွမ်းဆောင်ရည်တိဟိရေကြောင့် ချန်ပီယံတိကို [[2006 FIFA World Cup]] မှ နုတ်ထွက်ခရေ။ [[Brazil national football team|Brazil]]၊ [[2002 FIFA World Cup|2002]] မာ အနိုင်ရသူတိစွာ ခြီစစ်ပွဲတိကစားရေ ပထမဆုံးရေ ချန်ပီယံတိဖြစ်တေ။<ref>{{cite web |url=https://www.fifa.com/mm/document/fifafacts/mencompwc/51/97/75/fs-201_19a_fwc-prel-history.pdf |title=History of the FIFA World Cup Preliminary Competition (by year) |work=FIFA.com |publisher=Fédération Internationale de Football Association |url-status=dead |archive-url=https://web.archive.org/web/20100614212731/http://www.fifa.com/mm/document/fifafacts/mencompwc/51/97/75/fs-201_19a_fwc-prel-history.pdf |archive-date=14 June 2010}}</ref> === နောက်ဆုံးပြိုင်ပွဲ === {{For|the various formats used in previous tournaments|History of the FIFA World Cup#Evolution of the format}} ၁၉၉၈ ခုနှစ်နောက်ပိုင်း နောက်ဆုံးပြိုင်ပွဲပုံစံမာ အိမ်ရှင်နိုင်ငံအဖြစ် တလတာ ကာလအထဲ နိုင်ငံပေါင်း ၃၂ သင်း ပါဝင်ယှဥ်ပြိုင်ခရေ။ အဆင့်နှစ်ထပ် ဟိရေ- အုပ်စုအဆင့်၊ နောက်ကောက်ကျရေအဆင့်။<ref name="FIFAformat">{{cite web |url=https://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_04e_fwc_formats_slots_8821.pdf |archive-url=https://web.archive.org/web/20080227032244/http://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_04e_fwc_formats_slots_8821.pdf |url-status=dead |archive-date=27 February 2008 |title=Formats of the FIFA World Cup final competitions 1930–2010 |work=FIFA.com |access-date=1 January 2008 |publisher=Fédération Internationale de Football Association}}</ref> အုပ်စုအဆင့်မာ လေးသင်းက ၈ သင်းစီ ယှဥ်ပြိုင်ကတ်တေ။ အိမ်ရှင်တိအပါအဝင် ၈သင်းကို [[FIFA World Rankings]] ပေါ်အခြီခံပနာ ဖော်မြူလာကိုအသုံးပြုကာ ရွီးချယ်ထားရေ အရာမျိုးစိ အသင်းတိနန့် တအောင့်လောက်က ကမ္ဘာ့ဖလားပြိုင်ပွဲတိမာ တင်ဆက်မှုတိပြုလုပ်ပနာ သီးသန့်အုပ်စုတိသို့ ရီးဆွဲခရေ။<ref>{{cite web |url=https://www.fifa.com/mm/document/fifafacts/mencompwc/82/40/89/fs-201_12a_fwc-seededteams.pdf |archive-url=https://web.archive.org/web/20100215190232/http://www.fifa.com/mm/document/fifafacts/mencompwc/82/40/89/fs-201_12a_fwc-seededteams.pdf |url-status=dead |archive-date=15 February 2010 |title=FIFA World Cup: seeded teams 1930–2010 |publisher=Fédération Internationale de Football Association |work=FIFA.com |access-date=12 May 2014}}</ref> အရာအသင်းတိကို မတူညီရေ "အိုးတိ" မာ သတ်မှတ်ထားပြီးသား များရေအားဖြင့် ပထဝီဝင်စံနှုန်းတိအပေါ်အခြီခံပနာ အိုးတစ်ခုကျဟိအသင်းတိကို အုပ်စု ၈စုသို့ ကျပန်းယတ် ကတ်တေ။ [[1998 FIFA World Cup|1998]] မှစတင်ပနာ အုပ်စုနှစ်စုထက်ပိုရေ ဥရောပအသင်းတိ သို့မဟုတ် အရာအသင်းအဖွဲ့တိက တသင်းထက်ပိုရေအသင်းမပါဝင်ကြောင်းသေချာစီဖို့ မဲခွဲရာမာကန့်သတ်ချက်တိကိုအသုံးပြုခရေ။<ref>Previously, due to there being fewer finals places and a bigger ratio of European finalists, there had been several occasions where three European teams were in a single group, for example, 1986 (West Germany, Scotland, and Denmark), 1990 (Italy, Czechoslovakia, and Austria), and 1994 (Italy, Republic of Ireland, and Norway). ({{cite web |url=https://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_10e-fwcdraw-history_52560.pdf |archive-url=https://web.archive.org/web/20091123034518/http://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_10e-fwcdraw-history_52560.pdf |url-status=dead |archive-date=23 November 2009 |title=History of the World Cup Final Draw |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=12 May 2014}})</ref> အုပ်စုတစ်ခုကျစွာ [[round-robin tournament]] ကစပ်ကတ်ပြီး တသင်းစီစွာ အငယ်တအုပ်စုတည်းဟိ အရာအသင်းတိနန့် သုံးပွဲကဇတ်ရရောင် စီစိုင်ထားရေ။ ဆိုလိုစွာက အုပ်စုတခုအထဲ စုစုပေါင်း ခြောက်ပွဲ ကစပ်တေ။ အုပ်စုတစ်ခုကျဧ့ နောက်ဆုံးအကျော့ပွဲစဉ်တိကို လေးသင်းစလုံးကြား တရားမျှတမှုဟိစီရန် တချိန်တည်းမာ စီစိုင်ထားရေ။<ref>This practice has been installed since the [[1986 FIFA World Cup]]. In some cases during previous tournaments, for example, Argentina 6–0 Peru in [[1978 FIFA World Cup|Argentina 1978]] and [[West Germany 1–0 Austria (1982 FIFA World Cup)|West Germany 1–0 Austria]] in [[1982 FIFA World Cup|Spain 1982]], teams that played the latter match were perceived to gain an unfair advantage by knowing the score of the earlier match, and subsequently [[Match fixing#Match fixing to a draw or a fixed score|obtaining a result that ensured advancement to the next stage]]. ({{cite news |url=http://www.cbc.ca/sports/soccer/1978-world-cup-a-first-title-for-argentina-1.816202 |title=1978 Argentina |publisher=CBC |archive-url=https://web.archive.org/web/20130928003655/http://www.cbc.ca/sports/soccer/1978-world-cup-a-first-title-for-argentina-1.816202 |archive-date=28 September 2013 |url-status=live}}; {{cite news |url=http://www.cbc.ca/sports/soccer/1982-world-cup-rossi-to-the-resuce-for-italy-1.793678 |title=1982 Spain |publisher=CBC |archive-url=https://web.archive.org/web/20150212035951/http://www.cbc.ca/sports/soccer/1982-world-cup-rossi-to-the-resuce-for-italy-1.793678 |archive-date=12 February 2015 |url-status=live}})</ref> အုပ်စုတစ်ခုကျမှ ထိပ်ဆုံးနှစ်သင်းစွာ နောက်ဆုံးအဆင့်သို့ တက်ရောက်လားဖို့ဖြစ်တေ။ အုပ်စုဟိ အသင်းတိကို အဆင့်သတ်မှတ်ဖို့အမှတ်တိကို အသုံးပြုရေ။ [[1994 FIFA World Cup|1994]]၊ [[Three points for a win|three points have been awarded for a win]]၊ သရေတပွဲအတွက် တပွဲနန့် အယှုံးမဟိပါ (အယင်၊ အနိုင်ရသူတိစွာ အမှတ်နှစ်မှတ်ရဟိရေ)။ ဖြစ်နှိုင်ခြီဟိရေ ရလဒ်သုံးမျိုး (အနိုင်၊ သရေ၊ အယှုံး) ဟိရေ အုပ်စုတစ်ခုကျမာ ခြောက်ပွဲစီသုံးသပ်ကြည့်ကေ 729 (= 3<sup>6</sup>) ဖြစ်နှိုင်ခြီဟိရေ နောက်ဆုံးဇယားရလဒ်တိ 40 သင်းဧ့ ဖြစ်နှိုင်ခြီဟိရေ 40 တွဲအတွက် ဖြစ်နှိုင်ခြီဟိရေ။<ref>{{Cite web |last=gadamico |date=25 July 2021 |title=Soccer and Statistics: Modeling the Group Stage |url=https://github.com/gadamico/soccer_and_statistics/blob/main/soccer_and_statistics.ipynb |access-date=2 March 2024 |website=github.com}}</ref> သို့ ရေ် 40 မှတ် ပေါင်းစပ်မှု 14 မှတ် (သို့မဟုတ် 207 နန့် com အကြားမာ ဖြစ်နှိုင်ခြီဟိရေ 209 ) အကြား တတိယနီရာသို့ ဦးတည်ရေ။ ယင်းပိုင်ရေအခြီအနီမာ၊ ဒေအသင်းတိကြားမာ အဆင့်သတ်မှတ်ချက်ကို-<ref>{{cite web |url=https://www.uefa.com/MultimediaFiles/Download/Regulations/uefaorg/Regulations/01/87/54/21/1875421_DOWNLOAD.pdf |title=Regulations – 2018 FIFA World Cup Russia |page=43 |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=24 June 2018 |archive-url=https://web.archive.org/web/20171013234125/https://www.uefa.com/MultimediaFiles/Download/Regulations/uefaorg/Regulations/01/87/54/21/1875421_DOWNLOAD.pdf |archive-date=13 October 2017 |url-status=dead}}</ref> မှ ဆုံးဖြတ်ရေ။ # အုပ်စုပွဲအားလုံးမာ ပေါင်းစပ်ဂိုးကွာခြားချက် အကြီးမားဆုံး # အုပ်စုပွဲအားလုံးမာ အများဆုံးပေါင်းစပ်ထားရေ ဂိုးအရွီအတွက် # အထက်ဖော်ပြပါ သတ်မှတ်ချက်တိကို လိုက်နာပြီးကေ အသင်းတသင်းထက်ပိုပြီးကေ အဆင့်ဆက်ဟိနီပါက၊ ယင်းရို့၏ အဆင့်သတ်မှတ်ချက်ကို အောက်ပါအတိုင်း ဆုံးဖြတ်ဖို့ဖြစ်ပါရေ။ ## ထိုအသင်းတိအကြား ထိပ်တိုက်တွိ့ဆုံမှုမာ ရမှတ်အများဆုံးအရွီအတွက် ## ထိုအသင်းတိကြားမာ ထိပ်တိုက်တွိ့ဆုံပွဲတိမာ ဂိုးကွာခြားချက်အကြီးမားဆုံးဖြစ်တေ။ ## ထိုအသင်းတိအကြား ထိပ်တိုက်တွိ့ဆုံမှုမာ ဂိုးအများဆုံးသွင်းသူအရွီအတွက် ## အုပ်စုအဆင့်မာ လက်ခံရဟိရေ အဝါနန့် အနီကတ်အရွီအတွက်ဖြင့် သတ်မှတ်ထားရေ မျှတရေကစပ်ရမှတ်တိ- ### အဝါကတ်- အနုတ် ၁ မှတ် ### အရိပ်ချအနီကတ် (ဒုတိယအဝါကတ်ဧ့ရလဒ်အဖြစ်): အနုတ် 3 မှတ် ### တိုက်ရိုက်အနီကတ်- အနှုတ် 4 မှတ် ### အဝါကတ်နန့် တိုက်ရိုက်အနီကတ်- အနုတ် 5 မှတ် #အထက်ပါအသင်းတိ စွာ အထက်ဖော်ပြပါ စံသတ်မှတ်ချက်တိကို လိုက်နာပြီး အဆင့်ဆက်ပနာရပ်တည်ပါက၊ ယင်းရို့၏ အမှတ်ပီးဇယားကို မဲထွတ်ခြင်းနန့် သတ်မှတ်ပီးဖို့ဖြစ်ပါရေ။ ယှုံးထွက်အဆင့်စွာ [[single-elimination tournament]] ဖြစ်ပြီးကေ လိုအပ်ပါကေ အနိုင်ရသူကို ဆုံးဖြတ်ဖို့အတွက် အသင်းတိစွာ တပွဲမှတပွဲ ကစပ်ရေ [[extra time]] နန့် [[penalty shootout (association football)|penalty shootouts]] ရို့ဖြစ်တေ။ အုပ်စုတစ်ခုကျဧ့အနိုင်ရသူတိစွာ အရာအုပ်စုဧ့ဒုတိယအကျော့နန့်ယှဥ်ပြိုင်ရေ 16 ပတ် (သို့မဟုတ်ဒုတိယအကျော့) ဖြင့်စတင်ရေ။ ယေပြီးနောက်မာ ကွာတားဖိုင်နယ်၊ ဆီမီးဖိုင်နယ်၊ [[match for third place]] (ယှုံးထွက်ဆီမီးဖိုင်နယ်တိ) နန့် ဖိုင်နယ်ရို့ဖြစ်တေ။ <ref name="FIFAformat" /> On 10 January 2017, FIFA approved a new format, the 48-team World Cup (to accommodate more teams), which was to consist of 16 groups of three teams each, with two teams qualifying from each group, to form a round of 32 knockout stage, to be implemented by 2026.<ref>{{cite news |first=Stephen |last=Turner |url=http://www.skysports.com/football/news/11095/10723865/fifa-council-votes-in-favour-of-48-team-world-cup-from-2026 |title=FIFA approves 48-team World Cup |work=[[Sky Sports News]] |date=10 January 2017 |access-date=10 January 2017 |archive-url=https://web.archive.org/web/20170111005600/http://www.skysports.com/football/news/11095/10723865/fifa-council-votes-in-favour-of-48-team-world-cup-from-2026 |archive-date=11 January 2017 |url-status=live}}</ref> စွာ မာ့ခ်ျလ 14 ရက်နိ 2023 မာ FIFA မှ 2026 ပြိုင်ပွဲဧ့ ပြန်ပနာပြင်ဆင်ထားရေပုံစံကို အတည်ပြုခပြီး အုပ်စု 4 ဖွဲ့ကေအုပ်စု 12 ဖွဲ့ပါဝင်ကာ အုပ်စုအဆင့်အနိုင်ရသူတိမာ ထိပ်ဆုံး 8 သင်းပါဝင်ပါရေ။ 32.<ref>{{cite news |last=Ziegler |first=Martyn |url=https://www.thetimes.com/article/7d38da2c-c24b-11ed-8e20-0f5794810aad |title=World Cup will be a week longer — but Fifa scraps three-team group plan |work=[[The Times]] |date=14 March 2023 |access-date=14 March 2023 |archive-date=14 March 2023 |archive-url=https://web.archive.org/web/20230314110957/https://www.thetimes.co.uk/article/7d38da2c-c24b-11ed-8e20-0f5794810aad |url-status=live}}</ref><ref>{{cite news |last1=Slater |first1=Matt |last2=Ornstein |first2=David |url=https://www.nytimes.com/athletic/4307230/2023/03/14/world-cup-2026-format-usa/ |title=World Cup 2026 format expands again with four-team groups and 104 matches |work=[[The Athletic]] |date=14 March 2023 |access-date=14 March 2023 |archive-date=14 March 2023 |archive-url=https://web.archive.org/web/20230314103434/https://theathletic.com/4307230/2023/03/14/world-cup-2026-format-usa/ |url-status=live}}</ref> ဧ့အသစ် 2025 ခုနှစ် မာ့ခ်ျလမာ FIFA စွာ FIFA World Cup ဧ့ နှစ်တရာပြည့်နှစ်ပတ်လည်ဖြစ်ရေ [[2030 FIFA World Cup]] အတွက် အသင်း 64 သင်းသို့ တသင်းတည်း တိုးချဲ့ရန် စဉ်းစားနီကြောင်း သတင်းတိထွက်ပေါ်ခရေ။<ref>{{Cite web|url=https://www.nytimes.com/2025/03/06/world/europe/fifa-world-cup-64-teams.html|title=FIFA to Consider Expanding World Cup to 64 Teams|first=Tariq|last=Panja|date=March 6, 2025|website=NYTimes.com}}</ref> == အိမ်ရှင်တိ == {{Main|List of FIFA World Cup hosts}} === Selection process === {{Choropleth map | countries = #006400: MX #33CC33: US; BR; FR; IT; DE; ES #99EE99: UY; CH; SE; CL; GB; AR; KR; JP; ZA; RU; QA; CA; PT; MA #FFFF99: SA #808080: CO | view = World | width = 300 | height = 225 | caption = Number of times each nation has hosted the FIFA World Cup {{legend|#006400|Hosted 3 times}} {{legend|#33CC33|Hosted 2 times}} {{legend|#99EE99|Hosted 1 time|outline=silver}} {{legend|#FFFF99|Planned (2034)|outline=silver}} {{legend|#808080|Cancelled}} }} ဖီဖာဧ့ ကွန်ဂရက်အစည်းအဝေးတိမာ နိုင်ငံတိအား အစောပိုင်းကမ္ဘာ့ဖလားတိ ပီးအပ်ခရေ။ တောင်အမေရိကနန့် ဥရောပရို့စွာ ဘောလုံးလောကမာ ခွန်အားဗဟိုချက်နှစ်ခုဟိကာ ယင်းရို့ကြားမာ သုံးပတ်ကြာ လောင်းဖြင့်လားလာရန် လိုအပ်ရေကြောင့် ယင့်ချင့်နီရာတိစွာ စကားအက်ဖွယ်ရာဖြစ်ခရေ။ ဥပမာအနိန်နန့် ဥရုဂွေးမာ [[1930 FIFA World Cup|first World Cup]] ကျင်းပရန် ဆုံးဖြတ်ချက်စွာ ဥရောပနိုင်ငံလေးနိုင်ငံသာ ယှဥ်ပြိုင်ခွင့်ရခရေ။<ref>{{cite news |url=https://news.bbc.co.uk/sport3/worldcup2002/hi/history/newsid_1632000/1632201.stm |title=Uruguay 1930 |work=BBC Sport |date=11 April 2002 |access-date=13 May 2006 |archive-url=https://web.archive.org/web/20031122125127/http://news.bbc.co.uk/sport3/worldcup2002/hi/history/newsid_1632000/1632201.stm |archive-date=22 November 2003 |url-status=live}}</ref> နောက်ထပ်ကမ္ဘာ့ဖလားနှစ်လုံးကို ဥရောပမာ ကျင်းပခရေ။ ယင့်ထဲက ဒုတိယမြောက်ကို ပြင်သစ်မာ ကျင်းပရန် ဆုံးဖြတ်ချက်ကို တောင်အမေရိကနိုင်ငံတိက တိုက်ကြီးနှစ်ခုကြားမာ တလှည့်စီ တည်ဟိနီဖို့ဟု နားလည်ထားအတွက်နန့် စကားအက်ခရေ။ ယင်းအတွက်နန့် အာဂျင်တီးနားနန့် ဥရုဂွေးနှစ်နိုင်ငံစလုံးစွာ [[1938 FIFA World Cup]] ကို သပိတ်မှောက်ခကတ်တေ။<ref>{{cite news |url=https://news.bbc.co.uk/sport3/worldcup2002/hi/history/newsid_1632000/1632206.stm |title=France 1938 |work=BBC Sport |date=17 April 2002 |access-date=13 May 2006 |archive-url=https://web.archive.org/web/20031122125158/http://news.bbc.co.uk/sport3/worldcup2002/hi/history/newsid_1632000/1632206.stm |archive-date=22 November 2003 |url-status=live}}</ref> [[1958 FIFA World Cup]] မှစလို့ အနာဂတ်မာ သပိတ်မှောက်မှုတိ သို့မဟုတ် စကားအက်ဖွယ်ရာတိကို ယှောင်ရှားရန် FIFA စွာ [[1998 FIFA World Cup]] မရောက်ခင်အထိ ဆက်ပနာတည်ဟိနီရေ အမေရိကနန့် ဥရောပရို့ကြား အိမ်ရှင်တိကို ဖရေပုံစံကို စတင်ခရေ။ တောင်ကိုရီးယားနန့် ဂျပန်ရို့ ပူးပေါင်းကျင်းပရေ [[2002 FIFA World Cup]] စွာ အာသျှမာ ပထမဆုံးကျင်းပရေ ပြိုင်ပွဲဖြစ်ပြီးကေ အိမ်ရှင်မကန်မဝှန်ပါဝင်ရေ ပထမဆုံးပြိုင်ပွဲဖြစ်တေ။<ref>{{cite web |url=http://sportsillustrated.cnn.com/soccer/world/2002/world_cup/news/2002/06/03/au_asia_rb/ |title=Asia takes World Cup center stage |date=3 June 2002 |publisher=CNN |access-date=1 January 2008 |archive-date=1 April 2013 |archive-url=https://web.archive.org/web/20130401144059/http://sportsillustrated.cnn.com/soccer/world/2002/world_cup/news/2002/06/03/au_asia_rb/ |url-status=dead}}</ref> တောင်အာဖရိကရေ [[2010 FIFA World Cup|2010]] မာ ကမ္ဘာ့ဖလားအိမ်ရှင်ကျင်းပရေ ပထမဆုံးအာဖရိကနိုင်ငံဖြစ်လာခရေ။ [[2014 FIFA World Cup]] ကို ဘရာဇီးမှ အိမ်ရှင်အဖြစ် လက်ခံကျင်းပခခြင်းဖြစ်ပြီးကေ [[1978 FIFA World Cup|Argentina 1978]]၊ <ref>{{cite news |url=https://news.bbc.co.uk/sport2/hi/football/internationals/7068848.stm |title=Brazil will stage 2014 World Cup |date=10 October 2007 |work=BBC Sport |access-date=1 January 2008 |archive-url=https://web.archive.org/web/20071031095538/http://news.bbc.co.uk/sport2/hi/football/internationals/7068848.stm |archive-date=31 October 2007 |url-status=live}}</ref> နောက်ပိုင်း တောင်အမေရိကမာ ပထမဆုံးကျင်းပခပြီးကေ ဥရောပအပြင်ဖက်မာ ဆက်တိုက်ကမ္ဘာ့ဖလားတိ ဆက်တိုက်ကျင်းပရေ ပထမဆုံးအခွင့်အရီးဖြစ်တေ။<ref>{{cite news |title=World Cup 2014: All you need to know about Brazil finals |url=https://www.bbc.co.uk/sport/football/24518819 |access-date=6 October 2020 |work=BBC Sport |archive-url=https://web.archive.org/web/20200712154826/https://www.bbc.com/sport/football/24518819 |archive-date=12 July 2020 |url-status=live}}</ref> [[File:Russia 2018 World Cup.jpeg|thumb|Russian delegates celebrate being chosen as the host of the [[2018 FIFA World Cup]]]] အိမ်ရှင်နိုင်ငံကို FIFA ကောင်စီက မဲခွဲဆုံးဖြတ်ပြီး ဂုချိန်ခါ ရွီးချယ်လိုက်ယာဖြစ်တေ။ ယင်းကို [[exhaustive ballot]] စနစ်ဖြင့် လုပ်ဆောင်ရေ။ ပြိုင်ပွဲကို အိမ်ရှင်အဖြစ် လက်ခံကျင်းပလိုရေ နိုင်ငံတခုဧ့ အမျိုးသားဘောလုံးအသင်းစွာ FIFA ပါးက "အိမ်ရှင်သဘောတူစာချုပ်" ကို လက်ခံရဟိပြီး နနောင်းရေလေလံပွဲမှ မျှော်လင့်ရဖို့ အဆင့်တိနန့် လိုအပ်ချက်တိကို ယှင်းပြထားရေ။ လေလံအဖွဲ့စွာ ကိုယ်စားလှယ်လောင်းအဖြစ် တရားဝင်အတည်ပြုချက်ကို တက်စားပြုရေ တင်သွင်းလွှာပုံစံကိုလေ့ လက်ခံရဟိပါရေ။ ယင်းနောက်မာ ဖီဖာမှ သတ်မှတ်ထားရေ စစ်ဆီးရီး အဖွဲ့တစ်တိုင်သားစွာ မြန်မာနိုင်ငံသို့ ပြိုင်ပွဲကျင်းပရန် လိုအပ်ရေ လိုအပ်ချက်တိနန့် ကိုက်ညီကြောင်း ဖော်ထုတ်ရန်နန့် နိုင်ငံဆိုင်ရေ အစီအစာခံစာကို ထုတ်ပြန်ရန် နိုင်ငံသို့ လားရောက်ခရေ။ ကမ္ဘာ့ဖလားကို ဇာသူက အိမ်ရှင်အဖြစ် လက်ခံကျင်းပဖို့လဲဆိုရေ ဆုံးဖြတ်ချက်ကို များရေအားဖြင့် ပြိုင်ပွဲမရောက်ခင် ခြောက်နှစ် ယင်းပိုင်ဟုတ်ကေ ခနစ်နှစ်ကြိုတင် ဆုံးဖြတ်လေ့ဟိပါရေ။ [[Russia]] နန့် [[Qatar]] ရို့အား ပီးအပ်ချီးမြှင့်ရေ [[2018 and 2022 FIFA World Cup bids|2018 and 2022 World Cups]] နန့် [[Qatar]] ရို့ကဲ့သို့ပင် အနာဂတ်ပြိုင်ပွဲများစွာကို အိမ်ရှင်အဖြစ် တချိန်တည်းမာ ကြေငြာခဲ့ရေ အခါသမယမာ ကာစွာရေ ပြိုင်ပွဲကို အိမ်ရှင်အဖြစ် လက်ခံကျင်းပရေ ပထမဆုံး အရှိအလယ်ပိုင်းနိုင်ငံ ဖြစ်လာခရေ။<ref>{{cite news |url=https://www.theguardian.com/football/2010/dec/02/england-russia-win-2018-world-cup |title=England beaten as Russia win 2018 World Cup bid |date=2 December 2010 |work=The Guardian |location=London |access-date=8 September 2017 |first=Owen |last=Gibson |archive-url=https://web.archive.org/web/20140308044324/https://www.theguardian.com/football/2010/dec/02/england-russia-win-2018-world-cup |archive-date=8 March 2014 |url-status=live}}</ref><ref>{{cite news |url=https://www.theguardian.com/football/2010/dec/02/qatar-win-2022-world-cup-bid |title=Qatar win 2022 World Cup bid |date=2 December 2010 |work=The Guardian |location=London |access-date=8 September 2017 |first=Jamie |last=Jackson |archive-url=https://web.archive.org/web/20131005083825/https://www.theguardian.com/football/2010/dec/02/qatar-win-2022-world-cup-bid |archive-date=5 October 2013 |url-status=live}}</ref> 2010 နန့် 2014 ကမ္ဘာ့ဖလားတိအတွက် နောက်ဆုံးပြိုင်ပွဲကို confederations တိကြားမာ အလှည့်ကျကျင်းပခပြီးကေ ရွီးချယ်ထားရေ confederation (အာဖရိက 2010 ၊ 2014 မာ တောင်အမေရိက) မှ ပြိုင်ပွဲကို အိမ်ရှင်အဖြစ် လက်ခံကျင်းပရန် ခွင့်ပြုခရေ။ [[2006 FIFA World Cup|2006 tournament]] ကို အိမ်ရှင်အဖြစ် လက်ခံကျင်းပရန် မဲခွဲရာမာ တောင်အာဖရိကကို ဂျာမနီအနိုင်ရယားနောက် [[FIFA World Cup hosts#2006 FIFA World Cup|controversy]] စွာ အလှည့်ကျမူဝါဒကို မိတ်ဆက်ခရေ။ ယကေလေ့သော့၊ တိုက်ကြီးလည်ပတ်မှုမူဝါဒစွာ 2014 ခုနှစ်ထက် ကျော်လွန်ခြင်းမဟိခဲ့သဖြင့် အယင်ပြိုင်ပွဲနှစ်ခုကို လက်ခံကျင်းပခဲ့ရေ ကွန်ဖက်ဒရီးရှင်းတိကလွဲလို့ ဇာနိုင်ငံမဆို [[2018 FIFA World Cup|2018]] မှစတင်ကာ ကမ္ဘာ့ဖလားပြိုင်ပွဲအတွက် အိမ်ရှင်အဖြစ် လျှောက်ထားနှိုင်ပါရေ။<ref>{{cite web |url=https://www.fifa.com/worldcup/russia2018/organisation/media/newsid=625122/index.html |archive-url=https://web.archive.org/web/20130324161949/http://www.fifa.com/worldcup/russia2018/organisation/media/newsid=625122/index.html |url-status=dead |archive-date=24 March 2013 |title=Rotation ends in 2018 |publisher=Fédération Internationale de Football Association |work=FIFA.com |date=29 October 2007 |access-date=30 March 2013}}</ref> ဒေချင့်စွာမာာ တစိတ်တစ်အာဒါးအားဖြင့် ယင်းနည်းပိုင်အခြီအနီမျိုးမှ ယှောင်ရှားရန် ဖြစ်ပါရေ၊ 2014 ဘရာဇီးနိုင်ငံစွာ ပြိုင်ပွဲအတွက် တရားဝင်သာဖြစ်တေ၊ လေလံဆွဲသူ။<ref>Collett, Mike (30 October 2007), [https://web.archive.org/web/20180704215911/https://uk.reuters.com/article/uk-soccer-world-brazil-idUKL3026608120071030 "Brazil officially named 2014 World Cup hosts"]. . Reuters. Retrieved 6 July 2018</ref> [[2026 FIFA World Cup]] ကို အမေရိကန်၊ ကနိန်ဒါနန့် မက္ကစီကိုရို့မာ ကျင်းပရန် ရွီးချယ်ထားပြီးသား ကမ္ဘာ့ဖလားကို အိမ်ရှင်နိုင်ငံသုံးနိုင်ငံမှ ပထမဆုံးအကြိမ် မျှဝီခြင်းဖြစ်တေ။<ref name="World Cup26">{{cite news |title=World Cup 2026: Canada, US & Mexico joint bid wins right to host tournament |url=https://www.bbc.co.uk/sport/football/44464913 |access-date=13 June 2018 |agency=BBC Sport |date=13 June 2018 |archive-url=https://web.archive.org/web/20180613145402/https://www.bbc.com/sport/football/44464913 |archive-date=13 June 2018 |url-status=live}}</ref> 2026 ပြိုင်ပွဲစွာ အသင်း ၄၈ သင်းဖြင့် ၁၀၄ ပွဲကစပ်ကာ အကြီးမားဆုံး ကမ္ဘာ့ဖလားပြိုင်ပွဲ ဖြစ်လှာဖို့ဖြစ်တေ။ ကွာတားဖိုင်နယ်မှ ပွဲစဉ်အားလုံးအပါအဝင် အမေရိကန်မာ ပွဲစဉ်ခြောက်ဆယ်ကျင်းပဖို့ဖြစ်ပြီးကေ ကနိန်ဒါနန့် မက္ကစီကိုနိုင်ငံရို့က ၁၀ ပွဲစီ လက်ခံကျင်းပဖို့ဖြစ်တေ။<ref name="World Cup26" /> === အဖွဲ့ချုပ် အကျဉ်းချုပ် === {| class="wikitable sortable" style="text-align:left" |- ! scope="row" | ကွန်ဖက်ဒရီးရှင်း ! scope="col" style=width:4em:| လက်ခံကျင်းပဖို့အချိန်တိ ! scope="col" class="unsortable"| မိတ်ဆုံစားပွဲ ! scope="col" class="unsortable"| လာဖို့အိမ်ရှင်တိ |- | [[UEFA]] <br> (ဥရောပ) | style="text-align:center"| ၁၁ | {{Nowrap|[[1934 FIFA World Cup|1934]], Italy}}; {{Nowrap|[[1938 FIFA World Cup|1938]], France}}; {{Nowrap|[[1954 FIFA World Cup|1954]], Switzerland}}; {{Nowrap|[[1958 FIFA World Cup|1958]], Sweden}}; {{Nowrap|[[1966 FIFA World Cup|1966]], England}}; {{Nowrap|[[1974 FIFA World Cup|1974]], West Germany}}; {{Nowrap|[[1982 FIFA World Cup|1982]], Spain}}; {{Nowrap|[[1990 FIFA World Cup|1990]], Italy}}; {{Nowrap|[[1998 FIFA World Cup|1998]], France}}; {{Nowrap|[[2006 FIFA World Cup|2006]], Germany}}; {{Nowrap|[[2018 FIFA World Cup|2018]], Russia}} | {{Nowrap|[[2030 FIFA World Cup|2030]], Spain & Portugal}} |- | [[CONMEBOL]] <br> (တောင်အမေရိက) | style="text-align:center"| ၅ | {{Nowrap|[[1930 FIFA World Cup|1930]], Uruguay}}; {{Nowrap|[[1950 FIFA World Cup|1950]], Brazil}}; {{Nowrap|[[1962 FIFA World Cup|1962]], Chile}}; {{Nowrap|[[1978 FIFA World Cup|1978]], Argentina}}; {{Nowrap|[[2014 FIFA World Cup|2014]], Brazil}} | |- | [[CONCACAF]] <br> {{Nowrap|(North and Central America <br> and Caribbean)}} | style="text-align:center"| ၃ | {{Nowrap|[[1970 FIFA World Cup|1970]], Mexico}}; {{Nowrap|[[1986 FIFA World Cup|1986]], Mexico}}; {{Nowrap|[[1994 FIFA World Cup|1994]], United States}} | {{Nowrap|[[2026 FIFA World Cup|2026]], Canada, Mexico & United States}} |- | [[Asian Football Confederation|AFC]] <br> (အာသျှ) | style="text-align:center"| ၂ | {{Nowrap|[[2002 FIFA World Cup|2002]], South Korea & Japan}}; {{Nowrap|[[2022 FIFA World Cup|2022]], Qatar}} | {{Nowrap|[[2034 FIFA World Cup|2034]], Saudi Arabia}} |- | [[Confederation of African Football|CAF]] <br> (အာဖရိက) | style="text-align:center"| ၁ | {{Nowrap|[[2010 FIFA World Cup|2010]], South Africa}} | {{Nowrap|[[2030 FIFA World Cup|2030]], Morocco}} |- | [[Oceania Football Confederation|OFC]] <br> (အိုစီနီးယား) | style="text-align:center"| ၀ယ်ရေ။ | မဟိ | |} === Performances === {{See also|National team appearances in the FIFA World Cup#Hosts|l1=Results of host nations in the FIFA World Cup}} ချန်ပီယံ၈ခုအနက် ခြောက်ခုစွာ ယင်းရို့၏မွီးရပ်မြီမာကစပ်စဉ် ယင်းရို့၏ဆုဖလားတိထဲက တခုကို ဆွတ်ခူးနှိုင်ခပြီး ခြွင်းချက်အနိန်နန့် [[Brazil national football team|Brazil]] မာ 1950 ခုနှစ်မာ အိမ်ကွင်းမာ [[Uruguay v Brazil (1950 FIFA World Cup)|deciding match]] ကိုယှုံးပြီး 2014 ခုနှစ်မာ ဂျာမနီနန့် [[Brazil v Germany (2014 FIFA World Cup)|semi-final]] ကို ယှုံးနိမ့်ခပြီးကေ ဒုတိယအကျော့မာ ဒုတိယအကျော့အဖြစ် ပြီးဆုံးခရေ [[Brazil national football team|Brazil]] မှ ခြွင်းချက်ဖြစ်တေ။ [[England national football team|England]] (1966) စွာ အိမ်ရှင်နိုင်ငံအဖြစ် ကစပ်နေစဉ် ယင်းဧ့ တခုတည်းရေ ဆုဖလားကို ရဟိခရေ။ [[Uruguay national football team|Uruguay]] (1930)၊ [[Italy national football team|Italy]] (1934)၊ [[Argentina national football team|Argentina]] (1978) နန့် [[France national football team|France]] (1998) ရို့စွာ အိမ်ရှင်နိုင်ငံအဖြစ် ပထမဆုံး ချန်ပီယံဆုတိကို ဆွတ်ခူးခကေလေ့ ထပ်မံအနိုင်ရဟိခပြီးကေ [[Germany national football team|Germany]] (1974 မာ ယင်းရို့၏ အိမ်ကွင်း ဒုတိယဆုဖလား) ဆွတ်ခူးနိုင်ခရေ။ မြီဆီလွှာ။<ref>[https://news.bbc.co.uk/sport2/hi/football/world_cup_2010/8684839.stm "World Cup 1974 – West Germany win on home soil"]. [https://news.bbc.co.uk/sport2/hi/football/world_cup_2010/8684839.stm]. BBC. Retrieved 2 December 2017</ref><ref name=host /> Other nations have also been successful when hosting the tournament. [[Switzerland national football team|Switzerland]] (quarter-finals 1954), [[Sweden men's national football team|Sweden]] (runners-up in 1958), [[Chile national football team|Chile]] (third place in 1962), [[South Korea national football team|South Korea]] (fourth place in 2002), [[Russia national football team|Russia]] (quarter-finals 2018), and [[Mexico national football team|Mexico]] (quarter-finals in 1970 and 1986) all have their best results when serving as hosts.<ref name=host>{{cite web |url=https://www.skysports.com/football/news/13956/11392096/world-cup-home-advantage-how-the-hosts-have-fared-and-why-there-is-hope-for-russia |title=World Cup home advantage: How the hosts have fared and why there is hope for Russia |author=Smith, Peter |publisher=Sky Sports|access-date=20 December 2022|archive-date=20 December 2022|archive-url=https://web.archive.org/web/20221220145414/https://www.skysports.com/football/news/13956/11392096/world-cup-home-advantage-how-the-hosts-have-fared-and-why-there-is-hope-for-russia|url-status=live}}</ref><ref>{{cite web |url=https://www.bbc.co.uk/sport/football/44591345 |title=World Cup 2018: Russia reach quarter-finals after 4-3 penalty shootout win over Spain |publisher=BBC Sport |date=1 July 2018 |author=Bevan, Chris|access-date=20 December 2022|archive-date=22 June 2021|archive-url=https://web.archive.org/web/20210622203909/https://www.bbc.co.uk/sport/football/44591345|url-status=live}}</ref> အဂုအချိန်အထိ၊ [[South Africa national football team|South Africa]] (2010) နန့် [[Qatar national football team|Qatar]] (2022) ရို့စွာ ပထမအကျော့ထက် ကျော်လွန်ပြီးကေ မရခပါ။<ref>Bevan, Chris. [https://news.bbc.co.uk/sport2/hi/football/world_cup_2010/matches/match_34/default.stm "France 1–2 South Africa"]. [https://news.bbc.co.uk/sport2/hi/football/world_cup_2010/matches/match_34/default.stm]. BBC. Retrieved 2 December 2017</ref><ref>{{cite web |url=https://www.sportingnews.com/us/soccer/news/qatar-world-cup-worst-record-host-nation/darxjzu4goctrbquje8vfbyo |title=Qatar's World Cup flop: The Maroon finish with worst record for a host nation in FIFA history |publisher=Sporting News |author=Brischetto, Patrick |date=30 November 2022|access-date=20 December 2022|archive-date=17 December 2022|archive-url=https://web.archive.org/web/20221217073029/https://www.sportingnews.com/us/soccer/news/qatar-world-cup-worst-record-host-nation/darxjzu4goctrbquje8vfbyo|url-status=live}}</ref> အိမ်ရှင်နိုင်ငံအဖြစ် ဖီဖာကမ္ဘာ့ဖလားပြိုင်ပွဲကို ချန်ပီယံကာကွယ်ပွဲအဖြစ် ဇာနိုင်ငံမှ မဝင်ဖူးပါကား။ 2026 ခုနှစ်စာရင်းအရတော့ နံဘေးစပ်ဆုံးကတော့ ၂၀၀၂ ဖိုင်နယ်မာ ဘရာဇီးကို ၂-၀ နန့် ယှုံးနိမ့်ပြီးကေ ဂျာမနီက ၂၀၀၆ မာ ဖြစ်ခစွာပါ။ {{clear}} == Broadcasting and promotion == [[File:Coca cola world cup 2002.jpg|thumb|upright|A [[Coca-Cola]] ပုလင်းကို အရောင်းမြှင့်တင်ခြင်း]] ကမ္ဘာ့ဖလားပြိုင်ပွဲကို [[1954 FIFA World Cup|1954]] မာ ပထမဆုံး ရုပ်မြင်သံကြားပြသခပြီးကေ {{as of|2006|lc=y}} စွာ ကမ္ဘာထက်မာ လူကြည့်အများဆုံးနန့် လိုက်ကတ်ည့်ရေ အားကစားပွဲဖြစ်တေ။ 2006 ကမ္ဘာ့ဖလားပြိုင်ပွဲဧ့ ပွဲစဉ်အားလုံးကို ကြည့်ရှုသူဦးရေ 26.29 ဘီလီယံအထိ ဟိဖို့ဟု လှောက်မှန်းထားရေ။<ref name=DobsonGoddard2006 /> 715.1&nbsp;million individuals watched the final match of the tournament, almost a ninth of the entire population of the planet. The [[2006 FIFA World Cup|2006 World Cup]] draw, which decided the distribution of teams into groups, was watched by 300&nbsp;million viewers.<ref>{{cite web |publisher=[[Australian Broadcasting Corporation|ABC Sport]] |url=http://www.abc.net.au/sport/content/200512/s1528128.htm |title=Socceroos face major challenge: Hiddink |date=10 December 2005 |access-date=13 May 2006 |archive-url=https://web.archive.org/web/20060430001531/http://www.abc.net.au/sport/content/200512/s1528128.htm <!-- Bot retrieved archive --> |archive-date=30 April 2006}}</ref> ကမ္ဘာ့ဖလားပြိုင်ပွဲစွာ [[Coca-Cola]]၊ [[McDonald's]] နန့် [[Adidas]] ပိုင်ယှောင် အဓိကစပွန်ဆာတိကို သိမ်းသွင်းထားရေ။ ဒေကုမ္ပဏီတိနန့် အရာမကန်မဝှန်အတွက်၊ စပွန်ဆာတဦးဖြစ်ခြင်းစွာ ယင်းရို့၏ကမ္ဘာ့အမှတ်တံဆိပ်တိကို ပြင်းထန်စွာ သက်ရောက်မှုဟိရေ။ အိမ်ရှင်နိုင်ငံတိစွာ ပုံမှန်ဆိုလို့ဟိကေ တလတာအစီအစိုင်မှ ဒေါ်လာသန်းပေါင်းများစွာ ဝင်ငွီတိုးလာလိဟိရေ။ အားကစားဧ့ အုပ်ချုပ်မှုအဖွဲ့ [[FIFA]] စွာ [[2014 FIFA World Cup|2014 tournament]]၊ <ref>{{cite news |title=FIFA Financial Report 2014: Frequently Asked Questions |url=https://www.fifa.com/about-fifa/news/y=2015/m=3/news=fifa-financial-report-2014-frequently-asked-questions-2568090.html|archive-url=https://web.archive.org/web/20150512093326/http://www.fifa.com/about-fifa/news/y=2015/m=3/news=fifa-financial-report-2014-frequently-asked-questions-2568090.html|url-status=dead|archive-date=12 May 2015 |agency=FIFA.com |date=9 December 2017}}</ref> မှ ဒေါ်လာ 4.8 ဘီလီယံနန့် [[2018 FIFA World Cup|2018 tournament]] မှ ဒေါ်လာ 6.1 ဘီလီယံ ဝင်ငွီရဟိခရေ။<ref>{{cite news |title=FIFA Set to Make $6.1 billion From 2018 World Cup |url=https://www.nytimes.com/2018/06/12/sports/fifa-revenue.html |archive-url=https://ghostarchive.org/archive/20220102/https://www.nytimes.com/2018/06/12/sports/fifa-revenue.html |archive-date=2 January 2022 |url-access=limited |url-status=live |access-date=12 July 2019 |work=The New York Times |date=13 June 2018 |last1=Panja |first1=Tariq}}{{cbignore}}</ref> [[1970 FIFA World Cup|1970 World Cup]] မှစတင်ပနာ [[File:FIFA - world cup ballen.JPG|thumb|left|Manufactured by [[Adidas]]၊ [[FIFA headquarters]] မာ [[FIFA headquarters]] မာပြသထားရေတရားဝင်ပွဲစဉ်ဘောလုံးတိ]]] [[1966 FIFA World Cup|1966]] မှစတင်ပနာ FIFA World Cup တစ်ခုကျမာ ယင်းဧ့ကိုယ်ပိုင် [[mascot]] သို့မဟုတ် လိုဂိုဟိရေ။ ''World Cup 1966 ပြိုင်ပွဲအတွက် Mascot ဖြစ်ရေ Willie'' စွာ ပထမဆုံး [[FIFA World Cup mascots|World Cup mascot]] ဖြစ်တေ။<ref>{{cite web |url=https://www.fifa.com/aboutfifa/marketingtv/marketing/fifaassets/mascots.html |title=FIFA Assets – Mascots |work=FIFA.com |publisher=Fédération Internationale de Football Association |access-date=19 November 2007 |url-status=dead |archive-url=https://web.archive.org/web/20071104232128/http://fifa.com/aboutfifa/marketingtv/marketing/fifaassets/mascots.html <!-- Bot retrieved archive --> |archive-date=4 November 2007}}</ref> ကမ္ဘာ့ဖလားပြိုင်ပွဲတစ်ခုကျအတွက် အထူးဒီဇိုင်းထုတ်ထားရေ [[List of FIFA World Cup official match balls|official match balls]] အင်္ဂါရပ်ဖြစ်တေ။ [[Slazenger]] စွာ 1966 ကမ္ဘာ့ဖလားအတွက် ဘောလုံးကို ထုတ်လုပ်ပြီးကေ Adidas စွာ FIFA အတွက် တရားဝင် ပီးသွင်းသူ ဖြစ်လာခရေ။<ref>{{cite web |url=http://footballs.fifa.com/Football-Facts/FIFA-World-Cup-Footballs |title=The Footballs during the FIFA World Cup |work=Football Facts |publisher=[[FIFA]]|access-date=6 July 2018|archive-url=https://web.archive.org/web/20131128080230/http://footballs.fifa.com/Football-Facts/FIFA-World-Cup-Footballs|archive-date=28 November 2013|url-status=dead}}</ref> ကမ္ဘာ့ဖလားတစ်ခုကျမာ [[List of FIFA World Cup anthems and songs|official song]] ဟိပြီးး [[Shakira]] မှ [[Will Smith]] မှ အရာအနုပညာသျှင်တိက ဖျော်ဖြီပေးရေ [[List of FIFA World Cup anthems and songs|official song]] တေးခြင်းတိလေ့ ပါဝင်ရေ။WKTOKEN၊ World Cup ဖျော်ဖြီပွဲ ချေကြိမ်မာ [[The Three Tenors]] မှ ဖျော်ဖြီရေ "[[Nessun dorma]]" ကို ပြိုင်ပွဲနန့်အတူ ဖော်ထုတ်ခရေ။<ref>{{cite news |title=A riot of colour, emotion and memories: the World Cup stands alone in the field of sport |url=https://www.independent.co.uk/sport/football/world-cup/world-cup-russia-2018-preview-lionel-messi-ronaldo-italia-90-98-england-brazil-germany-france-a8392211.html |access-date=26 August 2018 |work=The Independent |archive-url=https://web.archive.org/web/20180820181206/https://www.independent.co.uk/sport/football/world-cup/world-cup-russia-2018-preview-lionel-messi-ronaldo-italia-90-98-england-brazil-germany-france-a8392211.html |archive-date=20 August 2018 |url-status=live}}</ref> 1970 ခုနှစ်မာ FIFA နန့် ပူးပေါင်းကာ [[Panini Group|Panini]] စွာ ယင်းဧ့ ပထမဆုံး [[sticker album]] ကို 1970 ကမ္ဘာ့ဖလားအတွက် ထုတ်ပြန်ခရေ။ <ref name="Brand" /> Since then, collecting and trading stickers and [[Association football trading card|cards]] has become part of the World Cup experience, especially for the younger generation.<ref>{{cite news |title=Panini World Cup sticker book |url=https://www.theguardian.com/football/2018/mar/29/cost-to-fill-panini-world-cup-sticker-book-is-734-says-maths-prof |access-date=8 September 2018 |work=The Guardian |archive-url=https://web.archive.org/web/20180330002756/https://www.theguardian.com/football/2018/mar/29/cost-to-fill-panini-world-cup-sticker-book-is-734-says-maths-prof |archive-date=30 March 2018 |url-status=live}}</ref> FIFA စွာ [[1986 FIFA World Cup|1986]]6WKEND မှ စပွန်ဆာပီးရေ WKTOKEN7WKEN3WKEND မှစတင်ပနာ [[Electronic Arts]]6WKEND မှကမ္ဘာ့ဖလား [[FIFA World Cup video games|video games]] ကို လိုင်စင်ထုတ်ပီးခပါရေ။ == Results == {{See also|List of FIFA World Cup finals}} {{World Cup Champions}} နိုင်ငံပေါင်း 80 မာ [[National team appearances in the FIFA World Cup|played in at least one World Cup]].{{refn|name=successor|group=n|FIFA considers that the national team of [[Russia national football team|Russia]] succeeds the [[Soviet Union national football team|Soviet Union]], the national team of [[Serbia national football team|Serbia]] succeeds the [[Yugoslavia national football team|Yugoslavia]]/[[Serbia and Montenegro national football team|Serbia and Montenegro]], and the national teams of the [[Czech Republic national football team|Czech Republic]] and [[Slovakia national football team|Slovakia]] succeed the [[Czechoslovakia national football team|Czechoslovakia]].<ref>{{Cite web |title=Russian Football Union |url=https://www.fifa.com/about-fifa/associations/origin1904-p.cxm.fifa.com/en/about-fifa/associations/RUS |access-date=19 January 2024 |website=www.fifa.com |language=en}}</ref><ref>{{Cite web |title=FIFA |url=https://www.fifa.com/about-fifa/associations/origin1904-p.cxm.fifa.com/en/about-fifa/associations/SRB |access-date=19 January 2024 |website=www.fifa.com |language=en}}</ref><ref>{{Cite web |title=FIFA |url=https://www.fifa.com/about-fifa/associations/origin1904-p.cxm.fifa.com/en/about-fifa/associations/CZE |access-date=19 January 2024 |website=www.fifa.com |language=en}}</ref><ref>{{Cite web |title=FIFA |url=https://www.fifa.com/about-fifa/associations/origin1904-p.cxm.fifa.com/en/about-fifa/associations/SVK |access-date=19 January 2024 |website=www.fifa.com |language=en}}</ref>}} ဒေနိုင်ငံပေါင်း 80 မာကမ္ဘာ့ဖလား၊ <ref>{{cite web |last=Venkat |first=Rahul |title=FIFA World Cup winners: Why Brazilians are unique and Germany, Italy relentless – full roll of honour |publisher=Olympics.com |date=19 December 2022 |url=https://olympics.com/en/news/fifa-world-cup-winners-list-champions-record|access-date=4 February 2024}}</ref> နန့်ကမ္ဘာ့ဖလားတက်စားပြု [[Star (football badge)|stars to their badges]] ကြယ်ပွင့်တစ်ဦးချင်းစီပါဟိရေ။ ယကေလေ့သော့ ဥရုဂွေးစွာ ယင်းရို့၏ ရွှီတံဆိပ်နှစ်ခုကို တက်စားပြုရေ 1924 နန့် 1928 နွီရာသီအိုလံပစ်တိမာ [[Four stars above Uruguay's football crest|four stars on their badge]] ကိုပြသဖို့ ရွီးချယ်ခပြီး FIFA မှ ကမ္ဘာ့ချန်ပီယံ၈အဖြစ် အသိအမှတ်ပြုခံရပြီးကေ 1930 နန့် 1950 ခုနှစ်တိမာ ယင်းရို့၏ကမ္ဘာ့ဖလား နှစ်ကြိမ်ကို ပြသဖို့ ရွီးချယ်ခရေ။ ဂေါင်းစိုင်ငါးခုဖြင့်၊ <!---ညီညွတ်မှုအတွက်၊ အိန်းဂလိချ်အိန်းဂလိချ်ကို ဆောင်းပါးတလျှောက်လုံးမာ အသုံးပြုစွာ၊ နမူနာ၊ "Brazil are" အစား "Brazil are" အစား "Brazil are" -->Brazil စွာ ကမ္ဘာ့ဖလားပြိုင်ပွဲမာ အအောင်မြင်ဆုံးအသင်းဖြစ်ပြီးကေ [[National team appearances in the FIFA World Cup#Finals records by team|played in every World Cup]] (22) မှ ဒေနိအထိ ကမ္ဘာ့ဖလားကို ပထမဆုံးရဟိရေ ဘရာဇီးအသင်းလည်းဖြစ်တေ။WKTOKEN12 (၁၉၇၀)၊ စတုတ္ထ (၁၉၉၄) နန့် ပဉ္စမအကြိမ် (၂၀၀၂)။ အီတလီ (၁၉၃၄ နန့် ၁၉၃၈) နန့် ဘရာဇီး (၁၉၅၈ နန့် ၁၉၆၂) ရို့စွာ နှစ်ဆက်ချန်ပီယံဆုတိ ဆွတ်ခူးနှိုင်ရေ တခုတည်းရေနိုင်ငံဖြစ်တေ။ အနောက်ဂျာမနီ (1982–1990) နန့် ဘရာဇီး (1994–2002) ရို့စွာ ကမ္ဘာ့ဖလားဖိုင်နယ် (၃) နှစ်ဆက်တိုက် ဗိုလ်လုပွဲသို့ တက်ရောက်နှိုင်ရေ တခုတည်းရေနိုင်ငံဖြစ်တေ။ ဂျာမနီစွာ အမှတ်ပီးဇယား (၁၃) မှတ်၊ ဆုတံဆိပ် (၁၂) ခုနန့် ဖိုင်နယ်အများဆုံး (၈) မှတ်အထိ ရဟိထားရေ။ [[File:FIFA World Cup best results.svg|thumb|upright=3|center|Map of countries' best results. The inset map at the lower right shows former Eastern European participants (USSR, Yugoslavia, Czechoslovakia and East Germany).]] === ထိပ်ဆုံးလေးသင်းသို့ ရောက်ဟိလားရေ အသင်းတိ=== {{See also|FIFA World Cup records and statistics|National team appearances in the FIFA World Cup}} {| class="wikitable sortable" |+ ထိပ်ဆုံးလေးသင်းသို့ ရောက်ဟိလားရေ အသင်းတိ |- ! အဖွဲ့ !! တံဆိပ်တိ !! ဒုတိယဆု!! တတိယနီရာ !! စတုတ္ထနီရာ !! data-sort-type="number"|ထိပ်တန်း 4 <br />စုစုပေါင်း |- |style="background:gold"|{{fb|BRA}} |style="background:gold"|'''5''' ([[1958 FIFA World Cup|1958]]၊ [[1962 FIFA World Cup|1962]]၊ [[1970 FIFA World Cup|1970]]၊ [[1994 FIFA World Cup|1994]]၊ [[2002 FIFA World Cup|2002]]) |style="background:#C0C0C0"|2 ({{Nowrap|[[1950 FIFA World Cup|1950]] [[#*|*]]}}၊ [[1998 FIFA World Cup|1998]]) |style="background:#cc9966"|2 ([[1938 FIFA World Cup|1938]]၊ [[1978 FIFA World Cup|1978]]) |style="background:#9acdff"|2 ([[1974 FIFA World Cup|1974]]၊ {{Nowrap|[[2014 FIFA World Cup|2014]] [[#*|*]]}}) |align=center| ၁၁ |- |style="background:gold"|{{fb|GER}}<sup>[[#1|1]]</sup> |style="background:gold"|4 ([[1954 FIFA World Cup|1954]]၊ {{Nowrap|[[1974 FIFA World Cup|1974]] [[#*|*]]}}၊ [[1990 FIFA World Cup|1990]]၊ [[2014 FIFA World Cup|2014]]) |style="background:#C0C0C0"|'''4''' ([[1966 FIFA World Cup|1966]]၊ [[1982 FIFA World Cup|1982]]၊ [[1986 FIFA World Cup|1986]]၊ [[2002 FIFA World Cup|2002]]) |style="background:#cc9966"|'''4''' ([[1934 FIFA World Cup|1934]]၊ [[1970 FIFA World Cup|1970]]၊ {{Nowrap|[[2006 FIFA World Cup|2006]] [[#*|*]]}}၊ [[2010 FIFA World Cup|2010]]) |style="background:#9acdff"|1 ([[1958 FIFA World Cup|1958]]) |align=center| ၁၃ |- |style="background:gold"|{{fb|ITA}} |style="background:gold"|4 ({{Nowrap|[[1934 FIFA World Cup|1934]] [[#*|*]]}}၊ [[1938 FIFA World Cup|1938]]၊ [[1982 FIFA World Cup|1982]]၊ [[2006 FIFA World Cup|2006]]) |style="background:#C0C0C0"|2 ([[1970 FIFA World Cup|1970]]၊ [[1994 FIFA World Cup|1994]]) |style="background:#cc9966"|1 ({{Nowrap|[[1990 FIFA World Cup|1990]] [[#*|*]]}}) |style="background:#9acdff"|1 ([[1978 FIFA World Cup|1978]]) |align=center| ၈ |- |style="background:gold"|{{fb|ARG}} |style="background:gold"|3 ({{Nowrap|[[1978 FIFA World Cup|1978]] [[#*|*]]}}၊ [[1986 FIFA World Cup|1986]]၊ [[2022 FIFA World Cup|2022]]) |style="background:#C0C0C0"|3 ([[1930 FIFA World Cup|1930]]၊ [[1990 FIFA World Cup|1990]]၊ [[2014 FIFA World Cup|2014]]) | | |align=center| ၆ |- |style="background:gold"|{{fb|FRA}} |style="background:gold"|2 ({{Nowrap|[[1998 FIFA World Cup|1998]] [[#*|*]]}}၊ [[2018 FIFA World Cup|2018]]) |style="background:#C0C0C0"|2 ([[2006 FIFA World Cup|2006]]၊ [[2022 FIFA World Cup|2022]]) |style="background:#cc9966"|2 ([[1958 FIFA World Cup|1958]]၊ [[1986 FIFA World Cup|1986]]) |style="background:#9acdff"|1 ([[1982 FIFA World Cup|1982]]) |align=center| ၇ |- |style="background:gold"|{{fb|URU}} |style="background:gold"|2 ({{Nowrap|[[1930 FIFA World Cup|1930]] [[#*|*]]}}၊ [[1950 FIFA World Cup|1950]]) | | |style="background:#9acdff"|'''3''' ([[1954 FIFA World Cup|1954]]၊ [[1970 FIFA World Cup|1970]]၊ [[2010 FIFA World Cup|2010]]) |align=center| ၅ |- |style="background:gold"|{{fb|ENG}} |style="background:gold"|1 ({{Nowrap|[[1966 FIFA World Cup|1966]] [[#*|*]]}}) | | |style="background:#9acdff"|2 ([[1990 FIFA World Cup|1990]]၊ [[2018 FIFA World Cup|2018]]) |align=center| ၃ |- |style="background:gold"|{{fb|ESP}} |style="background:gold"|1 ([[2010 FIFA World Cup|2010]]) | | |style="background:#9acdff"|1 ([[1950 FIFA World Cup|1950]]) |align=center| ၂ |- |style="background:#C0C0C0"|{{fb|NED}} | |style="background:#C0C0C0"|3 ([[1974 FIFA World Cup|1974]]၊ [[1978 FIFA World Cup|1978]]၊ [[2010 FIFA World Cup|2010]]) |style="background:#cc9966"|1 ([[2014 FIFA World Cup|2014]]) |style="background:#9acdff"|1 ([[1998 FIFA World Cup|1998]]) |align=center| ၅ |- |style="background:#C0C0C0"|{{fb|HUN}} | |style="background:#C0C0C0"|2 ([[1938 FIFA World Cup|1938]]၊ [[1954 FIFA World Cup|1954]]) | | |align=center| ၂ |- |style="background:#C0C0C0"|{{Flag icon|Czech Republic}} [[Czech Republic national football team|Czech Republic]]<sup>[[#2|2]]</sup> | |style="background:#C0C0C0"|2 ([[1934 FIFA World Cup|1934]]၊ [[1962 FIFA World Cup|1962]]) | | |align=center| ၂ |- |style="background:#C0C0C0"|{{fb|SWE}} | |style="background:#C0C0C0"|1 ({{Nowrap|[[1958 FIFA World Cup|1958]] [[#*|*]]}}) |style="background:#cc9966"|2 ([[1950 FIFA World Cup|1950]]၊ [[1994 FIFA World Cup|1994]]) |style="background:#9acdff"|1 ([[1938 FIFA World Cup|1938]]) |align=center| ၄ |- |style="background:#C0C0C0"|{{fb|CRO}} | |style="background:#C0C0C0"|1 ([[2018 FIFA World Cup|2018]]) |style="background:#cc9966"|2 ([[1998 FIFA World Cup|1998]]၊ [[2022 FIFA World Cup|2022]]) | |align=center| ၃ |- |style="background:#cc9966"|{{fb|POL}} | | |style="background:#cc9966"|2 ([[1974 FIFA World Cup|1974]]၊ [[1982 FIFA World Cup|1982]]) | |align=center| ၂ |- |style="background:#cc9966"|{{fb|AUT}} | | |style="background:#cc9966"|1 ([[1954 FIFA World Cup|1954]]) |style="background:#9acdff"|1 ([[1934 FIFA World Cup|1934]]) |align=center| ၂ |- |style="background:#cc9966"|{{fb|POR}} | | |style="background:#cc9966"|1 ([[1966 FIFA World Cup|1966]]) |style="background:#9acdff"|1 ([[2006 FIFA World Cup|2006]]) |align=center| ၂ |- |style="background:#cc9966"|{{fb|BEL}} | | |style="background:#cc9966"|1 ([[2018 FIFA World Cup|2018]]) |style="background:#9acdff"|1 ([[1986 FIFA World Cup|1986]]) |align=center| ၂ |- |style="background:#cc9966"|{{fb|USA}} | | |style="background:#cc9966"|1 ([[1930 FIFA World Cup|1930]]) | |align=center| ၁ |- |style="background:#cc9966"|{{fb|CHI}} | | |style="background:#cc9966"|1 ({{Nowrap|[[1962 FIFA World Cup|1962]] [[#*|*]]}}) | |align=center| ၁ |- |style="background:#cc9966"|{{fb|TUR}} | | |style="background:#cc9966"|1 ([[2002 FIFA World Cup|2002]]) | |align=center| ၁ |- |style="background:#9acdff"|{{fb|SRB}}<sup>[[#3|3]]</sup> | | | |style="background:#9acdff"|2 ([[1930 FIFA World Cup|1930]]၊ [[1962 FIFA World Cup|1962]]) |align=center| ၂ |- |style="background:#9acdff"|{{fb|RUS}}<sup>[[#4|4]]</sup> | | | |style="background:#9acdff"|1 ([[1966 FIFA World Cup|1966]]) |align=center| ၁ |- |style="background:#9acdff"|{{fb|BUL}} | | | |style="background:#9acdff"|1 ([[1994 FIFA World Cup|1994]]) |align=center| ၁ |- |style="background:#9acdff"|{{fb|KOR}} | | | |style="background:#9acdff"|1 ({{Nowrap|[[2002 FIFA World Cup|2002]] [[#*|*]]}}) |align=center| ၁ |- |style="background:#9acdff"|{{fb|MAR}} | | | |style="background:#9acdff"|1 ([[2022 FIFA World Cup|2022]]) |align=center| ၁ |} :<div id="*"><nowiki>*</nowiki> ''hosts''</div> :<div id="1"><sup>1</sup> '' မာ [[Germany national football team#Three German national teams (1945–1990)|West Germany]] (1954–1990)'' ကိုတက်စားပြုရေရလဒ်တိ ပါဝင်ရေ</div> - <div id="2"><sup>2</sup> '' မာ [[Czechoslovakia national football team|Czechoslovakia]] (1934–1990)'' ကို တက်စားပြုရေ ရလဒ်တိ ပါဝင်ရေ</div> - <div id="3"><sup>3</sup> '' မာ [[Yugoslavia national football team|Yugoslavia]] (1930–1990) နန့် [[Serbia and Montenegro national football team|FR Yugoslavia / Serbia and Montenegro]] (1998–2006)''</div> - <div id="4"><sup>4</sup> '' မာ [[Soviet Union national football team|Soviet Union]] (1958–1990)'' ကိုတက်စားပြုရေရလဒ်တိ ပါဝင်ရေ</div> === Best performances by confederations === {{See also|National team appearances in the FIFA World Cup#Results by confederation|l1=FIFA World Cup results by confederation}} ၂၀၀၂ ကမ္ဘာ့ဖလားပြိုင်ပွဲအထဲ [[File:Seoul Plaza 2002 FIFA World Cup.jpg|thumb|right|upright=1.09|South Koreans watching their nation on the big screens in [[Seoul Plaza]] စွာ ဆီမီးဖိုင်နယ်သို့ရောက်နှိုင်ရေ ပထမဆုံးအာသျှနိုင်ငံဖြစ်လာခရေ။]] ဒေနိအထိ၊ ကမ္ဘာ့ဖလားဗိုလ်လုပွဲကို [[UEFA]] (ဥရောပ) နန့် [[CONMEBOL]] (တောင်အမေရိက) အဖွဲ့ချုပ်တိက အသင်းတိရာ ဝင်ရောက်ယှဥ်ပြိုင်ခရေ။ ဥရောပနိုင်ငံတိက ချန်ပီယံဆု ၁၂ ကြိမ်ရထားပြီးသား တောင်အမေရိကနိုင်ငံတိက ၁၀ ကြိမ် အနိုင်ရထားပါရေ။ ယင့်ချင့်တိုက်ကြီးနှစ်ခုပြင်ပမှအသင်းသုံးသင်းသာပြိုင်ပွဲဧ့ဆီမီးဖိုင်နယ်သို့ရောက်ဟိဖူးရေ- [[United States men's national soccer team|United States]] ([[CONCACAF|North, Central America and Caribbean]]) 1930; 2002 ခုနှစ်မာ [[South Korea national football team|South Korea]] ([[Asian Football Confederation|Asia]]) နန့် [[Morocco national football team|Morocco]] ([[Confederation of African Football|Africa]]) 2022။ 2006 ခုနှစ်မာ [[Oceania Football Confederation|Oceanian]] တခုတည်းရေ ခြီစစ်ပွဲ [[Australia men's national soccer team|Australia]] စွာ ဒုတိယအကျော့သို့ ရောက်ဟိလာခပြီး 2022 ခုနှစ်မာ ပြန်ပနာအရာတွင်ခရေ စွမ်းဆောင်မှုတခုဖြစ်တေ။{{refn|group=n|Australia's qualification in 2006 was through the Oceanian zone as they were a member of the [[Oceania Football Confederation|OFC]] member during qualifying. However, on 1 January 2006, they left the Oceania Football Confederation and joined the [[Asian Football Confederation]]. In 2022, they again reached the second round, albeit representing Asia.}} [[Brazil national football team|Brazil]]၊ [[Argentina national football team|Argentina]]၊ [[Spain men's national football team|Spain]] နန့် [[Germany national football team|Germany]] ရို့စွာ ယင်းရို့၏ ကွန်ဖက်ဒရီးရှင်းပြင်ပမာ ကျင်းပရေ ကမ္ဘာ့ဖလားပြိုင်ပွဲကို အနိုင်ရရေ တခုတည်းရေအသင်းတိဖြစ်တေ။ [[UEFA|Europe]] ([[1958 FIFA World Cup|1958]])၊ [[CONCACAF|North America]] ([[1970 FIFA World Cup|1970]] နန့် [[1994 FIFA World Cup|1994]]) နန့် [[Asian Football Confederation|Asia]] ([[2002 FIFA World Cup|2002]]) ရို့မာ ဘရာဇီးက အနိုင်ရဟိခရေ။ အာဂျင်တီးနားစွာ [[1986 FIFA World Cup|1986]] မာ မြောက်အမေရိကမာ ကမ္ဘာ့ဖလားနန့် အာသျှမာ [[2022 FIFA World Cup|2022]] မာ အနိုင်ရခရေ။ စပိန်စွာ [[Confederation of African Football|Africa]] မာ [[2010 FIFA World Cup|2010]] မာ အနိုင်ရခရေ။ [[2014 FIFA World Cup|2014]] မာ ဂျာမနီစွာ အမေရိကမာ အနိုင်ရရေ ပထမဆုံးရေ ဥရောပအသင်းဖြစ်လာခရေ။ ကမ္ဘာ့ ဖလား ငါးကြိမ် ဆက်တိုက် သာ ရဟိ ခပြီးကေ တိုက်ကြီး တခု မှ အသင်း တိ ၊ ယူအီးအက်ဖ်အေအသင်း (အီတလီ၊ စပိန်၊ ဂျာမနီ၊ ပြင်သစ်၊ နန့် ပြင်သစ်ရို့ အသီးသီး) ဖြင့် အနိုင်ရရေ အရှည်ကြာဆုံးပြိုင်ပွဲ လေးခုမာ [[2006 FIFA World Cup|2006]]၊ [[2010 FIFA World Cup|2010]]၊ [[2014 FIFA World Cup|2014]]၊ {| class="wikitable" style="text-align:center" |+ အဖွဲ့ချုပ်မှ အရည်အခြင်းပြည့်မီရေ အသင်းတိ စုစုပေါင်းအကြိမ် |- ! scope="row" | ကွန်ဖက်ဒရီးရှင်း ! scope="col" |[[Asian Football Confederation|AFC]] ! scope="col" |[[Confederation of African Football|CAF]] ! scope="col" |[[CONCACAF]] ! scope="col" |[[CONMEBOL]] ! scope="col" |[[Oceania Football Confederation|OFC]] ! scope="col" |[[UEFA]] ! scope="col" | စုစုပေါင်း |- | သင်း|| 43 || 49 || 46 || 89 || 4 || 258 || ၄၈၉ |- | ထိပ်တန်း 16 || 9 || 11 || 15 || ၃၇ || ၁ || 99 || ၁၇၂ |- | ထိပ်တန်း 8 || 2 || 4 || 5 || ၃၆ || 0 || 105 || ၁၅၂ |- | ထိပ်တန်း 4 || ၁ || ၁ || ၁ || ၂၃ || 0 || 62 || ၈၈ |- | ထိပ်တန်း 2 || 0 || 0 || 0 || 15 || 0 || ၂၉ || ၄၄ |- | style="background: #9acdff" | 4th || ၁ || ၁ || 0 || 5 || 0 || 15 || ၂၂ |- | style="background: #cc9966" | 3rd || 0 || 0 || ၁ || ၃ || 0 || ၁၈ || ၂၂ |- | style="background: #C0C0C0" | 2nd || 0 || 0 || 0 || 5 || 0 || 17 || ၂၂ |- style="border-top:3px အစိမ်းရင့်ရောင်" | style="background: ရွှီ" | 1st || 0 || 0 || 0 || 10 || 0 || ၁၂|| ၂၂ |} == Records and statistics == {{Main|FIFA World Cup records and statistics|National team appearances in the FIFA World Cup}} {{See also|List of players who have appeared in the most FIFA World Cups|List of FIFA World Cup winning players|List of FIFA World Cup winning managers}} [[File:Lionel-Messi-Argentina-2022-FIFA-World-Cup (cropped).jpg|thumb|upright|Argentina's [[Lionel Messi]] စွာ ပူးတွဲ စံချိန်တင် ပြိုင်ပွဲ ၅ ခုမာ ကမ္ဘာ့ဖလား ၂၆ ပွဲ စံချိန်တင် ကစပ်ထားရေ။]] [[File:Cristiano Ronaldo 20120609.jpg|thumb|upright|[[Cristiano Ronaldo]] စွာ ပြိုင်ပွဲငါးခုမာ ဂိုးသွင်းယူနှိုင်ရေ ပထမဆုံးနန့် တဦးတည်းရေ ကစပ်သမားဖြစ်တေ။]] ကစပ်သမား ခြောက်ဦးစွာ [[List of players who have appeared in multiple FIFA World Cups|playing in the most World Cups]] အတွက် မှတ်တမ်းကို မျှဝီရေ။ [[Mexico national football team|Mexico]] ဧ့ [[Antonio Carbajal]] (1950–1966), [[Rafael Márquez]] (2002–2018), နန့် [[Andrés Guardado]] (2006–2022); [[Germany national football team|Germany]] ဧ့ [[Lothar Matthäus]] (1982–1998); [[Argentina national football team|Argentina]] ဧ့ [[Lionel Messi]] (2006–2022); [[Portugal national football team|Portugal]] ဧ့ [[Cristiano Ronaldo]] (2006-2022) စွာ ပြိုင်ပွဲ 5 ခုမာ ပါဝင်ကစားခပြီး ရော်နယ်ဒိုစွာ ပြိုင်ပွဲ 5 ခုမာ ဂိုးသွင်းယူနှိုင်ရေ ပထမဆုံးနန့် တဦးတည်းရေကစပ်သမားလည်းဖြစ်တေ။<ref>{{cite news |url=https://query.nytimes.com/gst/fullpage.html?res=9C00EFD8103AF933A25752C1A96F958260 |title=Matthaus Is the Latest MetroStars Savior |work=[[The New York Times]] |last=Yannis |first=Alex |date=10 November 1999 |access-date=23 December 2007 |archive-url=https://web.archive.org/web/20081217020729/https://query.nytimes.com/gst/fullpage.html?res=9C00EFD8103AF933A25752C1A96F958260 |archive-date=17 December 2008 |url-status=live}}</ref><ref>{{cite news |last1=Church |first1=Ben |title=Cristiano Ronaldo refuses to let light dim on his career as he makes history at Qatar 2022 |url=https://www.cnn.com/2022/11/24/football/portugal-ghana-cristiano-ronaldo-spt-intl/index.html |work=CNN |date=24 November 2022 |access-date=25 November 2022 |archive-date=25 November 2022 |archive-url=https://web.archive.org/web/20221125202102/https://www.cnn.com/2022/11/24/football/portugal-ghana-cristiano-ronaldo-spt-intl/index.html |url-status=live}}</ref> Messi စွာ ကမ္ဘာ့ဖလားပြိုင်ပွဲစုစုပေါင်း 26 ကြိမ်ကစပ်ထားပြီးသား 26 ကြိမ်ပါဝင်ကစပ်ထားရေ။ [[Brazil national football team|Brazil]] ဧ့ [[Djalma Santos]] (1954–1962)၊ အနောက်ဂျာမနီမှ [[Franz Beckenbauer]] (1966–1974) နန့် ဂျာမနီမှ [[Philipp Lahm]] (2006–2014) ရို့စွာ ကမ္ဘာ့ဖလားပြိုင်ပွဲမာ [[Franz Beckenbauer]] (၃)ကြိမ် အဖို့ပီးခံရရေ တဦးတည်းရေ ကစပ်သမားတိဖြစ်တေ။ ဂျာမနီမှ [[Miroslav Klose]] (2002-2014) စွာ 16 ဂိုးဖြင့် ကမ္ဘာ့ဖလားမာ ဂိုးသွင်းအများဆုံးဖြစ်တေ။ သူစွာ [[Brazil v Germany (2014 FIFA World Cup)|2014 semi-final match against Brazil]] အတွင်းမာ ဘရာဇီး၏ 15 ဂိုး (1998-2006) စံချိန်ကို ချိုးဖျက်ခပါရေ။ အနောက်ဂျာမနီမှ [[Gerd Müller]] (1970–1974) စွာ 14 ဂိုးဖြင့် တတိယ နီရာတွင် ရပ်တည်ခရေ။<ref>{{cite news |url=https://news.bbc.co.uk/sport2/hi/football/world_cup_2006/teams/brazil/5112982.stm |title=Ronaldo's riposte |work=BBC Sport |date=27 June 2006 |last=Chowdhury |first=Saj |access-date=23 December 2007 |archive-url=https://web.archive.org/web/20060706072508/http://news.bbc.co.uk/sport1/hi/football/world_cup_2006/teams/brazil/5112982.stm |archive-date=6 July 2006 |url-status=live}}</ref> စတုတ္ထနီရာမှ ဂိုးသွင်းသူ [[France national football team|France]] ဧ့ [[Just Fontaine]] စွာ ကမ္ဘာ့ဖလား တခေါက်တည်းမာ ဂိုးအများဆုံးသွင်းသူအဖြစ် မှတ်တမ်းဝင်ခရေ။ သူ့ 13 ဂိုးအားလုံးကို 1958 ပြိုင်ပွဲမာ သွင်းယူနှိုင်ခပါရေ။<ref>{{cite news |url=https://news.bbc.co.uk/sport3/worldcup2002/hi/team_pages/france/newsid_1752000/1752740.stm |title=Goal machine was Just superb |work=BBC Sport |date=4 April 2002 |access-date=23 December 2007 |archive-url=https://web.archive.org/web/20020804032601/http://news.bbc.co.uk/sport3/worldcup2002/hi/team_pages/france/newsid_1752000/1752740.stm |archive-date=4 August 2002 |url-status=live}}</ref> [[File:Pelé à la Coupe du monde de football 1970, 'Mexico 70 - World Cup Story', Panini figurina n°38.jpg|thumb|upright|[[Pelé]] စွာ ကစပ်သမားအဖြစ် သုံးကတ်ိမ်လုံးလုံး ကမ္ဘာ့ဖလားကို ဆွတ်ခူးနိုင်သူဖြစ်တေ။]] 2007 ခုနှစ် နိုဗန်ဘာလမာ ဖီဖာမှ 1930 ခုနှစ်မှ 1974 ခုနှစ်အထဲ ကမ္ဘာ့ဖလားရခရေ အသင်းတိ၏ အဖွဲ့ဝင်အားလုံးကို ဆုတံဆိပ်တိကို နောက်ကြောင်းပြန် ချီးမြှင့်ကြောင်း ကြေညာခရေ။ <ref name="espnheroes" /> This made Brazil's [[Pelé]] the only player to have won three World Cup winners' medals (1958, 1962, and 1970, although he did not play in the 1962 final due to injury),<ref>{{cite news |url=http://sports.espn.go.com/espn/classic/bio/news/story?page=Pele |title=Pele, King of Futbol |publisher=ESPN |last=Kirby |first=Gentry |date=5 July 2006 |access-date=23 December 2007 |url-status=dead |archive-url=https://web.archive.org/web/20081216151353/http://sports.espn.go.com/espn/classic/bio/news/story?page=Pele |archive-date=16 December 2008}}</ref> နန့် [[List of players who have won multiple FIFA World Cups|20 other players who have won two winners' medals]]။ ကစပ်သမား ခနစ်ဦးစွာ ကမ္ဘာ့ဖလားဆုတံဆိပ် (၃)မျိုးစလုံး (ဆုရှင်၊ ဒုတိယဆုနန့် တတိယဆု) ရို့ကို စုဆောင်းခရေ။ အနောက်ဂျာမနီအသင်းဧ့ 1966-1974 ခုနှစ်မှ ကစပ်သမားငါးဦးစွာ Franz Beckenbauer၊ [[Jürgen Grabowski]]၊ [[Horst-Dieter Höttges]]၊ [[Sepp Maier]] နန့် [[Wolfgang Overath]] (1966–1974)၊ အီတလီနိုင်ငံ WKTOKEN 119 (159)၊ 1994) နန့် နောက်ဆုံးထွက်စာရင်းမာ ဂျာမနီနိုင်ငံဧ့ [[Miroslav Klose]] (2002-2014) မှ လေးနှစ်ဆက်တိုက် ဆုတံဆိပ်တိရဟိခရေ။<ref>{{cite news |title=Brazil, Germany & Every World Cup Winner from 1930 to 2014 |url=http://www.goal.com/en-gb/lists/brazil-germany-every-world-cup-winner-from-1930-to-2014/1elichzqoj1py1xvzpnd3ykw7m |work=Goal |date=13 May 2018|archive-url=https://web.archive.org/web/20180319121604/http://www.goal.com/en-gb/lists/brazil-germany-every-world-cup-winner-from-1930-to-2014/1elichzqoj1py1xvzpnd3ykw7m|archive-date=19 March 2018|url-status=live}}</ref> ဘရာဇီးမှ [[Mário Zagallo]]၊ အနောက်ဂျာမနီမှ Franz Beckenbauer နန့် ပြင်သစ်မှ [[Didier Deschamps]] ရို့စွာ ကစပ်သမားနန့် နည်းပြချုပ်အဖြစ် ကမ္ဘာ့ဖလားကို ဒေနိအထိ ဆွတ်ခူးနှိုင်ရေ တဦးတည်းရေသူတိဖြစ်တေ။ Zagallo စွာ 1958 နန့် 1962 မာကစပ်သမားအဖြစ်အနိုင်ရခပြီးကေ 1970 မာနည်းပြအဖြစ်တာဝန်ယူခရေ။<ref>{{cite news |last=Hughes |first=Rob |date=11 March 1998 |url=http://www.iht.com/articles/1998/03/11/soccer.t_7.php |title=No Alternative to Victory for National Coach : 150 Million Brazilians Keep Heat on Zagalo |work=International Herald Tribune |access-date=31 December 2007 |archive-url=https://web.archive.org/web/20080226063509/http://www.iht.com/articles/1998/03/11/soccer.t_7.php <!-- Bot retrieved archive --> |archive-date = 26 February 2008}}</ref> Beckenbauer စွာ 1974 မာအသင်းဂေါင်းဆောင်အဖြစ်အနိုင်ရခပြီးကေ 1990 မာအသင်းနည်းပြအဖြစ် <ref>{{cite news |url=http://soccernet.espn.go.com/archive/worldcup/editorial/legends_beckenbauer.html |title=World Cup Legends – Franz Beckenbauer |website=ESPNSoccernet.com |publisher=ESPN |last=Brewin |first=John |date=21 December 2001 |access-date=31 December 2007|archive-url=https://web.archive.org/web/20091119134454/http://soccernet.espn.go.com/archive/worldcup/editorial/legends_beckenbauer.html |archive-date=19 November 2009}}</ref> နန့် Deschamps ရို့စွာ 2018 မာစွမ်းဆောင်ရည်ကိုအရာထခါပြုလုပ်ခရေ။49WK TO စွာအသင်းဂေါင်းဆောင်အဖြစ် 1990 မာအနိုင်ရဟိပြီးကေ [[Italy national football team|Italy]] ဧ့ [[Vittorio Pozzo]] စွာ ကမ္ဘာ့ဖလား နှစ်ကြိမ် (1934 နန့် 1938) ကို ဆွတ်ခူးဖူးရေ တဦးတည်းရေ နည်းပြဖြစ်တေ။<ref>{{cite news |url=http://www.cbc.ca/sports/soccer/1938-world-cup-italy-repeats-as-champions-1.853724 |title=1938 World Cup: Italy repeats as champions |publisher=CBC |date=21 November 2009|access-date=12 July 2014 |archive-url=https://web.archive.org/web/20140519223256/http://www.cbc.ca/sports/soccer/1938-world-cup-italy-repeats-as-champions-1.853724 |archive-date=19 May 2014 |url-status=live}}</ref> ကမ္ဘာ့ဖလားရဖူးရေ နည်းပြတိအားလုံး အောင်ပွဲရရန် နည်းပြခရေ နိုင်ငံမှ မွီးရပ်မြီတိ ဖြစ်တေ။<ref>{{cite news |title=The Curse of the Foreign-Born Coach |url=https://www.wsj.com/articles/SB10001424052748704366504575278893868082062 |work=[[The Wall Street Journal]] |date=13 May 2018|archive-url=https://web.archive.org/web/20150725200956/https://www.wsj.com/articles/SB10001424052748704366504575278893868082062|archive-date=25 July 2015|url-status=live}}</ref> နိုင်ငံအသင်းတိထဲမှာ ဘရာဇီးက ကမ္ဘာ့ဖလားအများဆုံး (၁၁၄)ပွဲ၊ ဂျာမနီက အများဆုံး (၈)ပွဲ၊ ဆီမီးဖိုင်နယ် (၁၃)နန့် ကွာတားဖိုင်နယ် (၁၆)ပွဲ၊ ဘရာဇီးက ကမ္ဘာ့ဖလား (၂၂)ပွဲ၊ အများဆုံး (၇၆)ပွဲနန့် ဂိုးအများဆုံး (၂၃၇)ဂိုး သွင်းယူထားပါရေ။ကမ္ဘာ့ဖလား (၂၃၇)ကြိမ်၊ <ref>{{cite web |url=https://www.worldfootball.net/competition/co139/records-all-time-table/ |title=World Football – All time table |publisher=World Football |access-date=13 July 2014 |archive-date=9 June 2022 |archive-url=https://web.archive.org/web/20220609165606/https://www.worldfootball.net/alltime_table/wm/ |url-status=live}}</ref>WKTOKEN၊ [[2002 FIFA World Cup Final|2002 final]] နန့် [[Brazil v Germany (2014 FIFA World Cup)|2014 semi-final]].<ref>{{cite news |title=Five Aside: Germany – Brazil preview |url=https://www.espn.com/soccer/story/_/id/37398297/brazil-neymar-play-world-cup-semifinal-match-vs-germany |publisher=ESPN|access-date=13 May 2018 |date=7 July 2014|archive-url=https://web.archive.org/web/20180514141642/http://www.espn.com/soccer/blog/name/77/post/1936258/headline|archive-date=14 May 2018|url-status=live}}</ref> မာ === ဂိုးသွင်းအများဆုံးကစားသမား === {{Main|List of FIFA World Cup top goalscorers}} ;တဦးချင်း {{small|Players in '''bold''' are still active.}} [[File:Miroslav Klose Portrait.JPG|thumb|upright|[[Miroslav Klose]] စွာ ကမ္ဘာ့ဖလား ချေကြိမ်မာ 16 ဂိုး စံချိန်တင် သွင်းခရေ။]] {| class="sortable wikitable" style="text-align:center" |- !အဆင့် !ကစပ်သမား !ပန်းတိုင် !ပွဲတိ !တပွဲကေဂိုးတိ |- |၁ |align=left|{{fbicon|GER}} [[Miroslav Klose]] |၁၆ |၂၄ |{{Decimals|16/24|2}} |- |၂ |align=left|{{fbicon|BRA}} [[Ronaldo (Brazilian footballer)|Ronaldo]] |၁၅ |၁၉ |{{Decimals|16/19|2}} |- |၃ |align=left|{{fbicon|FRG}} [[Gerd Müller]] |၁၄ |၁၃ |{{Decimals|14/13|2}} |- |rowspan=2|4 |align=left|{{fbicon|FRA}} [[Just Fontaine]] |၁၃ |၆ |{{Decimals|13/6|2}} |- |align=left|{{fbicon|ARG}} '''[[Lionel Messi]]''' |၁၃ |၂၆ |{{Decimals|13/26|2}} |- |rowspan=2|6 |align=left|{{fbicon|FRA}} '''[[Kylian Mbappé]]''' |၁၂ |၁၄ |{{Decimals|12/14|2}} |- |align=left|{{fbicon|BRA}} [[Pelé]] |၁၂ |၁၄ |{{Decimals|12/14|2}} |- |rowspan=2|8 |align=left|{{fbicon|HUN|1949}} [[Sándor Kocsis]] |၁၁ |၅ |{{Decimals|11/5|2}} |- |align=left|{{fbicon|GER}} [[Jürgen Klinsmann]] |၁၁ |၁၇ |{{Decimals|11/17|2}} |- |rowspan=6|10 |align=left|{{fbicon|GER}} [[Helmut Rahn]] |၁၀ |၁၀ |{{Decimals|10/10|2}} |- |align=left|{{fbicon|ARG}} [[Gabriel Batistuta]] |၁၀ |၁၂ |{{Decimals|10/12|2}} |- |align=left|{{fbicon|ENG}} [[Gary Lineker]] |၁၀ |၁၂ |{{Decimals|10/12|2}} |- |align=left|{{fbicon|PER}} [[Teófilo Cubillas]] |၁၀ |၁၃ |{{Decimals|10/13|2}} |- |align=left|{{fbicon|GER}} [[Thomas Müller]] |၁၀ |၁၉ |{{Decimals|10/19|2}} |- |align=left|{{fbicon|POL}} [[Grzegorz Lato]] |၁၀ |၂၀ |{{Decimals|10/20|2}} |- |} ;နိုင်ငံ {| class="wikitable" style="text-align:center" |- !အဆင့် !အမျိုးသားအသင်း !ဂိုးတိသွင်းရေ။ |- | ၁ || align="left"|{{fb|Brazil}} || ၂၃၇ |- | 2 || align="left"|{{fb|Germany}} || ၂၃၂ |- | ၃ || align="left"|{{fb|Argentina}} || ၁၅၂ |- | 4 || align="left"|{{fb|France}} || ၁၃၆ |- | 5 || align="left"|{{fb|Italy}} || ၁၂၈ |- | 6 || align="left"|{{fb|Spain}} || ၁၀၈ |- | ၇ || align="left"|{{fb|England}} || ၁၀၄ |- | 8 || align="left"|{{fb|Netherlands}} || ၉၆ |- | 9 || align="left"|{{fb|Uruguay}} || ၈၉ |- | 10 || align="left"|{{fb|Hungary}} || ၈၇ |} == Awards == {{Main|FIFA World Cup awards}} ကမ္ဘာ့ဖလားပြိုင်ပွဲတစ်ခုကျဧ့ အဆုံးမာ၊ ပြိုင်ပွဲမာ ယင်းရို့၏နောက်ဆုံးအသင်းနီရာတိကလွဲလို့ အရာအောင်မြင်မှုတိအတွက် ကစပ်သမားတိနန့် အသင်းတိအား ဆုတိပီးအပ်ဖို့ဖြစ်တေ။ * FIFA နည်းပညာလိလာရီးအဖွဲ့မှ ဆုငါးဆု ဟိရေ- <ref>{{cite web |url=https://www.fifa.com/worldcup/awards/index.html|archive-url=https://web.archive.org/web/20100628013902/http://www.fifa.com/worldcup/awards/index.html|url-status=dead|archive-date=28 June 2010 |title=2010 FIFA World Cup: Awards |publisher=FIFA.com|access-date=20 July 2014}}</ref><ref>{{cite news |title=2018 FIFA World Cup Technical Report |url=https://digitalhub.fifa.com/m/649e84967b086928/original/evdvpfdkueqrdlbbrrus-pdf.pdf |access-date=13 November 2022 |publisher=FIFA.com |archive-url=https://web.archive.org/web/20210808062317/https://digitalhub.fifa.com/m/649e84967b086928/original/evdvpfdkueqrdlbbrrus-pdf.pdf |archive-date=8 August 2021 |url-status=live}}</ref> [[File:Argentina celebrando copa (cropped).jpg|thumb|upright|[[Diego Maradona]] (ကမ္ဘာ့ဖလားကိုင်ဆောင်ခြင်း) စွာ 1986 ကမ္ဘာ့ဖလားမာ ကောင်းဘီယက်ကစပ်သမားအတွက် ရွှီဘောလုံးကို ရဟိခရေ။]] **ကောင်းဘီယက်ကစပ်သမားအတွက် '''Golden Ball''' (ယင်းဧ့စပွန်ဆာ "[[Adidas]] Golden Ball" အတွက် အဖို့ပီးထားရေ)၊ [[1982 FIFA World Cup|1982]] မာ ပထမဆုံးချီးမြှင့်ရေ ကောင်းဘီယက်ကစပ်သမား၊ **'''Golden Boot''' (ယင်းဧ့စပွန်ဆာ "Adidas ရွှီဖိနပ်" ဟုအဖို့ပီးထားရေ 1982 ခုနှစ်မှ 2006 ခုနှစ်အထိ "adidas ရွှီဖိနပ်" ဟုအဖို့ပီးထားရေ) ထိပ်တန်းဂိုးသွင်းရှင်အတွက် 1982 ခုနှစ်မာ ပထမဆုံးချီးမြှင့်ရေ၊ **The '''Golden Glove''' (ယင်းဧ့စပွန်ဆာ "Adidas Golden Glove" ဟုအဖို့ပီးထားရေ အယင်က "[[Lev Yashin]] Award" အဖြစ် 1994 မှ 2006 အထိ)) ကောင်းဘီယက်ဂိုးစောင့်အတွက် [[1994 FIFA World Cup|1994]] မာ ပထမဆုံးချီးမြှင့်ရေ၊ **'''FIFA လူငယ်ကစပ်သမားဆု''' (အယင် "ကောင်းဘီယက်လူငယ်ကစပ်သမားဆု" အဖြစ် 2006 ခုနှစ်မှ 2010 ခုနှစ်အထိ) အသက် 21 နှစ်အောက် ကောင်းဘီယက်ကစပ်သမားအတွက် ပက္ခဒိန်နှစ်အစမာ [[2006 FIFA World Cup|2006]] မာ ပထမဆုံးချီးမြှင့်ရေ၊ **'''FIFA Fair Play Trophy''' စွာ ကောင်းဘီယက်မျှတရေကစပ်နည်းနန့် ဒုတိယအကျော့သို့ တက်လှမ်းခရေအဖွဲ့အတွက် [[1970 FIFA World Cup|1970]] မာ ပထမဆုံးချီးမြှင့်ရေ။ *အဂုအချိန်မာ ပြိုင်ပွဲအထဲ ပရိသတ်တိ မဲပီးရွီးချယ်ရေ ဆုတဆု ဟိပါရေ။ **''' ပွဲစဉ်ဧ့ ''' ကစပ်သမား (အဂုလက်ဟိ စီးပွားရီးအရ "[[Budweiser]] ပွဲဧ့ကစပ်သမား" ဟုခေါ်မာရေ အယင်က "ပွဲစဉ်ဧ့လူ" အဖြစ် လူသိများရေ 2002 မှ 2018 ခုနှစ်အထိ) ပြိုင်ပွဲဧ့ ပွဲစဉ်တိုင်းအထဲ ထူးချွန်ရေစွမ်းဆောင်ရည်အတွက် KEN24WKTO မှ ပထမဆုံး ချီးမြှင့်ရေ။ * ပြိုင်ပွဲအပြီးမာ ပရိသတ်တိက မဲပီးရွီးချယ်ရေ ဆုနှစ်ခုဟိရေ။ **ပြိုင်ပွဲဧ့ '''Goal''' (ဂုခေတ်မာ "[[Hyundai Motor Company|Hyundai]] Goal of the Tournament") စွာ ပြိုင်ပွဲအထဲ ပရိသတ်တိ၏ကောင်းဘီယက်သွင်းဂိုးအတွက် [[2006 FIFA World Cup|2006]] မာ ပထမဆုံးချီးမြှင့်ရေ၊ **ကမ္ဘာ့ဖလားနောက်ဆုံးပြိုင်ပွဲအထဲ ''' ဖျော်ဖြီမှုအဟိဆုံးအသင်း''' စွာ အများသူငှာ စစ်တမ်းတခုမှ ဆုံးဖြတ်ထားရေအတိုင်း၊ * ၁၉၉၄ မှ ၂၀၀၆ အထဲ အရာဆုတခု ပီးအပ်ခရေ- <ref>{{cite web |work=USA Today |url=http://usatoday30.usatoday.com/sports/soccer/2010-07-21-3892418419_x.htm |title=FIFA eliminates official World Cup All-Star team |date=21 July 2010|archive-url=https://web.archive.org/web/20140721001113/http://usatoday30.usatoday.com/sports/soccer/2010-07-21-3892418419_x.htm|archive-date=21 July 2014|url-status=live}}</ref> **FIFA နည်းပညာလိလာရီးအဖွဲ့မှ ရွီးချယ်ထားရေ ပြိုင်ပွဲဧ့ကောင်းဘီယက်ကစပ်သမားတိပါဝင်ရေ '''All-Star Team'''။ 2010 ခုနှစ်မှစတင်ပနာ ဖီဖာကိုယ်တိုင် အစီအစာခံထားရေအတိုင်း Dream Teams သို့မဟုတ် Statistical Teams တိအားလုံးစွာ တရားဝင်မဟုတ်လီ။ {| class="wikitable" !ကမ္ဘာ့ဖလား !ရွှီဘောလုံး !ရွှီဖိနပ် !ပန်းတိုင် !ရွှီလက်အိတ် !စာရွက်တိ ရှင်းသန့်ပါ။ !FIFA လူငယ်ကစပ်သမားဆု !FIFA Fair Play ဆုဖလား |- |{{flagicon|Uruguay}} [[1930 FIFA World Cup|1930 Uruguay]] |rowspan="11" align=center|'' ဆုမချီးမြှင့်ပါ'' |{{fbicon|ARG}} [[Guillermo Stábile]] |align=center|၈ |rowspan="14" align=center|'' ဆုမချီးမြှင့်ပါ'' |rowspan="14" align=center|''N/A'' |rowspan="5" align=center|'' ဆုမချီးမြှင့်ပါ'' |rowspan="8" align=center|'' ဆုမချီးမြှင့်ပါ'' |- |{{flagicon|Italy|1861}} [[1934 FIFA World Cup|1934 Italy]] |{{fbicon|TCH}} [[Oldřich Nejedlý]] |align=center| ၅ |- |{{flagicon|France|1794}} [[1938 FIFA World Cup|1938 France]] |{{fbicon|BRA|1889}} [[Leônidas (footballer, born 1913)|Leônidas]] |align=center|၇ |- |{{flagicon|Brazil|1889}} [[1950 FIFA World Cup|1950 Brazil]] |{{fbicon|BRA|1889}} [[Ademir Marques de Menezes|Ademir]] |align=center|၉ |- |{{flagicon|Switzerland}} [[1954 FIFA World Cup|1954 Switzerland]] |{{fbicon|HUN|1949}} [[Sándor Kocsis]] |align=center|၁၁ |- |{{flagicon|Sweden}} [[1958 FIFA World Cup|1958 Sweden]] |{{fbicon|FRA}} [[Just Fontaine]] |align=center|၁၃ |{{fbicon|BRA|1889}} [[Pelé]] |- |{{flagicon|Chile}} [[1962 FIFA World Cup|1962 Chile]] |{{fbicon|HUN}} [[Flórián Albert]]<br />{{fbicon|BRA|1960}} [[Garrincha]]<br />{{fbicon|BRA|1960}} [[Vavá]]<br />{{fbicon|URS|1955}} [[Valentin Kozmich Ivanov|Valentin Ivanov]]<br />{{fbicon|BRA|1960}}7 />{{fbicon|CHI}} [[Leonel Sánchez]] |align=center|၄ |{{fbicon|HUN}} [[Flórián Albert]] |- |{{flagicon|England}} [[1966 FIFA World Cup|1966 England]] |{{fbicon|POR}} [[Eusébio]] |align=center|၉ |{{fbicon|FRG}} [[Franz Beckenbauer]] |- |{{flagicon|Mexico}} [[1970 FIFA World Cup|1970 Mexico]] |{{fbicon|FRG}} [[Gerd Müller]] |align=center|၁၀ |{{fbicon|PER|state}} [[Teófilo Cubillas]] |{{fb|PER|state}} |- |{{Nowrap|{{flagicon|West Germany}}}} [[1974 FIFA World Cup|1974 West Germany]] |{{fbicon|POL|1928}} [[Grzegorz Lato]] |align=center|၇ |{{fbicon|POL|1928}} [[Władysław Żmuda (born 1954)|Władysław Żmuda]] |{{fb|FRG}} |- |{{flagicon|Argentina}} [[1978 FIFA World Cup|1978 Argentina]] |{{fbicon|ARG}} [[Mario Kempes]] |align=center|၆ |{{fbicon|ITA|1946}} [[Antonio Cabrini]] |{{fb|ARG}} |- |{{flagicon|Spain}} [[1982 FIFA World Cup|1982 Spain]] |{{fbicon|ITA|1946}} [[Paolo Rossi]] |{{fbicon|ITA}} [[Paolo Rossi]] |align=center|၆ |{{fbicon|FRA|1974}} [[Manuel Amoros]] |{{fb|BRA|1968}} |- |{{flagicon|Mexico}} [[1986 FIFA World Cup|1986 Mexico]] |{{fbicon|ARG}} [[Diego Maradona]] |{{fbicon|ENG}} [[Gary Lineker]] |align=center|၆ |{{fbicon|BEL}} [[Enzo Scifo]] |{{fb|BRA|1968}} |- |{{flagicon|Italy|1946}} [[1990 FIFA World Cup|1990 Italy]] |{{fbicon|ITA|1946}} [[Salvatore Schillaci]] |{{fbicon|ITA}} [[Salvatore Schillaci]] |align=center|၆ |{{fbicon|YUG}} [[Robert Prosinečki]] |{{fb|ENG}} |- |{{flagicon|United States}} [[1994 FIFA World Cup|1994 United States]] |{{fbicon|BRA}} [[Romário]] |{{fbicon|RUS}} [[Oleg Salenko]]<br />{{fbicon|BUL}} [[Hristo Stoichkov]] |align=center|၆ |{{fbicon|BEL}} [[Michel Preud'homme]] |align=center|၂ |{{fbicon|NED}} [[Marc Overmars]] |{{fb|BRA}} |- |{{flagicon|France|1974}} [[1998 FIFA World Cup|1998 France]] |{{fbicon|BRA}} [[Ronaldo (Brazilian footballer)|Ronaldo]] |{{flagicon|CRO}} [[Davor Šuker]] |align=center|၆ |{{fbicon|FRA|1974}} [[Fabien Barthez]] |align=center|၅ |{{fbicon|ENG}} [[Michael Owen]] |{{fb|ENG}}<br />{{fb|FRA}} |- |{{flagicon|South Korea|1997}}{{flagicon|Japan}} [[2002 FIFA World Cup|2002 South Korea/Japan]] |{{fbicon|GER}} [[Oliver Kahn]] |{{fbicon|BRA}} [[Ronaldo (Brazilian footballer)|Ronaldo]] |align=center|၈ |{{fbicon|GER}} [[Oliver Kahn]] |align=center|၅ |{{fbicon|USA}} [[Landon Donovan]] |{{fb|BEL}} |- |{{flagicon|Germany}} [[2006 FIFA World Cup|2006 Germany]] |{{fbicon|FRA|1974}} [[Zinedine Zidane]] |{{fbicon|GER}} [[Miroslav Klose]] |align=center|၅ |{{fbicon|ITA|2003}} [[Gianluigi Buffon]] |align=center|၅ |{{fbicon|GER}} [[Lukas Podolski]] |{{fb|BRA}}<br />{{fb|ESP}} |- |{{flagicon|South Africa}} [[2010 FIFA World Cup|2010 South Africa]] |{{fbicon|URU}} [[Diego Forlán]] |{{fbicon|GER}} [[Thomas Müller]] |align=center|၅ |{{fbicon|ESP}} [[Iker Casillas]] |align=center|၅ |{{fbicon|GER}} [[Thomas Müller]] |{{fb|ESP}} |- |{{flagicon|Brazil}} [[2014 FIFA World Cup|2014 Brazil]] |{{fbicon|ARG}} [[Lionel Messi]] |{{fbicon|COL}} [[James Rodríguez]] |align=center|၆ |{{fbicon|GER}} [[Manuel Neuer]] |align=center|၄ |{{fbicon|FRA|1974}} [[Paul Pogba]] |{{fb|COL}} |- |{{flagicon|Russia}} [[2018 FIFA World Cup|2018 Russia]] |{{fbicon|CRO}} [[Luka Modrić]] |{{fbicon|ENG}} [[Harry Kane]] |align=center|၆ |{{fbicon|BEL}} [[Thibaut Courtois]] |align=center|၃ |{{fbicon|FRA|1974}} [[Kylian Mbappé]] |{{fb|ESP}} |- |{{flagicon|Qatar}} [[2022 FIFA World Cup|2022 Qatar]] |{{fbicon|ARG}} [[Lionel Messi]] |{{fbicon|FRA}} [[Kylian Mbappé]] |align=center|၈ |{{fbicon|ARG}} [[Emiliano Martínez]] |align=center|၃ |{{fbicon|ARG}} [[Enzo Fernández]] |{{fb|ENG}} |} == ဆက်စပ်ကြေ့ပါ == * [[ဖီဖာ ကမ္ဘာ့ဖလား ဗိုလ်လုပွဲများစာရင်း]] * [[ဖီဖာ ကမ္ဘာ့ဖလား မှတ်တမ်းတိနန့် စာရင်းအင်းများ]] * [[ဖီဖာ ကမ္ဘာ့ဖလား ဆုတိ]] * [[ဖီဖာ အသက် ၂၀ နှစ်အောက် ကမ္ဘာ့ဖလား]] * [[ဖီဖာ အသက် ၁၇ နှစ်အောက် ကမ္ဘာ့ဖလား]] * [[ဖီဖာ ကလပ် ကမ္ဘာ့ဖလား]] * [[ဖီဖာ ကမ်းခြီဘောလုံး ကမ္ဘာ့ဖလား]] * [[ဖီဖာ ဖူဆယ် ကမ္ဘာ့ဖလား]] * [[ဖီဖာ ကွန်ဖက်ဒရေးရှင်း ဖလား]] * [[အသင်းအဖွဲ့ ဘောလုံးပြိုင်ပွဲများစာရင်း]] == မှတ်စုတိ == {{reflist|group=n}} == ကိုးကားချက်တိ == {{Reflist}} == စာစုစာရင်း == {{refbegin}} * {{cite book |last=Glanville |first=Brian |year=2005 |title=The Story of the World Cup |publisher=Faber |isbn=0-571-22944-1}} {{refend}} == ပြင်ပလင့်ခ်တိ == * {{Official website}} * [[RSSSF]] မာ [https://www.rsssf.org/tablesw/worldcup.html World Cup overview] {{Commons category}} {{Portal bar|Sports|Association football|World}} {{FIFA World Cup}} {{Navboxes |titlestyle = background:#ccccff |list = {{FIFA World Cup winners}} {{FIFA World Cup winning managers}} {{FIFA World Cup top scorers}} {{FIFA World Cup Golden Ball}} {{FIFA World Cup Golden Glove}} {{FIFA World Cup official match balls}} {{FIFA World Cup video games}} {{FIFA World Cup Best Young Player}} {{Countries at the FIFA World Cup}} {{FIFA World Cup music}} {{FIFA World Cup bids}} }} {{FIFA navbox}} {{World football championships}} {{International football}} {{National football teams}} {{Main world cups}} {{Main world championships}} {{Authority control}} [[Category:ဖီဖာ ကမ္ဘာ့ဖလားပြိုင်ပွဲ]] [[Category:အပြည်ပြည်ဆိုင်ရာ ဘောလုံးပြိုင်ပွဲတိ]] [[ကဏ္ဍ:ဖီဖာ ကမ္ဘာ့ဖလား ဆုရဟိသူတိ]] [[Category:ဖီဖာ]] [[Category:အပြည်ပြည်ဆိုင်ရာ ဘောလုံးပြိုင်ပွဲတိ]] [[Category:ကမ္ဘာ့ဖလား]] [[Category:အားကဇပ်ပြိုင်ပွဲတိ]] [[Category:ဘောလုံးပြိုင်ပွဲတိ]] qlfvyd3vgmv8t3kgqnt71bl3b0shp0j တမ်းပလိတ်:Infobox ဘောလုံးသမား 10 4842 19590 19267 2026-07-16T08:45:19Z YaThaWinTha 42 19590 wikitext text/x-wiki {{Infobox3cols | child = {{Yesno|{{{embed|no}}}}} | bodyclass = vcard | titleclass = fn | title = {{#ifeq:{{Yesno|{{{embed|no}}}}}|yes|<hr style="background-color: {{#if:{{{header-color|}}}|{{{header-color}}}|#efefef}}; height: 3px;" /><div style="text-align: center;">'''Association football career'''</div>|{{{name|<includeonly>{{{playername|{{PAGENAMEBASE}} }}}</includeonly>}}}}} | image = {{#ifeq:{{Str left | {{{image|}}} | 1 }}|[|[[Category:Infobox football biography image param needs updating]]}}{{#invoke:InfoboxImage|InfoboxImage|image={{{image|}}}|size={{{image_size|}}}|sizedefault=frameless|upright=1|alt={{{alt|}}}|suppressplaceholder=yes}} | caption = {{{caption|}}} | bodystyle = line-height: 1.2em | titlestyle = line-height: 1.5em; text-align: center; | labelstyle = white-space: nowrap; vertical-align: baseline; text-align: left | datastyle = white-space: nowrap; vertical-align: baseline | datastylea = white-space: nowrap; vertical-align: baseline | datastyleb = white-space: nowrap; vertical-align: baseline;{{#if:{{{caps(goals)1|{{{caps(goals)|}}}}}}{{{nationalcaps(goals)1|{{{nationalcaps(goals)|}}}}}}||text-align: right}} | datastylec = white-space: nowrap; vertical-align: baseline; text-align: right | headerstyle = {{#ifeq:{{Yesno|{{{embed|no}}}}}|yes|background-color: {{#if:{{{header-color|}}}|{{{header-color}}}|#efefef}};|background-color: #b0c4de;}} line-height: 1.5em | header1 = {{#ifeq:{{Yesno|{{{embed|no}}}}}|yes||{{#if:{{{fullname|}}}{{{birth_date|}}}{{{birth_place|}}}{{{death_date|}}}{{{death_place|}}}{{{height|}}}{{{position|}}}|ကိုယ်ရီးအချက်အလက်တိ}}}} | label2 = နာမည် အပြည့်အစုံ | data2 = {{#if:{{{fullname|}}}|<span style="white-space:normal;">{{{fullname|}}}</span>}} | class2 = nickname | label3 = မွီးသက္ကရာဇ် | data3 = {{{birth_date|}}} | label4 = မွီးရပ်ဇာတိ | data4 = {{{birth_place|}}} | class4 = birthplace | label5 = ကွယ်လွန်ရေရက် | data5 = {{{death_date|}}} | label6 = ကွယ်လွန်ရာအရပ် | class6 = deathplace | data6 = {{{death_place|}}} | label7 = အရပ်အမြင့် | data7 = {{#if:{{{height_m|{{{height_cm|}}}}}}{{{height_ft|}}}{{{height_in|}}} | {{convinfobox|{{{height_m|{{{height_cm|}}}}}}|{{#if:{{{height_m|}}}|m|cm}}|{{{height_ft|}}}|ft|{{{height_in|}}}|in}} }}{{#if:{{{height|}}} | {{infobox person/height|{{{height|}}}}} }} | label8 = ကစပ်ရေနီရာ | class8 = role | data8 = {{{position|}}} | header9 = {{#if:{{{currentclub|}}}|ကလပ်နန့်သက်ဆိုင်ရေအချက်အလက်တိ}} | label10 = {{Longitem|လက်ဟိအသင်း}} | class10 = org | data10 = {{{currentclub|}}} | label11 = အင်္ကျီနံပါတ် | data11 = {{{clubnumber|}}} | header12 = {{#if:{{{youthclubs1|{{{youthclubs|}}}}}}|လူငယ်ဘဝကလပ်တိ}} | label13 = {{#if:{{{clubs1|{{{clubs|}}}}}}||{{#if:{{{youthyears1|{{{youthyears|}}}}}}|ခုနှစ်}} }} | data13 = {{#if:{{{clubs1|{{{clubs|}}}}}}||{{#if:{{{youthclubs1|{{{youthclubs|}}}}}}|'''အသင်း'''}} }} | label14 = {{#if:{{{youthclubs|}}}|<span style="line-height:1.7em">}}{{#if:{{{youthclubs1|{{{youthclubs|}}}}}}|<span style="font-weight:normal">{{{youthyears1|{{{youthyears|–}}}}}}</span>}} | data14 = {{#if:{{{youthclubs|}}}|<span style="line-height:1.7em">}}{{{youthclubs1|{{{youthclubs|}}}}}} | label15 = {{#if:{{{youthclubs2|}}}|<span style="font-weight:normal">{{{youthyears2|–}}}</span>}} | data15 = {{{youthclubs2|}}} | label16 = {{#if:{{{youthclubs3|}}}|<span style="font-weight:normal">{{{youthyears3|–}}}</span>}} | data16 = {{{youthclubs3|}}} | label17 = {{#if:{{{youthclubs4|}}}|<span style="font-weight:normal">{{{youthyears4|–}}}</span>}} | data17 = {{{youthclubs4|}}} | label18 = {{#if:{{{youthclubs5|}}}|<span style="font-weight:normal">{{{youthyears5|–}}}</span>}} | data18 = {{{youthclubs5|}}} | label19 = {{#if:{{{youthclubs6|}}}|<span style="font-weight:normal">{{{youthyears6|–}}}</span>}} | data19 = {{{youthclubs6|}}} | label20 = {{#if:{{{youthclubs7|}}}|<span style="font-weight:normal">{{{youthyears7|–}}}</span>}} | data20 = {{{youthclubs7|}}} | label21 = {{#if:{{{youthclubs8|}}}|<span style="font-weight:normal">{{{youthyears8|–}}}</span>}} | data21 = {{{youthclubs8|}}} | header22 = {{#if:{{{clubs1|{{{clubs|}}}}}}|အကြီးတန်း ကစပ်သမား* }} | label23 = {{#if:{{{clubs1|{{{clubs|}}}}}}|ခုနှစ်}} | data23a = {{#if:{{{clubs1|{{{clubs|}}}}}}|'''အသင်း'''}} | data23b = {{#if:{{{clubs1|{{{clubs|}}}}}}|{{#if:{{{caps(goals)1|{{{caps(goals)|}}}}}}|'''ပွဲ (သွင်းဂိုး)<sup>†</sup>'''|'''ကစပ်ပွဲ<sup>†</sup>'''}} }} | data23c = {{#if:{{{caps(goals)1|{{{caps(goals)|}}}}}}||'''(သွင်းဂိုး)<sup>†</sup>'''}} | label24 = {{#if:{{{clubs|}}}|<span style="line-height:1.7em">}}{{#if:{{{clubs1|{{{clubs|}}}}}}|<span style="font-weight:normal">{{{years1|{{{years|–}}}}}}</span>}} | data24a = {{#if:{{{clubs|}}}|<span style="line-height:1.7em">}}{{{clubs1|{{{clubs|}}}}}} | data24b = {{#if:{{{clubs|}}}|<span style="line-height:1.7em">}}{{{caps1| {{{caps|{{{caps(goals)1|{{{caps(goals)|}}}}}} }}}}}} | data24c = {{#if:{{{clubs|}}}|<span style="line-height:1.7em">}}{{#if:{{{goals1|{{{goals|}}}}}}|({{{goals1|{{{goals|}}}}}})}} | label25 = {{#if:{{{clubs2|}}}|<span style="font-weight:normal">{{{years2|–}}}</span>}} | data25a = {{{clubs2|}}} | data25b = {{{caps2|{{{caps(goals)2|}}} }}} | data25c = {{#if:{{{goals2|}}}|({{{goals2}}})}} | label26 = {{#if:{{{clubs3|}}}|<span style="font-weight:normal">{{{years3|–}}}</span>}} | data26a = {{{clubs3|}}} | data26b = {{{caps3|{{{caps(goals)3|}}} }}} | data26c = {{#if:{{{goals3|}}}|({{{goals3}}})}} | label27 = {{#if:{{{clubs4|}}}|<span style="font-weight:normal">{{{years4|–}}}</span>}} | data27a = {{{clubs4|}}} | data27b = {{{caps4|{{{caps(goals)4|}}} }}} | data27c = {{#if:{{{goals4|}}}|({{{goals4}}})}} | label28 = {{#if:{{{clubs5|}}}|<span style="font-weight:normal">{{{years5|–}}}</span>}} | data28a = {{{clubs5|}}} | data28b = {{{caps5|{{{caps(goals)5|}}} }}} | data28c = {{#if:{{{goals5|}}}|({{{goals5}}})}} | label29 = {{#if:{{{clubs6|}}}|<span style="font-weight:normal">{{{years6|–}}}</span>}} | data29a = {{{clubs6|}}} | data29b = {{{caps6|{{{caps(goals)6|}}} }}} | data29c = {{#if:{{{goals6|}}}|({{{goals6}}})}} | label30 = {{#if:{{{clubs7|}}}|<span style="font-weight:normal">{{{years7|–}}}</span>}} | data30a = {{{clubs7|}}} | data30b = {{{caps7|{{{caps(goals)7|}}} }}} | data30c = {{#if:{{{goals7|}}}|({{{goals7}}})}} | label31 = {{#if:{{{clubs8|}}}|<span style="font-weight:normal">{{{years8|–}}}</span>}} | data31a = {{{clubs8|}}} | data31b = {{{caps8|{{{caps(goals)8|}}} }}} | data31c = {{#if:{{{goals8|}}}|({{{goals8}}})}} | label32 = {{#if:{{{clubs9|}}}|<span style="font-weight:normal">{{{years9|–}}}</span>}} | data32a = {{{clubs9|}}} | data32b = {{{caps9|{{{caps(goals)9|}}} }}} | data32c = {{#if:{{{goals9|}}}|({{{goals9}}})}} | label33 = {{#if:{{{clubs10|}}}|<span style="font-weight:normal">{{{years10|–}}}</span>}} | data33a = {{{clubs10|}}} | data33b = {{{caps10|{{{caps(goals)10|}}} }}} | data33c = {{#if:{{{goals10|}}}|({{{goals10}}})}} | label34 = {{#if:{{{clubs11|}}}|<span style="font-weight:normal">{{{years11|–}}}</span>}} | data34a = {{{clubs11|}}} | data34b = {{{caps11|{{{caps(goals)11|}}} }}} | data34c = {{#if:{{{goals11|}}}|({{{goals11}}})}} | label35 = {{#if:{{{clubs12|}}}|<span style="font-weight:normal">{{{years12|–}}}</span>}} | data35a = {{{clubs12|}}} | data35b = {{{caps12|{{{caps(goals)12|}}} }}} | data35c = {{#if:{{{goals12|}}}|({{{goals12}}})}} | label36 = {{#if:{{{clubs13|}}}|<span style="font-weight:normal">{{{years13|–}}}</span>}} | data36a = {{{clubs13|}}} | data36b = {{{caps13|{{{caps(goals)13|}}} }}} | data36c = {{#if:{{{goals13|}}}|({{{goals13}}})}} | label37 = {{#if:{{{clubs14|}}}|<span style="font-weight:normal">{{{years14|–}}}</span>}} | data37a = {{{clubs14|}}} | data37b = {{{caps14|{{{caps(goals)14|}}} }}} | data37c = {{#if:{{{goals14|}}}|({{{goals14}}})}} | label38 = {{#if:{{{clubs15|}}}|<span style="font-weight:normal">{{{years15|–}}}</span>}} | data38a = {{{clubs15|}}} | data38b = {{{caps15|{{{caps(goals)15|}}} }}} | data38c = {{#if:{{{goals15|}}}|({{{goals15}}})}} | label39 = {{#if:{{{clubs16|}}}|<span style="font-weight:normal">{{{years16|–}}}</span>}} | data39a = {{{clubs16|}}} | data39b = {{{caps16|{{{caps(goals)16|}}} }}} | data39c = {{#if:{{{goals16|}}}|({{{goals16}}})}} | label40 = {{#if:{{{clubs17|}}}|<span style="font-weight:normal">{{{years17|–}}}</span>}} | data40a = {{{clubs17|}}} | data40b = {{{caps17|{{{caps(goals)17|}}} }}} | data40c = {{#if:{{{goals17|}}}|({{{goals17}}})}} | label41 = {{#if:{{{clubs18|}}}|<span style="font-weight:normal">{{{years18|–}}}</span>}} | data41a = {{{clubs18|}}} | data41b = {{{caps18|{{{caps(goals)18|}}} }}} | data41c = {{#if:{{{goals18|}}}|({{{goals18}}})}} | label42 = {{#if:{{{clubs19|}}}|<span style="font-weight:normal">{{{years19|–}}}</span>}} | data42a = {{{clubs19|}}} | data42b = {{{caps19|{{{caps(goals)19|}}} }}} | data42c = {{#if:{{{goals19|}}}|({{{goals19}}})}} | label43 = {{#if:{{{clubs20|}}}|<span style="font-weight:normal">{{{years20|–}}}</span>}} | data43a = {{{clubs20|}}} | data43b = {{{caps20|{{{caps(goals)20|}}} }}} | data43c = {{#if:{{{goals20|}}}|({{{goals20}}})}} | label44 = {{#if:{{{clubs21|}}}|<span style="font-weight:normal">{{{years21|–}}}</span>}} | data44a = {{{clubs21|}}} | data44b = {{{caps21|{{{caps(goals)21|}}} }}} | data44c = {{#if:{{{goals21|}}}|({{{goals21}}})}} | label45 = {{#if:{{{clubs22|}}}|<span style="font-weight:normal">{{{years22|–}}}</span>}} | data45a = {{{clubs22|}}} | data45b = {{{caps22|{{{caps(goals)22|}}} }}} | data45c = {{#if:{{{goals22|}}}|({{{goals22}}})}} | label46 = {{#if:{{{clubs23|}}}|<span style="font-weight:normal">{{{years23|–}}}</span>}} | data46a = {{{clubs23|}}} | data46b = {{{caps23|{{{caps(goals)23|}}} }}} | data46c = {{#if:{{{goals23|}}}|({{{goals23}}})}} | label47 = {{#if:{{{clubs24|}}}|<span style="font-weight:normal">{{{years24|–}}}</span>}} | data47a = {{{clubs24|}}} | data47b = {{{caps24|{{{caps(goals)24|}}} }}} | data47c = {{#if:{{{goals24|}}}|({{{goals24}}})}} | label48 = {{#if:{{{clubs25|}}}|<span style="font-weight:normal">{{{years25|–}}}</span>}} | data48a = {{{clubs25|}}} | data48b = {{{caps25|{{{caps(goals)25|}}} }}} | data48c = {{#if:{{{goals25|}}}|({{{goals25}}})}} | label49 = {{#if:{{{clubs26|}}}|<span style="font-weight:normal">{{{years26|–}}}</span>}} | data49a = {{{clubs26|}}} | data49b = {{{caps26|{{{caps(goals)26|}}} }}} | data49c = {{#if:{{{goals26|}}}|({{{goals26}}})}} | label50 = {{#if:{{{clubs27|}}}|<span style="font-weight:normal">{{{years27|–}}}</span>}} | data50a = {{{clubs27|}}} | data50b = {{{caps27|{{{caps(goals)27|}}} }}} | data50c = {{#if:{{{goals27|}}}|({{{goals27}}})}} | label51 = {{#if:{{{clubs28|}}}|<span style="font-weight:normal">{{{years28|–}}}</span>}} | data51a = {{{clubs28|}}} | data51b = {{{caps28|{{{caps(goals)28|}}} }}} | data51c = {{#if:{{{goals28|}}}|({{{goals28}}})}} | label52 = {{#if:{{{clubs29|}}}|<span style="font-weight:normal">{{{years29|–}}}</span>}} | data52a = {{{clubs29|}}} | data52b = {{{caps29|{{{caps(goals)29|}}} }}} | data52c = {{#if:{{{goals29|}}}|({{{goals29}}})}} | label53 = {{#if:{{{clubs30|}}}|<span style="font-weight:normal">{{{years30|–}}}</span>}} | data53a = {{{clubs30|}}} | data53b = {{{caps30|{{{caps(goals)30|}}} }}} | data53c = {{#if:{{{goals30|}}}|({{{goals30}}})}} | label54 = {{#if:{{{clubs31|}}}|<span style="font-weight:normal">{{{years31|–}}}</span>}} | data54a = {{{clubs31|}}} | data54b = {{{caps31|{{{caps(goals)31|}}} }}} | data54c = {{#if:{{{goals31|}}}|({{{goals31}}})}} | label55 = {{#if:{{{clubs32|}}}|<span style="font-weight:normal">{{{years32|–}}}</span>}} | data55a = {{{clubs32|}}} | data55b = {{{caps32|{{{caps(goals)32|}}} }}} | data55c = {{#if:{{{goals32|}}}|({{{goals32}}})}} | label56 = {{#if:{{{clubs33|}}}|<span style="font-weight:normal">{{{years33|–}}}</span>}} | data56a = {{{clubs33|}}} | data56b = {{{caps33|{{{caps(goals)33|}}} }}} | data56c = {{#if:{{{goals33|}}}|({{{goals33}}})}} | label57 = {{#if:{{{clubs34|}}}|<span style="font-weight:normal">{{{years34|–}}}</span>}} | data57a = {{{clubs34|}}} | data57b = {{{caps34|{{{caps(goals)34|}}} }}} | data57c = {{#if:{{{goals34|}}}|({{{goals34}}})}} | label58 = {{#if:{{{clubs35|}}}|<span style="font-weight:normal">{{{years35|–}}}</span>}} | data58a = {{{clubs35|}}} | data58b = {{{caps35|{{{caps(goals)35|}}} }}} | data58c = {{#if:{{{goals35|}}}|({{{goals35}}})}} | label59 = {{#if:{{{clubs36|}}}|<span style="font-weight:normal">{{{years36|–}}}</span>}} | data59a = {{{clubs36|}}} | data59b = {{{caps36|{{{caps(goals)36|}}} }}} | data59c = {{#if:{{{goals36|}}}|({{{goals36}}})}} | label60 = {{#if:{{{clubs37|}}}|<span style="font-weight:normal">{{{years37|–}}}</span>}} | data60a = {{{clubs37|}}} | data60b = {{{caps37|{{{caps(goals)37|}}} }}} | data60c = {{#if:{{{goals37|}}}|({{{goals37}}})}} | label61 = {{#if:{{{clubs38|}}}|<span style="font-weight:normal">{{{years38|–}}}</span>}} | data61a = {{{clubs38|}}} | data61b = {{{caps38|{{{caps(goals)38|}}} }}} | data61c = {{#if:{{{goals38|}}}|({{{goals3}}})}} | label62 = {{#if:{{{clubs39|}}}|<span style="font-weight:normal">{{{years39|–}}}</span>}} | data62a = {{{clubs39|}}} | data62b = {{{caps39|{{{caps(goals)39|}}} }}} | data62c = {{#if:{{{goals39|}}}|({{{goals39}}})}} | label63 = {{#if:{{{totalyears|}}}|{{{totalyears}}}|{{#if:{{{totalcaps|}}}{{{totalcaps(goals)|}}}|စုစုပေါင်း}}}} | data63a = {{#if:{{{totalyears|}}}|{{#if:{{{totalcaps|}}}{{{totalcaps(goals)|}}}|'''စုစုပေါင်း'''}}}} | data63b = {{#if:{{{totalcaps|}}}{{{totalcaps(goals)|}}}|'''{{{totalcaps|{{{totalcaps(goals)}}} }}}'''}} | data63c = {{#if:{{{totalgoals|}}}|'''({{{totalgoals}}})'''}} | header64 = {{#if:{{{nationalteam1|{{{nationalteam|}}}}}}|နိုင်ငံတက်စားပြုအသင်း{{#if:{{{ntupdate|{{{nationalteam-update|}}}}}}|<sup>‡</sup> }} }} | label65 = {{#if:{{{clubs1|{{{clubs|}}}}}}||{{#if:{{{nationalyears1|{{{nationalyears|}}}}}}|ခုနှစ်}} }} | data65a = {{#if:{{{clubs1|{{{clubs|}}}}}}||{{#if:{{{nationalteam1|{{{nationalteam|}}}}}}|'''အသင်း'''}} }} | data65b = {{#if:{{{clubs1|{{{clubs|}}}}}}||{{#if:{{{nationalcaps(goals)1|{{{nationalcaps(goals)|}}}}}}|'''ပွဲ (သွင်းဂိုး)<sup>†</sup>'''|'''ကစပ်ပွဲ<sup>†</sup>'''}} }} | data65c = {{#if:{{{goals1|{{{goals|}}}}}}||{{#if:{{{nationalcaps(goals)1|{{{nationalcaps(goals)|}}}}}}||'''(သွင်းဂိုး)<sup>†</sup>'''}} }} | label66 = {{#if:{{{nationalteam|}}}|<span style="line-height:1.7em">}}{{#if:{{{nationalteam1|{{{nationalteam|}}}}}}|<span style="font-weight:normal">{{{nationalyears1|{{{nationalyears|–}}}}}}</span>}} | data66a = {{#if:{{{nationalteam|}}}|<span style="line-height:1.7em">}}{{{nationalteam1|{{{nationalteam|}}}}}} | data66b = {{#if:{{{nationalteam|}}}|<span style="line-height:1.7em">}}{{{nationalcaps1|{{{nationalcaps(goals)1|{{{nationalcaps|{{{nationalcaps(goals)|}}} }}} }}} }}} | data66c = {{#if:{{{nationalteam|}}}|<span style="line-height:1.7em">}}{{#if:{{{nationalgoals1|{{{nationalgoals|}}}}}}|({{{nationalgoals1|{{{nationalgoals|}}}}}})}} | label67 = {{#if:{{{nationalteam2|}}}|<span style="font-weight:normal">{{{nationalyears2|–}}}</span>}} | data67a = {{{nationalteam2|}}} | data67b = {{{nationalcaps2|{{{nationalcaps(goals)2|}}} }}} | data67c = {{#if:{{{nationalgoals2|}}}|({{{nationalgoals2}}})}} | label68 = {{#if:{{{nationalteam3|}}}|<span style="font-weight:normal">{{{nationalyears3|–}}}</span>}} | data68a = {{{nationalteam3|}}} | data68b = {{{nationalcaps3|{{{nationalcaps(goals)3|}}} }}} | data68c = {{#if:{{{nationalgoals3|}}}|({{{nationalgoals3}}})}} | label69 = {{#if:{{{nationalteam4|}}}|<span style="font-weight:normal">{{{nationalyears4|–}}}</span>}} | data69a = {{{nationalteam4|}}} | data69b = {{{nationalcaps4|{{{nationalcaps(goals)4|}}} }}} | data69c = {{#if:{{{nationalgoals4|}}}|({{{nationalgoals4}}})}} | label70 = {{#if:{{{nationalteam5|}}}|<span style="font-weight:normal">{{{nationalyears5|–}}}</span>}} | data70a = {{{nationalteam5|}}} | data70b = {{{nationalcaps5|{{{nationalcaps(goals)5|}}} }}} | data70c = {{#if:{{{nationalgoals5|}}}|({{{nationalgoals5}}})}} | label71 = {{#if:{{{nationalteam6|}}}|<span style="font-weight:normal">{{{nationalyears6|–}}}</span>}} | data71a = {{{nationalteam6|}}} | data71b = {{{nationalcaps6|{{{nationalcaps(goals)6|}}} }}} | data71c = {{#if:{{{nationalgoals6|}}}|({{{nationalgoals6}}})}} | label72 = {{#if:{{{nationalteam7|}}}|<span style="font-weight:normal">{{{nationalyears7|–}}}</span>}} | data72a = {{{nationalteam7|}}} | data72b = {{{nationalcaps7|{{{nationalcaps(goals)7|}}} }}} | data72c = {{#if:{{{nationalgoals7|}}}|({{{nationalgoals7}}})}} | label73 = {{#if:{{{nationalteam8|}}}|<span style="font-weight:normal">{{{nationalyears8|–}}}</span>}} | data73a = {{{nationalteam8|}}} | data73b = {{{nationalcaps8|{{{nationalcaps(goals)8|}}} }}} | data73c = {{#if:{{{nationalgoals8|}}}|({{{nationalgoals8}}})}} | label74 = {{#if:{{{nationalteam9|}}}|<span style="font-weight:normal">{{{nationalyears9|–}}}</span>}} | data74a = {{{nationalteam9|}}} | data74b = {{{nationalcaps9|{{{nationalcaps(goals)9|}}} }}} | data74c = {{#if:{{{nationalgoals9|}}}|({{{nationalgoals9}}})}} | header75 = {{#if:{{{managerclubs1|{{{managerclubs|}}}}}}|အုပ်ချုပ်ခရေ အသင်းတိ}} | label76 = {{#if:{{{clubs1|{{{clubs|}}}}}}||{{#if:{{{managerclubs1|{{{managerclubs|}}}}}}|ခုနှစ်}} }} | data76a = {{#if:{{{clubs1|{{{clubs|}}}}}}||{{#if:{{{manageryears1|{{{manageryears|}}}}}}|'''အသင်း'''}} }} | label77 = {{#if:{{{managerclubs|}}}|<span style="line-height:1.7em">}}{{#if:{{{managerclubs1|{{{managerclubs|}}}}}}|<span style="font-weight:normal">{{{manageryears1|{{{manageryears|–}}}}}}</span>}} | data77 = {{#if:{{{managerclubs|}}}|<span style="line-height:1.7em">}}{{{managerclubs1|{{{managerclubs|}}}}}} | label78 = {{#if:{{{managerclubs2|}}}|<span style="font-weight:normal">{{{manageryears2|–}}}</span>}} | data78 = {{{managerclubs2|}}} | label79 = {{#if:{{{managerclubs3|}}}|<span style="font-weight:normal">{{{manageryears3|–}}}</span>}} | data79 = {{{managerclubs3|}}} | label80 = {{#if:{{{managerclubs4|}}}|<span style="font-weight:normal">{{{manageryears4|–}}}</span>}} | data80 = {{{managerclubs4|}}} | label81 = {{#if:{{{managerclubs5|}}}|<span style="font-weight:normal">{{{manageryears5|–}}}</span>}} | data81 = {{{managerclubs5|}}} | label82 = {{#if:{{{managerclubs6|}}}|<span style="font-weight:normal">{{{manageryears6|–}}}</span>}} | data82 = {{{managerclubs6|}}} | label83 = {{#if:{{{managerclubs7|}}}|<span style="font-weight:normal">{{{manageryears7|–}}}</span>}} | data83 = {{{managerclubs7|}}} | label84 = {{#if:{{{managerclubs8|}}}|<span style="font-weight:normal">{{{manageryears8|–}}}</span>}} | data84 = {{{managerclubs8|}}} | label85 = {{#if:{{{managerclubs9|}}}|<span style="font-weight:normal">{{{manageryears9|–}}}</span>}} | data85 = {{{managerclubs9|}}} | label86 = {{#if:{{{managerclubs10|}}}|<span style="font-weight:normal">{{{manageryears10|–}}}</span>}} | data86 = {{{managerclubs10|}}} | label87 = {{#if:{{{managerclubs11|}}}|<span style="font-weight:normal">{{{manageryears11|–}}}</span>}} | data87 = {{{managerclubs11|}}} | label88 = {{#if:{{{managerclubs12|}}}|<span style="font-weight:normal">{{{manageryears12|–}}}</span>}} | data88 = {{{managerclubs12|}}} | label89 = {{#if:{{{managerclubs13|}}}|<span style="font-weight:normal">{{{manageryears13|–}}}</span>}} | data89 = {{{managerclubs13|}}} | label90 = {{#if:{{{managerclubs14|}}}|<span style="font-weight:normal">{{{manageryears14|–}}}</span>}} | data90 = {{{managerclubs14|}}} | label91 = {{#if:{{{managerclubs15|}}}|<span style="font-weight:normal">{{{manageryears15|–}}}</span>}} | data91 = {{{managerclubs15|}}} | label92 = {{#if:{{{managerclubs16|}}}|<span style="font-weight:normal">{{{manageryears16|–}}}</span>}} | data92 = {{{managerclubs16|}}} | label93 = {{#if:{{{managerclubs17|}}}|<span style="font-weight:normal">{{{manageryears17|–}}}</span>}} | data93 = {{{managerclubs17|}}} | label94 = {{#if:{{{managerclubs18|}}}|<span style="font-weight:normal">{{{manageryears18|–}}}</span>}} | data94 = {{{managerclubs18|}}} | label95 = {{#if:{{{managerclubs19|}}}|<span style="font-weight:normal">{{{manageryears19|–}}}</span>}} | data95 = {{{managerclubs19|}}} | label96 = {{#if:{{{managerclubs20|}}}|<span style="font-weight:normal">{{{manageryears20|–}}}</span>}} | data96 = {{{managerclubs20|}}} | label97 = {{#if:{{{managerclubs21|}}}|<span style="font-weight:normal">{{{manageryears21|–}}}</span>}} | data97 = {{{managerclubs21|}}} | label98 = {{#if:{{{managerclubs22|}}}|<span style="font-weight:normal">{{{manageryears22|–}}}</span>}} | data98 = {{{managerclubs22|}}} | label99 = {{#if:{{{managerclubs23|}}}|<span style="font-weight:normal">{{{manageryears23|–}}}</span>}} | data99 = {{{managerclubs23|}}} | label100 = {{#if:{{{managerclubs24|}}}|<span style="font-weight:normal">{{{manageryears24|–}}}</span>}} | data100 = {{{managerclubs24|}}} | label101 = {{#if:{{{managerclubs25|}}}|<span style="font-weight:normal">{{{manageryears25|–}}}</span>}} | data101 = {{{managerclubs25|}}} | label102 = {{#if:{{{managerclubs26|}}}|<span style="font-weight:normal">{{{manageryears26|–}}}</span>}} | data102 = {{{managerclubs26|}}} | label103 = {{#if:{{{managerclubs27|}}}|<span style="font-weight:normal">{{{manageryears27|–}}}</span>}} | data103 = {{{managerclubs27|}}} | label104 = {{#if:{{{managerclubs28|}}}|<span style="font-weight:normal">{{{manageryears28|–}}}</span>}} | data104 = {{{managerclubs28|}}} | label105 = {{#if:{{{managerclubs29|}}}|<span style="font-weight:normal">{{{manageryears29|–}}}</span>}} | data105 = {{{managerclubs29|}}} | label106 = {{#if:{{{managerclubs30|}}}|<span style="font-weight:normal">{{{manageryears30|–}}}</span>}} | data106 = {{{managerclubs30|}}} | label107 = {{#if:{{{managerclubs31|}}}|<span style="font-weight:normal">{{{manageryears31|–}}}</span>}} | data107 = {{{managerclubs31|}}} | label108 = {{#if:{{{managerclubs32|}}}|<span style="font-weight:normal">{{{manageryears32|–}}}</span>}} | data108 = {{{managerclubs32|}}} | label109 = {{#if:{{{managerclubs33|}}}|<span style="font-weight:normal">{{{manageryears33|–}}}</span>}} | data109 = {{{managerclubs33|}}} | label110 = {{#if:{{{managerclubs34|}}}|<span style="font-weight:normal">{{{manageryears34|–}}}</span>}} | data110 = {{{managerclubs34|}}} | label111 = {{#if:{{{managerclubs35|}}}|<span style="font-weight:normal">{{{manageryears35|–}}}</span>}} | data111 = {{{managerclubs35|}}} | label112 = {{#if:{{{managerclubs36|}}}|<span style="font-weight:normal">{{{manageryears36|–}}}</span>}} | data112 = {{{managerclubs36|}}} | label113 = {{#if:{{{managerclubs37|}}}|<span style="font-weight:normal">{{{manageryears37|–}}}</span>}} | data113 = {{{managerclubs37|}}} | label114 = {{#if:{{{managerclubs38|}}}|<span style="font-weight:normal">{{{manageryears38|–}}}</span>}} | data114 = {{{managerclubs38|}}} | label115 = {{#if:{{{managerclubs39|}}}|<span style="font-weight:normal">{{{manageryears39|–}}}</span>}} | data115 = {{{managerclubs39|}}} | label116 = {{#if:{{{managerclubs40|}}}|<span style="font-weight:normal">{{{manageryears40|–}}}</span>}} | data116 = {{{managerclubs40|}}} | label117 = {{#if:{{{managerclubs41|}}}|<span style="font-weight:normal">{{{manageryears41|–}}}</span>}} | data117 = {{{managerclubs41|}}} | label118 = {{#if:{{{managerclubs42|}}}|<span style="font-weight:normal">{{{manageryears42|–}}}</span>}} | data118 = {{{managerclubs42|}}} | label119 = {{#if:{{{managerclubs43|}}}|<span style="font-weight:normal">{{{manageryears43|–}}}</span>}} | data119 = {{{managerclubs43|}}} | label120 = {{#if:{{{managerclubs44|}}}|<span style="font-weight:normal">{{{manageryears44|–}}}</span>}} | data120 = {{{managerclubs44|}}} | label121 = {{#if:{{{managerclubs45|}}}|<span style="font-weight:normal">{{{manageryears45|–}}}</span>}} | data121 = {{{managerclubs45|}}} | label122 = {{#if:{{{managerclubs46|}}}|<span style="font-weight:normal">{{{manageryears46|–}}}</span>}} | data122 = {{{managerclubs46|}}} | label123 = {{#if:{{{managerclubs47|}}}|<span style="font-weight:normal">{{{manageryears47|–}}}</span>}} | data123 = {{{managerclubs47|}}} | label124 = {{#if:{{{managerclubs48|}}}|<span style="font-weight:normal">{{{manageryears48|–}}}</span>}} | data124 = {{{managerclubs48|}}} | label125 = {{#if:{{{managerclubs49|}}}|<span style="font-weight:normal">{{{manageryears49|–}}}</span>}} | data125 = {{{managerclubs49|}}} | header126 = {{Infobox medal templates |title = {{{medaltemplates-title|Honours}}} |medals = {{{medaltemplates|}}} |expand = {{{medaltemplates-expand|}}} }} | data127 = {{#if:{{{module|}}}|<nowiki /> {{{!}} style="text-align:left; width:100%; margin:0; border-spacing:0" {{!}}- {{{module|}}} {{!}}} }} | belowstyle = color:darkslategray; font-size:95% | below = {{#if:{{{clubs1|{{{clubs|}}}}}}|<nowiki>*</nowiki> ဂိုးအရွီအတွက်ကို ကလပ်အသင်းကြီး ကစပ်ခြင်းနန့်</br>ပြည်တွင်းလိဂ်အတွက်ရာ ရွီတွက်{{#if:{{{pcupdate|{{{club-update|}}}}}}|ပြီး&#32;{{{pcupdate|{{{club-update}}}}}}အထိ ဖြစ်}}ရေ။{{#if:{{{ntupdate|{{{nationalteam-update|}}}}}}{{{years1|{{{years|}}}}}}|<br />}} }} {{#if:{{{years1|{{{years|}}}}}}{{{clubs1|{{{clubs|}}}}}}{{{nationalteam1|{{{nationalteam|}}}}}}|† ကစပ်ရေ ပွဲအရွီအတွက် (သွင်းဂိုး){{#if:{{{ntupdate|{{{nationalteam-update|}}}}}}{{{years1|{{{years|}}}}}}|<br />}} }} {{#if:{{{ntupdate|{{{nationalteam-update|}}}}}}|‡ {{{ntupdate|{{{nationalteam-update}}}}}} အထိ နိုင်ငံတက်စားပြုပွဲနန့် သွင်းဂိုးတိ}} }}<noinclude> {{documentation}} [[ကဏ္ဍ:အားကဇပ်သမား]] </noinclude> 5ty7osqnvlugmuffs1hufek901ud6kv ကျွန်းဝိုင်းမီးပြတိုက် 0 5057 19540 2026-07-15T13:54:29Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse | name = Round Island Lighthouse<br />''Trincomalee''<br />''Kevuliya'' | location = [[Trincomalee Harbour]]<br />[[Trincomalee]]<br />[[Eastern Province, Sri Lanka|Eastern Province]]<br /> [[Sri Lanka]] | image_name = Round Island Lighthouse.jpg | caption = The lighthouse in 2011 | coordinates = {{coord|8|30|46.6|N|81|13|33.2|E|display=inline}} | pushpin_map = Sri Lanka..." 19540 wikitext text/x-wiki {{Infobox lighthouse | name = Round Island Lighthouse<br />''Trincomalee''<br />''Kevuliya'' | location = [[Trincomalee Harbour]]<br />[[Trincomalee]]<br />[[Eastern Province, Sri Lanka|Eastern Province]]<br /> [[Sri Lanka]] | image_name = Round Island Lighthouse.jpg | caption = The lighthouse in 2011 | coordinates = {{coord|8|30|46.6|N|81|13|33.2|E|display=inline}} | pushpin_map = Sri Lanka | pushpin = lighthouse | pushpin_map_caption = Sri Lanka | relief = 1 | yearbuilt = 1863 | yearlit = | yeardeactivated = | automated = yes | intensity = | range = | foundation = | construction = masonry tower | shape = cylindrical tower with balcony and lantern | marking = white tower | height = {{convert|21|m|ft}} | focalheight = {{convert|31|m|ft}} | characteristic = Fl (3) WR 15s. | currentlens = | fogsignal = | racon = | admiralty = F0852 | NGA = 27244 | ARLHS = SLI-019<ref>{{Cite rowlett|lka|archive-url=https://web.archive.org/web/20180422032828/http://www.ibiblio.org/lighthouse/lka.htm|archive-date=22 April 2018|url-status=live|accessdate=2016-04-03}}</ref> | USCG = }} '''ကျွန်းဝိုင်းမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံ၊ ထရင်ကွန်မလီးပင်လယ်အော်၊ ကျွန်းဝိုင်းပေါ်ဟိ ကမ်းလွန်မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ ယင်းကို သီရိလင်္ကာဆိပ်ခုံအာဏာပိုင်က ထိန်းသိမ်းလုပ်ဆောင်ဗျာယ်ဟိရေ။<ref>{{cite web |url=http://teamtraveler.info/lighthouses-in-sri-lanka/ |title=List of Lighthouses in Sri Lanka |publisher=The Team Traveller |accessdate=1 July 2014 |archive-url=https://web.archive.org/web/20140714192919/http://teamtraveler.info/lighthouses-in-sri-lanka/ |archive-date=14 July 2014 |url-status=dead |archivedate=14 July 2014 |archiveurl=https://web.archive.org/web/20140714192919/http://teamtraveler.info/lighthouses-in-sri-lanka/ }}</ref> မီးပြတိုက်ကို ၁၈၆၃ မာ တည်ဆောက်ခပြီးကေ မူလက မီးပြတိုက်သည် အရဲရောင်မီးဖြစ်ကေလေ့ ၁၈၆၄ မာ အဖြူရောင်အဖြစ်သို့ ပြောင်းလဲခရေ။<ref>{{cite news |url=https://www.thegazette.co.uk/London/issue/22905/page/5007/data.pdf |title=Notice to Mariners |newspaper=[[The London Gazette]] | date=25 October 1864 |accessdate=25 September 2014 |archive-url=https://web.archive.org/web/20190121120505/https://www.thegazette.co.uk/London/issue/22905/page/5007/data.pdf |archive-date=21 January 2019 |url-status=live}}</ref> မီးပြတိုက်ရေ ၂၁ မီတာ (၆၉ ပေ) မြင့်ရေ။ ပင်လယ်အောင်ဟိ ကျွန်းငယ်တခုဧ့ ထိပ်ဖက်မာ တည်ဟိရေ။ အဖြူရောင်အစိတ်အပိုင်းတိထဲက တခုသည် ဖောင်တော်ကမ်းသို့ လားနှိုင်ရေ အလမ်းဝကို ဖော်ပြပီးရေ အမှတ်အသား ဖြစ်တေ။ မီးပြတိုက်ပါးသို့ လောင်းဖြင့်သာ လားရောက်နှိုင်ရေ။ အများပြည်သူအား ကျွန်းနန့် မီးပြတိုက်ပါးသို့ လာရောက်ခြင်းကို ပိတ်ပင်ထားရေ။ ==ပြင်ပလင့်များ== * [http://www.lighthousedigest.com/digest/database/uniquelighthouse.cfm?value=6418 Round Island Light (Sri Lanka)] {{Webarchive|url=https://web.archive.org/web/20210611050507/http://www.lighthousedigest.com/digest/database/uniquelighthouse.cfm?value=6418 |date=11 June 2021 }} * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] 0vg41lsejx6po3rc1b3lubsprn6jmt0 လေးရှင်းတောင်မီးပြတိုက် 0 5058 19541 2026-07-15T13:56:57Z Htun Warnn Naing 1059 Created page with "'''လေးရှင်းတောင်မီးပြတိုက်''' ရေ မြန်မာ့ပင်လယ်ပြင်ဧ့ အစောဆုံးမီးပြတိုက်တိထဲက တခုဖြစ်ပြီးကေ ၁၈၄၄ ခုနှစ်က စတင်တည်ကာ<ref name="popular">{{cite web |last1=Fame |first1=Asian |title=ဇရာကနင်းချေ ကျမ်းမာပါစီ ပင်လယ်စောင..." 19541 wikitext text/x-wiki '''လေးရှင်းတောင်မီးပြတိုက်''' ရေ မြန်မာ့ပင်လယ်ပြင်ဧ့ အစောဆုံးမီးပြတိုက်တိထဲက တခုဖြစ်ပြီးကေ ၁၈၄၄ ခုနှစ်က စတင်တည်ကာ<ref name="popular">{{cite web |last1=Fame |first1=Asian |title=ဇရာကနင်းချေ ကျမ်းမာပါစီ ပင်လယ်စောင့်နတ်သမီး |url=https://www.popularmyanmar.com/popularnews/2016/07/13/%E1%80%87%E1%80%9B%E1%80%AC%E1%80%80%E1%80%94%E1%80%84%E1%80%B9%E1%80%B8%E1%80%B1%E1%80%81%E1%80%BA-%E1%80%80%E1%80%BA%E1%80%94%E1%80%B9%E1%80%B8%E1%80%99%E1%80%AC%E1%80%95%E1%80%AB%E1%80%B1/ |website=Popular News |access-date=၂ ဒီဇန်ဘာ ၂၀၂၁ |archive-date=2 December 2021 |archive-url=https://web.archive.org/web/20211202051712/https://www.popularmyanmar.com/popularnews/2016/07/13/%E1%80%87%E1%80%9B%E1%80%AC%E1%80%80%E1%80%94%E1%80%84%E1%80%B9%E1%80%B8%E1%80%B1%E1%80%81%E1%80%BA-%E1%80%80%E1%80%BA%E1%80%94%E1%80%B9%E1%80%B8%E1%80%99%E1%80%AC%E1%80%95%E1%80%AB%E1%80%B1/ }}</ref> ၁၉၅၆ ခုနှစ်အထိ အသုံးပြုခရေ မီးပြတိုက်တခု ဖြစ်တေ။ အမြင့် ၁၃၈ ပေ ဟိရေ။ အယင်က မီးပြအလင်းရောင်ကို ၁၄ မိုင်ထိ မြင်နိုင်ခရေ။ == တည်နီရာ == လေးရှင်းတောင်မီးပြတိုက်ရေ [[ရခိုင်ပြည်နယ်]]၊ [[စစ်တွေမြို့]]မှ တောင်ဘက် နှစ်မိုင်အကွာဟိ ကုလားတန်မြစ်ဝ Savage Island မာ တည်ဟိရေ။ ကျွန်းအရှိဖက်မာ [[မြီငူကျွန်း]] ဟိရေ။ == သမိုင်းကြောင်း == [[ပထမ အိန်းဂလိချ် - မြန်မာစစ်|အိန်းဂလိချ်- မြန်မာ ပထမစစ်ပွဲ]] အပြီးမာ မီးပြတိုက် ကို တည်ဆောက်ခရေ။<ref>{{cite web |title=မြန်မာ့ ပင်လယ်ပြင်မာ အစောဆုံး အလင်းပြခသူ တဦး - BBC News မြန်မာ |url=https://www.youtube.com/watch?v=nORKWhb2ITk |publisher=ဘီဘီစီ မြန်မာ |access-date=၂ ဒီဇန်ဘာ ၂၀၂၁ |language=en}}</ref> ၁၈၄၄ ခုနှစ်မာ တည်ဆောက်ခရေ မီးပြတိုက်သည် မြန်မာ့ ပင်လယ်ပြင်ဧ့ အစောဆုံး မီးပြတိုက်တခုလည်း ဖြစ်ခရေ။ <ref>{{cite web|url=https://newsvsinformation.com/2023/09/%E1%80%9B%E1%80%81%E1%80%AD%E1%80%AF%E1%80%84%E1%80%BA%E1%80%80-%E1%80%94%E1%80%BE%E1%80%85%E1%80%BA%E1%80%9B%E1%80%AC%E1%80%81%E1%80%BB%E1%80%AE%E1%80%9E%E1%80%80%E1%80%BA%E1%80%90%E1%80%99%E1%80%BA/|title=ရခိုင်က နှစ်ရာချီသက်တမ်းဟိ မီးပြတိုက်တိကို ထိန်းသိမ်းဖို့လိုအပ်နေ|work=ARAKAN news|access-date=၁၁ ဂျူလိုင် ၂၀၂၅|date=၂၀ စတ်တင်ဘာ ၂၀၂၃|archive-date=18 June 2025|archive-url=https://web.archive.org/web/20250618022112/https://newsvsinformation.com/2023/09/%E1%80%9B%E1%80%81%E1%80%AD%E1%80%AF%E1%80%84%E1%80%BA%E1%80%80-%E1%80%94%E1%80%BE%E1%80%85%E1%80%BA%E1%80%9B%E1%80%AC%E1%80%81%E1%80%BB%E1%80%AE%E1%80%9E%E1%80%80%E1%80%BA%E1%80%90%E1%80%99%E1%80%BA/|url-status=dead}}</ref> <ref>{{cite web|url=https://myawady.net.mm/content/%E1%80%99%E1%80%BC%E1%80%94%E1%80%BA%E1%80%99%E1%80%AC%E1%80%94%E1%80%AD%E1%80%AF%E1%80%84%E1%80%BA%E1%80%84%E1%80%B6%E1%80%9B%E1%80%BE%E1%80%AD-%E1%80%99%E1%80%AE%E1%80%B8%E1%80%95%E1%80%BC%E1%80%90%E1%80%AD%E1%80%AF%E1%80%80%E1%80%BA%E1%80%99%E1%80%BB%E1%80%AC%E1%80%B8%E1%80%A1%E1%80%80%E1%80%BC%E1%80%B1%E1%80%AC%E1%80%84%E1%80%BA%E1%80%B8|title=မြန်မာနိုင်ငံဟိ မီးပြတိုက်များအကြောင်း|work=MWD Webportal|access-date=၁၁ ဂျူလိုင် ၂၀၂၅|date=၂၄ ဂျန်နဝါရီ ၂၀၂၁ }}</ref> == ကိုးကား == {{reflist}} [[ကဏ္ဍ:မြန်မာနိုင်ငံဟိ အဆောက်အအုံများ]] [[ကဏ္ဍ:မီးပြတိုက်များ စာရင်း]] [[ကဏ္ဍ:မီးပြတိုက်]] a8k4jfs4t3mkw3vkvfr2tus4ybdr8n8 ဂယ်လီမီးပြတိုက် 0 5059 19542 2026-07-15T14:01:34Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse |name=Galle Lighthouse<br />''Pointe de Galle'' |image_name =SL Galle Fort asv2020-01 img24.jpg |caption=Galle Lighthouse |location=[[Galle Fort]]<br /> [[Galle]]<br />[[Southern Province, Sri Lanka|Southern Province]]<br /> [[Sri Lanka]] |coordinates = {{coord|6|01|28.48|N|80|13|09.76|E|display=inline,title}} | pushpin_map = Sri Lanka | pushpin = lighthouse | relief = 1 | pushpin_map_caption = Sri Lanka |yearbuilt = 1848 (first) |yearlit =1939 (cu..." 19542 wikitext text/x-wiki {{Infobox lighthouse |name=Galle Lighthouse<br />''Pointe de Galle'' |image_name =SL Galle Fort asv2020-01 img24.jpg |caption=Galle Lighthouse |location=[[Galle Fort]]<br /> [[Galle]]<br />[[Southern Province, Sri Lanka|Southern Province]]<br /> [[Sri Lanka]] |coordinates = {{coord|6|01|28.48|N|80|13|09.76|E|display=inline,title}} | pushpin_map = Sri Lanka | pushpin = lighthouse | relief = 1 | pushpin_map_caption = Sri Lanka |yearbuilt = 1848 (first) |yearlit =1939 (current) |yeardeactivated= |automated = yes |foundation = |construction = concrete and stone |shape = cylindrical tower with balcony and lantern |marking = white tower and lantern |height = {{convert|26.5|m|ft}} | focalheight = {{convert|28|m|ft}} ||intensity= |range= {{convert|47|nmi}} |characteristic = Fl (2) W 15s. |currentlens= |lightsource = mains power |fogsignal = |racon = |admiralty = F0830 |NGA = 27284 |ARLHS = SLI-0018 |USCG = | managingagent = Sri Lanka Ports Authority<ref name="UNC"/> }} '''ဂယ်လီမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံ၊ ဂယ်လီမြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။<ref name="LD">{{cite web|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=2167|title=Galle Light|work=Lighthouse Explorer|publisher=Foghorn Publishing|accessdate=22 December 2014|archive-date=8 June 2015|archive-url=https://web.archive.org/web/20150608174701/http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=2167}}</ref> သီရိလင်္ကာဆိပ်ခုံအာဏာပိုင်က ထိန်းသိမ်းထားရေ။ ဒေမီးပြတိုက်ရေ သီရိလင်္ကာဟိ သက်တမ်းအကြာမြင့်ဆုံး မီးပြတိုက်ဖြစ်တေ။<ref>{{cite web|url=http://teamtraveler.info/lighthouses-in-sri-lanka/|title=List of Lighthouses in Sri Lanka|publisher=The Team Traveller|accessdate=1 July 2014|archive-url=https://web.archive.org/web/20140714192919/http://teamtraveler.info/lighthouses-in-sri-lanka/|archive-date=14 July 2014|url-status=dead|archivedate=14 July 2014|archiveurl=https://web.archive.org/web/20140714192919/http://teamtraveler.info/lighthouses-in-sri-lanka/}}</ref><ref name="UNC">{{Cite rowlett|lka|date=13 February 2006|access-date=22 December 2014}}</ref> ==သမိုင်းကြောင်း== ဂယ်လီမာ ပထမဆုံးသော မီးပြတိုက်ကို ၁၈၄၈ ခုနှစ်မာ ဗြိတိသျှရို့က ဆောက်လုပ်ခရေ။ <ref name="LD"/><ref name=Parliament>{{cite journal|title=Accounts and Papers of the House of Commons|volume=53|page=43|date=1850|publisher=Parliament of Great Britain|url=https://books.google.com/books?id=a6BbAAAAQAAJ&pg=RA18-PA43&dq=galle+lighthouse#v=onepage&q=galle%20lighthouse&f=false}}</ref>ယင်းသည် ၂၄.၄ မီတာ (ပေ ၈၀ ) အမြင့်ဟိရေ သံမီးပြတိုက်တခု ဖြစ်တေ။ ပြတိုက်ကို အင်္ဂလန်မှ တင်သွင်းရေ သံကြွပ်ပြားတိနန့် တည်ဆောက်ထားရေ။ <ref name=Parliament/><ref>{{cite book|title=Sailing Directions for the West Coast of India - Issue 159|publisher=United States Hydrographic Office|date=1920|page=167}}</ref> ယင်းကို ဗြိတိသျှဗိသုကာပညာသျှင် အလက်ဇန်းဒါးဂေါ်ဒန်က ဒီဇိုင်းရီးဆွဲကာ Pimlico ဧ့ အိန်ဂျန်နီယာဖြစ်သူ Messrs. Robinsonက ဆောက်လုပ်ခရေ။ <ref name=CEAJ>{{cite journal|title=The Civil Engineer and Architect's Journal|url=https://books.google.com/books?id=1iM6AQAAMAAJ&pg=PA385&dq=%22point+de+galle%22+light+lens#v=onepage&q=%22point%20de%20galle%22%20light%20lens&f=false|volume=10|page=385|date=1847}}</ref><ref>{{cite journal|first=Miles|last=Lewis|title=Construction History|volume=27|date=2012|pages=23–64|publisher=Construction History Society|journal=Iron Lighthouses}}</ref>မီးပြတိုက်သည် အဖြူရောင်ဆီးခြယ်ထားပြီးသား ဂယ်လီဆိပ်ခုံဧ့ အနောက်ဖက်မာ တည်ဟိရေ ဂယ်လီခံတပ်ဧ့ အနောက်တောင်ဘက်နီရာဖြစ်ရေ Utrtecht ခံတပ်နီရာတွင် တည်ဟိရေ။ ဒေမီးပြတိုက်မာ ၁၉ ကီလိုမီတာ (၁၂ မိုင်) အဝီးမှ မြင်နှိုင်ရေ prolate  ရောင်ပြန်တိကို တပ်ဆင်ထားရေ။ ဒေမီးပြတိုက်ရေ ၁၉၃၆ ခုနှစ်မာ မီးတိုက်ကာ ဖျက်ဆီးခံခရရေ။<ref name=CEAJ/><ref>{{cite journal|title=The Artizan|volume=5|url=https://books.google.com/books?id=EDpRAAAAYAAJ&pg=PA274&dq=%22point+de+galle%22+lighthouse+lens#v=onepage&q=%22point%20de%20galle%22%20lighthouse%20lens&f=false|page=274|date=December 1874}}</ref><ref>{{cite web|url=https://pharology.eu/history/asia/AS02_lighthousesofsrilanka.html|title=AS02: Lighthouses of Sri Lanka|publisher=The World Lighthouse Hub|accessdate=6 March 2020}}</ref> In July 1936 it was destroyed by fire.<ref name="UNC"/><ref name="LD"/> လက်ဟိ ၂၆.၅ မီတာ (၈၇ ပေ) မြင့်ရေ ကွန်ကရစ်မီးပြတိုက်ရေ ၁၉၃၉ ခုနှစ်က တည်ဆောက်ခဲ့ရေ ၁၀၀ မီတာလှောက် (၃၃၀ ပေ) မြင့်ရေ မီးပြတိုက်ကို ပြန်ပနာကာ တည်ဆောက်ထားခြင်း ဖြစ်တေ။ <ref name="UNC"/><ref name="LD"/> မီးပြတိုက်ရေ ရှီးဟောင်းဂယ်လီခံတပ်နန့် နံရံတခုရာခြာရေ။ မီးပြတိုက်ရေ နည်းဗျူဟာအရ အငူဧ့ တောင်ဘက်အစွန်ပိုင်းမာ တည်ဟိရေ။ ခံတပ်ကတုတ်ဟိ လမ်းဧ့အထက် ၆ မီတာ (၂၀ ပေ) ခန့်မာ တည်ဆောက်ထားရေ။ ယင်းခံတပ်ကတုတ်ကို Point Utrecht Bastion ဟု ခေါ်ကတ်ရား ယင်းမှနိန်ပနာ ဂယ်လီဆိပ်ခုံသို့ ဝင်ရောက်လှာရေ ဇာသင်္ဘောကိုမဆို ကောင်းစွာမြင်တွိနှိုင်ရေ။<ref name="UNC"/> ==ပြင်ပလင့်များ== *[https://web.archive.org/web/20060813163401/http://www.lhdepot.com/database/uniquelighthouse.cfm?value=2167 Galle Light] *[http://www.bl.uk/onlinegallery/onlineex/apac/photocoll/l/019pho000000249u00055000.html British Library photograph of the original 1848 lighthouse] {{Webarchive|url=https://web.archive.org/web/20211008131022/http://www.bl.uk/onlinegallery/onlineex/apac/photocoll/l/019pho000000249u00055000.html |date=8 October 2021 }} * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] grqgkv937wn4xa8j82qpjddiydq6kp8 ကိုလံဘိုမီးပြတိုက် 0 5060 19543 2026-07-15T14:03:17Z Htun Warnn Naing 1059 Created page with "{{more citations needed|date=July 2015}} {{Use dmy dates|date=August 2014}} {{Infobox lighthouse |name= Colombo Lighthouse<br />''Galbokka Point'' |image_name= ColomboPortLighthouse.jpg |caption= Colombo Lighthouse |location= Galbokka Point<br /> [[Colombo]]<br /> [[Sri Lanka]] | pushpin_map = Sri Lanka Colombo Greater | pushpin_map_caption = Location in greater Colombo | pushpin = lighthouse | relief = 1 |coordinates = {{coord|6.936298|79.840766|display=inline,title}} |..." 19543 wikitext text/x-wiki {{more citations needed|date=July 2015}} {{Use dmy dates|date=August 2014}} {{Infobox lighthouse |name= Colombo Lighthouse<br />''Galbokka Point'' |image_name= ColomboPortLighthouse.jpg |caption= Colombo Lighthouse |location= Galbokka Point<br /> [[Colombo]]<br /> [[Sri Lanka]] | pushpin_map = Sri Lanka Colombo Greater | pushpin_map_caption = Location in greater Colombo | pushpin = lighthouse | relief = 1 |coordinates = {{coord|6.936298|79.840766|display=inline,title}} |yearbuilt = 1820s (first) |yearlit = 1952 (current) |yeardeactivated = |automated = |foundation = |construction = stone tower |shape = cylindrical tower with balcony and lantern on a 1-storey building |marking = unpainted tower, the seaward side is painted in a black and white checkered pattern | height = {{convert|15|m|ft}} | focalheight = {{convert|26|m|ft}} |currentlens= | lightsource = mains power | intensity = |range= {{convert|15|nmi}} | characteristic = Fl (3) W 10s. | fogsignal = | racon = | admiralty = F0804 | canada = | NGA = 27332 | ARLHS = SLI-005 | USCG = | country = | countrynumber = | countrylink = | managingagent = Sri Lanka Ports Authority<ref>{{Cite rowlett|lka|accessdate=2016-04-01}}</ref> }} '''ကိုလံဘိုမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံ၊ ကိုလံဘိုမြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ သီရိလင်္ကာဆိပ်ခုံအာဏာပိုင်က ထိန်းခြုပ်လုပ်ဆောင်ဗျာယ်ဟိရေ။ ကိုလံဘိုဆိပ်ခုံဧ့ တောင်ဘက် ဂယ်ဘော့ကာပွိုင့်မာ တည်ဟိရေ။ ==သမိုင်းကြောင်း== ကိုလံဘိုဆိပ်ခုံတိုးချဲ့ရီးစီမံကိန်းဧ့ အစိတ်အပိုင်းတခုအနိန်နန့် ကိုလံဘိုမီးပြတိုက်အဟောင်းကို ပိတ်ခပြီးကေ ၁၉၅၂ မာ လက်ဟိ ၂၉ မီတာ (၉၅ ပေ) မြင့်ရေ မီးပြတိုက်ကို တည်ဆောက်ခရေ။ ယင်းမီးပြတိုက်ကို သီရိလင်္ကာဧ့ ပထမဆုံးသောဝန်ကြီးချုပ်ဖြစ်ရေ Rt Hon D.S. Senanayake က ဖွင့်လှစ်ခရေ။ ကွန်ကရစ်အောက်ခံဖြင့် တည်ဆောက်ထားရေ ဒေမီးပြတိုက်သည် ၁၂ မီတာ (၃၉ ပေ) မြင့်ရေ။ ယင်းဧ့ အောက်ခြီမာ ခြင်္သေ့ရုပ်တု လေးခု တည်ဟိရေ။ အိန္ဒိယသမုဒ္ဒရာကို မြင်ကွင်းကျယ်ပုံစံနန့် မြင်ရသဖြင့် ဒေပြတိုက်သည် မြို့ဧ့ အထင်ကရနီရာတခု ဖြစ်လာခရေ။ သီရိလင်္ကာပြည်မားစစ် ပြင်းထန်လာရေအခါမှ ဒေမီးပြတိုက်သို့ အများပြည်သူများ လာရောက်လည်ပတ်ခြင်းကို ကန့်သတ်ခရေ။ ယင်းပိုင် ပိတ်ပင်ရခြင်းကာ ဒေမီးပြတိုက်တည်ဟိရာနီရာသသည် လုံခြုံရီးမြင့်မားရေ ဇုန်အထဲတည်ဟိနိန်ရေ။ ကိုလံဘိုဆိပ်ခုံနန့် နီးကပ်စွာတည်ဟိနိန်ပြီးကေ ရီတပ်ဌာနချုပ်နန့်လည်း လမ်းတဖက်တချက်မာ တည်ဟိရေ။ ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] 9mqniqndxogae5f4g03agdiss9cbteb တမ်းပလိတ်:Taxonomy/Oreamnos 10 5061 19544 2026-07-15T14:31:51Z ~2026-39863-06 1186 Created page with "{{Don't edit this line {{{machine code|}}} |rank=genus |link=Oreamnos |parent=Caprini |extinct=<!--leave blank for "not extinct"; put "yes" for "extinct" --> |refs=<!--Shown on this page only; don't include <ref> tags --> }}" 19544 wikitext text/x-wiki {{Don't edit this line {{{machine code|}}} |rank=genus |link=Oreamnos |parent=Caprini |extinct=<!--leave blank for "not extinct"; put "yes" for "extinct" --> |refs=<!--Shown on this page only; don't include <ref> tags --> }} 2o12275ff1o56q17v7ak7c0icujo4f5 တမ်းပလိတ်:Taxonomy/Caprini 10 5062 19545 2026-07-15T14:33:01Z ~2026-39863-06 1186 Created page with "{{Don't edit this line {{{machine code|}}} |rank=tribus |link=Caprini |parent=Caprinae |refs=<!--Shown on this page only; don't include <ref> tags --> }}" 19545 wikitext text/x-wiki {{Don't edit this line {{{machine code|}}} |rank=tribus |link=Caprini |parent=Caprinae |refs=<!--Shown on this page only; don't include <ref> tags --> }} rib8z8feq1qxc7jzcq0z52vcblgs2l4 တမ်းပလိတ်:Taxonomy/Caprinae 10 5063 19546 2026-07-15T14:33:59Z ~2026-39863-06 1186 Created page with "{{Don't edit this line {{{machine code|}}} |rank=subfamilia |link=Caprinae |parent=Bovidae |always_display=true |refs=<!--Shown on this page only; don't include <ref> tags --> }}" 19546 wikitext text/x-wiki {{Don't edit this line {{{machine code|}}} |rank=subfamilia |link=Caprinae |parent=Bovidae |always_display=true |refs=<!--Shown on this page only; don't include <ref> tags --> }} 5w31ycii9aspdesj9onkds4yzmbef1t ဟမ်ဘန်တိုတာမီးပြတိုက် 0 5064 19547 2026-07-15T16:02:46Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse |name=Hambantota Lighthouse |image_name = |caption= |location=[[Hambantota]]<br />[[Southern Province, Sri Lanka|Southern Province]]<br /> [[Sri Lanka]] |coordinates = {{coord|6|07|19.2|N|81|07|37.6|E|display=inline,title}} | pushpin_map = Sri Lanka | pushpin = lighthouse | relief = 1 | pushpin_map_caption = Sri Lanka |yearbuilt = 1913 |yearlit = |yeardeactivated= |automated = |foundation = |construction = concrete and stone |shape = cylindrical..." 19547 wikitext text/x-wiki {{Infobox lighthouse |name=Hambantota Lighthouse |image_name = |caption= |location=[[Hambantota]]<br />[[Southern Province, Sri Lanka|Southern Province]]<br /> [[Sri Lanka]] |coordinates = {{coord|6|07|19.2|N|81|07|37.6|E|display=inline,title}} | pushpin_map = Sri Lanka | pushpin = lighthouse | relief = 1 | pushpin_map_caption = Sri Lanka |yearbuilt = 1913 |yearlit = |yeardeactivated= |automated = |foundation = |construction = concrete and stone |shape = cylindrical tower with gallery and lantern |marking = black and white tower and lantern |height = {{convert|14|m|ft}} | focalheight = {{convert|15|m|ft}} ||intensity= |range= {{convert|13|nmi}} |characteristic = <!---Fl (2) W 15s.---> |currentlens= |lightsource = |fogsignal = |racon = |admiralty = formerly F0838 |NGA = |ARLHS = SLI-0011 |USCG = | managingagent = }} '''ဟမ်ဘန်တိုတာမီးပြတိုက်''' ({{lang-si|හම්බන්තොට ප්‍රදීපාගාරය}}) ရေ သီရိလင်္ကာနိုင်ငံ၊ ဟမ်ဘန်တိုတာမြို့မာ တည်ဟိရေ ကျောက်အငူထက်မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။<ref>{{cite news|url=http://www.dailynews.lk/2020/02/14/features/211444/hambantota%E2%80%99s-historic-gems|title=Hambantota’s historic gems|newspaper=[[The Daily News (Sri Lanka)|The Daily News]]|first=Raja|last=Waidyasekera|date=14 February 2020|accessdate=28 June 2020}}</ref> မီးပြတိုက်ရေ ဇမ်းပွတ်ဖြင့် ပြုလုပ်ထားရေ အဝိုင်းပုံစံတာဝါဖြစ်တေ။ အမြင့် ၁၄ မီတာ (၄၆ ပေ) မြင့်ရေ။ အခန်းတခုနန့် မီးပြခန်းတခု ပါဝင်ရေ။ ၁၉၁၃ ခုနှစ်မာ တည်ဆောက်ခရေ။ William Douglass က ဒီဇိုင်းရီးဆွဲခပြီးကေ ထရိုင်နစ်တီအိမ်ရာအိန်ဂျန်နီယာကုမ္ပဏီက တည်ဆောက်ခရေ။<ref>{{cite web|url=https://www.uda.gov.lk/attachments/devplan_detailed/Development%20Plans%202019-2030/Hambnthota/English.pdf|title= Hambantota Municipal Council Development Plan: 2019 – 2030|publisher=Urban Development Authority (Hambantota Office)|page=45-46|date=2019}}</ref> မီးပြတိုက်ဌာနကို ၁၉၀၃ ခုနှစ်မာ စတင်တည်ထောင်ခရေ။<ref>{{cite web|url=https://www.ceylonlanka.info/2012/09/hambantota-light-house.html|title=Hambantota Light house|publisher=Ceylonlanka.com|accessdate=28 June 2020}}</ref> မီးပြတိုက်ကို ကျောက်တုံးတိနန့် တည်ဆောက်ထားရေ။ ၁၉၇၇ ခုနှစ်ထိအောင် ဒေမီးပြတိုက်သည် လုပ်ဆောင်နီတုန်းအဆင့်သာဖြစ်ပြီးကေ အလုပ်မလုပ်နိုင်ပါ၊၊ ၂၀၁၂ ခုနှစ်မာ ဟမ်ဘန်တိုတာဆိပ်ခုံဧ့ အရှိဖက်နန့် အနောက်ဘက် ရီကာစွာတိထက်မာ မီးပြတိုက်တိကို တည်ဆောက်ခရေ။<ref>{{cite book|title=Prostar Sailing Directions 2005 India & Bay of Bengal Enroute|publisher=ProStar Publications|date=2005|isbn=9781577856627|page=87}}</ref> ၁၉၉၉ ခုနှစ်မာ ပြန်ပနာပြင်ဆင်ခပြီးကေ အဖြူ၊ အနက် အရောင်တိနန့် ဆီးခြယ်ခရေ။ နောက်ဆုံးမှာ မီးပြတိုက်ရေ Hambantota Kachcheri ဧ့ အစိတ်အပိုင်းတခုအနိန်နန့် ဟိခရေ။ Hambantota Kachcheri မာ မြီစာရင်းရုံးခွဲတခု ဟိခရေ။ ၂၀၁၆ ခုနှစ်၊ မာ့ခ်ျလ ၂၅ ရက်နိမာ မီးပြတိုက်ကို ထိန်းသိမ်းစောင့်ယှောက်ရဖို့ရှီးဟောင်းသုတေသနနီရာတခုအဖြစ် အစိုးရက သတ်မှတ်ခရေ။<ref>{{cite journal|url=http://www.documents.gov.lk/files/gz/2016/3/2016-03-25(I-I)E.pdf|date=25 March 2016|title=PART I : SECTION (I) — GENERAL Government Notifications|journal=[[The Gazette of the Democratic Socialist Republic of Sri Lanka]]|volume=1960|archive-date=4 April 2017|access-date=9 June 2021|archive-url=https://web.archive.org/web/20170404155127/http://www.documents.gov.lk/files/gz/2016/3/2016-03-25(I-I)E.pdf|url-status=dead}}</ref> ==အရာဖတ်ရှုရန်== * {{cite book|title=Tower Hill Area Conservation Project|first=Y. G. I Saman|last=Kumara|publisher=[[University of Moratuwa]]|date=2013}} ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] 7qy8krdthcft5choq1q5m5kls153wqm 19563 19547 2026-07-15T17:32:10Z Htun Warnn Naing 1059 19563 wikitext text/x-wiki {{Infobox lighthouse |name=Hambantota Lighthouse |image_name = |caption= |location=[[Hambantota]]<br />[[Southern Province, Sri Lanka|Southern Province]]<br /> [[Sri Lanka]] |coordinates = {{coord|6|07|19.2|N|81|07|37.6|E|display=inline,title}} | pushpin_map = Sri Lanka | pushpin = lighthouse | relief = 1 | pushpin_map_caption = Sri Lanka |yearbuilt = 1913 |yearlit = |yeardeactivated= |automated = |foundation = |construction = concrete and stone |shape = cylindrical tower with gallery and lantern |marking = black and white tower and lantern |height = {{convert|14|m|ft}} | focalheight = {{convert|15|m|ft}} ||intensity= |range= {{convert|13|nmi}} |characteristic = <!---Fl (2) W 15s.---> |currentlens= |lightsource = |fogsignal = |racon = |admiralty = formerly F0838 |NGA = |ARLHS = SLI-0011 |USCG = | managingagent = }} '''ဟမ်ဘန်တိုတာမီးပြတိုက်''' ({{lang-si|හම්බන්තොට ප්‍රදීපාගාරය}}) ရေ သီရိလင်္ကာနိုင်ငံ၊ ဟမ်ဘန်တိုတာမြို့မာ တည်ဟိရေ ကျောက်အငူထက်မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။<ref>{{cite news|url=http://www.dailynews.lk/2020/02/14/features/211444/hambantota%E2%80%99s-historic-gems|title=Hambantota’s historic gems|newspaper=[[The Daily News (Sri Lanka)|The Daily News]]|first=Raja|last=Waidyasekera|date=14 February 2020|accessdate=28 June 2020}}</ref> မီးပြတိုက်ရေ ဇမ်းပွတ်ဖြင့် ပြုလုပ်ထားရေ အဝိုင်းပုံစံတာဝါဖြစ်တေ။ အမြင့် ၁၄ မီတာ (၄၆ ပေ) မြင့်ရေ။ အခန်းတခုနန့် မီးပြခန်းတခု ပါဝင်ရေ။ ၁၉၁၃ ခုနှစ်မာ တည်ဆောက်ခရေ။ William Douglass က ဒီဇိုင်းရီးဆွဲခပြီးကေ ထရိုင်နစ်တီအိမ်ရာအိန်ဂျန်နီယာကုမ္ပဏီက တည်ဆောက်ခရေ။<ref>{{cite web|url=https://www.uda.gov.lk/attachments/devplan_detailed/Development%20Plans%202019-2030/Hambnthota/English.pdf|title= Hambantota Municipal Council Development Plan: 2019 – 2030|publisher=Urban Development Authority (Hambantota Office)|page=45-46|date=2019}}</ref> မီးပြတိုက်ဌာနကို ၁၉၀၃ ခုနှစ်မာ စတင်တည်ထောင်ခရေ။<ref>{{cite web|url=https://www.ceylonlanka.info/2012/09/hambantota-light-house.html|title=Hambantota Light house|publisher=Ceylonlanka.com|accessdate=28 June 2020}}</ref> မီးပြတိုက်ကို ကျောက်တုံးတိနန့် တည်ဆောက်ထားရေ။ ၁၉၇၇ ခုနှစ်ထိအောင် ဒေမီးပြတိုက်သည် လုပ်ဆောင်နီတုန်းအဆင့်သာဖြစ်ပြီးကေ အလုပ်မလုပ်နိုင်ပါ၊၊ ၂၀၁၂ ခုနှစ်မာ ဟမ်ဘန်တိုတာဆိပ်ခုံဧ့ အရှိဖက်နန့် အနောက်ဘက် ရီကာစွာတိထက်မာ မီးပြတိုက်တိကို တည်ဆောက်ခရေ။<ref>{{cite book|title=Prostar Sailing Directions 2005 India & Bay of Bengal Enroute|publisher=ProStar Publications|date=2005|isbn=9781577856627|page=87}}</ref> ၁၉၉၉ ခုနှစ်မာ ပြန်ပနာပြင်ဆင်ခပြီးကေ အဖြူ၊ အနက် အရောင်တိနန့် ဆီးခြယ်ခရေ။ နောက်ဆုံးမှာ မီးပြတိုက်ရေ Hambantota Kachcheri ဧ့ အစိတ်အပိုင်းတခုအနိန်နန့် ဟိခရေ။ Hambantota Kachcheri မာ မြီစာရင်းရုံးခွဲတခု ဟိခရေ။ ၂၀၁၆ ခုနှစ်၊ မာ့ခ်ျလ ၂၅ ရက်နိမာ မီးပြတိုက်ကို ထိန်းသိမ်းစောင့်ယှောက်ရဖို့ရှီးဟောင်းသုတေသနနီရာတခုအဖြစ် အစိုးရက သတ်မှတ်ခရေ။<ref>{{cite journal|url=http://www.documents.gov.lk/files/gz/2016/3/2016-03-25(I-I)E.pdf|date=25 March 2016|title=PART I : SECTION (I) — GENERAL Government Notifications|journal=[[The Gazette of the Democratic Socialist Republic of Sri Lanka]]|volume=1960|archive-date=4 April 2017|access-date=9 June 2021|archive-url=https://web.archive.org/web/20170404155127/http://www.documents.gov.lk/files/gz/2016/3/2016-03-25(I-I)E.pdf|url-status=dead}}</ref> ==အရာဖတ်ရှုရန်== * {{cite book|title=Tower Hill Area Conservation Project|first=Y. G. I Saman|last=Kumara|publisher=[[University of Moratuwa]]|date=2013}} ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] 4w5rjnuzqyjbxz1y4ebpf7n0ew1sqio ပွိုင့်ပက်ဒရိုမီးပြတိုက် 0 5065 19548 2026-07-15T16:04:13Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse | name = Point Pedro Lighthouse | image_name = Point Pedro Lighthouse along with telecommunication tower.JPG | image_width = | caption = Point Pedro Lighthouse along with telecommunication tower, overshadowed by a naval communication tower | location = [[Point Pedro]]<br />[[Jaffna District]]<br />[[Northern Province, Sri Lanka|Northern Province]]<br />[[Sri Lanka]] | pushpin_map = Sri Lanka Point Pedro |..." 19548 wikitext text/x-wiki {{Infobox lighthouse | name = Point Pedro Lighthouse | image_name = Point Pedro Lighthouse along with telecommunication tower.JPG | image_width = | caption = Point Pedro Lighthouse along with telecommunication tower, overshadowed by a naval communication tower | location = [[Point Pedro]]<br />[[Jaffna District]]<br />[[Northern Province, Sri Lanka|Northern Province]]<br />[[Sri Lanka]] | pushpin_map = Sri Lanka Point Pedro | pushpin_map_caption = Location in Point Pedro | pushpin = Lighthouse | coordinates = {{coord|09|49|36.8|N|80|14|59.1|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1916 | yearlit = | automated = | yeardeactivated = | foundation = | construction = masonry tower | shape = cylindrical tower with balcony and lantern | marking = white tower and lantern | height = {{Convert|32|m|ft}} | focalheight = {{Convert|31|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = {{Convert|10|nmi|km mi}} | characteristic = Fl W 5s. | fogsignal = | racon = | admiralty = F0870 | canada = | NGA = 27228 | ARLHS = SLI-017<ref name=UNC/> | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''ပွိုင့်ပက်ဒရိုမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ ပွိုင့်ပက်ဒရိုမြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။<ref name=UNC>{{Cite rowlett|lka|date=13 February 2006}}</ref><ref>{{cite web|title=Pedro Point Light|url=http://wlol.arlhs.com/lighthouse/SLI17.html|publisher=[[Amateur Radio Lighthouse Society]]}}</ref><ref>{{cite web|title=Lighthouse Explorer: Point Pedro Light|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6415|publisher=[[Lighthouse Digest]]}}</ref> ၁၉၁၆ ခုနှစ်မာ တည်ဆောက်ခရေ။ အမြင့် ၃၂ မီတာ (၁၀၅ ပေ) အဖြူရောင်မီးပြတိုက်ဖြစ်ပြီးကေ အဝိုင်းပုံစံဇမ်းပွတ်တာဝါ ဖြစ်တေ။ အလင်းရောင်မီးနန့် အခန်းများ ပါဝင်ရေ။ သီရိလင်္ကာရီတပ်ဧ့ ကြီးမားရေ ဆက်သွယ်ရီးတာဝါတိုင်သည် ဒေမီးပြတိုက်ကို ပုပြက်လားလီခရေ။ <ref>{{cite news|title=Point Pedro, the northern tip|url=http://www.sundayobserver.lk/2010/10/03/mag09.asp|work=[[Sunday Observer (Sri Lanka)]]|date=3 October 2010|accessdate=4 June 2021|archivedate=21 June 2015|archiveurl=https://web.archive.org/web/20150621185422/http://www.sundayobserver.lk/2010/10/03/mag09.asp}}</ref> ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ပွိုင့်ပက်ဒရိုမီးပြတိုက်]] 9hq6k7eod0j7tx9tump2eaxz1bs9lvr အိုလုဗီမီးပြတိုက် 0 5066 19549 2026-07-15T16:07:00Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse | name = Oluvil Lighthouse | image = | image_name = Oluvil Lighthouse 2.jpg | image_width = | caption = Oluvil Lighthouse | location = [[Oluvil]]<br />[[Ampara District]]<br /> [[Sri Lanka]] | pushpin_map = Sri Lanka | pushpin_map_caption = Sri Lanka | pushpin = Lighthouse | relief = 1 | coordinates ={{Coord|07|17|25.5|N|81|52|02.2|E|region:LK|display=inline,title}} | coordinates_f..." 19549 wikitext text/x-wiki {{Infobox lighthouse | name = Oluvil Lighthouse | image = | image_name = Oluvil Lighthouse 2.jpg | image_width = | caption = Oluvil Lighthouse | location = [[Oluvil]]<br />[[Ampara District]]<br /> [[Sri Lanka]] | pushpin_map = Sri Lanka | pushpin_map_caption = Sri Lanka | pushpin = Lighthouse | relief = 1 | coordinates ={{Coord|07|17|25.5|N|81|52|02.2|E|region:LK|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1999<ref>{{cite web|title=Oluvil Light house|url=http://www.ceylonlanka.info/2012/09/oluvil-light-house.html|publisher=ceylonlanka.info|accessdate=8 February 2015}}</ref> | yearlit = 1999<ref>{{cite web|url=http://www.slpa.lk/milstones.asp?chk=1|title=Milestones|publisher=[[Sri Lanka Ports Authority]]|accessdate=9 February 2015|url-status=dead|archiveurl=https://web.archive.org/web/20150209081842/http://www.slpa.lk/milstones.asp?chk=1|archivedate=9 February 2015}}</ref> | automated = | yeardeactivated = | foundation = | construction = concrete tower | shape = cylindrical tower with balcony and lantern | marking = white tower and lantern | height = {{Convert|24|m|ft}} | focalheight = {{Convert|24.9|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = | characteristic = Fl W 10s.<ref name="LD"/> | fogsignal = | racon = | admiralty = F0845<ref name="UNC">{{cite rowlett|lka|accessdate=8 February 2015}}</ref> | canada = | NGA = not listed | ARLHS = SLI 026<ref>{{cite web|title=Oluvil Light|url=http://wlol.arlhs.com/lighthouse/SLI26.html|publisher=[[Amateur Radio Lighthouse Society]]|accessdate=8 February 2015}}</ref> | USCG = | country = | countrynumber = | countrylink = | managingagent = Sri Lanka Ports Authority | heritage = }} '''အိုလုဗီမီးပြတိုက်''' ({{lang-si|ඔලුවිල් ප්‍රදීපාගාරය}}) ရေ [[သီရိလင်္ကာနိုင်ငံ]] အရှိတောင်ကမ်းရိုးတန်း၊ အိုလုဗီမြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ ကယ်မုနိုင်မြို့မှ တောင်ဘက် ၁၂ ကီလိုမီတာ (၇.၅ မိုင်) အကွာမာ တည်ဟိရေ။<ref name="UNC"/> သီရိလင်္ကာဆိပ်ခုံအာဏာပိုင်က ဒေမီးပြတိုက်ကို ထိန်းသိမ်းခြင်း၊ လုပ်ဆောင်ခြင်းများ ဆောင်ရွက်ရေ။ ၂၀၁၂ - ၂၀၁၃ မာ ဟမ်ဘန်တိုတဆိပ်ခုံနန့် ကိုလံဘိုဆိပ်ခုံရို့ တိုးချဲ့ခြင်းများ မလုပ်ဆောင်မီ သီရိလင်္ကာလွတ်လပ်ရီးရယားနောက်မာ ပထမဆုံးတည်ဆောက်ခဲ့ရေ မီးပြတိုက်ဖြစ်တေ။ အမြင့်သည် ၂၄ မီတာ (၇၉ ပေ) ဟိပြီးး အဖြူရောင်ဆလင်ဒေချင့်ကွန်ကရစ်မီးပြတိုက်တာဝါဖြစ်တေ။ ၁၉၉၉ ခုနှစ်မာ အိုလုဗီဆိပ်ခုံဖွံ့ဖြိုးရီးရေ အစိတ်အပိုင်းတခုအနိန်နန့် တည်ဆောက်ခရေ။ တည်ဆောက်ရာမာ အလင်းရောင်မီးနန့် အခန်းများပါဝင်ရေ။ <ref name="UNC"/><ref>{{cite news|url=http://www.sundayobserver.lk/2013/09/01/fea11.asp|title=Oluvil Port Development project to create 10,000 jobs by 2015|newspaper=[[Sunday Observer (Sri Lanka)|Sunday Observer]]|date=1 September 2013|last=Sirimane|first=Shirajiv|accessdate=9 February 2015|archivedate=1 September 2013|archiveurl=https://web.archive.org/web/20130901121811/http://www.sundayobserver.lk/2013/09/01/fea11.asp}}</ref>ပြတိုက်ကို ငယ်ရေတထပ်အဆောက်အဦတခုနန့် ချိတ်ဆက်ထားရေ။<ref name="UNC"/> မီးပြတိုက်ကို ၁၉၉၉ ခုနှစ်၊ ဂျုန်လ ၁၉ ရက်နိမာ သီရိလင်္ကာဆိပ်ခုံဖွံ့ဖြိုးရီး၊ ပြုပျင်ရီးနန့် ပျင်ဆင်ရီးဝန်ကြီးနန့် သီရိလင်္ကာမူဆလင်ကွန်ဂရက်ဂေါင်းဆောင် M. H. M. Ashraff ရို့က ဖွင့်လှစ်ပီးခရေ။ ==၂၀၀၄ ခုနှစ် ဆူနာမီ== ၂၀၀၄ ခုနှစ်မာ [[အိန္ဒိယသမုဒ္ဒရာ]]ဆူနာမီဖြစ်ပေါ်ခရေ ဆိပ်ခုံမြို့နန့် မီးပြတိုက်ရို့ ပျက်စီးခရေ။<ref>{{cite web|url=http://www.tamilnet.com/art.html?catid=79&artid=13812|title=Muslims on Tsunami hit southeast coast suffer heavily|publisher=Tamilnet|date=31 December 2004|accessdate=9 February 2015}}</ref> ထိုအပျက်အစီးတိကို ပြင်ဆင်ခရေ။<ref name="UNC"/><ref>{{cite web|title=Oluvil Lighthouse|url=http://www.thesrilankaguide.com/2011-04-19-08-39-43/eastern-province/oluvil-lighthouse|publisher=RSP Holdings|work=The Sri Lanka Guide|accessdate=8 February 2015|archivedate=7 February 2015|archiveurl=https://web.archive.org/web/20150207211103/http://www.thesrilankaguide.com/2011-04-19-08-39-43/eastern-province/oluvil-lighthouse}}</ref> ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] hmorspluqfmyqq91zqgcjapuvzadvab 19565 19549 2026-07-15T17:32:54Z Htun Warnn Naing 1059 19565 wikitext text/x-wiki {{Infobox lighthouse | name = Oluvil Lighthouse | image = | image_name = Oluvil Lighthouse 2.jpg | image_width = | caption = Oluvil Lighthouse | location = [[Oluvil]]<br />[[Ampara District]]<br /> [[Sri Lanka]] | pushpin_map = Sri Lanka | pushpin_map_caption = Sri Lanka | pushpin = Lighthouse | relief = 1 | coordinates ={{Coord|07|17|25.5|N|81|52|02.2|E|region:LK|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1999<ref>{{cite web|title=Oluvil Light house|url=http://www.ceylonlanka.info/2012/09/oluvil-light-house.html|publisher=ceylonlanka.info|accessdate=8 February 2015}}</ref> | yearlit = 1999<ref>{{cite web|url=http://www.slpa.lk/milstones.asp?chk=1|title=Milestones|publisher=[[Sri Lanka Ports Authority]]|accessdate=9 February 2015|url-status=dead|archiveurl=https://web.archive.org/web/20150209081842/http://www.slpa.lk/milstones.asp?chk=1|archivedate=9 February 2015}}</ref> | automated = | yeardeactivated = | foundation = | construction = concrete tower | shape = cylindrical tower with balcony and lantern | marking = white tower and lantern | height = {{Convert|24|m|ft}} | focalheight = {{Convert|24.9|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = | characteristic = Fl W 10s.<ref name="LD"/> | fogsignal = | racon = | admiralty = F0845<ref name="UNC">{{cite rowlett|lka|accessdate=8 February 2015}}</ref> | canada = | NGA = not listed | ARLHS = SLI 026<ref>{{cite web|title=Oluvil Light|url=http://wlol.arlhs.com/lighthouse/SLI26.html|publisher=[[Amateur Radio Lighthouse Society]]|accessdate=8 February 2015}}</ref> | USCG = | country = | countrynumber = | countrylink = | managingagent = Sri Lanka Ports Authority | heritage = }} '''အိုလုဗီမီးပြတိုက်''' ({{lang-si|ඔලුවිල් ප්‍රදීපාගාරය}}) ရေ [[သီရိလင်္ကာနိုင်ငံ]] အရှိတောင်ကမ်းရိုးတန်း၊ အိုလုဗီမြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ ကယ်မုနိုင်မြို့မှ တောင်ဘက် ၁၂ ကီလိုမီတာ (၇.၅ မိုင်) အကွာမာ တည်ဟိရေ။<ref name="UNC"/> သီရိလင်္ကာဆိပ်ခုံအာဏာပိုင်က ဒေမီးပြတိုက်ကို ထိန်းသိမ်းခြင်း၊ လုပ်ဆောင်ခြင်းများ ဆောင်ရွက်ရေ။ ၂၀၁၂ - ၂၀၁၃ မာ ဟမ်ဘန်တိုတဆိပ်ခုံနန့် ကိုလံဘိုဆိပ်ခုံရို့ တိုးချဲ့ခြင်းများ မလုပ်ဆောင်မီ သီရိလင်္ကာလွတ်လပ်ရီးရယားနောက်မာ ပထမဆုံးတည်ဆောက်ခဲ့ရေ မီးပြတိုက်ဖြစ်တေ။ အမြင့်သည် ၂၄ မီတာ (၇၉ ပေ) ဟိပြီးး အဖြူရောင်ဆလင်ဒေချင့်ကွန်ကရစ်မီးပြတိုက်တာဝါဖြစ်တေ။ ၁၉၉၉ ခုနှစ်မာ အိုလုဗီဆိပ်ခုံဖွံ့ဖြိုးရီးရေ အစိတ်အပိုင်းတခုအနိန်နန့် တည်ဆောက်ခရေ။ တည်ဆောက်ရာမာ အလင်းရောင်မီးနန့် အခန်းများပါဝင်ရေ။ <ref name="UNC"/><ref>{{cite news|url=http://www.sundayobserver.lk/2013/09/01/fea11.asp|title=Oluvil Port Development project to create 10,000 jobs by 2015|newspaper=[[Sunday Observer (Sri Lanka)|Sunday Observer]]|date=1 September 2013|last=Sirimane|first=Shirajiv|accessdate=9 February 2015|archivedate=1 September 2013|archiveurl=https://web.archive.org/web/20130901121811/http://www.sundayobserver.lk/2013/09/01/fea11.asp}}</ref>ပြတိုက်ကို ငယ်ရေတထပ်အဆောက်အဦတခုနန့် ချိတ်ဆက်ထားရေ။<ref name="UNC"/> မီးပြတိုက်ကို ၁၉၉၉ ခုနှစ်၊ ဂျုန်လ ၁၉ ရက်နိမာ သီရိလင်္ကာဆိပ်ခုံဖွံ့ဖြိုးရီး၊ ပြုပျင်ရီးနန့် ပျင်ဆင်ရီးဝန်ကြီးနန့် သီရိလင်္ကာမူဆလင်ကွန်ဂရက်ဂေါင်းဆောင် M. H. M. Ashraff ရို့က ဖွင့်လှစ်ပီးခရေ။ ==၂၀၀၄ ခုနှစ် ဆူနာမီ== ၂၀၀၄ ခုနှစ်မာ [[အိန္ဒိယသမုဒ္ဒရာ]]ဆူနာမီဖြစ်ပေါ်ခရေ ဆိပ်ခုံမြို့နန့် မီးပြတိုက်ရို့ ပျက်စီးခရေ။<ref>{{cite web|url=http://www.tamilnet.com/art.html?catid=79&artid=13812|title=Muslims on Tsunami hit southeast coast suffer heavily|publisher=Tamilnet|date=31 December 2004|accessdate=9 February 2015}}</ref> ထိုအပျက်အစီးတိကို ပြင်ဆင်ခရေ။<ref name="UNC"/><ref>{{cite web|title=Oluvil Lighthouse|url=http://www.thesrilankaguide.com/2011-04-19-08-39-43/eastern-province/oluvil-lighthouse|publisher=RSP Holdings|work=The Sri Lanka Guide|accessdate=8 February 2015|archivedate=7 February 2015|archiveurl=https://web.archive.org/web/20150207211103/http://www.thesrilankaguide.com/2011-04-19-08-39-43/eastern-province/oluvil-lighthouse}}</ref> ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] 1vvkqylr727ax6a13q5w0s0rzul0i7n ဒွန်ဒရာထိပ်မီးပြတိုက် 0 5067 19550 2026-07-15T16:12:51Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse |name=Dondra Head Lighthouse |location=[[Dondra|Dondra Head]]<br />[[Southern Province, Sri Lanka|Southern Province]]<br />[[Sri Lanka]] |image_name=Dondra Head Lighthouse - ATennakoon.jpg |caption=Dondra Head lighthouse | pushpin_map = Sri Lanka | relief = 1 | pushpin = lighthouse | pushpin_map_caption = Sri Lanka |coordinates = {{coord|5|55|16.71|N|80|35|38.73|E|region:LK-31_type:landmark|display=inline,title}} | coordinates_footnotes = |yearbui..." 19550 wikitext text/x-wiki {{Infobox lighthouse |name=Dondra Head Lighthouse |location=[[Dondra|Dondra Head]]<br />[[Southern Province, Sri Lanka|Southern Province]]<br />[[Sri Lanka]] |image_name=Dondra Head Lighthouse - ATennakoon.jpg |caption=Dondra Head lighthouse | pushpin_map = Sri Lanka | relief = 1 | pushpin = lighthouse | pushpin_map_caption = Sri Lanka |coordinates = {{coord|5|55|16.71|N|80|35|38.73|E|region:LK-31_type:landmark|display=inline,title}} | coordinates_footnotes = |yearbuilt = 1890 |yearlit = |yeardeactivated= |automated= |foundation= |construction = brick tower |shape = octagonal tower with balcony and lantern |marking = white tower, yellow windows |height={{convert|49|m|ft|abbr=on}} | focalheight = {{convert|47|m|ft}} | lens = | currentlens = | lightsource = mains power |intensity= |range= {{Convert|28|nmi|km mi}} |characteristic =Fl W 5s.<ref name="LD"/> |fogsignal = |racon = |admiralty = F0836 |NGA = 27276 |ARLHS = SLI-001 |USCG = | managingagent = Sri Lanka Ports Authority }} '''ဒွန်ဒရာထိပ်မီးပြတိုက်''' သီရိလင်္ကာနိုင်ငံတောင်ဘက်စွန်းအပိုင်း၊ ဒွန်ဒရာမာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ သီရိလင်္ကာဧ့ အမြင့်ဆုံးမီးပြတိုက်တခု ဖြစ်တေ။<ref name="LD">{{cite web|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=2075|title=Dondra Head Light|work=Lighthouse Explorer|publisher=Foghorn Publishing|accessdate=11 December 2014}}</ref> အရှိတောင်အာသျှဧ့ အမြင့်ဆုံးမီးပြတိုက်တခုဖြစ်တေ။ သီရိလင်္ကာဆိပ်ခုံအာဏာပိုင်က ထိန်းသိမ်းလုပ်ဆောင်ရေ။ ဒွန်ဒရာရွာဧ့ နံဘေးမာ တည်ဟိပြီး မတရာမြို့ဧ့ အရှိတောင်ဘက် ၆ ကီလိုမီတာလှောက် (၃.၇ မိုင်) အကွာမာ တည်ဟိရေ။ ဒွန်ဒရာဆိုစွာမာ ဒေသမား Sinhala ဘာသာစကားဖြင့် "ဒေဝီ - နုဝရ" ဧ့ အဓိပ္ပာယ်ဆင်တူရေ ဘာသာစကား ဖြစ်တေ။ ဒေဝီ ဆိုစွာမာ နတ်ဘုရားဖြစ်ပြီးကေ၊ နုဝရဆိုစွာမာ မြို့ ဟု အဓိပ္ပာယ်ရရေ။ ဒွန်ဒရာဆိုစွာက နာမည်မာ "နတ်ဘုရားတိ၏ မြို့တော်" ဟူရေ အဓိပ္ပာယ်ဆဖြစ်တေ။ ==သမိုင်း== ==ပြင်ပလင့်များ== ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] iaqqxitj2nmvhsjl9h8q6694jktaggl 19568 19550 2026-07-15T17:33:56Z Htun Warnn Naing 1059 19568 wikitext text/x-wiki {{Infobox lighthouse |name=Dondra Head Lighthouse |location=[[Dondra|Dondra Head]]<br />[[Southern Province, Sri Lanka|Southern Province]]<br />[[Sri Lanka]] |image_name=Dondra Head Lighthouse - ATennakoon.jpg |caption=Dondra Head lighthouse | pushpin_map = Sri Lanka | relief = 1 | pushpin = lighthouse | pushpin_map_caption = Sri Lanka |coordinates = {{coord|5|55|16.71|N|80|35|38.73|E|region:LK-31_type:landmark|display=inline,title}} | coordinates_footnotes = |yearbuilt = 1890 |yearlit = |yeardeactivated= |automated= |foundation= |construction = brick tower |shape = octagonal tower with balcony and lantern |marking = white tower, yellow windows |height={{convert|49|m|ft|abbr=on}} | focalheight = {{convert|47|m|ft}} | lens = | currentlens = | lightsource = mains power |intensity= |range= {{Convert|28|nmi|km mi}} |characteristic =Fl W 5s.<ref name="LD"/> |fogsignal = |racon = |admiralty = F0836 |NGA = 27276 |ARLHS = SLI-001 |USCG = | managingagent = Sri Lanka Ports Authority }} '''ဒွန်ဒရာထိပ်မီးပြတိုက်''' သီရိလင်္ကာနိုင်ငံတောင်ဘက်စွန်းအပိုင်း၊ ဒွန်ဒရာမာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ သီရိလင်္ကာဧ့ အမြင့်ဆုံးမီးပြတိုက်တခု ဖြစ်တေ။<ref name="LD">{{cite web|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=2075|title=Dondra Head Light|work=Lighthouse Explorer|publisher=Foghorn Publishing|accessdate=11 December 2014}}</ref> အရှိတောင်အာသျှဧ့ အမြင့်ဆုံးမီးပြတိုက်တခုဖြစ်တေ။ သီရိလင်္ကာဆိပ်ခုံအာဏာပိုင်က ထိန်းသိမ်းလုပ်ဆောင်ရေ။ ဒွန်ဒရာရွာဧ့ နံဘေးမာ တည်ဟိပြီး မတရာမြို့ဧ့ အရှိတောင်ဘက် ၆ ကီလိုမီတာလှောက် (၃.၇ မိုင်) အကွာမာ တည်ဟိရေ။ ဒွန်ဒရာဆိုစွာမာ ဒေသမား Sinhala ဘာသာစကားဖြင့် "ဒေဝီ - နုဝရ" ဧ့ အဓိပ္ပာယ်ဆင်တူရေ ဘာသာစကား ဖြစ်တေ။ ဒေဝီ ဆိုစွာမာ နတ်ဘုရားဖြစ်ပြီးကေ၊ နုဝရဆိုစွာမာ မြို့ ဟု အဓိပ္ပာယ်ရရေ။ ဒွန်ဒရာဆိုစွာက နာမည်မာ "နတ်ဘုရားတိ၏ မြို့တော်" ဟူရေ အဓိပ္ပာယ်ဆဖြစ်တေ။ ==သမိုင်း== ==ပြင်ပလင့်များ== ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] 3pyvktnumdeq1l7v8eo63r4klszieni ကိုလံဘိုမီးပြတိုက်ဟောင်း 0 5068 19551 2026-07-15T16:27:53Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse |name=Old Colombo Lighthouse<br />''Clock Tower'' | image_name = LK-colombo-uhrturm.jpg | image_width = | caption = The clock tower lighthouse |location= [[Fort (Colombo)|Fort]]<br /> [[Colombo]]<br /> [[Sri Lanka]] | pushpin_map = Sri Lanka Colombo Central | pushpin_map_caption = Location in central Colombo | pushpin = lighthouse | relief = 1 | coordinates = {{coord|6|56|5|N|79|50|34|E|display=inline,title}} | coordinates_footn..." 19551 wikitext text/x-wiki {{Infobox lighthouse |name=Old Colombo Lighthouse<br />''Clock Tower'' | image_name = LK-colombo-uhrturm.jpg | image_width = | caption = The clock tower lighthouse |location= [[Fort (Colombo)|Fort]]<br /> [[Colombo]]<br /> [[Sri Lanka]] | pushpin_map = Sri Lanka Colombo Central | pushpin_map_caption = Location in central Colombo | pushpin = lighthouse | relief = 1 | coordinates = {{coord|6|56|5|N|79|50|34|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1829 (first) | yearlit = 1865 | automated = no | yeardeactivated = 1952 | foundation = | construction = brick tower | shape = square tower with balcony and lantern | marking = white tower with stone trim, grey metallic lantern | height = {{Convert|29|m|ft|abbr=on}} | focalheight = | lens = | currentlens = | lightsource = | intensity = | range = | characteristic = | fogsignal = | racon = | admiralty = | NGA = | ARLHS = SLI-021 | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''ကိုလံဘိုမီးပြတိုက်ဟောင်း''' သို့မဟုတ် '''ကိုလံဘိုခံတပ်နာရီစင်''' ရေ သီရိလင်္ကာနို်င်ငံ၊ ကိုလံဘိုမြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ ဂုချိန်ခါမာ နာရီစင်တခု အဖြစ် တည်ဟိနိန်ရေ။ ဒေမီးပြတိုက်သည် အလုပ်လုပ်ဆောင်မှု မဟိတော့ပေ၊ ယကေလေ့ ဂုချိန်ခါမာ နာရီစင်တခုအဖြစ် ကျန်ဟိနီရေ။ ယင်းသည် ကိုလံဘိုခံတပ်ဟိ Janadhipathi Mawatha (အယင် Queens Road) နန့် ချသမ်လမ်းနှစ်ခု ဆုံရာမာ တည်ဟိရေ။ ==သမိုင်းကြောင်း== [[File:Queen Street, showing light house, Colombo (NYPL Hades-2359794-4044559).jpg|thumb|left|200px|Queen Street, showing light house in 1907.]] တာဝါကို နာရီစင်တခုအဖြစ် ၁၈၅၆ - ၅၇ မာ တည်ဆောက်ခပြီးကေ ၁၈၅၇ ခုနှစ် ဖေဖဝါရီလ ၂၅ ရက်နိမာ ပြီးစီးခရေ။<ref name="ST">{{cite news|url=http://www.sundaytimes.lk/060625/plus/plus13.0.html|title=The Big Ben of Colombo - the Chatham Street clock tower|newspaper=[[The Sunday Times (Sri Lanka)|The Sunday Times]]|last=Paranavitana|first=Dr. K. D.|date=25 June 2006|accessdate=8 October 2014}}</ref> တာဝါကို အုပ်ချုပ်သူ Sir Henry George Ward (1797 – 1860) ဧ့ ဇနီးဖြစ်သူ Emily Elizabeth Ward က ဒီဇို်င်းရီးဆွဲခရေ။<ref name="ST"/><ref>{{cite web|url=https://www.mit.edu/~dfm/genealogy/ward.html|title=Genealogy of Henry George Ward|publisher=Daniel Morgan's Genealogy Pages|date=31 December 2010|accessdate=8 October 2014}}</ref> တည်ဆောက်မှုကို ပြည်သူ့လုပ်ငန်းများဌာနက ဒါရိုက်တာဖြစ်သူ Mr John Flemming Churchill ဧ့ ဦးဆောင်မှုအောက်မာ တာဝန်ယူခရေ။ ထိုအချိန်က ၂၉ မီတာ (၉၅ ပေ) အမြင့်ဟိရေ ဒေမီးပြတိုက်ရေ ကိုလံဘိုမာ အမြင့်ဆုံး အဆောက်အဦ ဖြစ်တေ။<ref>{{cite web|title=Lighthouse Explorer: Colombo Clock Tower|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=2076|publisher=[[Lighthouse Digest]]|accessdate=8 October 2014|archive-date=12 October 2014|archive-url=https://web.archive.org/web/20141012215054/http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=2076}}</ref> မူလနာရီစင်တည်ဆောက်ဖို့အစီအစိုင်ကို အုပ်ချုပ်သူ Sir Robert Brownrigg (1759 – 1833) က ၁၈၁၄ ခုနှစ်မာ £1,200 ဖြင့် ပြုလုပ်ခရေ။ ယကေလေ့ ယင်းကို ဂူဒင်ဂဒင်တခုမာသာ ထိန်းသိမ်းထားခရရေ။ စီးပွားရီးဆိုင်ရေ အကြောင်းတိကြောင့် ယင်းကို ၁၈၅၇ ခုနှစ် ရောက်ယင့်အချိန်မှ နောက်ဆုံးပြုလုပ်ခကတ်ရရေ။ နံဘေးအနားဟိ အဆောက်အဦတိစွာ မီးပြတိုက်ဧ့ အလင်းရောင်ကို ဖုံးကွယ်သဖြင့် ဒေမီးပြတိုက်ကို ပိတ်ခပြီး ၁၉၅၂ ခုနှစ်၊ ဇူလို်ငလ ၁၂ ရက်နိမာ ဖျက်သိမ်းခရေ။ ယင်းဧ့ နီရာတွင် ခေတ်မီ ဂယ်လီဘတ်မီးပြတိုက်ကို အစားထိုးကာ တည်ဆောက်ခရေ။ ==အသွင်အပြင်== ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] 4h2zcvxnf9c0ha7ydfug1h5aqssqvxy 19562 19551 2026-07-15T17:31:43Z Htun Warnn Naing 1059 19562 wikitext text/x-wiki {{Infobox lighthouse |name=Old Colombo Lighthouse<br />''Clock Tower'' | image_name = LK-colombo-uhrturm.jpg | image_width = | caption = The clock tower lighthouse |location= [[Fort (Colombo)|Fort]]<br /> [[Colombo]]<br /> [[Sri Lanka]] | pushpin_map = Sri Lanka Colombo Central | pushpin_map_caption = Location in central Colombo | pushpin = lighthouse | relief = 1 | coordinates = {{coord|6|56|5|N|79|50|34|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1829 (first) | yearlit = 1865 | automated = no | yeardeactivated = 1952 | foundation = | construction = brick tower | shape = square tower with balcony and lantern | marking = white tower with stone trim, grey metallic lantern | height = {{Convert|29|m|ft|abbr=on}} | focalheight = | lens = | currentlens = | lightsource = | intensity = | range = | characteristic = | fogsignal = | racon = | admiralty = | NGA = | ARLHS = SLI-021 | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''ကိုလံဘိုမီးပြတိုက်ဟောင်း''' သို့မဟုတ် '''ကိုလံဘိုခံတပ်နာရီစင်''' ရေ သီရိလင်္ကာနို်င်ငံ၊ ကိုလံဘိုမြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ ဂုချိန်ခါမာ နာရီစင်တခု အဖြစ် တည်ဟိနိန်ရေ။ ဒေမီးပြတိုက်သည် အလုပ်လုပ်ဆောင်မှု မဟိတော့ပေ၊ ယကေလေ့ ဂုချိန်ခါမာ နာရီစင်တခုအဖြစ် ကျန်ဟိနီရေ။ ယင်းသည် ကိုလံဘိုခံတပ်ဟိ Janadhipathi Mawatha (အယင် Queens Road) နန့် ချသမ်လမ်းနှစ်ခု ဆုံရာမာ တည်ဟိရေ။ ==သမိုင်းကြောင်း== [[File:Queen Street, showing light house, Colombo (NYPL Hades-2359794-4044559).jpg|thumb|left|200px|Queen Street, showing light house in 1907.]] တာဝါကို နာရီစင်တခုအဖြစ် ၁၈၅၆ - ၅၇ မာ တည်ဆောက်ခပြီးကေ ၁၈၅၇ ခုနှစ် ဖေဖဝါရီလ ၂၅ ရက်နိမာ ပြီးစီးခရေ။<ref name="ST">{{cite news|url=http://www.sundaytimes.lk/060625/plus/plus13.0.html|title=The Big Ben of Colombo - the Chatham Street clock tower|newspaper=[[The Sunday Times (Sri Lanka)|The Sunday Times]]|last=Paranavitana|first=Dr. K. D.|date=25 June 2006|accessdate=8 October 2014}}</ref> တာဝါကို အုပ်ချုပ်သူ Sir Henry George Ward (1797 – 1860) ဧ့ ဇနီးဖြစ်သူ Emily Elizabeth Ward က ဒီဇို်င်းရီးဆွဲခရေ။<ref name="ST"/><ref>{{cite web|url=https://www.mit.edu/~dfm/genealogy/ward.html|title=Genealogy of Henry George Ward|publisher=Daniel Morgan's Genealogy Pages|date=31 December 2010|accessdate=8 October 2014}}</ref> တည်ဆောက်မှုကို ပြည်သူ့လုပ်ငန်းများဌာနက ဒါရိုက်တာဖြစ်သူ Mr John Flemming Churchill ဧ့ ဦးဆောင်မှုအောက်မာ တာဝန်ယူခရေ။ ထိုအချိန်က ၂၉ မီတာ (၉၅ ပေ) အမြင့်ဟိရေ ဒေမီးပြတိုက်ရေ ကိုလံဘိုမာ အမြင့်ဆုံး အဆောက်အဦ ဖြစ်တေ။<ref>{{cite web|title=Lighthouse Explorer: Colombo Clock Tower|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=2076|publisher=[[Lighthouse Digest]]|accessdate=8 October 2014|archive-date=12 October 2014|archive-url=https://web.archive.org/web/20141012215054/http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=2076}}</ref> မူလနာရီစင်တည်ဆောက်ဖို့အစီအစိုင်ကို အုပ်ချုပ်သူ Sir Robert Brownrigg (1759 – 1833) က ၁၈၁၄ ခုနှစ်မာ £1,200 ဖြင့် ပြုလုပ်ခရေ။ ယကေလေ့ ယင်းကို ဂူဒင်ဂဒင်တခုမာသာ ထိန်းသိမ်းထားခရရေ။ စီးပွားရီးဆိုင်ရေ အကြောင်းတိကြောင့် ယင်းကို ၁၈၅၇ ခုနှစ် ရောက်ယင့်အချိန်မှ နောက်ဆုံးပြုလုပ်ခကတ်ရရေ။ နံဘေးအနားဟိ အဆောက်အဦတိစွာ မီးပြတိုက်ဧ့ အလင်းရောင်ကို ဖုံးကွယ်သဖြင့် ဒေမီးပြတိုက်ကို ပိတ်ခပြီး ၁၉၅၂ ခုနှစ်၊ ဇူလို်ငလ ၁၂ ရက်နိမာ ဖျက်သိမ်းခရေ။ ယင်းဧ့ နီရာတွင် ခေတ်မီ ဂယ်လီဘတ်မီးပြတိုက်ကို အစားထိုးကာ တည်ဆောက်ခရေ။ ==အသွင်အပြင်== ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] 8qhn7z5didi9v9wgj50sall8uha4peg မန်နာကျွန်းမီးပြတိုက် (အသစ်) 0 5069 19552 2026-07-15T16:29:07Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse | name = Mannar Island Lighthouse (new)<br />''Talaimannar'' | image_name = Lighthouse, Talaimannar.jpg | image_width = | caption = Mannar Island Lighthouse in 2014 | location = [[Mannar Island]]<br />[[Talaimannar]]<br />[[Sri Lanka]] | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|06|26.8|N|79|43|51.8|E|di..." 19552 wikitext text/x-wiki {{Infobox lighthouse | name = Mannar Island Lighthouse (new)<br />''Talaimannar'' | image_name = Lighthouse, Talaimannar.jpg | image_width = | caption = Mannar Island Lighthouse in 2014 | location = [[Mannar Island]]<br />[[Talaimannar]]<br />[[Sri Lanka]] | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|06|26.8|N|79|43|51.8|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1915 | yearlit = | automated = | yeardeactivated = | foundation = | construction = masonry tower | shape = cylindrical tower with balcony and lantern | marking = white tower and lantern | height = {{Convert|19|m|ft}} | focalheight = {{Convert|17|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = {{Convert|10|nmi|km mi}} | characteristic = Fl W 5s. | fogsignal = | racon = | admiralty = F0884 | canada = | NGA = 27364 | ARLHS = SLI-015 | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''မန်နာကျွန်းမီးပြတိုက် (အသစ်)''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ မန်နာကျွန်းပေါ်ဟိ Talaimanner မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။<ref name=UNC>{{Cite rowlett|lka|date=13 February 2006}}</ref><ref>{{cite web|title=Mannar Island (New)/Talaimannar (New) Light|url=http://wlol.arlhs.com/lighthouse/SLI15.html|publisher=[[Amateur Radio Lighthouse Society]]}}</ref><ref>{{cite web|title=Lighthouse Explorer: Mannar Island Light (new)|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6428|publisher=[[Lighthouse Digest]]}}</ref> ၁၉၁၅ ခုနှစ်မာ တည်ဆောက်ခရေ။ အဖြူရောင်ဝန်းဝိုင်းရေဆလင်ဒါပုံစံတာဝါဖြစ်ကာ ရုပ်ပုံတိနန့် မှန်အိမ်များ ပါဝင်ရေ။ ၁၉ မီတာ (၆၂ ပေ) မြင့်ရေ။ ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] <br /> ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] q8juk9wjk6p1lstmekif0g8sotfd5ph 19569 19552 2026-07-15T17:34:17Z Htun Warnn Naing 1059 19569 wikitext text/x-wiki {{Infobox lighthouse | name = Mannar Island Lighthouse (new)<br />''Talaimannar'' | image_name = Lighthouse, Talaimannar.jpg | image_width = | caption = Mannar Island Lighthouse in 2014 | location = [[Mannar Island]]<br />[[Talaimannar]]<br />[[Sri Lanka]] | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|06|26.8|N|79|43|51.8|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1915 | yearlit = | automated = | yeardeactivated = | foundation = | construction = masonry tower | shape = cylindrical tower with balcony and lantern | marking = white tower and lantern | height = {{Convert|19|m|ft}} | focalheight = {{Convert|17|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = {{Convert|10|nmi|km mi}} | characteristic = Fl W 5s. | fogsignal = | racon = | admiralty = F0884 | canada = | NGA = 27364 | ARLHS = SLI-015 | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''မန်နာကျွန်းမီးပြတိုက် (အသစ်)''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ မန်နာကျွန်းပေါ်ဟိ Talaimanner မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။<ref name=UNC>{{Cite rowlett|lka|date=13 February 2006}}</ref><ref>{{cite web|title=Mannar Island (New)/Talaimannar (New) Light|url=http://wlol.arlhs.com/lighthouse/SLI15.html|publisher=[[Amateur Radio Lighthouse Society]]}}</ref><ref>{{cite web|title=Lighthouse Explorer: Mannar Island Light (new)|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6428|publisher=[[Lighthouse Digest]]}}</ref> ၁၉၁၅ ခုနှစ်မာ တည်ဆောက်ခရေ။ အဖြူရောင်ဝန်းဝိုင်းရေဆလင်ဒါပုံစံတာဝါဖြစ်ကာ ရုပ်ပုံတိနန့် မှန်အိမ်များ ပါဝင်ရေ။ ၁၉ မီတာ (၆၂ ပေ) မြင့်ရေ။ ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] <br /> ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] fz1b64ndti4upet5p82un82bt5896wl ကန်ကီစန်သုရိုင်မီးပြတိုက် 0 5070 19553 2026-07-15T16:30:57Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse | name = Kankesanthurai Lighthouse | image_name = | image_width = | caption = | location = Kankesanthurai<br />Northern Province, Sri Lanka<br />Sri Lanka | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|48|58.15|N|80|02|42.4|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1893 | year..." 19553 wikitext text/x-wiki {{Infobox lighthouse | name = Kankesanthurai Lighthouse | image_name = | image_width = | caption = | location = Kankesanthurai<br />Northern Province, Sri Lanka<br />Sri Lanka | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|48|58.15|N|80|02|42.4|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1893 | yearlit = | automated = | yeardeactivated = | foundation = | construction = masonry tower | shape = octagonal tower with balcony and lantern | marking = white tower and lantern | height = {{Convert|22|m|ft}} | focalheight = {{Convert|25|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = {{Convert|14|nmi|km mi}} | characteristic = Fl (3) W 15s. | fogsignal = | racon = | admiralty = F0872 | canada = | NGA = 27224 | ARLHS = SLI-012 | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''ကန်ကီစန်သုရိုင်မီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ ကန်ကီစန်သုရိုင်မြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။<ref name=UNC>{{cite web|last1=Rowlett|first1=Russ|title=Lighthouses of Sri Lanka|url=http://www.unc.edu/~rowlett/lighthouse/lka.htm|publisher=[[:en:University of North Carolina at Chapel Hill]]|date=13 February 2006}}</ref><ref>{{cite web|title=Kankesanturaï Light|url=http://wlol.arlhs.com/lighthouse/SLI12.html|publisher=Amateur Radio Lighthouse Society}}</ref><ref>{{cite web|title=Lighthouse Explorer: Kankesanturai Light|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6414|publisher=Lighthouse Digest|access-date=22 May 2021|archive-date=22 May 2021|archive-url=https://web.archive.org/web/20210522234438/http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6414}}</ref> ၁၈၉၃ ခုနှစ်မာ တည်ဆောက်ခရေ။ အမြင့် ၂၂ မီတာ (၇၂ ပေ) ဟိပြီးး မျက်နှာပြင်သျှစ်ခုပါဟိရေ ဇမ်းပွတ်တာဝါတခု ဖြစ်တေ။ မှန်အိမ်နန့် လက်မှုအနုပညာများ ပါဝင်ရေ။ သီရိလင်္ကာစစ်တပ်ဧ့ Valikamam မြောက်ပိုင်း လုံခြုံရီးတင်းကျပ်ရေဇုန်မာ တည်ဟိရေ။ ယင်းဧ့ ဖီးနားမာ ရီတပ်အခြီစိုက်နီရာ တည်ဟိရေ။ မီးပြတိုက်ရေ သီရိလင်္ကာပြည်မားစစ်အတွင်းမာ ဆိုးရွားစွာပျက်စီးခပြီးကေ အဂုအချိန်မာ အသုံးပြုခြင်းမဟိပေ။<ref name=UNC/> ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] * [https://static.panoramio.com.storage.googleapis.com/photos/large/122758098.jpg Picture of Kankesanthurai Lighthouse in 2015] {{Webarchive|url=https://web.archive.org/web/20160418044822/https://static.panoramio.com.storage.googleapis.com/photos/large/122758098.jpg |date=18 April 2016 }} ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] o9qypcko2g3nw2c2m9zuh7roxa1rzh3 19560 19553 2026-07-15T16:59:09Z Htun Warnn Naing 1059 19560 wikitext text/x-wiki {{Infobox lighthouse | name = Kankesanthurai Lighthouse | image_name = | image_width = | caption = | location = Kankesanthurai<br />Northern Province, Sri Lanka<br />Sri Lanka | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|48|58.15|N|80|02|42.4|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1893 | yearlit = | automated = | yeardeactivated = | foundation = | construction = masonry tower | shape = octagonal tower with balcony and lantern | marking = white tower and lantern | height = {{Convert|22|m|ft}} | focalheight = {{Convert|25|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = {{Convert|14|nmi|km mi}} | characteristic = Fl (3) W 15s. | fogsignal = | racon = | admiralty = F0872 | canada = | NGA = 27224 | ARLHS = SLI-012 | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''ကန်ကီစန်သုရိုင်မီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ ကန်ကီစန်သုရိုင်မြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။<ref name=UNC>{{cite web|last1=Rowlett|first1=Russ|title=Lighthouses of Sri Lanka|url=http://www.unc.edu/~rowlett/lighthouse/lka.htm|publisher=[[:en:University of North Carolina at Chapel Hill]]|date=13 February 2006}}</ref><ref>{{cite web|title=Kankesanturaï Light|url=http://wlol.arlhs.com/lighthouse/SLI12.html|publisher=Amateur Radio Lighthouse Society}}</ref><ref>{{cite web|title=Lighthouse Explorer: Kankesanturai Light|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6414|publisher=Lighthouse Digest|access-date=22 May 2021|archive-date=22 May 2021|archive-url=https://web.archive.org/web/20210522234438/http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6414}}</ref> ၁၈၉၃ ခုနှစ်မာ တည်ဆောက်ခရေ။ အမြင့် ၂၂ မီတာ (၇၂ ပေ) ဟိပြီးး မျက်နှာပြင်သျှစ်ခုပါဟိရေ ဇမ်းပွတ်တာဝါတခု ဖြစ်တေ။ မှန်အိမ်နန့် လက်မှုအနုပညာများ ပါဝင်ရေ။ သီရိလင်္ကာစစ်တပ်ဧ့ Valikamam မြောက်ပိုင်း လုံခြုံရီးတင်းကျပ်ရေဇုန်မာ တည်ဟိရေ။ ယင်းဧ့ ဖီးနားမာ ရီတပ်အခြီစိုက်နီရာ တည်ဟိရေ။ မီးပြတိုက်ရေ သီရိလင်္ကာပြည်မားစစ်အတွင်းမာ ဆိုးရွားစွာပျက်စီးခပြီးကေ အဂုအချိန်မာ အသုံးပြုခြင်းမဟိပေ။<ref name=UNC/> ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] * [https://static.panoramio.com.storage.googleapis.com/photos/large/122758098.jpg Picture of Kankesanthurai Lighthouse in 2015] {{Webarchive|url=https://web.archive.org/web/20160418044822/https://static.panoramio.com.storage.googleapis.com/photos/large/122758098.jpg |date=18 April 2016 }} ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] jaouoyhapzvc58j0zucci4rhw2uz8n2 ဘတ်တိကလိုအာမီးပြတိုက် 0 5071 19554 2026-07-15T16:32:08Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse | name = Batticaloa Lighthouse<br />''Mattuwaran'' | image_name = Batticaloa lighthouse.jpg | caption = Batticaloa Lighthouse | location = [[Batticaloa]]<br />[[Eastern Province, Sri Lanka|Eastern Province]]<br />[[Sri Lanka]] | pushpin_map = Sri Lanka | relief = 1 | pushpin = lighthouse | pushpin_map_caption = Sri Lanka | coordinates = {{coord|7|45|17.7|N|81|41|07.6|E|display=inline,title}} | yearbuilt..." 19554 wikitext text/x-wiki {{Infobox lighthouse | name = Batticaloa Lighthouse<br />''Mattuwaran'' | image_name = Batticaloa lighthouse.jpg | caption = Batticaloa Lighthouse | location = [[Batticaloa]]<br />[[Eastern Province, Sri Lanka|Eastern Province]]<br />[[Sri Lanka]] | pushpin_map = Sri Lanka | relief = 1 | pushpin = lighthouse | pushpin_map_caption = Sri Lanka | coordinates = {{coord|7|45|17.7|N|81|41|07.6|E|display=inline,title}} | yearbuilt = 1913 | yearlit = | automated = | yeardeactivated = | foundation = | construction = masonry tower | shape = tapered cylindrical tower with balcony and lantern on a stone basement | marking = white tower and lantern | height = {{convert|28|m|ft}} | focalheight = {{convert|27|m|ft}} | lens = | currentlens = | lightsource = mains power | intensity = | range = | characteristic = Fl W 3s. | fogsignal = | racon = | admiralty = F0846 | canada = | NGA = 27260 | ARLHS = SLI-003 | USCG = | country = | countrynumber = | countrylink = | managingagent = Sri Lanka Ports Authority<ref>{{Cite rowlett|lka|accessdate=2016-04-01}}</ref> }} '''ဘတ်တိကလိုအာမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံမာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ Palameenmadu ဟိ မြစ်ဝမာ တည်ဟိရေ။ ယင်းကို ၁၉၁၃ ခုနှစ်မာ ဆောက်လုပ်ခပြီး ၂၈ မီတာ မြင့်ရေ။<ref name="GoVisit">{{cite web | url=http://www.govisitsrilanka.com/Batticaloa-Lighthouse/attractions-details/21/ | title=Batticaloa Lighthouse | accessdate=February 13, 2013 | archive-date=15 May 2021 | archive-url=https://web.archive.org/web/20210515051033/https://www.govisitsrilanka.com/batticaloa-lighthouse/attractions-details/21/ }}</ref> ==တည်နီရာ== ဘတ်တိကလိုအာမီးပြတိုက်ရေ ဘတ်တိကလိုအာမြို့မှ ၅ ကီလိုမီတာလှောက် အကွာ ဘားလမ်းထက်မာ တည်ဟိရေ။ ကယ်လဒီတန်းထားနံဘေး ကန်လမ်း ("မြူးနစ်ဗစ်တိုးရီးယားချစ်ကြည်ရီးလမ်း" လို့လေ့ ခေါ်ကြ) ကတဆင့် ယင်းပါးသို့ လားရောက်နှိုင်ရေ။ Sinna Uppodai ရီအိုင်မှ ၄ ကီလိုမီတာလှောက်ရှိးဆက်လားပါက ရောက်ဟိနှိုင်ဖို့ ဖြစ်တေ။ ထိုနီရာရေ လမ်းလျှောက်ခြင်း၊ စက်သီးစီးခြင်းတိအတွက် အလွန်ကောင်းမွန်ရေ နီရာတခု ဖြစ်တေ။ ==ရုပ်ပုံများ== <gallery> File:Batticaloa light house.jpg|Batticaloa light house from Batticaloa lagoon File:Batticaloa Lighthouse.jpg|Batticaloa Lighthiuse from Batticaloa Beeach site File:Batticaloa Lighthouse Evening Time.jpg|Batticaloa Lighthouse Evening Time File:Ruins of old Batticaloa Lighthouse.JPG|Ruins of old Batticaloa Lighthouse, which was built by British Ceylon Batticaloa Lighthouse (view from above).jpg|View from the top of the lighthouse </gallery> ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] nlvz9ex7usubbjbrdhh3b8wybb2py68 19566 19554 2026-07-15T17:33:16Z Htun Warnn Naing 1059 19566 wikitext text/x-wiki {{Infobox lighthouse | name = Batticaloa Lighthouse<br />''Mattuwaran'' | image_name = Batticaloa lighthouse.jpg | caption = Batticaloa Lighthouse | location = [[Batticaloa]]<br />[[Eastern Province, Sri Lanka|Eastern Province]]<br />[[Sri Lanka]] | pushpin_map = Sri Lanka | relief = 1 | pushpin = lighthouse | pushpin_map_caption = Sri Lanka | coordinates = {{coord|7|45|17.7|N|81|41|07.6|E|display=inline,title}} | yearbuilt = 1913 | yearlit = | automated = | yeardeactivated = | foundation = | construction = masonry tower | shape = tapered cylindrical tower with balcony and lantern on a stone basement | marking = white tower and lantern | height = {{convert|28|m|ft}} | focalheight = {{convert|27|m|ft}} | lens = | currentlens = | lightsource = mains power | intensity = | range = | characteristic = Fl W 3s. | fogsignal = | racon = | admiralty = F0846 | canada = | NGA = 27260 | ARLHS = SLI-003 | USCG = | country = | countrynumber = | countrylink = | managingagent = Sri Lanka Ports Authority<ref>{{Cite rowlett|lka|accessdate=2016-04-01}}</ref> }} '''ဘတ်တိကလိုအာမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံမာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ Palameenmadu ဟိ မြစ်ဝမာ တည်ဟိရေ။ ယင်းကို ၁၉၁၃ ခုနှစ်မာ ဆောက်လုပ်ခပြီး ၂၈ မီတာ မြင့်ရေ။<ref name="GoVisit">{{cite web | url=http://www.govisitsrilanka.com/Batticaloa-Lighthouse/attractions-details/21/ | title=Batticaloa Lighthouse | accessdate=February 13, 2013 | archive-date=15 May 2021 | archive-url=https://web.archive.org/web/20210515051033/https://www.govisitsrilanka.com/batticaloa-lighthouse/attractions-details/21/ }}</ref> ==တည်နီရာ== ဘတ်တိကလိုအာမီးပြတိုက်ရေ ဘတ်တိကလိုအာမြို့မှ ၅ ကီလိုမီတာလှောက် အကွာ ဘားလမ်းထက်မာ တည်ဟိရေ။ ကယ်လဒီတန်းထားနံဘေး ကန်လမ်း ("မြူးနစ်ဗစ်တိုးရီးယားချစ်ကြည်ရီးလမ်း" လို့လေ့ ခေါ်ကြ) ကတဆင့် ယင်းပါးသို့ လားရောက်နှိုင်ရေ။ Sinna Uppodai ရီအိုင်မှ ၄ ကီလိုမီတာလှောက်ရှိးဆက်လားပါက ရောက်ဟိနှိုင်ဖို့ ဖြစ်တေ။ ထိုနီရာရေ လမ်းလျှောက်ခြင်း၊ စက်သီးစီးခြင်းတိအတွက် အလွန်ကောင်းမွန်ရေ နီရာတခု ဖြစ်တေ။ ==ရုပ်ပုံများ== <gallery> File:Batticaloa light house.jpg|Batticaloa light house from Batticaloa lagoon File:Batticaloa Lighthouse.jpg|Batticaloa Lighthiuse from Batticaloa Beeach site File:Batticaloa Lighthouse Evening Time.jpg|Batticaloa Lighthouse Evening Time File:Ruins of old Batticaloa Lighthouse.JPG|Ruins of old Batticaloa Lighthouse, which was built by British Ceylon Batticaloa Lighthouse (view from above).jpg|View from the top of the lighthouse </gallery> ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] grg6ydcs6x94sjsefj8qylqa81rvnpp မူလိုင်တိဗုမီးပြတိုက် 0 5072 19555 2026-07-15T16:33:25Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse | name = Mullaitivu Lighthouse | image_name = | image_width = | caption = | location = | pushpin_map = Sri Lanka Northern Province | relief = | pushpin_mapsize = | pushpin_map_alt = | pushpin_map_caption = Location within Northern Province | pushpin = Lighthouse | pushpin_label_position = | coordinates = {{coord|09|17|26.90|N|80|48|38.35|E|display=inline,title}} | coordinates_fo..." 19555 wikitext text/x-wiki {{Infobox lighthouse | name = Mullaitivu Lighthouse | image_name = | image_width = | caption = | location = | pushpin_map = Sri Lanka Northern Province | relief = | pushpin_mapsize = | pushpin_map_alt = | pushpin_map_caption = Location within Northern Province | pushpin = Lighthouse | pushpin_label_position = | coordinates = {{coord|09|17|26.90|N|80|48|38.35|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1896 | yearlit = | automated = | yeardeactivated = | foundation = | construction = | shape = | marking = | height = {{Convert|20|m|ft}} | focalheight = {{Convert|20|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = {{Convert|10|nmi|km mi}} | characteristic = Fl.(2) W 10s | fogsignal = | racon = | admiralty = | canada = | NGA = | ARLHS = SLI-016 | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''မူလိုင်တိဗုမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ မူလိုင်တိဗုမြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ ၁၈၉၆ ခုနှစ်မာ တည်ဆောက်ခရေ။ အမြင့် ၂၀ မီတာ (၆၆ ပေ) ဟိကာ သံဝင်ရိုးဖြင့် တည်ဆောက်ထားရေ။<ref>{{cite web|title=Mullaittivu Light|url=http://wlol.arlhs.com/lighthouse/SLI16.html|publisher=[[Amateur Radio Lighthouse Society]]}}</ref><ref>{{cite web|title=Lighthouse Explorer: Mullaittivu Light|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6416|publisher=[[Lighthouse Digest]]}}</ref> ဒေမီးပြတိုက်ရေ သီရိလင်္ကာပြည်မားစစ်ကာလအထဲ ၁၉၉၆/၉၇ မာ ဖျက်ဆီးခံရရေဟု ယုံကြည်ရရေ။ ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] a4vco2na1jujdnpirkg0llczrspk1rx 19571 19555 2026-07-15T17:35:02Z Htun Warnn Naing 1059 19571 wikitext text/x-wiki {{Infobox lighthouse | name = Mullaitivu Lighthouse | image_name = | image_width = | caption = | location = | pushpin_map = Sri Lanka Northern Province | relief = | pushpin_mapsize = | pushpin_map_alt = | pushpin_map_caption = Location within Northern Province | pushpin = Lighthouse | pushpin_label_position = | coordinates = {{coord|09|17|26.90|N|80|48|38.35|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1896 | yearlit = | automated = | yeardeactivated = | foundation = | construction = | shape = | marking = | height = {{Convert|20|m|ft}} | focalheight = {{Convert|20|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = {{Convert|10|nmi|km mi}} | characteristic = Fl.(2) W 10s | fogsignal = | racon = | admiralty = | canada = | NGA = | ARLHS = SLI-016 | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''မူလိုင်တိဗုမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ မူလိုင်တိဗုမြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ ၁၈၉၆ ခုနှစ်မာ တည်ဆောက်ခရေ။ အမြင့် ၂၀ မီတာ (၆၆ ပေ) ဟိကာ သံဝင်ရိုးဖြင့် တည်ဆောက်ထားရေ။<ref>{{cite web|title=Mullaittivu Light|url=http://wlol.arlhs.com/lighthouse/SLI16.html|publisher=[[Amateur Radio Lighthouse Society]]}}</ref><ref>{{cite web|title=Lighthouse Explorer: Mullaittivu Light|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6416|publisher=[[Lighthouse Digest]]}}</ref> ဒေမီးပြတိုက်ရေ သီရိလင်္ကာပြည်မားစစ်ကာလအထဲ ၁၉၉၆/၉၇ မာ ဖျက်ဆီးခံရရေဟု ယုံကြည်ရရေ။ ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] 5vxg7cczvyaa4db6ofm673wmzexvcze ပန်ဂုဒုတိဗုမီးပြတိုက် 0 5073 19556 2026-07-15T16:34:25Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse | name = Pungudutivu Lighthouse | image_name = | image_width = | caption = | location = [[Pungudutivu]]<br />[[Jaffna District]]<br />[[Northern Province, Sri Lanka|Northern Province]]<br />[[Sri Lanka]] | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|34|04.1|N|79|51|14.7|E|display=inline,title}} | coordin..." 19556 wikitext text/x-wiki {{Infobox lighthouse | name = Pungudutivu Lighthouse | image_name = | image_width = | caption = | location = [[Pungudutivu]]<br />[[Jaffna District]]<br />[[Northern Province, Sri Lanka|Northern Province]]<br />[[Sri Lanka]] | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|34|04.1|N|79|51|14.7|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = | yearlit = | automated = | yeardeactivated = | foundation = | construction = masonry tower | shape = | marking = | height = | focalheight = {{Convert|11|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = | characteristic = Fl W 5s. | fogsignal = | racon = | admiralty = F0877 | canada = | NGA = 27216<ref name=UNC/> | ARLHS = | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''ပန်ဂုဒုတိဗုမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ ပန်ဂုဒုတိဗုမြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ မီးပြတိုက်ရေ စတုရန်းပုံစံတာဝါတခု ဖြစ်တေ။ <ref name=UNC>{{Cite rowlett|lka|date=13 February 2006}}</ref> The lighthouse has a square tower.<ref name=UNC/> ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] 7cl7fryfrm9gpqcuzjgztfct37e7pbe 19567 19556 2026-07-15T17:33:35Z Htun Warnn Naing 1059 19567 wikitext text/x-wiki {{Infobox lighthouse | name = Pungudutivu Lighthouse | image_name = | image_width = | caption = | location = [[Pungudutivu]]<br />[[Jaffna District]]<br />[[Northern Province, Sri Lanka|Northern Province]]<br />[[Sri Lanka]] | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|34|04.1|N|79|51|14.7|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = | yearlit = | automated = | yeardeactivated = | foundation = | construction = masonry tower | shape = | marking = | height = | focalheight = {{Convert|11|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = | characteristic = Fl W 5s. | fogsignal = | racon = | admiralty = F0877 | canada = | NGA = 27216<ref name=UNC/> | ARLHS = | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''ပန်ဂုဒုတိဗုမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ ပန်ဂုဒုတိဗုမြို့မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ မီးပြတိုက်ရေ စတုရန်းပုံစံတာဝါတခု ဖြစ်တေ။ <ref name=UNC>{{Cite rowlett|lka|date=13 February 2006}}</ref> The lighthouse has a square tower.<ref name=UNC/> ==ပြင်ပလင့်များ== * [http://www.slpa.lk/ Sri Lanka Ports Authority] * [http://amazinglanka.com/wp/lighthouses-sri-lanka/ Lighthouses of Sri Lanka] ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] pfz1opyn0tiibxkrd6xmychzwst4i3a မန်နာကျွန်းမီးပြတိုက် (အဟောင်း) 0 5074 19557 2026-07-15T16:35:26Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse | name = Mannar Island Lighthouse (old) | image_name = | image_width = | caption = | location = | pushpin_map = Sri Lanka Northern Province | relief = | pushpin_mapsize = | pushpin_map_alt = | pushpin_map_caption = Location within Northern Province | pushpin = Lighthouse | pushpin_label_position = | coordinates = {{coord|09|05|37.85|N|79|41|53.80|E|display=inline,title}} | coord..." 19557 wikitext text/x-wiki {{Infobox lighthouse | name = Mannar Island Lighthouse (old) | image_name = | image_width = | caption = | location = | pushpin_map = Sri Lanka Northern Province | relief = | pushpin_mapsize = | pushpin_map_alt = | pushpin_map_caption = Location within Northern Province | pushpin = Lighthouse | pushpin_label_position = | coordinates = {{coord|09|05|37.85|N|79|41|53.80|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1915 | yearlit = | automated = | yeardeactivated = | foundation = | construction = | shape = | marking = | height = | focalheight = | lens = | currentlens = | lightsource = | intensity = | range = | characteristic = | fogsignal = | racon = | admiralty = | canada = | NGA = | ARLHS = SLI-025 | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''မန်နာကျွန်းမီးပြတိုက် (အဟောင်း)''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ မန်နာကျွန်းဟိ Urumalai မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ မီးပြတိုက်ကို ၁၉၁၅ ခုနှစ်မာ တည်ဆောက်ခရေ။ <ref>{{cite web|title=Mannar Island (Old)/Urumalai/Talaimannar (Old) Light|url=http://wlol.arlhs.com/lighthouse/SLI25.html|publisher=[[Amateur Radio Lighthouse Society]]}}</ref><ref>{{cite web|title=Lighthouse Explorer: Mannar Island Light (old)|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6427|publisher=[[Lighthouse Digest]]}}</ref>ဂုချိန်ခါ အလုပ်လုပ်ဆောင်ခြင်း မဟိပေ။ ယင်းကို သံဖြင့်ပြုလုပ်ထားရေ။ ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] j5j8h1lt67go2pzienpd658rdtjpzfh 19570 19557 2026-07-15T17:34:43Z Htun Warnn Naing 1059 19570 wikitext text/x-wiki {{Infobox lighthouse | name = Mannar Island Lighthouse (old) | image_name = | image_width = | caption = | location = | pushpin_map = Sri Lanka Northern Province | relief = | pushpin_mapsize = | pushpin_map_alt = | pushpin_map_caption = Location within Northern Province | pushpin = Lighthouse | pushpin_label_position = | coordinates = {{coord|09|05|37.85|N|79|41|53.80|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1915 | yearlit = | automated = | yeardeactivated = | foundation = | construction = | shape = | marking = | height = | focalheight = | lens = | currentlens = | lightsource = | intensity = | range = | characteristic = | fogsignal = | racon = | admiralty = | canada = | NGA = | ARLHS = SLI-025 | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''မန်နာကျွန်းမီးပြတိုက် (အဟောင်း)''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ မန်နာကျွန်းဟိ Urumalai မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ မီးပြတိုက်ကို ၁၉၁၅ ခုနှစ်မာ တည်ဆောက်ခရေ။ <ref>{{cite web|title=Mannar Island (Old)/Urumalai/Talaimannar (Old) Light|url=http://wlol.arlhs.com/lighthouse/SLI25.html|publisher=[[Amateur Radio Lighthouse Society]]}}</ref><ref>{{cite web|title=Lighthouse Explorer: Mannar Island Light (old)|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6427|publisher=[[Lighthouse Digest]]}}</ref>ဂုချိန်ခါ အလုပ်လုပ်ဆောင်ခြင်း မဟိပေ။ ယင်းကို သံဖြင့်ပြုလုပ်ထားရေ။ ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] r7651dvpcoifbnfpkiiu7h0gj2qzdxs ကိုဗီလန်အငူမီးပြတိုက် 0 5075 19558 2026-07-15T16:37:01Z Htun Warnn Naing 1059 Created page with "{{Infobox lighthouse | name = Kovilan Point Lighthouse | image_name = | image_width = | caption = | location = [[Karaitivu (island)|Karaitivu Island]]<br />[[Jaffna Peninsula]]<br />[[Northern Province, Sri Lanka|Northern Province]]<br /> [[Sri Lanka]] | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|45|42.40|N|79|51|47.85|E|di..." 19558 wikitext text/x-wiki {{Infobox lighthouse | name = Kovilan Point Lighthouse | image_name = | image_width = | caption = | location = [[Karaitivu (island)|Karaitivu Island]]<br />[[Jaffna Peninsula]]<br />[[Northern Province, Sri Lanka|Northern Province]]<br /> [[Sri Lanka]] | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|45|42.40|N|79|51|47.85|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1899 (first) | yearlit = 1916 (current) | automated = | yeardeactivated = | foundation = | construction = masonry tower | shape = cylindrical tower with balcony and lantern | marking = white tower and lantern | height = {{Convert|30|m|ft}} | focalheight = {{Convert|31|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = {{Convert|11|nmi|km mi}} | characteristic = Fl (2) W 10s. | fogsignal = | racon = | admiralty = F0874 | canada = | NGA = 27212 | ARLHS = SLI-013<ref name=UNC/> | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''ကိုဗီလန်အငူမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ ကရိုင်တိဗုကျွန်း (Karaitivu) မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ ယင်းကို ၁၉၁၆ မာ တည်ဆောက်ခရေ။ စခန်းမာမူ ၁၈၉၉ ခုနှစ်မာ စတင်ခရေ။<ref name=UNC>{{cite web|last1=Rowlett|first1=Russ|title=Lighthouses of Sri Lanka|url=http://www.unc.edu/~rowlett/lighthouse/lka.htm|publisher=[[University of North Carolina at Chapel Hill]]|date=13 February 2006}}</ref><ref>{{cite web|title=Kovilan Point (Karaitivu Island) Light|url=http://wlol.arlhs.com/lighthouse/SLI13.html|publisher=[[Amateur Radio Lighthouse Society]]}}</ref><ref>{{cite web|title=Lighthouse Explorer: Kovilan Point Light|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6413|publisher=[[Lighthouse Digest]]}}</ref> မီးပြတိုက်သည် အဝိုင်းပုံစံ ဇမ်းပွတ်ဖြင့် ပြုလုပ်ထားပြီးသား အမြင့် ၃၀ မီတာ (၉၈ ပေ) ဟိကာ အဖြူရောင်ဖြစ်တေ။<ref name=UNC/> အလင်းရောင်မီးရေ ပင်လယ်ရီမျက်နှာပြင်အထက် ၃၁ မီတာ (၁၀၂ ပေ) ဟိရေ။ ပင်လယ်ရီမျက်နှာပြင်အထက် ၃၀.၄၈ မီတာ (၁၀၂ ပေ) ဟိ သင်္ဘောပေါ်မှ ကြည့်ရှုသူစွာ မီးအလင်းရောင်ကို ၂၁.၄ nautical miles (၃၉.၆ ကီလိုမီတာ၊ ၂၄.၆ မိုင်) အကွာမှ လှမ်းမြင်ရရေ။ ==ပြင်ပလင့်များ== ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] 9mwpi0yo1ian3dwstavndbd7zf91f2r 19561 19558 2026-07-15T16:59:46Z Htun Warnn Naing 1059 19561 wikitext text/x-wiki {{Infobox lighthouse | name = Kovilan Point Lighthouse | image_name = | image_width = | caption = | location = [[Karaitivu (island)|Karaitivu Island]]<br />[[Jaffna Peninsula]]<br />[[Northern Province, Sri Lanka|Northern Province]]<br /> [[Sri Lanka]] | pushpin_map = Sri Lanka Northern Province | pushpin_map_caption = Northern Province | pushpin = Lighthouse | coordinates = {{coord|09|45|42.40|N|79|51|47.85|E|display=inline,title}} | coordinates_footnotes = | yearbuilt = 1899 (first) | yearlit = 1916 (current) | automated = | yeardeactivated = | foundation = | construction = masonry tower | shape = cylindrical tower with balcony and lantern | marking = white tower and lantern | height = {{Convert|30|m|ft}} | focalheight = {{Convert|31|m|ft}} | lens = | currentlens = | lightsource = | intensity = | range = {{Convert|11|nmi|km mi}} | characteristic = Fl (2) W 10s. | fogsignal = | racon = | admiralty = F0874 | canada = | NGA = 27212 | ARLHS = SLI-013<ref name=UNC/> | USCG = | country = | countrynumber = | countrylink = | managingagent = | heritage = }} '''ကိုဗီလန်အငူမီးပြတိုက်''' ရေ သီရိလင်္ကာနိုင်ငံမြောက်ပိုင်း၊ ကရိုင်တိဗုကျွန်း (Karaitivu) မာ တည်ဟိရေ မီးပြတိုက်တခု ဖြစ်တေ။ ယင်းကို ၁၉၁၆ မာ တည်ဆောက်ခရေ။ စခန်းမာမူ ၁၈၉၉ ခုနှစ်မာ စတင်ခရေ။<ref name=UNC>{{cite web|last1=Rowlett|first1=Russ|title=Lighthouses of Sri Lanka|url=http://www.unc.edu/~rowlett/lighthouse/lka.htm|publisher=[[University of North Carolina at Chapel Hill]]|date=13 February 2006}}</ref><ref>{{cite web|title=Kovilan Point (Karaitivu Island) Light|url=http://wlol.arlhs.com/lighthouse/SLI13.html|publisher=[[Amateur Radio Lighthouse Society]]}}</ref><ref>{{cite web|title=Lighthouse Explorer: Kovilan Point Light|url=http://www.lighthousedigest.com/Digest/database/uniquelighthouse.cfm?value=6413|publisher=[[Lighthouse Digest]]}}</ref> မီးပြတိုက်သည် အဝိုင်းပုံစံ ဇမ်းပွတ်ဖြင့် ပြုလုပ်ထားပြီးသား အမြင့် ၃၀ မီတာ (၉၈ ပေ) ဟိကာ အဖြူရောင်ဖြစ်တေ။<ref name=UNC/> အလင်းရောင်မီးရေ ပင်လယ်ရီမျက်နှာပြင်အထက် ၃၁ မီတာ (၁၀၂ ပေ) ဟိရေ။ ပင်လယ်ရီမျက်နှာပြင်အထက် ၃၀.၄၈ မီတာ (၁၀၂ ပေ) ဟိ သင်္ဘောပေါ်မှ ကြည့်ရှုသူစွာ မီးအလင်းရောင်ကို ၂၁.၄ nautical miles (၃၉.၆ ကီလိုမီတာ၊ ၂၄.၆ မိုင်) အကွာမှ လှမ်းမြင်ရရေ။ ==ပြင်ပလင့်များ== ==ကိုးကား== {{reflist}} [[ကဏ္ဍ:သီရိလင်္ကာနိုင်ငံဟိ မီးပြတိုက်များ]] [[ကဏ္ဍ:မီးပြတိုက်]] ccig0po1vq2sukwqyqjz7ojl1h9ncur အလက်ဇန်းဒရီးယားရှိ မီးပြတိုက် 0 5076 19559 2026-07-15T16:38:41Z Htun Warnn Naing 1059 Created page with "[[File:PHAROS2013-3000x2250.jpg|middle|thumb|Three-dimensional reconstruction based on a comprehensive 2013 study]] သတ္တမအံ့ချီးဖွယ်ရာမာကား အယ်လက်ဇန္ဒြီးယားမြို့ဟိ ဖေးရော့မီးပြတိုက်ကတ်ီးဖြစ်လီရေ။ အီဂျစ်ကမ်းခြီမာဟိပြီးကေ ထိုမြို့ကြီးနန့် က..." 19559 wikitext text/x-wiki [[File:PHAROS2013-3000x2250.jpg|middle|thumb|Three-dimensional reconstruction based on a comprehensive 2013 study]] သတ္တမအံ့ချီးဖွယ်ရာမာကား အယ်လက်ဇန္ဒြီးယားမြို့ဟိ ဖေးရော့မီးပြတိုက်ကတ်ီးဖြစ်လီရေ။ အီဂျစ်ကမ်းခြီမာဟိပြီးကေ ထိုမြို့ကြီးနန့် ကပ်နိန်ရေ ကျွန်းအချေတကျွန်းမာ ဖေးရော့ ကျွန်းဟု ခေါ်ဧ့။ အယ်လက်ဇန္ဒာ-သ-ဂရိတ်ရေ အယ်လက် ဇန္ဒြီးယားမြို့ကြီးကို တည်စဉ်က ထိုဖေးရော့ကျွန်းနန့် မြို့ကြီးကို ပိုင်းခြားရေ ရီပြင်ကိုဖြတ်ပနာ ပေါင်းကူး တန်းထားဆောက်လုပ် ခ၏။ အီဂျစ်ဘုရင် ဒုတိယတော်လမီမင်း လက်ထက်မာ ထို ကျွန်းဧ့အရှိဖက်စွန်းမာ ကျောက်တုံးကြီးတိနန့် ပေ ၅ဝဝ လှောက်မြင့်သော မီးပြတိုက်ကတ်ီးကို တည်ဆောက်လီရေ။ ထို အဆောက်အအုံကြီးကို ဘီစီ ၂၆ဝ ပြည့်နှစ်မာ ပြီးစီးရာ၊အယ်လက်ဇန္ဒြီးယားမြို့ဧ့ ဖေးရော့မီးပြတိုက်ဟု ခေါ်မာဧ့။ အထက်ပါရို့ကား ရှီးဟောင်းကမ္ဘာဧ့ အံ့ဖွယ်ခနစ်သွယ် ဖြစ်လီရေ။ ဂုချိန်ခါမာကား ထိုအံ့ဖွယ်တိမာ အီဂျစ် နိုင်ငံဟိ ပိရမစ်တိကတပါး ပျက်စီးယိုယွင်းကုန်ချေပြီ။ {{Stub}} [[ကဏ္ဍ:မြစ် နန့် ကမ်းခြီ]] brib1478ty8przdakmtshqjrhjsjwe0 19564 19559 2026-07-15T17:32:31Z Htun Warnn Naing 1059 19564 wikitext text/x-wiki [[File:PHAROS2013-3000x2250.jpg|middle|thumb|Three-dimensional reconstruction based on a comprehensive 2013 study]] သတ္တမအံ့ချီးဖွယ်ရာမာကား အယ်လက်ဇန္ဒြီးယားမြို့ဟိ ဖေးရော့မီးပြတိုက်ကတ်ီးဖြစ်လီရေ။ အီဂျစ်ကမ်းခြီမာဟိပြီးကေ ထိုမြို့ကြီးနန့် ကပ်နိန်ရေ ကျွန်းအချေတကျွန်းမာ ဖေးရော့ ကျွန်းဟု ခေါ်ဧ့။ အယ်လက်ဇန္ဒာ-သ-ဂရိတ်ရေ အယ်လက် ဇန္ဒြီးယားမြို့ကြီးကို တည်စဉ်က ထိုဖေးရော့ကျွန်းနန့် မြို့ကြီးကို ပိုင်းခြားရေ ရီပြင်ကိုဖြတ်ပနာ ပေါင်းကူး တန်းထားဆောက်လုပ် ခ၏။ အီဂျစ်ဘုရင် ဒုတိယတော်လမီမင်း လက်ထက်မာ ထို ကျွန်းဧ့အရှိဖက်စွန်းမာ ကျောက်တုံးကြီးတိနန့် ပေ ၅ဝဝ လှောက်မြင့်သော မီးပြတိုက်ကတ်ီးကို တည်ဆောက်လီရေ။ ထို အဆောက်အအုံကြီးကို ဘီစီ ၂၆ဝ ပြည့်နှစ်မာ ပြီးစီးရာ၊အယ်လက်ဇန္ဒြီးယားမြို့ဧ့ ဖေးရော့မီးပြတိုက်ဟု ခေါ်မာဧ့။ အထက်ပါရို့ကား ရှီးဟောင်းကမ္ဘာဧ့ အံ့ဖွယ်ခနစ်သွယ် ဖြစ်လီရေ။ ဂုချိန်ခါမာကား ထိုအံ့ဖွယ်တိမာ အီဂျစ် နိုင်ငံဟိ ပိရမစ်တိကတပါး ပျက်စီးယိုယွင်းကုန်ချေပြီ။ {{Stub}} [[ကဏ္ဍ:မီးပြတိုက်]] pcrfr8dzi2355um9tvjrnak92exslbi ကဏ္ဍ:မြန်မာနိုင်ငံတွင်း ငလျင်တိ 14 5077 19572 2026-07-16T06:53:38Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:မြန်မာနိုင်ငံ]]" 19572 wikitext text/x-wiki [[ကဏ္ဍ:မြန်မာနိုင်ငံ]] q4olcb6wc7wymkhkrab3mr36y9wlm98 ၂၀၂၅ ခုနှစ်တွင် မြန်မာနိုန့်ငလျင် 0 5078 19577 2026-07-16T06:56:22Z YaThaWinTha 42 YaThaWinTha moved page [[၂၀၂၅ ခုနှစ်တွင် မြန်မာနိုန့်ငလျင်]] to [[၂၀၂၅ ခုနှစ် မြန်မာတွင်း ငလျင်]] 19577 wikitext text/x-wiki #REDIRECT [[၂၀၂၅ ခုနှစ် မြန်မာတွင်း ငလျင်]] rmd5u6j1r26ucdqgfqpukly7hfbmt7y ရခိုင်ပြည်နယ် ရီကြီးမှုမှတ်တမ်းတိ 0 5079 19578 2026-07-16T07:33:54Z YaThaWinTha 42 Created page with "[[File:Rakhine State in Myanmar.svg|thumb|ရခိုင်ပြည်နယ်ဧ့ တည်နီရာ]] '''ရခိုင်ပြည်နယ် ရီကြီးမှုမှတ်တမ်းတိ''' စွာ [[မြန်မာနိုင်ငံ]]၊ [[ရခိုင်ပြည်နယ်]]အထဲ နှစ်စိုင် [[မုတ်သုံမိုး]]ရွာသွန်းချိန်မာ ဖြစ်ပွားလိ့ဟ..." 19578 wikitext text/x-wiki [[File:Rakhine State in Myanmar.svg|thumb|ရခိုင်ပြည်နယ်ဧ့ တည်နီရာ]] '''ရခိုင်ပြည်နယ် ရီကြီးမှုမှတ်တမ်းတိ''' စွာ [[မြန်မာနိုင်ငံ]]၊ [[ရခိုင်ပြည်နယ်]]အထဲ နှစ်စိုင် [[မုတ်သုံမိုး]]ရွာသွန်းချိန်မာ ဖြစ်ပွားလိ့ဟိရေ [[ရီကြီးခြင်း|ရီကြီးမှုတိ]]ဧ့ စာရင်းမှတ်တမ်းဖြစ်တေ။ ရခိုင်ပြည်နယ်စွာ ယင်းဧ့ ပထဝီဝင်အနိန်အထားနန့် ရာသီဥတုအခြီအနီတိကြောင့် မိုးသည်းထန်စွာရွာသွန်းပြီး ဖျားရီတက်မှုတိ တနားတခါကြုံတွိရရေ။<ref name="UNOSAT2016">{{cite web |url=https://reliefweb.int/map/myanmar/floods-rakhine-state-myanmar-situation-analysis-preliminary-report |title=Floods in Rakhine State, Myanmar: Situation Analysis Preliminary Report |author=<!--Not stated--> |date=24 July 2016 |website=ReliefWeb |publisher=UNITAR-UNOSAT |access-date=16 July 2026}}</ref> == သမိုင်းတလျှောက် ရီကြီးမှု မှတ်တမ်းတိ == === ၂၀၀၄ ခုနှစ် မေလ ဆိုင်ကလုန်းမုန်တိုင်းနန့် ရီကြီးမှု === ၂၀၀၄ ခုနှစ် မေလ ၁၉ ရက်နိမာ ရခိုင်ပြည်နယ်အား တိုက်ခတ်ခရေ ဆိုင်ကလုန်းမုန်တိုင်းကြောင့် လူဦးရွီ ၂၂၀ ခန့် သီဆုံးခပြီးကေ လူပေါင်း ၁၄,၀၀၀ ကျော် အိမ်မဟိယာမဟိဖြစ်ခရရေ။ မုန်တိုင်းအဟိန်ကြောင့် [[စစ်တွေမြို့]]၊ မြေပုံ၊ ပေါက်တော၊ မြောက်ဦး၊ ပုဏ္ဏားကျွန်း၊ မင်းပြား၊ ကျောက်ဖြူနန့် အမ်းမြို့ရို့ဧ့ ကမ်းရိုးတန်းဒေသတိမာ လှိုင်းဖြားတက်မှုနန့် ရီကြီးမှုတိ ဖြစ်ပေါ်ခရေ။<ref name="ABC2010">{{cite web |url=https://www.abc.net.au/pm/archive/articles/2010/11/05/s3058667.htm |title=Residents of remote west Burma devastated by Cyclone Giri |author=<!--Not stated--> |date=5 November 2010 |website=ABC PM |publisher=Australian Broadcasting Corporation |access-date=16 July 2026}}</ref> လျှပ်စစ်ဓာတ်အားလိုင်းနန့် ဆက်သွယ်ရီးလိုင်းတိ ပျက်စီးခပြီးကေ လောင်းချေပေါင်း ၂၀၀ ခန့် ပျက်စီးကာ လမ်းပန်းဆက်သွယ်ရီး ပြတ်တောက်ခရေ။ ပြန်ပနာနီရာချထားရီးဌာနဧ့ အစီအစာခံစာအရ အဆောက်အအုံတိစွာ ပျက်စီးခပြီးကေ ကျောင်း ၃၀၀ နန့် အိမ် ၂,၈၀၀ ခန့် ပျက်စီးခရေ။<ref name="ABC2010" /> သောက်သုံးရီရဟိ ရီးစနစ်တိ ညစ်ညမ်းခပြီးကေ ရီကတဆင့် ကူးစက်တတ်ရေ ရောဂါတိ ဖြစ်ပွားနိုင်ခြေ မြင့်မားခရေ။<ref name="ABC2010" /> === ၂၀၁၀ ခုနှစ် ဂျုန်လ ရီကြီးမှု === ၂၀၁၀ ခုနှစ် ဂျုန်လမာ ရခိုင်ပြည်နယ် မြောက်ပိုင်းမာ ရီကြီးမှုဖြစ်ပွားခရေ လူ ၆၈ ဦး သီဆုံးပြီး အိမ်ခြေ ၈၀၀ ပျက်စီးခရေ။<ref name="UNOSAT2016" /> === ၂၀၁၀ ခုနှစ် အောက်တိုဘာလ ဆိုင်ကလုန်းဂိရီ === ၂၀၁၀ ခုနှစ် အောက်တိုဘာလ ၂၂ ရက်နိမာ [[ဆိုင်ကလုန်းဂိရီ]] (Cyclone Giri) စွာ ရခိုင်ပြည်နယ်ကို တိုက်ခတ်ခပြီးကေ လူဦးရွီ ၄၅ ဦးထက်မနည်း သီဆုံးကာ လူပေါင်း ၁၀၀,၀၀၀ အိမ်မဟိယာမဟိ ဖြစ်ခရရေ။<ref name="BBC2010">{{cite web |url=https://www.bbc.com/news/world-asia-pacific-11617613 |title=Cyclone Giri pummels west Burma |author=<!--Not stated--> |date=24 October 2010 |website=BBC News |publisher=BBC |access-date=16 July 2026}}</ref> ယင်းချင့်မုန်တိုင်းရေ ကနူးမြို့နန့် ကျွန်းသားကျေးရွာရို့ကို အပြင်းအထန်ထိခိုက်စီခပြီးကေ ကျောင်းပေါင်း ၄၀၀ ကျော် အသုံးမပြုနိုင်တော့ဘဲ ယင်းရို့အနက် ၁၀၀ ကျော် လုံးလုံးပျက်စီးခရေ။<ref name="BBC2010" /> မုန်တိုင်းကြောင့် ဆန်စပါးစိုက်ခင်း ၄၀,၀၀၀ ဟက်တာကျော် ပျက်စီးခပြီးကေ လူဦးရွီ ၂၆၀,၀၀၀ ခန့် စားနပ်ရိက္ခာပြတ်လပ်မှုနန့် ဟိဆိုင်ခရရေ။<ref name="ChinaDaily2010">{{cite web |url=http://www.chinadaily.com.cn/imqq/world/2010-11/01/content_11485323.htm |title=170,000 people affected by cyclone Giri in Myanmar |author=<!--Not stated--> |date=1 November 2010 |website=China Daily |publisher=Xinhua |access-date=16 July 2026}}</ref> လူဦးရွီ ၁၇၀,၀၀၀ ခန့် ထိခိုက်ခံစားခရယား အိမ် ၆,၂၃၁ လုံး၊ ကျောင်း ၁၉ ကျောင်းနန့် သင်္ဘော ၈၀ စင်း ပျက်စီးခရေ။<ref name="ChinaDaily2010" /> === ၂၀၁၁ ခုနှစ် မိုးသည်းထန်စွာရွာသွန်းမှု === ၂၀၁၁ ခုနှစ် ဂျူလိုင်လ ၂၁ ရက်နိမာ ရခိုင်ပြည်နယ်ဧ့ တချို့ဒေသတိမာ မိုးရီချိန် ၂၉ လက်မ (၇၃၇ မီလီမီတာ) အထိ ရွာသွန်းခပြီးကေ ယင်းချင့်စွာ ထိုနှစ်အထဲ မြန်မာနိုင်ငံမာ တရက်တာအထဲ အများဆုံးရွာသွန်းရေ မိုးရီချိန်ဖြစ်ခရေ။<ref name="UNOSAT2016" /> === ၂၀၁၂ ခုနှစ် သြဂတ်လ ရီကြီးမှု === ၂၀၁၂ ခုနှစ် သြဂတ်လမာ နိုင်ငံတဝန်း ကပ်ဆိုးကြီး ရီကြီးမှုဖြစ်ပွားခရေ လူဦးရွီ ၈၅,၀၀၀ ကျော် နီရပ်စွန့်ခွာခရရေ။<ref name="UNOSAT2016" /> === ၂၀၁၃ ခုနှစ် ဂျူလိုင်လ ရီကြီးမှု === ၂၀၁၃ ခုနှစ် ဂျူလိုင်လနှောင်းပိုင်းမာ မုတ်သုံမိုးသည်းထန်စွာရွာသွန်းမှုနန့် ဒေသမြစ်တိ ရီလျှံမှုကြောင့် ရခိုင်ပြည်နယ် အပါအဝင် ကရင်ပြည်နယ်၊ မွန်ပြည်နယ်၊ တနင်္သာရီတိုင်းဒေသကြီးနန့် ဧရာဝတီတိုင်းဒေသကြီးရို့မာ ရီကြီးမှုတိ ဖြစ်ပွားခရေ။<ref name="ReliefWeb2013">{{cite web |url=https://reliefweb.int/disaster/fl-2013-000087-mmr?lang=fr |title=Myanmar: Floods - Aug 2013 |author=<!--Not stated--> |date=30 November 2013 |website=ReliefWeb |publisher=OCHA |access-date=16 July 2026}}</ref> လူဦးရွီ ၃၈,၀၀၀ ကျော် နီရပ်စွန့်ခွာခရယား လူ ၆ ဦး သီဆုံးကာ တဦး ပျောက်ဆုံးခရေ။<ref name="ReliefWeb2013" /> သြဂတ်လ ၇ ရက်နိမာ လူဦးရွီ ၇၃,၃၀၀ ခန့်စွာ ယာယီပြောင်းရွိစခန်းတိမာ နီထိုင်ခကတ်ရရေ။<ref name="UNOSAT2013">{{cite report |url=https://reliefweb.int/attachments/dd957a93-d82a-3370-8b89-f74cba35bc44/Burma%20Rakhine%20State%20IDP%20Camps%20at%20Risk%20of%20Monsoon%20Flooding%20%28as%20of%2026%20April%202013%29.pdf |title=Burma Rakhine State IDP Camps at Risk of Monsoon Flooding |author=<!--Not stated--> |date=26 April 2013 |publisher=UNOSAT |access-date=16 July 2026}}</ref> === ၂၀၁၄ ခုနှစ် ဂျူလိုင်လ ရီကြီးမှု === ၂၀၁၄ ခုနှစ် ဂျူလိုင်လမာ ရာသီအလိုက် မိုးသည်းထန်စွာရွာသွန်းမှုကြောင့် ရခိုင်ပြည်နယ် အပါအဝင် မြန်မာနိုင်ငံအနှံ့ ရီကြီးမှုတိ ဖြစ်ပွားခရေ။ သြဂတ်လကုန်မာ ရခိုင်ပြည်နယ်မာ ရီကြီးမှုနန့် ဖျားရီတက်မှုတိကြောင့် လူဦးရွီ ၆,၄၀၀ ခန့် နီရပ်စွန့်ခွာ ထွက်ဗြီးခရရေ။<ref name="UNOSAT2016" /> === ၂၀၁၅ ခုနှစ် ဂျုန်လ ရီကြီးမှုနန့် ဆိုင်ကလုန်းမုန်တိုင်း === ၂၀၁၅ ခုနှစ် ဂျူလိုင်လ ၁၆ ရက်နိမာ စတင်ခရေ မိုးသည်းထန်စွာရွာသွန်းမှုစွာ သြဂုတ်လအထိ ကြာမြင့်ခပြီးကေ နိုင်ငံဧ့ ပြည်နယ်နန့်တိုင်းဒေသကြီး ၁၄ ခုအနက် ၁၂ ခုကို သက်ရောက်မှုဟိခရေ။<ref name="ABC2015">{{cite web |url=https://www.abc.net.au/news/2015-08-03/monsoon-rains-hit-asia-killing-hundreds-myanmar-india-pakistan/6669692 |title=Asia flooding: Hundreds dead, 1 million displaced as monsoon rains hit Myanmar, India, Pakistan |author=<!--Not stated--> |date=3 August 2015 |website=ABC News |publisher=Australian Broadcasting Corporation |access-date=16 July 2026}}</ref> ဂျုန်လကုန်မာ ရခိုင်ပြည်နယ်ဧ့ မြို့နယ် ၁၄ မြို့နယ်မာ သုံးရက်ကြာ မိုးသည်းထန်စွာရွာသွန်းမှုကြောင့် ရီကြီးမှု ဖြစ်ပွားခရေ။<ref name="ABC2015" /> ဒေရီကြီးမှုကြောင့် လူ ၆ ဦး သီဆုံးပြီး တိရစ္ဆာန် ၂၅,၀၅၅ ကောင် သီဆုံးခရေ။ ဆန်စပါးစိုက်ခင်း ၂.၅၆၄ ဧက၊ အိမ် ၅၉၂ လုံး၊ ကျောင်း ၇ ကျောင်း၊ ဘုရားကျောင်း/ဘုန်းကြီးကျောင်း ၂ ကျောင်း၊ တန်းထား ၅၄ စင်း နန့် လမ်းတိ ပျက်စီးခရေ။<ref name="ABC2015" /> ပျက်စီးဆုံးယှုံးမှုအများဆုံးမြို့နယ်မာ အမ်းမြို့နယ်ဖြစ်ပြီးကေ ကျပ်ဖေသာ ၁.၄ ဘီလီယံခန့် ဆုံးယှုံးခရေ။<ref name="ABC2015" /> ပြည်ထောင်စုအစိုးရက ရခိုင်ပြည်နယ်အတွက် ကျပ်ဖေသာ ၃.၂၁၆ ဘီလီယံ ကူညီထောက်ပင့်ကြောင်း ကြေညာခရေ။<ref name="ABC2015" /> ဂျူလိုင်လ ၃၀ ရက်နိမာ ဆိုင်ကလုန်းမုန်တိုင်း (Cyclone Komen) စွာ မြန်မာနိုင်ငံအနှံ့ မိုးသည်းထန်စွာ ရွာသွန်းစီရား ရီကြီးမှုတိ ပိုပြီးကေဆိုးရွားစီခရေ။<ref name="DMH2015">{{cite web |url=https://reliefweb.int/report/myanmar/cyclone-warning-july-30-2015 |title=Cyclone Warning - July 30, 2015 |author=<!--Not stated--> |date=30 July 2015 |website=ReliefWeb |publisher=Myanmar Department of Meteorology and Hydrology |access-date=16 July 2026}}</ref> ၂၀၁၅ ခုနှစ် ရီကြီးမှုစွာ ရခိုင်ပြည်နယ်ကို အပြင်းထန်ဆုံး ထိခိုက်စီခပြီးကေ သီဆုံးသူ ၁၀၃ ဦးထက်မနည်းဟိခပြီးကေ လူဦးရွီ ၁ သန်းအထိ ထိခိုက်ခံစားခရရေ။<ref name="ABC2015" /> လူဦးရွီ ၁.၆ သန်းကျော် ထိခိုက်ခံစားခရယား အိမ် ၁၀,၉၅၆ လုံး ပျက်စီးခရေ။<ref name="IOM2015">{{cite web |url=https://reliefweb.int/report/myanmar/myanmar-dtm-preliminary-report-cyclone-komen-maungdaw-buthidaung-and-ann-31-august |title=Myanmar: DTM Preliminary Report - Cyclone Komen: Maungdaw, Buthidaung and Ann, 31 August 2015 |author=<!--Not stated--> |date=31 August 2015 |website=ReliefWeb |publisher=IOM |access-date=16 July 2026}}</ref> စိုက်ပျိုးရီးနန့်ဆည်မြောင်းဝန်ကြီးဌာနဧ့ အဆိုအရ နိုင်ငံတဝန်း စိုက်ဧက ၁.၂၉ သန်းဧက ရီမြုပ်ခပြီးကေ ၆၈၇,၂၀၀ ဧက ပျက်စီးခရေ။<ref name="ABC2015" /> ရခိုင်ပြည်နယ်တခုတည်းမာ စိုက်ဧက ၁၀၅,၃၀၀ ဟက်တာကျော် ရီမြုပ်ခရေ။<ref name="ABC2015" /> ယင်းရီကြီးမှုကြောင့် ၂၀၁၅-၂၀၁၆ ဘဏ္ဍာနှစ် ဧပြီလမှ ဂျန်နဝါရီလအထဲ ဆန်တန်ချိန် ၈၃၀,၀၀၀ သာ တင်ပို့နှိုင်ခပြီး အယင်ဘဏ္ဍာနှစ်က တင်ပို့မှုတန်ချိန် ၁.၈ သန်းဟိခရာမှ ၁၅၀,၀၀၀ တန်ချိန်ကျော် ကြီ့ဆင်းးခီရေ။<ref name="ABC2015" /> အစိုးရက ရခိုင်ပြည်နယ်၊ ချင်းပြည်နယ်၊ စစ်ကိုင်းတိုင်းဒေသကြီးနန့် မကွေးတိုင်းဒေသကြီးရို့ကို ဖီးအန္တရာယ်ကျရောက်သော ဒေသတိအဖြစ် ကြေညာခရေ။<ref name="ABC2015" /> === ၂၀၁၆ ခုနှစ် ဂျူလိုင်လ ရီကြီးမှု === ၂၀၁၆ ခုနှစ် ဂျူလိုင်လ ၁ ရက်နိမှစတင်ပနာ မုတ်သုံမိုးသည်းထန်စွာရွာသွန်းမှုကြောင့် ရခိုင်ပြည်နယ် အပါအဝင် ကချင်ပြည်နယ်၊ ချင်းပြည်နယ်၊ စစ်ကိုင်းတိုင်းဒေသကြီးနန့် ပဲခူးတိုင်းဒေသကြီးရို့မာ ရီကြီးမှုနန့် မြီပြိုမှုတိ ဖြစ်ပွားခရေ။<ref name="UNOSAT2016" /> ဂျူလိုင်လ ၁၄ ရက်နိမာ ရခိုင်ပြည်နယ် အနောက်မြောက်ပိုင်း၊ [[ကျောက်တော်မြို့နယ်]]၊ [[မြောက်ဦးမြို့နယ်]] နန့် [[ပုဏ္ဏားကျွန်းမြို့နယ်]]ရို့မာ မုတ်သုံမိုးသည်းထန်စွာရွာသွန်းမှုကြောင့် ရီကြီးမှုဖြစ်ပွားခရေ။<ref name="UNOSAT2016" /> ရခိုင်ပြည်နယ်အစိုးရဧ့ အစီအစာခံစာအရ ထိခိုက်မှုအများဆုံးမြို့နယ်လေးခုဖြစ်ရေ မင်းပြား (၁၃,၁၂၃ ဦး)၊ အမ်း (၄,၆၅၉ ဦး)၊ မြောက်ဦး (၃,၆၉၆ ဦး) နန့် ကျောက်တော် (၂,၈၂၈ ဦး) ရို့မာ လူဦးရွီ ၂၄,၃၀၆ ဦး နီရပ်စွန့်ခွာခရရေ။<ref name="UNOSAT2016" /> ဂြိုဟ်တုဓာတ်ပုံတိအရ ရီမြုပ်မှုဧရိယာ ~၂,၅၄၉ စတုရန်းကီလိုမီတာ (~၈%) ဟိပြီးး လူဦးရွီ ၆,၅၀၀ ကျော် ရီကြီးဧရိယာအထဲ တိုက်ရိုက်နီထိုင်ခရပြီးကေ စုစုပေါင်းလူဦးရွီ ~၅၀၀,၀၀၀ (~၂၀%) မာ ထိခိုက်နိုင်ခြေဟိသူတိဖြစ်ကတ်ောင်း သိရရေ။<ref name="UNOSAT2016" /> လမ်းပန်းဆက်သွယ်ရီးအရ ကီလိုမီတာ ၂၃၀ ကျော်သော လမ်းတိ ထိခိုက်ခရေ။<ref name="UNOSAT2016" /> == ရီကြီးမှုဖြစ်ပွားရရေ အကြောင်းရင်းတိ == ရခိုင်ပြည်နယ်စွာ မုတ်သုံမိုးရွာသွန်းရာသီမာ [[ဘင်္ဂလားပင်လယ်အော်]]မှ မိုးတိစွာ သယ်ဆောင်လာရေ လီစီးကြောင်းတိဧ့ လမ်းကြောင်းထက်မာ တည်ဟိရေ။ [[ရခိုင်ရိုးမ]]တောင်တန်းစွာ မိုးရိပ်တိကို ထီးကာ မိုးရီချိန်ကို ပိုပြီးကေမြင့်မားစီရေ။ ယင်းချင့်အပြင် ပြည်နယ်အထဲဟိ မြစ်ငယ်တိစွာ မိုးများချိန်မာ ရေပမာဏ သိသိသာသာ မြင့်တက်လာယား ကမ်းလျှံရီကြီးမှုတိကို ဖြစ်ပေါ်စီရေ။ ဆိုင်ကလုန်းမုန်တိုင်းတိစွာလေ့ ရီကြီးမှုကို ပိုပြီးကေဆိုးရွားစီရေ အဓိကအကြောင်းရင်းတခုဖြစ်တေ။<ref name="UNOSAT2016" /> == ဖီးအန္တရာယ်လျှော့ချရီး ဆောင်ရွက်ချက်တိ == ရခိုင်ပြည်နယ်မာ ရီကြီးမှုဒဏ်ကို ကြိုတင်ကာကွယ်ရန်နန့် လျှော့ချဖို့အတွက် မြစ်ကမ်းနံရံတိ ဆောက်လုပ်ခြင်း၊ ရီလွှဲမြောင်းတိ ပြုပျင်ခြင်းနန့် မိုးလီဝသသတင်းခန့်မှန်းချက်စနစ်တိ မြှင့်တင်ခြင်းရို့ကို ဆောင်ရွက်ပနာဟိရေ။ ယဒါလေ့ ရာသီဥတုပြောင်းလဲမှုနန့် မုတ်သုံမိုးဧ့ သဘောသဘာဝအရ ရီကြီးမှုအန္တရာယ်မာ ဆက်ပနာတည်ဟိနီတုန်းဖြစ်တေ။<ref name="UNOSAT2016" /> == See also == * [[၂၀၂၅ ခုနှစ် မြန်မာတွင်း ငလျင်]] * [[၂၀၂၆ ရခိုင်ပြည် ရီကြီးမှု]] * [[၂၀၂၅ ရခိုင်ပြည် ရီကြီးမှု]] == Notes == {{Reflist}} == References == {{reflist}} * {{cite web |url=https://reliefweb.int/map/myanmar/floods-rakhine-state-myanmar-situation-analysis-preliminary-report |title=Floods in Rakhine State, Myanmar: Situation Analysis Preliminary Report |author=<!--Not stated--> |date=24 July 2016 |website=ReliefWeb |publisher=UNITAR-UNOSAT |access-date=16 July 2026}} * {{cite web |url=https://www.bbc.com/news/world-asia-pacific-11617613 |title=Cyclone Giri pummels west Burma |author=<!--Not stated--> |date=24 October 2010 |website=BBC News |publisher=BBC |access-date=16 July 2026}} * {{cite web |url=https://reliefweb.int/report/myanmar/myanmar-dtm-preliminary-report-cyclone-komen-maungdaw-buthidaung-and-ann-31-august |title=Myanmar: DTM Preliminary Report - Cyclone Komen: Maungdaw, Buthidaung and Ann, 31 August 2015 |author=<!--Not stated--> |date=31 August 2015 |website=ReliefWeb |publisher=IOM |access-date=16 July 2026}} * {{cite report |url=https://reliefweb.int/attachments/dd957a93-d82a-3370-8b89-f74cba35bc44/Burma%20Rakhine%20State%20IDP%20Camps%20at%20Risk%20of%20Monsoon%20Flooding%20%28as%20of%2026%20April%202013%29.pdf |title=Burma Rakhine State IDP Camps at Risk of Monsoon Flooding |author=<!--Not stated--> |date=26 April 2013 |publisher=UNOSAT |access-date=16 July 2026}} * {{cite web |url=https://www.abc.net.au/pm/archive/articles/2010/11/05/s3058667.htm |title=Residents of remote west Burma devastated by Cyclone Giri |author=<!--Not stated--> |date=5 November 2010 |website=ABC PM |publisher=Australian Broadcasting Corporation |access-date=16 July 2026}} * {{cite web |url=https://www.abc.net.au/news/2015-08-03/monsoon-rains-hit-asia-killing-hundreds-myanmar-india-pakistan/6669692 |title=Asia flooding: Hundreds dead, 1 million displaced as monsoon rains hit Myanmar, India, Pakistan |author=<!--Not stated--> |date=3 August 2015 |website=ABC News |publisher=Australian Broadcasting Corporation |access-date=16 July 2026}} * {{cite web |url=http://www.chinadaily.com.cn/imqq/world/2010-11/01/content_11485323.htm |title=170,000 people affected by cyclone Giri in Myanmar |author=<!--Not stated--> |date=1 November 2010 |website=China Daily |publisher=Xinhua |access-date=16 July 2026}} * {{cite web |url=https://reliefweb.int/report/myanmar/cyclone-warning-july-30-2015 |title=Cyclone Warning - July 30, 2015 |author=<!--Not stated--> |date=30 July 2015 |website=ReliefWeb |publisher=Myanmar Department of Meteorology and Hydrology |access-date=16 July 2026}} * {{cite web |url=https://reliefweb.int/disaster/fl-2013-000087-mmr?lang=fr |title=Myanmar: Floods - Aug 2013 |author=<!--Not stated--> |date=30 November 2013 |website=ReliefWeb |publisher=OCHA |access-date=16 July 2026}} * {{cite web |url=https://www.preventionweb.net/news/more-one-month-after-cyclone-komen-some-impacted-people-remain-homeless |title=More than one month after Cyclone Komen, some impacted people remain homeless |author=<!--Not stated--> |date=21 September 2015 |website=PreventionWeb |publisher=UNHCR |access-date=16 July 2026}} == External links == * [http://www.rakhinestate.gov.mm/ ရခိုင်ပြည်နယ်အစိုးရဧ့ တရားဝင်ဝက်ဘ်ဆိုက်] {{Authority control}} [[Category:ရခိုင်ပြည်နယ်]] [[Category:မြန်မာနိုင်ငံဟိ ရီကြီးရီလျှံမှုတိ]] [[Category:ရခိုင်ပြည်နယ်ဟိ သဘာဝဖီအန္တရာယ်တိ]] drpw0qtcp4mtdbbd1ar9qzcl79krkej 19579 19578 2026-07-16T07:34:47Z YaThaWinTha 42 19579 wikitext text/x-wiki [[File:Rakhine State in Myanmar.svg|thumb|ရခိုင်ပြည်နယ်ဧ့ တည်နီရာ]] '''ရခိုင်ပြည်နယ် ရီကြီးမှုမှတ်တမ်းတိ''' စွာ [[မြန်မာနိုင်ငံ]]၊ [[ရခိုင်ပြည်နယ်]]အထဲ နှစ်စိုင် [[မုတ်သုံမိုး]]ရွာသွန်းချိန်မာ ဖြစ်ပွားလိ့ဟိရေ [[ရီကြီးခြင်း|ရီကြီးမှုတိ]]ဧ့ စာရင်းမှတ်တမ်းဖြစ်တေ။ ရခိုင်ပြည်နယ်စွာ ယင်းဧ့ ပထဝီဝင်အနိန်အထားနန့် ရာသီဥတုအခြီအနီတိကြောင့် မိုးသည်းထန်စွာရွာသွန်းပြီး ဖျားရီတက်မှုတိ တနားတခါကြုံတွိရရေ။<ref name="UNOSAT2016">{{cite web |url=https://reliefweb.int/map/myanmar/floods-rakhine-state-myanmar-situation-analysis-preliminary-report |title=Floods in Rakhine State, Myanmar: Situation Analysis Preliminary Report |author=<!--Not stated--> |date=24 July 2016 |website=ReliefWeb |publisher=UNITAR-UNOSAT |access-date=16 July 2026}}</ref> == သမိုင်းတလျှောက် ရီကြီးမှု မှတ်တမ်းတိ == === ၂၀၀၄ ခုနှစ် မေလ ဆိုင်ကလုန်းမုန်တိုင်းနန့် ရီကြီးမှု === ၂၀၀၄ ခုနှစ် မေလ ၁၉ ရက်နိမာ ရခိုင်ပြည်နယ်အား တိုက်ခတ်ခရေ ဆိုင်ကလုန်းမုန်တိုင်းကြောင့် လူဦးရွီ ၂၂၀ ခန့် သီဆုံးခပြီးကေ လူပေါင်း ၁၄,၀၀၀ ကျော် အိမ်မဟိယာမဟိဖြစ်ခရရေ။ မုန်တိုင်းအဟိန်ကြောင့် [[စစ်တွေမြို့]]၊ မြေပုံ၊ ပေါက်တော၊ မြောက်ဦး၊ ပုဏ္ဏားကျွန်း၊ မင်းပြား၊ ကျောက်ဖြူနန့် အမ်းမြို့ရို့ဧ့ ကမ်းရိုးတန်းဒေသတိမာ လှိုင်းဖြားတက်မှုနန့် ရီကြီးမှုတိ ဖြစ်ပေါ်ခရေ။<ref name="ABC2010">{{cite web |url=https://www.abc.net.au/pm/archive/articles/2010/11/05/s3058667.htm |title=Residents of remote west Burma devastated by Cyclone Giri |author=<!--Not stated--> |date=5 November 2010 |website=ABC PM |publisher=Australian Broadcasting Corporation |access-date=16 July 2026}}</ref> လျှပ်စစ်ဓာတ်အားလိုင်းနန့် ဆက်သွယ်ရီးလိုင်းတိ ပျက်စီးခပြီးကေ လောင်းချေပေါင်း ၂၀၀ ခန့် ပျက်စီးကာ လမ်းပန်းဆက်သွယ်ရီး ပြတ်တောက်ခရေ။ ပြန်ပနာနီရာချထားရီးဌာနဧ့ အစီအစာခံစာအရ အဆောက်အအုံတိစွာ ပျက်စီးခပြီးကေ ကျောင်း ၃၀၀ နန့် အိမ် ၂,၈၀၀ ခန့် ပျက်စီးခရေ။<ref name="ABC2010" /> သောက်သုံးရီရဟိ ရီးစနစ်တိ ညစ်ညမ်းခပြီးကေ ရီကတဆင့် ကူးစက်တတ်ရေ ရောဂါတိ ဖြစ်ပွားနိုင်ခြေ မြင့်မားခရေ။<ref name="ABC2010" /> === ၂၀၁၀ ခုနှစ် ဂျုန်လ ရီကြီးမှု === ၂၀၁၀ ခုနှစ် ဂျုန်လမာ ရခိုင်ပြည်နယ် မြောက်ပိုင်းမာ ရီကြီးမှုဖြစ်ပွားခရေ လူ ၆၈ ဦး သီဆုံးပြီး အိမ်ခြေ ၈၀၀ ပျက်စီးခရေ။<ref name="UNOSAT2016" /> === ၂၀၁၀ ခုနှစ် အောက်တိုဘာလ ဆိုင်ကလုန်းဂိရီ === ၂၀၁၀ ခုနှစ် အောက်တိုဘာလ ၂၂ ရက်နိမာ [[ဆိုင်ကလုန်းဂိရီ]] (Cyclone Giri) စွာ ရခိုင်ပြည်နယ်ကို တိုက်ခတ်ခပြီးကေ လူဦးရွီ ၄၅ ဦးထက်မနည်း သီဆုံးကာ လူပေါင်း ၁၀၀,၀၀၀ အိမ်မဟိယာမဟိ ဖြစ်ခရရေ။<ref name="BBC2010">{{cite web |url=https://www.bbc.com/news/world-asia-pacific-11617613 |title=Cyclone Giri pummels west Burma |author=<!--Not stated--> |date=24 October 2010 |website=BBC News |publisher=BBC |access-date=16 July 2026}}</ref> ယင်းချင့်မုန်တိုင်းရေ ကနူးမြို့နန့် ကျွန်းသားကျေးရွာရို့ကို အပြင်းအထန်ထိခိုက်စီခပြီးကေ ကျောင်းပေါင်း ၄၀၀ ကျော် အသုံးမပြုနိုင်တော့ဘဲ ယင်းရို့အနက် ၁၀၀ ကျော် လုံးလုံးပျက်စီးခရေ။<ref name="BBC2010" /> မုန်တိုင်းကြောင့် ဆန်စပါးစိုက်ခင်း ၄၀,၀၀၀ ဟက်တာကျော် ပျက်စီးခပြီးကေ လူဦးရွီ ၂၆၀,၀၀၀ ခန့် စားနပ်ရိက္ခာပြတ်လပ်မှုနန့် ဟိဆိုင်ခရရေ။<ref name="ChinaDaily2010">{{cite web |url=http://www.chinadaily.com.cn/imqq/world/2010-11/01/content_11485323.htm |title=170,000 people affected by cyclone Giri in Myanmar |author=<!--Not stated--> |date=1 November 2010 |website=China Daily |publisher=Xinhua |access-date=16 July 2026}}</ref> လူဦးရွီ ၁၇၀,၀၀၀ ခန့် ထိခိုက်ခံစားခရယား အိမ် ၆,၂၃၁ လုံး၊ ကျောင်း ၁၉ ကျောင်းနန့် သင်္ဘော ၈၀ စင်း ပျက်စီးခရေ။<ref name="ChinaDaily2010" /> === ၂၀၁၁ ခုနှစ် မိုးသည်းထန်စွာရွာသွန်းမှု === ၂၀၁၁ ခုနှစ် ဂျူလိုင်လ ၂၁ ရက်နိမာ ရခိုင်ပြည်နယ်ဧ့ တချို့ဒေသတိမာ မိုးရီချိန် ၂၉ လက်မ (၇၃၇ မီလီမီတာ) အထိ ရွာသွန်းခပြီးကေ ယင်းချင့်စွာ ထိုနှစ်အထဲ မြန်မာနိုင်ငံမာ တရက်တာအထဲ အများဆုံးရွာသွန်းရေ မိုးရီချိန်ဖြစ်ခရေ။<ref name="UNOSAT2016" /> === ၂၀၁၂ ခုနှစ် သြဂတ်လ ရီကြီးမှု === ၂၀၁၂ ခုနှစ် သြဂတ်လမာ နိုင်ငံတဝန်း ကပ်ဆိုးကြီး ရီကြီးမှုဖြစ်ပွားခရေ လူဦးရွီ ၈၅,၀၀၀ ကျော် နီရပ်စွန့်ခွာခရရေ။<ref name="UNOSAT2016" /> === ၂၀၁၃ ခုနှစ် ဂျူလိုင်လ ရီကြီးမှု === ၂၀၁၃ ခုနှစ် ဂျူလိုင်လနှောင်းပိုင်းမာ မုတ်သုံမိုးသည်းထန်စွာရွာသွန်းမှုနန့် ဒေသမြစ်တိ ရီလျှံမှုကြောင့် ရခိုင်ပြည်နယ် အပါအဝင် ကရင်ပြည်နယ်၊ မွန်ပြည်နယ်၊ တနင်္သာရီတိုင်းဒေသကြီးနန့် ဧရာဝတီတိုင်းဒေသကြီးရို့မာ ရီကြီးမှုတိ ဖြစ်ပွားခရေ။<ref name="ReliefWeb2013">{{cite web |url=https://reliefweb.int/disaster/fl-2013-000087-mmr?lang=fr |title=Myanmar: Floods - Aug 2013 |author=<!--Not stated--> |date=30 November 2013 |website=ReliefWeb |publisher=OCHA |access-date=16 July 2026}}</ref> လူဦးရွီ ၃၈,၀၀၀ ကျော် နီရပ်စွန့်ခွာခရယား လူ ၆ ဦး သီဆုံးကာ တဦး ပျောက်ဆုံးခရေ။<ref name="ReliefWeb2013" /> သြဂတ်လ ၇ ရက်နိမာ လူဦးရွီ ၇၃,၃၀၀ ခန့်စွာ ယာယီပြောင်းရွိစခန်းတိမာ နီထိုင်ခကတ်ရရေ။<ref name="UNOSAT2013">{{cite report |url=https://reliefweb.int/attachments/dd957a93-d82a-3370-8b89-f74cba35bc44/Burma%20Rakhine%20State%20IDP%20Camps%20at%20Risk%20of%20Monsoon%20Flooding%20%28as%20of%2026%20April%202013%29.pdf |title=Burma Rakhine State IDP Camps at Risk of Monsoon Flooding |author=<!--Not stated--> |date=26 April 2013 |publisher=UNOSAT |access-date=16 July 2026}}</ref> === ၂၀၁၄ ခုနှစ် ဂျူလိုင်လ ရီကြီးမှု === ၂၀၁၄ ခုနှစ် ဂျူလိုင်လမာ ရာသီအလိုက် မိုးသည်းထန်စွာရွာသွန်းမှုကြောင့် ရခိုင်ပြည်နယ် အပါအဝင် မြန်မာနိုင်ငံအနှံ့ ရီကြီးမှုတိ ဖြစ်ပွားခရေ။ သြဂတ်လကုန်မာ ရခိုင်ပြည်နယ်မာ ရီကြီးမှုနန့် ဖျားရီတက်မှုတိကြောင့် လူဦးရွီ ၆,၄၀၀ ခန့် နီရပ်စွန့်ခွာ ထွက်ဗြီးခရရေ။<ref name="UNOSAT2016" /> === ၂၀၁၅ ခုနှစ် ဂျုန်လ ရီကြီးမှုနန့် ဆိုင်ကလုန်းမုန်တိုင်း === ၂၀၁၅ ခုနှစ် ဂျူလိုင်လ ၁၆ ရက်နိမာ စတင်ခရေ မိုးသည်းထန်စွာရွာသွန်းမှုစွာ သြဂုတ်လအထိ ကြာမြင့်ခပြီးကေ နိုင်ငံဧ့ ပြည်နယ်နန့်တိုင်းဒေသကြီး ၁၄ ခုအနက် ၁၂ ခုကို သက်ရောက်မှုဟိခရေ။<ref name="ABC2015">{{cite web |url=https://www.abc.net.au/news/2015-08-03/monsoon-rains-hit-asia-killing-hundreds-myanmar-india-pakistan/6669692 |title=Asia flooding: Hundreds dead, 1 million displaced as monsoon rains hit Myanmar, India, Pakistan |author=<!--Not stated--> |date=3 August 2015 |website=ABC News |publisher=Australian Broadcasting Corporation |access-date=16 July 2026}}</ref> ဂျုန်လကုန်မာ ရခိုင်ပြည်နယ်ဧ့ မြို့နယ် ၁၄ မြို့နယ်မာ သုံးရက်ကြာ မိုးသည်းထန်စွာရွာသွန်းမှုကြောင့် ရီကြီးမှု ဖြစ်ပွားခရေ။<ref name="ABC2015" /> ဒေရီကြီးမှုကြောင့် လူ ၆ ဦး သီဆုံးပြီး တိရစ္ဆာန် ၂၅,၀၅၅ ကောင် သီဆုံးခရေ။ ဆန်စပါးစိုက်ခင်း ၂.၅၆၄ ဧက၊ အိမ် ၅၉၂ လုံး၊ ကျောင်း ၇ ကျောင်း၊ ဘုရားကျောင်း/ဘုန်းကြီးကျောင်း ၂ ကျောင်း၊ တန်းထား ၅၄ စင်း နန့် လမ်းတိ ပျက်စီးခရေ။<ref name="ABC2015" /> ပျက်စီးဆုံးယှုံးမှုအများဆုံးမြို့နယ်မာ အမ်းမြို့နယ်ဖြစ်ပြီးကေ ကျပ်ဖေသာ ၁.၄ ဘီလီယံခန့် ဆုံးယှုံးခရေ။<ref name="ABC2015" /> ပြည်ထောင်စုအစိုးရက ရခိုင်ပြည်နယ်အတွက် ကျပ်ဖေသာ ၃.၂၁၆ ဘီလီယံ ကူညီထောက်ပင့်ကြောင်း ကြေညာခရေ။<ref name="ABC2015" /> ဂျူလိုင်လ ၃၀ ရက်နိမာ ဆိုင်ကလုန်းမုန်တိုင်း (Cyclone Komen) စွာ မြန်မာနိုင်ငံအနှံ့ မိုးသည်းထန်စွာ ရွာသွန်းစီရား ရီကြီးမှုတိ ပိုပြီးကေဆိုးရွားစီခရေ။<ref name="DMH2015">{{cite web |url=https://reliefweb.int/report/myanmar/cyclone-warning-july-30-2015 |title=Cyclone Warning - July 30, 2015 |author=<!--Not stated--> |date=30 July 2015 |website=ReliefWeb |publisher=Myanmar Department of Meteorology and Hydrology |access-date=16 July 2026}}</ref> ၂၀၁၅ ခုနှစ် ရီကြီးမှုစွာ ရခိုင်ပြည်နယ်ကို အပြင်းထန်ဆုံး ထိခိုက်စီခပြီးကေ သီဆုံးသူ ၁၀၃ ဦးထက်မနည်းဟိခပြီးကေ လူဦးရွီ ၁ သန်းအထိ ထိခိုက်ခံစားခရရေ။<ref name="ABC2015" /> လူဦးရွီ ၁.၆ သန်းကျော် ထိခိုက်ခံစားခရယား အိမ် ၁၀,၉၅၆ လုံး ပျက်စီးခရေ။<ref name="IOM2015">{{cite web |url=https://reliefweb.int/report/myanmar/myanmar-dtm-preliminary-report-cyclone-komen-maungdaw-buthidaung-and-ann-31-august |title=Myanmar: DTM Preliminary Report - Cyclone Komen: Maungdaw, Buthidaung and Ann, 31 August 2015 |author=<!--Not stated--> |date=31 August 2015 |website=ReliefWeb |publisher=IOM |access-date=16 July 2026}}</ref> စိုက်ပျိုးရီးနန့်ဆည်မြောင်းဝန်ကြီးဌာနဧ့ အဆိုအရ နိုင်ငံတဝန်း စိုက်ဧက ၁.၂၉ သန်းဧက ရီမြုပ်ခပြီးကေ ၆၈၇,၂၀၀ ဧက ပျက်စီးခရေ။<ref name="ABC2015" /> ရခိုင်ပြည်နယ်တခုတည်းမာ စိုက်ဧက ၁၀၅,၃၀၀ ဟက်တာကျော် ရီမြုပ်ခရေ။<ref name="ABC2015" /> ယင်းရီကြီးမှုကြောင့် ၂၀၁၅-၂၀၁၆ ဘဏ္ဍာနှစ် ဧပြီလမှ ဂျန်နဝါရီလအထဲ ဆန်တန်ချိန် ၈၃၀,၀၀၀ သာ တင်ပို့နှိုင်ခပြီး အယင်ဘဏ္ဍာနှစ်က တင်ပို့မှုတန်ချိန် ၁.၈ သန်းဟိခရာမှ ၁၅၀,၀၀၀ တန်ချိန်ကျော် ကြီ့ဆင်းးခီရေ။<ref name="ABC2015" /> အစိုးရက ရခိုင်ပြည်နယ်၊ ချင်းပြည်နယ်၊ စစ်ကိုင်းတိုင်းဒေသကြီးနန့် မကွေးတိုင်းဒေသကြီးရို့ကို ဖီးအန္တရာယ်ကျရောက်သော ဒေသတိအဖြစ် ကြေညာခရေ။<ref name="ABC2015" /> === ၂၀၁၆ ခုနှစ် ဂျူလိုင်လ ရီကြီးမှု === ၂၀၁၆ ခုနှစ် ဂျူလိုင်လ ၁ ရက်နိမှစတင်ပနာ မုတ်သုံမိုးသည်းထန်စွာရွာသွန်းမှုကြောင့် ရခိုင်ပြည်နယ် အပါအဝင် ကချင်ပြည်နယ်၊ ချင်းပြည်နယ်၊ စစ်ကိုင်းတိုင်းဒေသကြီးနန့် ပဲခူးတိုင်းဒေသကြီးရို့မာ ရီကြီးမှုနန့် မြီပြိုမှုတိ ဖြစ်ပွားခရေ။<ref name="UNOSAT2016" /> ဂျူလိုင်လ ၁၄ ရက်နိမာ ရခိုင်ပြည်နယ် အနောက်မြောက်ပိုင်း၊ [[ကျောက်တော်မြို့နယ်]]၊ [[မြောက်ဦးမြို့နယ်]] နန့် [[ပုဏ္ဏားကျွန်းမြို့နယ်]]ရို့မာ မုတ်သုံမိုးသည်းထန်စွာရွာသွန်းမှုကြောင့် ရီကြီးမှုဖြစ်ပွားခရေ။<ref name="UNOSAT2016" /> ရခိုင်ပြည်နယ်အစိုးရဧ့ အစီအစာခံစာအရ ထိခိုက်မှုအများဆုံးမြို့နယ်လေးခုဖြစ်ရေ မင်းပြား (၁၃,၁၂၃ ဦး)၊ အမ်း (၄,၆၅၉ ဦး)၊ မြောက်ဦး (၃,၆၉၆ ဦး) နန့် ကျောက်တော် (၂,၈၂၈ ဦး) ရို့မာ လူဦးရွီ ၂၄,၃၀၆ ဦး နီရပ်စွန့်ခွာခရရေ။<ref name="UNOSAT2016" /> ဂြိုဟ်တုဓာတ်ပုံတိအရ ရီမြုပ်မှုဧရိယာ ~၂,၅၄၉ စတုရန်းကီလိုမီတာ (~၈%) ဟိပြီးး လူဦးရွီ ၆,၅၀၀ ကျော် ရီကြီးဧရိယာအထဲ တိုက်ရိုက်နီထိုင်ခရပြီးကေ စုစုပေါင်းလူဦးရွီ ~၅၀၀,၀၀၀ (~၂၀%) မာ ထိခိုက်နိုင်ခြေဟိသူတိဖြစ်ကတ်ောင်း သိရရေ။<ref name="UNOSAT2016" /> လမ်းပန်းဆက်သွယ်ရီးအရ ကီလိုမီတာ ၂၃၀ ကျော်သော လမ်းတိ ထိခိုက်ခရေ။<ref name="UNOSAT2016" /> == ရီကြီးမှုဖြစ်ပွားရရေ အကြောင်းရင်းတိ == ရခိုင်ပြည်နယ်စွာ မုတ်သုံမိုးရွာသွန်းရာသီမာ [[ဘင်္ဂလားပင်လယ်အော်]]မှ မိုးတိစွာ သယ်ဆောင်လာရေ လီစီးကြောင်းတိဧ့ လမ်းကြောင်းထက်မာ တည်ဟိရေ။ [[ရခိုင်ရိုးမ]]တောင်တန်းစွာ မိုးရိပ်တိကို ထီးကာ မိုးရီချိန်ကို ပိုပြီးကေမြင့်မားစီရေ။ ယင်းချင့်အပြင် ပြည်နယ်အထဲဟိ မြစ်ငယ်တိစွာ မိုးများချိန်မာ ရေပမာဏ သိသိသာသာ မြင့်တက်လာယား ကမ်းလျှံရီကြီးမှုတိကို ဖြစ်ပေါ်စီရေ။ ဆိုင်ကလုန်းမုန်တိုင်းတိစွာလေ့ ရီကြီးမှုကို ပိုပြီးကေဆိုးရွားစီရေ အဓိကအကြောင်းရင်းတခုဖြစ်တေ။<ref name="UNOSAT2016" /> == ဖီးအန္တရာယ်လျှော့ချရီး ဆောင်ရွက်ချက်တိ == ရခိုင်ပြည်နယ်မာ ရီကြီးမှုဒဏ်ကို ကြိုတင်ကာကွယ်ရန်နန့် လျှော့ချဖို့အတွက် မြစ်ကမ်းနံရံတိ ဆောက်လုပ်ခြင်း၊ ရီလွှဲမြောင်းတိ ပြုပျင်ခြင်းနန့် မိုးလီဝသသတင်းခန့်မှန်းချက်စနစ်တိ မြှင့်တင်ခြင်းရို့ကို ဆောင်ရွက်ပနာဟိရေ။ ယဒါလေ့ ရာသီဥတုပြောင်းလဲမှုနန့် မုတ်သုံမိုးဧ့ သဘောသဘာဝအရ ရီကြီးမှုအန္တရာယ်မာ ဆက်ပနာတည်ဟိနီတုန်းဖြစ်တေ။<ref name="UNOSAT2016" /> == See also == * [[၂၀၂၅ ခုနှစ် မြန်မာတွင်း ငလျင်]] * [[၂၀၂၆ ရခိုင်ပြည် ရီကြီးမှု]] * [[၂၀၂၅ ရခိုင်ပြည် ရီကြီးမှု]] == Notes == {{Reflist}} == References == {{reflist}} * {{cite web |url=https://reliefweb.int/map/myanmar/floods-rakhine-state-myanmar-situation-analysis-preliminary-report |title=Floods in Rakhine State, Myanmar: Situation Analysis Preliminary Report |author=<!--Not stated--> |date=24 July 2016 |website=ReliefWeb |publisher=UNITAR-UNOSAT |access-date=16 July 2026}} * {{cite web |url=https://www.bbc.com/news/world-asia-pacific-11617613 |title=Cyclone Giri pummels west Burma |author=<!--Not stated--> |date=24 October 2010 |website=BBC News |publisher=BBC |access-date=16 July 2026}} * {{cite web |url=https://reliefweb.int/report/myanmar/myanmar-dtm-preliminary-report-cyclone-komen-maungdaw-buthidaung-and-ann-31-august |title=Myanmar: DTM Preliminary Report - Cyclone Komen: Maungdaw, Buthidaung and Ann, 31 August 2015 |author=<!--Not stated--> |date=31 August 2015 |website=ReliefWeb |publisher=IOM |access-date=16 July 2026}} * {{cite report |url=https://reliefweb.int/attachments/dd957a93-d82a-3370-8b89-f74cba35bc44/Burma%20Rakhine%20State%20IDP%20Camps%20at%20Risk%20of%20Monsoon%20Flooding%20%28as%20of%2026%20April%202013%29.pdf |title=Burma Rakhine State IDP Camps at Risk of Monsoon Flooding |author=<!--Not stated--> |date=26 April 2013 |publisher=UNOSAT |access-date=16 July 2026}} * {{cite web |url=https://www.abc.net.au/pm/archive/articles/2010/11/05/s3058667.htm |title=Residents of remote west Burma devastated by Cyclone Giri |author=<!--Not stated--> |date=5 November 2010 |website=ABC PM |publisher=Australian Broadcasting Corporation |access-date=16 July 2026}} * {{cite web |url=https://www.abc.net.au/news/2015-08-03/monsoon-rains-hit-asia-killing-hundreds-myanmar-india-pakistan/6669692 |title=Asia flooding: Hundreds dead, 1 million displaced as monsoon rains hit Myanmar, India, Pakistan |author=<!--Not stated--> |date=3 August 2015 |website=ABC News |publisher=Australian Broadcasting Corporation |access-date=16 July 2026}} * {{cite web |url=http://www.chinadaily.com.cn/imqq/world/2010-11/01/content_11485323.htm |title=170,000 people affected by cyclone Giri in Myanmar |author=<!--Not stated--> |date=1 November 2010 |website=China Daily |publisher=Xinhua |access-date=16 July 2026}} * {{cite web |url=https://reliefweb.int/report/myanmar/cyclone-warning-july-30-2015 |title=Cyclone Warning - July 30, 2015 |author=<!--Not stated--> |date=30 July 2015 |website=ReliefWeb |publisher=Myanmar Department of Meteorology and Hydrology |access-date=16 July 2026}} * {{cite web |url=https://reliefweb.int/disaster/fl-2013-000087-mmr?lang=fr |title=Myanmar: Floods - Aug 2013 |author=<!--Not stated--> |date=30 November 2013 |website=ReliefWeb |publisher=OCHA |access-date=16 July 2026}} * {{cite web |url=https://www.preventionweb.net/news/more-one-month-after-cyclone-komen-some-impacted-people-remain-homeless |title=More than one month after Cyclone Komen, some impacted people remain homeless |author=<!--Not stated--> |date=21 September 2015 |website=PreventionWeb |publisher=UNHCR |access-date=16 July 2026}} {{Authority control}} [[Category:ရခိုင်ပြည်နယ်]] [[Category:မြန်မာနိုင်ငံဟိ ရီကြီးရီလျှံမှုတိ]] [[Category:ရခိုင်ပြည်နယ်ဟိ သဘာဝဖီအန္တရာယ်တိ]] fbhdqm419xucoz6c29e64n0old60f55 တမ်းပလိတ်:Instagram 10 5080 19580 2026-07-16T07:47:36Z YaThaWinTha 42 Created page with "[[File:Instagram logo 2022.svg|20px]] [[အင်စတာဂရမ်]] ပေါ်ဟိ {{#if:{{{1<includeonly>|</includeonly>}}}{{{id|}}}{{#property:P2003}} |[https://www.instagram.com/{{Trim|{{{1|{{{id<includeonly>|{{#property:P2003}}</includeonly>}}}}}}}}/ {{#if:{{{2|{{{name<includeonly>|</includeonly>}}}}}}|{{{2|{{{name}}}}}}|{{PAGENAMEBASE}}}}] <includeonly>{{EditAtWikidata|pid=P2003|{{{1|{{{id|}}}}}}}}</includeonly> |<span class="error">&#123;&#123;Template..." 19580 wikitext text/x-wiki [[File:Instagram logo 2022.svg|20px]] [[အင်စတာဂရမ်]] ပေါ်ဟိ {{#if:{{{1<includeonly>|</includeonly>}}}{{{id|}}}{{#property:P2003}} |[https://www.instagram.com/{{Trim|{{{1|{{{id<includeonly>|{{#property:P2003}}</includeonly>}}}}}}}}/ {{#if:{{{2|{{{name<includeonly>|</includeonly>}}}}}}|{{{2|{{{name}}}}}}|{{PAGENAMEBASE}}}}] <includeonly>{{EditAtWikidata|pid=P2003|{{{1|{{{id|}}}}}}}}</includeonly> |<span class="error">&#123;&#123;[[Template:Instagram|Instagram]]&#125;&#125; template missing ID and not present in Wikidata.</span>{{Main other|[[Category:Instagram template missing ID]]}} }}<noinclude> {{Documentation}} </noinclude> ln4u226wxujinkox44ns8dqna444a1q တမ်းပလိတ်:Medal 10 5081 19581 2026-07-16T07:49:45Z YaThaWinTha 42 Created page with "<noinclude>{{pp-template|small=yes}} {| class="infobox" style="width: 25em; font-size: 95%;" </noinclude> |- {{#switch: {{{1}}} |Sport|Team|Country|Independent = style="background-color:#eeeeee;" |Competition|Comp|Olympic|Olympics|WorldChampionships|EuropeanChampionships = style="background-color:#cccccc;"}} | style="text-align:center;vertical-align:middle;{{#switch: {{{1}}} | Gold | G = " {{!}} File:Gold medal icon (G initial).svg|16px|ရွ..." 19581 wikitext text/x-wiki <noinclude>{{pp-template|small=yes}} {| class="infobox" style="width: 25em; font-size: 95%;" </noinclude> |- {{#switch: {{{1}}} |Sport|Team|Country|Independent = style="background-color:#eeeeee;" |Competition|Comp|Olympic|Olympics|WorldChampionships|EuropeanChampionships = style="background-color:#cccccc;"}} | style="text-align:center;vertical-align:middle;{{#switch: {{{1}}} | Gold | G = " {{!}} [[File:Gold medal icon (G initial).svg|16px|ရွှီတံဆိပ် – ပထမနီရာ|link=]] | Silver | S = " {{!}} [[File:Silver medal icon (S initial).svg|16px|ဖေသာတံဆိပ် – ဒုတိယနီရာ|link=]] | Bronze | B = " {{!}} [[File:Bronze medal icon (B initial).svg|16px|ကြီးတံဆိပ် – တတိယနီရာ|link=]] | Winner | W = background-color:gold" {{!}} '''အနိုင်ရသူ'''{{Main other}} | Runner-up | Runnerup | RU = background-color:silver" {{!}} '''Runner-up'''{{Main other}} | First | 1st = " {{!}} [[File:Gold medal icon.svg|16px|First place|link=]] | Second | 2nd = " {{!}} [[File:Silver medal icon.svg|16px|Second place|link=]] | Third | 3rd = " {{!}} [[File:Bronze medal icon.svg|16px|Third place|link=]] | Disqualified | DQ = background-color:pink" {{!}} '''အရည်အခြင်းမမီ''' | TrueSpirit | PdC = background-color:white" {{!}} [[File:Olympic_rings.svg|30px]]{{!!}}style="background-color:white" {{!}}'''[[Pierre de Coubertin medal]]''' | Competition | Comp | Sport | Team = " colspan="3" {{!}} '''<span class="nowrap">{{{2|}}}</span>''' | Olympics | Olympic = " colspan="3" {{!}} '''<span class="nowrap">[[အိုလံပစ် အားကဇပ်ပွဲတော်]]</span>''' | WorldChampionships = " colspan="3" {{!}} '''<span class="nowrap">World Championships</span>''' | EuropeanChampionships = " colspan="3" {{!}} '''<span class="nowrap">European Championships</span>''' | Country = " colspan="3" class="adr" {{!}} '''<span class="country-name">{{{2}}}</span> အတွက် ယှဥ်ပြိုင်''' | Independent = " colspan="3" class="adr" {{!}} '''Competed as an <span class="country-name">{{{2}}}</span>''' | #default = " {{!}} &#32; {{Main other}} }}{{#switch: {{{1}}} |Competition|Comp|Country|Sport|Team|Independent|Olympic|Olympics|WorldChampionships|EuropeanChampionships= |#default = {{!!}} style="text-align:center;vertical-align:middle;" {{!}} <span class="nowrap">{{{2}}}</span> }}{{#switch: {{{1}}} |Competition|Comp|Country|Sport|Team|TrueSpirit|PdC|Independent|Olympic|Olympics|WorldChampionships|EuropeanChampionships= |#default = {{!!}} style="text-align:center;vertical-align:middle;" {{!}} {{{3}}}}}<noinclude> |} {{documentation}} </noinclude> m9oxxayqzjkzefozre5az4up0gflvvk တမ်းပလိတ်:MedalCompetition 10 5082 19582 2026-07-16T07:50:37Z YaThaWinTha 42 Created page with "<noinclude>{| class="infobox" style="width: 25em; font-size: 95%;" </noinclude> |- ! colspan="3" style="text-align:center;vertical-align:middle;background-color:#cccccc;" | {{#switch:{{{1|}}} |Olympics|Olympiad|olympiad|Olympic|Olympic Games|olympics|olympic|olympic games|Olympic games|Oly|oly|OG|og|အိုလံပစ်|အိုလံပစ် အားကဇပ်ပွဲတော်|အိုလံပစ်အားကဇပ်ပွဲတော်=အိုလ..." 19582 wikitext text/x-wiki <noinclude>{| class="infobox" style="width: 25em; font-size: 95%;" </noinclude> |- ! colspan="3" style="text-align:center;vertical-align:middle;background-color:#cccccc;" | {{#switch:{{{1|}}} |Olympics|Olympiad|olympiad|Olympic|Olympic Games|olympics|olympic|olympic games|Olympic games|Oly|oly|OG|og|အိုလံပစ်|အိုလံပစ် အားကဇပ်ပွဲတော်|အိုလံပစ်အားကဇပ်ပွဲတော်=[[အိုလံပစ် အားကဇပ်ပွဲတော်]] |Commonwealth Games|commonwealth games|Commonwealth games|Commonwealth|commonwealth|Com|com=[[Commonwealth Games]] |X Games|x games|X games|x|X=[[X Games]] |Goodwill Games|Goodwill games|goodwill games|goodwill|Goodwill|Good|good=[[Goodwill Games]] |IAAF World Indoor Championships in Athletics|World Indoor Championships|WIC|wic|Indoor Championships|world indoor championships|indoor championships=[[IAAF World Indoor Championships in Athletics|World Indoor Championships]] |UEFA Champions League|European Cup|european cup|European cup|Champions League|Euro Cup|EuroCup|euro cup|eurocup|EC|ec|UEFA|ဥရာပဖလား=[[UEFA Champions League|European Cup]] |Asian Games|Asiad|asiad|Asian games|asian games|AG|ag|အာသျှအားကဇပ်ပွဲတော်|အာသျှ အားကဇပ်ပွဲတော်=[[Asian Games]] |National Games of the People's Republic of China|National Games of PRC|National Games of the PRC|National Games of China|All China Games|ACG|PRC|acg|prc|NGPRC|ngprc=[[National Games of the People's Republic of China|All China Games]] |Ski flying World Championships|Ski Flying World Championships|Ski-flying World Championships|Ski-Flying World Championships|SWC|swc|SFWC|sfwc=[[Ski flying World Championships]] |IAAF World Half Marathon Championships|World Half Marathon Championships|Half Marathon Championships|HMC|hmc|WHMC|whmc=[[IAAF World Half Marathon Championships|World Half Marathon Championships]] |IAAF World Road Running Championships|World Road Running Championships|Road Running Championships|RRC|rrc|WRRC|wrrc=[[IAAF World Road Running Championships|World Road Running Championships]] |IAAF World Championships in Athletics|World Championships in Athletics|Championships in Athletics|World Athletics Championships|WAC|wac=[[IAAF World Championships in Athletics|World Championships in Athletics]] |IAAF World Cross Country Championships|World Cross Country Championships|Cross Country Championships|CCC|ccc|WCCC|wccc=[[IAAF World Cross Country Championships|World Cross Country Championships]] |IAAF World Junior Championships in Athletics|World Junior Championships in Athletics|Junior Championships in Athletics|JCA|jca|WJCA|wjca|WJC|wjc=[[IAAF World Junior Championships in Athletics|World Junior Championships in Athletics]] |IAAF World Youth Championships in Athletics|World Youth Championships in Athletics|Youth Championships in Athletics|World Youth Championships|YCA|yca|WYCA|wyca|WYC|wyc=[[IAAF World Youth Championships in Athletics|World Youth Championships in Athletics]] |IAAF World Race Walking Cup|World Race Walking Cup|Race Walking Cup|RWC|rwc|WRWC|wrwc=[[IAAF World Race Walking Cup|World Race Walking Cup]] |IAAF World Cup in Athletics|World Cup in Athletics|WCA|wca|Athletics World Cup=[[IAAF World Cup in Athletics|World Cup in Athletics]] |IAAF Golden League|Golden League|golden league|GL|gl=[[IAAF Golden League|Golden League]] |IAAF World Athletics Final|World Athletics Final|Athletics Final|waf|af|WAF|AF=[[IAAF World Athletics Final|World Athletics Final]] |IAAF Grand Prix Final|Grand Prix Final|GPF|gpf=[[IAAF Grand Prix Final|Grand Prix Final]] |Paralympic Games|paralympic games|Paralympic games|Paralympics|paralympics|Paralympic|paralympic|PG|pg|PAR|par=[[Paralympic Games]] |#default={{{1}}} }}<noinclude> |} {{documentation}} </noinclude> o703qh3b4lwaibu9f7upfnyw5pe7kqg တမ်းပလိတ်:Tmbox 10 5083 19583 2026-07-16T07:51:53Z YaThaWinTha 42 Created page with "{{#invoke:Message box|tmbox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>" 19583 wikitext text/x-wiki {{#invoke:Message box|tmbox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude> jcav8pdjkvcwg8gc4m0b4gox7yjnxku တမ်းပလိတ်:MedalCountry 10 5084 19584 2026-07-16T07:52:12Z YaThaWinTha 42 Created page with "<noinclude>{| class="infobox" style="width: 25em; font-size: 95%;" </noinclude>{{Medal|Country|{{{1}}}}}<noinclude> |} {{-}} {{tmbox|text=This template should be used for athletes who have competed for different countries. There are many examples from the break up of the USSR as well as athletes from the UK competing at the Commonwealth Games. Other athletes have switched nationality, for example [[Wilson Kipketer]] was Kenyan but competed for Denmark too.}} {{documenta..." 19584 wikitext text/x-wiki <noinclude>{| class="infobox" style="width: 25em; font-size: 95%;" </noinclude>{{Medal|Country|{{{1}}}}}<noinclude> |} {{-}} {{tmbox|text=This template should be used for athletes who have competed for different countries. There are many examples from the break up of the USSR as well as athletes from the UK competing at the Commonwealth Games. Other athletes have switched nationality, for example [[Wilson Kipketer]] was Kenyan but competed for Denmark too.}} {{documentation|Template:Medal templates documentation}} [[Category:Medal infobox templates]] </noinclude> oqvpbrt8cebxnqd32lgf9vwl33u0i7d တမ်းပလိတ်:MedalSport 10 5085 19585 2026-07-16T07:53:04Z YaThaWinTha 42 Created page with "<noinclude>{| class="infobox" style="width: 25em; font-size: 95%;" </noinclude> |- ! colspan="3" style="text-align:center;vertical-align:middle;background-color:#eeeeee;" | {{{1}}}{{Main other | {{#ifeq: {{#property:P21}} | male | {{#ifeq: {{str left|{{{1}}}|5}} | Women | [[Category:Articles about men with MedalSport template for women's sport]]}}}}{{#ifeq: {{#property:P21}} | female | {{#ifeq: {{str left|{{{1}}}|3}} | Men | Category:Articles about women with MedalSpor..." 19585 wikitext text/x-wiki <noinclude>{| class="infobox" style="width: 25em; font-size: 95%;" </noinclude> |- ! colspan="3" style="text-align:center;vertical-align:middle;background-color:#eeeeee;" | {{{1}}}{{Main other | {{#ifeq: {{#property:P21}} | male | {{#ifeq: {{str left|{{{1}}}|5}} | Women | [[Category:Articles about men with MedalSport template for women's sport]]}}}}{{#ifeq: {{#property:P21}} | female | {{#ifeq: {{str left|{{{1}}}|3}} | Men | [[Category:Articles about women with MedalSport template for men's sport]]}}}}}}<noinclude> |} {{documentation}} </noinclude> bvfvw6j31imx1fwk7hf02ogxuimofid လီယွန်နယ် မက်ဆီ 0 5086 19586 2026-07-16T08:38:26Z YaThaWinTha 42 Created page with "{{Infobox ဘောလုံးသမား | name = လီယွန်နယ် မက်ဆီ | image = Lionel Messi 2017.jpg | image_size = 250 | caption = ၂၀၁၇ ခုနှစ်မာ မက်ဆီ | full_name = လီယွန်နယ် အင်ဒရက် မက်ဆီ ကူချစ်တီနီ | birth_date = {{birth date|1987|6|24|df=yes}} | birth_place = [[ရိုဆာရီယိုမြို့]]၊ အာဂျင်တီးနာ..." 19586 wikitext text/x-wiki {{Infobox ဘောလုံးသမား | name = လီယွန်နယ် မက်ဆီ | image = Lionel Messi 2017.jpg | image_size = 250 | caption = ၂၀၁၇ ခုနှစ်မာ မက်ဆီ | full_name = လီယွန်နယ် အင်ဒရက် မက်ဆီ ကူချစ်တီနီ | birth_date = {{birth date|1987|6|24|df=yes}} | birth_place = [[ရိုဆာရီယိုမြို့]]၊ အာဂျင်တီးနား | height = ၁.၆၉ မီတာ<ref name="FCB">{{Cite web|url=https://www.fcbarcelona.com/en/football/first-team/players/4974/lionel-messi |title=Lionel Messi |publisher=FC Barcelona |access-date=2026-07-16}}</ref> | position = [[ဟိတန်း (ဘောလုံး)|ဟိတန်း]] | currentclub = [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]] | clubnumber = ၁၀ | youthyears1 = ၁၉၉၅–၂၀၀၀ | youthclubs1 = နယူး အိုးဘွိုင်း | youthyears2 = ၂၀၀၀–၂၀၀၃ | youthclubs2 = [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]] | years1 = ၂၀၀၃–၂၀၀၄ | clubs1 = ဘာစီလိုနာ စီ | caps1 = ၁၀ | goals1 = ၅ | years2 = ၂၀၀၄–၂၀၀၅ | clubs2 = ဘာစီလိုနာ ဘီ | caps2 = ၂၂ | goals2 = ၆ | years3 = ၂၀၀၄–၂၀၂၁ | clubs3 = [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]] | caps3 = ၅၂၀ | goals3 = ၄၇၄ | years4 = ၂၀၂၁–၂၀၂၃ | clubs4 = [[ပါရီ စိန့်ဂျာမိန် ဘောလုံးအသင်း|ပါရီ စိန့်ဂျာမိန်]] | caps4 = ၅၈ | goals4 = ၂၂ | years5 = ၂၀၂၃– | clubs5 = [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]] | caps5 = ၁၃ | goals5 = ၁၂ | nationalyears1 = ၂၀၀၄–၂၀၀၅ | nationalteam1 = အာဂျင်တီးနား ယူ-၂၀ | nationalcaps1 = ၁၆ | nationalgoals1 = ၁၁ | nationalyears2 = ၂၀၀၈ | nationalteam2 = အာဂျင်တီးနား ယူ-၂၃ | nationalcaps2 = ၅ | nationalgoals2 = ၂ | nationalyears3 = ၂၀၀၅– | nationalteam3 = [[အာဂျင်တီးနားအမျိုးသားဘောလုံးအသင်း|အာဂျင်တီးနား]] | nationalcaps3 = ၁၈၀ | nationalgoals3 = ၁၀၈ }} '''လီယွန်နယ် အင်ဒရက် မက်ဆီ ကူချစ်တီနီ''' ({{Lang-es|Lionel Andrés Messi Cuccittini}}; ၁၉၈၇ ခုနှစ်၊ ဂျုန်လ ၂၄ ရက်ဖွား) စွာ [[အာဂျင်တီးနား]] [[ဘောလုံးသမား]]တဦးဖြစ်ပြီးကေ [[မေဂျာလိဂ်ဆိုကာ]]ကလပ် [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]]နန့် [[အာဂျင်တီးနားအမျိုးသားဘောလုံးအသင်း]]ရို့မာ [[ဟိတန်း (ဘောလုံး)|ဟိတန်း]]နီရာမာ ကစပ်ဗျာယ်ဟိရေ။ သူစွာ သမိုင်းတလျှောက် ကောင်းဘီယက် ဘောလုံးသမားတဦးအဖြစ် ကျကျယ်ပြပြန့် သတ်မှတ်ခံရရေ။<ref name="Greatest">{{Cite web|url=https://www.bbc.com/sport/football/64042613 |title=Messi: The greatest player of all time? |publisher=BBC Sport |date=18 December 2022|access-date=16 July 2026}}</ref><ref name="Guardian">{{Cite news |url=https://www.theguardian.com/football/2022/dec/18/lionel-messi-greatest-ever-footballer-world-cup-win|title=Lionel Messi cements his place as the greatest ever with World Cup win |work=The Guardian|date=18 December 2022|access-date=16 July 2026}}</ref> == ငယ်ဘဝ == မက်ဗားကို ၁၉၈၇ ခုနှစ် ဂျုန်လ ၂၄ ရက်မာ [[အာဂျင်တီးနား]]နိုင်ငံ၊ [[ဆန်တာဖေပြည်နယ်]]၊ [[ရိုဆာရီယိုမြို့]]မာ မွီးဖွားရေ။<ref name="Bio">{{Cite book |last=Balagué |first=Guillem |title=Messi |publisher=Orion Books |year=2013 |isbn=978-1-4091-4659-9 |pages=25–30}}</ref> ဖခင်မာ ဟော်ဟေမက်ဆီဖြစ်ပြီးကေ မိခင်မာ ဆီလီယာ ကူချစ်တီနီ ဖြစ်တေ။ သူမာ မောင်နှမ သုံးဦးဟိရေ။<ref name="Bio" /> ငယ်စဉ်က ဂရန်ဒိုလီအသင်းမာ စတင်ကစပ်ခရေ။<ref name="Grandoli">{{Cite web |url=https://www.goal.com/en/news/8/main/2012/10/13/3448085/messi-remember-grandoli-as-his-first-club |title=Messi remember Grandoli as his first club |publisher=Goal.com |date=13 October 2012 |access-date=16 July 2026}}</ref> အသက် ၁၀ နှစ်မာ [[ကြီးထွားဟော်မုန်းချို့တဲ့ရေ ရောဂါ]] (Growth Hormone Deficiency) ဟိကြောင်း စစ်ဆီးတွိ့ဟိခရေ။<ref name="Growth">{{Cite news |url=https://www.telegraph.co.uk/sport/football/players/lionel-messi/11309352/Lionel-Messi-profile.html |title=Lionel Messi profile |work=The Telegraph |date=16 December 2014 |access-date=16 July 2026}}</ref> ယင်းရောဂါအတွက် ကုသစရိတ်မာ များရေတွက်တာနန့် မိသားစုမာ ဘဏ္ဍာရီးအခက်အခဲ ကြုံခရရေ။<ref name="Growth" /> ၂၀၀၀ ခုနှစ်မာ [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]]ကလပ်ဧ့ လူငယ်အကယ်ဒမီသို့ ရောက်ဟိခပြီး ကလပ်က သူ ကုသစရိတ်တိကို တာဝန်ယူပီးခရေ။<ref name="BarcaMove">{{cite web |url=https://www.fcbarcelona.com/en/news/1405920/the-story-of-the-famous-napkin |title=The story of the famous napkin |publisher=FC Barcelona |date=14 December 2020|access-date=16 July 2026}}</ref> == ကလပ်ဘဝ == === ဘာစီလိုနာ (၂၀၀၄–၂၀၂၁) === မက်ဆီစွာ အသက် ၁၇ နှစ်အရွယ် ၂၀၀၄ ခုနှစ် အောက်တိုဘာလ ၁၆ ရက်မာ ဘာစီလိုနာဧ့ အဓိကအသင်းအတွက် [[လာလီဂါ]]မာ အရင်ဆုံး ကစပ်ခရေ။<ref name="Debut">{{Cite web |url=https://www.fcbarcelona.com/en/football/first-team/news/1498157/messis-debut-15-years-on |title=Messi's debut 15 years on |publisher=FC Barcelona |date=16 October 2019 |access-date=16 July 2026}}</ref> ၂၀၀၅ ခုနှစ် မေလ ၁ ရက်မာ [[အယ်လ်ဘာစီတီ]]ကို ဂိုးသွင်းကာ ပထမဆုံးဂိုးကို သွင်းယူခရေ။<ref name="FirstGoal">{{Cite news |url=https://www.marca.com/en/football/barcelona/2019/05/01/5cc9677d46163f7d198b4607.html |title=Messi's first goal for Barcelona: 14 years ago today |work=Marca |date=1 May 2019 |access-date=16 July 2026}}</ref> ပက် ဂွါဒီယိုလာဧ့ နည်းပြအဖြစ်မာ [[ချာဗီ ဟန်နန်ဒက်စ်|ချာဗီ]]နန့် [[အင်ဒရက်စ် အီနီယက်စတာ|အီနီယက်စတာ]]ရို့နန့်တတူ ထိရောက်ရေ သုံးဦးတပ်တိုက်စစ်လိုင်း (trio) ကို ဖွဲ့စည်းနိုင်ခရေ။<ref name="Trio">{{Cite web |url=https://www.espn.com/soccer/story/_/id/37456974/xavi-iniesta-messi-masterminds-barcelona-greatest |title=Xavi, Iniesta and Messi: Masterminds of Barcelona's greatest era |publisher=ESPN |date=20 May 2020 |access-date=16 July 2026}}</ref> ဘာစီလိုနာမာ ကစပ်စဉ် မက်ဆီစွာ လာလီဂါဖလား ၁၀ ကြိမ်၊<ref name="LaLiga">{{Cite web |url=https://www.laliga.com/en-GB/news/lionel-messi-the-la-liga-record-breaker |title=Lionel Messi: The La Liga record breaker |publisher=La Liga |date=28 December 2020 |access-date=16 July 2026}}</ref> [[ယူအီးအက်ဖ်အေ ချန်ပီယံလိဂ်]]ဖလား ၄ ကြိမ် အပါအဝင် ဆုတံဆိပ် ၃၄ ခုကို ရဟိခရေ။<ref name="Trophies">{{Cite web |url=https://www.sportingnews.com/us/soccer/news/lionel-messi-trophies-championships-barcelona-psg/ohixlqmdv2w51e6fxjwwpt1z |title=Lionel Messi trophies: All the silverware won by Argentina star with Barcelona, PSG and Inter Miami |publisher=Sporting News |date=26 June 2024 |access-date=16 July 2026}}</ref> ယင်းချင့်အပြင် ကလပ်ဧ့ ဂိုးသွင်းအများဆုံး (၆၇၂ ဂိုး) နန့် ပွဲကစပ်အများဆုံး (၇၇၈ ပွဲ) ကစပ်သမားလည်းဖြစ်တေ။<ref name="Records">{{Cite web |url=https://www.fcbarcelona.com/en/football/first-team/news/2289480/lionel-messis-record-breaking-fc-barcelona-career-in-numbers |title=Lionel Messi's record-breaking FC Barcelona career in numbers |publisher=FC Barcelona |date=5 August 2021 |access-date=16 July 2026}}</ref> === ပါရီ စိန့်ဂျာမိန် (၂၀၂၁–၂၀၂၃) === ၂၀၂၁ ခုနှစ် သြဂတ်လ ၁၀ ရက်မာ ဘာစီလိုနာမှ ထွက်ခွာကာ ပြင်သစ်ကလပ် [[ပါရီ စိန့်ဂျာမိန် ဘောလုံးအသင်း|ပါရီ စိန့်ဂျာမိန်]]သို့ ပြောင်းရွိခရေ။<ref name="PSG">{{Cite web |url=https://en.psg.fr/teams/first-team/content/lionel-messi-signs-for-paris-saint-germain |title=Lionel Messi signs for Paris Saint-Germain |publisher=PSG |date=10 August 2021 |access-date=16 July 2026}}</ref> ကလပ်အတွက် [[လီဂူး ၁]]ဖလား ၂ ကြိမ် ရဟိခရေ။<ref name="Trophies" /> === အင်တာ မိုင်ယာမီ (၂၀၂၃–လက်ဟိ) === ၂၀၂၃ ခုနှစ် ဂျုန်လ ၇ ရက်မာ အမေရိကကလပ် [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]]သို့ ပြောင်းရွိကြောင်း ကြေညာခရေ။<ref name="Miami">{{Cite web |url=https://www.intermiamicf.com/news/inter-miami-cf-signs-lionel-messi |title=Inter Miami CF signs Lionel Messi |publisher=Inter Miami CF |date=7 June 2023 |access-date=16 July 2026}}</ref> ၂၀၂၃ ခုနှစ် ဂျူလိုင်လ ၂၁ ရက်မာ ညွန့်ဖူးကစပ်ကာ နောက်ဆုံးမိနစ်မာ အနိုင်ဂိုးသွင်းခရေ။<ref name="MiamiDebut">{{Cite news |url=https://www.espn.com/soccer/story/_/id/38045183/lionel-messi-scores-late-winner-inter-miami-debut |title=Lionel Messi scores late winner on Inter Miami debut |publisher=ESPN |date=22 July 2023 |access-date=16 July 2026}}</ref> အသင်းနန့်တတူ ၂၀၂၃ ခုနှစ် [[လိဂ်ဖလား (အမေရိက)|လိဂ်ဖလား]]ဖလား ရဟိခရေ။<ref name="LeaguesCup">{{Cite web |url=https://www.mlssoccer.com/news/inter-miami-cf-win-leagues-cup-2023 |title=Inter Miami CF win Leagues Cup 2023 |publisher=MLS Soccer |date=20 August 2023 |access-date=16 July 2026}}</ref> == နိုင်ငံတက်စားပြုဘဝ == မက်ဆီစွာ ၂၀၀၅ ခုနှစ် သြဂတ်လ ၁၇ ရက်မာ ဟန်ဂေရီနန့် ခြီစစ်ပွဲမာ အာဂျင်တီးနားအသင်းအတွက် အစောဆုံး ကစပ်ခရေ။<ref name="NTDebut">{{Cite web |url=https://www.espn.com/soccer/story/_/id/37419533/argentina-vs-hungary-2005-lionel-messi-debut-red-card |title=Lionel Messi's Argentina debut: The red card and the promise |publisher=ESPN |date=17 August 2020 |access-date=16 July 2026}}</ref> အသင်းနန့်တတူ ၂၀၀၈ ခုနှစ် [[နွီရာသီ အိုလံပစ်အားကဇပ်ပွဲတော်]]မာ [[ရွှီတံဆိပ်]]ဆု၊<ref name="Olympic">{{Cite web |url=https://www.olympics.com/en/athletes/lionel-messi |title=Lionel Messi |publisher=Olympics.com |access-date=16 July 2026}}</ref> ၂၀၂၁ ခုနှစ် [[ကိုပါ အမေရိကား]]ဖလား၊<ref name="Copa2021">{{Cite news |url=https://www.bbc.com/sport/football/57940643 |title=Argentina beat Brazil 1-0 to win Copa America |publisher=BBC Sport |date=11 July 2021 |access-date=16 July 2026}}</ref> နန့် ၂၀၂၂ ခုနှစ် [[ဖီဖာ ကမ္ဘာ့ဖလား]]ရို့ကို ရဟိခရေ။<ref name="WC2022">{{Cite news |url=https://www.bbc.com/sport/football/63955722 |title=Argentina beat France on penalties to win World Cup |publisher=BBC Sport |date=18 December 2022 |access-date=16 July 2026}}</ref> ၂၀၁၄ ခုနှစ် ကမ္ဘာ့ဖလားပြိုင်ပွဲမာလည်း ဒုတိယဆုရဟိခရေ။<ref name="WC2014">{{Cite web |url=https://www.fifa.com/tournaments/mens/worldcup/2014brazil |title=2014 FIFA World Cup Brazil |publisher=FIFA |access-date=16 July 2026}}</ref> သူစွာ အာဂျင်တီးနားအသင်းဧ့ ဂိုးသွင်းအများဆုံး (၁၀၈ ဂိုး) နန့် ပွဲကစပ်အများဆုံး (၁၈၀ ပွဲ) ကစပ်သမားလည်းဖြစ်တေ။<ref name="NTRecords">{{Cite web |url=https://www.afa.com.ar/en/posts/lionel-messi-has-broken-all-the-records |title=Lionel Messi has broken all the records |publisher=Argentine Football Association |date=15 June 2024 |access-date=16 July 2026}}</ref> == ဂုဏ်ပြုဆုတိ == မက်ဆီစွာ [[ဘော်လွန်ဒိုရွှီဘောလုံးဆု]]ကို စံချိန်တင် ၈ ကြိမ် (၂၀၀၉၊ ၂၀၁၀၊ ၂၀၁၁၊ ၂၀၁၂၊ ၂၀၁၅၊ ၂၀၁၉၊ ၂၀၂၁၊ ၂၀၂၃) ရဟိခရေ။<ref name="BallonDor">{{Cite web |url=https://www.francefootball.fr/ballon-d-or/ |title=Ballon d'Or winners |publisher=France Football |access-date=16 July 2026}}</ref> ယင်းချင့်အပြင် [[ဥရောပရွှီဖိနပ်ဆု]]ကို ၆ ကြိမ် (၂၀၁၀၊ ၂၀၁၂၊ ၂၀၁၃၊ ၂၀၁၇၊ ၂၀၁၈၊ ၂၀၁၉) ရဟိရေလူရေ။<ref name="GoldenShoe">{{Cite web |url=https://www.europeangoldenshoe.com/winners |title=European Golden Shoe winners |publisher=European Golden Shoe |access-date=16 July 2026}}</ref> == ကိုးကားချက်တိ == {{Reflist}} == ပြင်ပလင့်ခ်တိ == * {{Official website|https://messi.com}} * {{Instagram|leomessi}} * [https://www.intermiamicf.com/players/lionel-messi အင်တာ မိုင်ယာမီကလပ်ဧ့ ပရိုဖိုင်] * [https://www.afa.com.ar/en/players/lionel-messi အာဂျင်တီးနားဘောလုံးအဖွဲ့ချုပ်ဧ့ ပရိုဖိုင်] * [https://www.mlssoccer.com/players/lionel-messi MLS ပရိုဖိုင်] {{Authority control}} [[Category:၁၉၈၇ မွီးဖွားသူတိ]] [[Category:အသက်ရှင်နီသူတိ]] [[Category:အာဂျင်တီးနားဘောလုံးသမားတိ]] [[Category:အာဂျင်တီးနားအမျိုးသားဘောလုံးသမားတိ]] [[Category:ဘာစီလိုနာ ဘောလုံးသမားတိ]] [[Category:ပါရီ စိန့်ဂျာမိန် ဘောလုံးသမားတိ]] [[Category:အင်တာ မိုင်ယာမီ ဘောလုံးသမားတိ]] [[Category:လာလီဂါ ဘောလုံးသမားတိ]] [[Category:လီဂူး ၁ ဘောလုံးသမားတိ]] [[Category:မေဂျာလိဂ်ဆိုကာ ဘောလုံးသမားတိ]] [[Category:ဖီဖာ ကမ္ဘာ့ဖလား ဆုရဟိသူတိ]] [[Category:ကမ္ဘာ့ဖလားအနိုင်ရ ဘောလုံးသမားတိ]] [[Category:အိုလံပစ်ရွှီတံဆိပ်ရ အာဂျင်တီးနားဘောလုံးသမားတိ]] [[Category:၂၀၀၈ နွီရာသီ အိုလံပစ် ဆုတံဆိပ်ရဟိသူတိ]] [[Category:ဘော်လွန်ဒိုဆုရဟိသူတိ]] [[Category:ဥရောပရွှီဖိနပ်ဆုရဟိသူတိ]] [[Category:ရှိတန်း (ဘောလုံး) ကစပ်သမားတိ]] [[Category:အာဂျင်တီးနားက ပြင်သစ်သို့ ပြောင်းရွိသူတိ]] [[Category:အာဂျင်တီးနားက အမေရိကသို့ ပြောင်းရွိသူတိ]] ptggwwig0vl49vxhdng1v44hx7043kt 19587 19586 2026-07-16T08:40:11Z YaThaWinTha 42 19587 wikitext text/x-wiki {{Infobox ဘောလုံးသမား | name = လီယွန်နယ် မက်ဆီ | image = Lionel Messi 2017.jpg | image_size = 250 | caption = ၂၀၁၇ ခုနှစ်မာ မက်ဆီ | full_name = လီယွန်နယ် အင်ဒရက် မက်ဆီ ကူချစ်တီနီ | birth_date = {{birth date|1987|6|24|df=yes}} | birth_place = [[ရိုဆာရီယိုမြို့]]၊ အာဂျင်တီးနား | height = ၁.၆၉ မီတာ<ref name="FCB">{{Cite web|url=https://www.fcbarcelona.com/en/football/first-team/players/4974/lionel-messi |title=Lionel Messi |publisher=FC Barcelona |access-date=2026-07-16}}</ref> | position = [[ဟိတန်း (ဘောလုံး)|ဟိတန်း]] | currentclub = [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]] | clubnumber = ၁၀ | youthyears1 = ၁၉၉၅–၂၀၀၀ | youthclubs1 = နယူး အိုးဘွိုင်း | youthyears2 = ၂၀၀၀–၂၀၀၃ | youthclubs2 = [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]] | years1 = ၂၀၀၃–၂၀၀၄ | clubs1 = ဘာစီလိုနာ စီ | caps1 = ၁၀ | goals1 = ၅ | years2 = ၂၀၀၄–၂၀၀၅ | clubs2 = ဘာစီလိုနာ ဘီ | caps2 = ၂၂ | goals2 = ၆ | years3 = ၂၀၀၄–၂၀၂၁ | clubs3 = [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]] | caps3 = ၅၂၀ | goals3 = ၄၇၄ | years4 = ၂၀၂၁–၂၀၂၃ | clubs4 = [[ပါရီ စိန့်ဂျာမိန် ဘောလုံးအသင်း|ပါရီ စိန့်ဂျာမိန်]] | caps4 = ၅၈ | goals4 = ၂၂ | years5 = ၂၀၂၃– | clubs5 = [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]] | caps5 = ၁၃ | goals5 = ၁၂ | nationalyears1 = ၂၀၀၄–၂၀၀၅ | nationalteam1 = အာဂျင်တီးနား ယူ-၂၀ | nationalcaps1 = ၁၆ | nationalgoals1 = ၁၁ | nationalyears2 = ၂၀၀၈ | nationalteam2 = အာဂျင်တီးနား ယူ-၂၃ | nationalcaps2 = ၅ | nationalgoals2 = ၂ | nationalyears3 = ၂၀၀၅– | nationalteam3 = [[အာဂျင်တီးနားအမျိုးသားဘောလုံးအသင်း|အာဂျင်တီးနား]] | nationalcaps3 = ၁၈၀ | nationalgoals3 = ၁၀၈ }} '''လီယွန်နယ် အင်ဒရက် မက်ဆီ ကူချစ်တီနီ''' ({{Lang-es|Lionel Andrés Messi Cuccittini}}; ၁၉၈၇ ခုနှစ်၊ ဂျုန်လ ၂၄ ရက်ဖွား) စွာ [[အာဂျင်တီးနား]] [[ဘောလုံးသမား]]တဦးဖြစ်ပြီးကေ [[မေဂျာလိဂ်ဆိုကာ]]ကလပ် [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]]နန့် [[အာဂျင်တီးနားအမျိုးသားဘောလုံးအသင်း]]ရို့မာ [[ရှိတန်း (ဘောလုံး)|ရှိတန်း]]နီရာမာ ကစပ်လို့ ဟိရေ။ သူစွာ သမိုင်းတလျှောက် အကောင်းဆုံး ဘောလုံးသမားတဦးအဖြစ် အချိန်အကြားကြီး သတ်မှတ်ခံရရေ။<ref name="Greatest">{{Cite web|url=https://www.bbc.com/sport/football/64042613 |title=Messi: The greatest player of all time? |publisher=BBC Sport |date=18 December 2022|access-date=16 July 2026}}</ref><ref name="Guardian">{{Cite news |url=https://www.theguardian.com/football/2022/dec/18/lionel-messi-greatest-ever-footballer-world-cup-win|title=Lionel Messi cements his place as the greatest ever with World Cup win |work=The Guardian|date=18 December 2022|access-date=16 July 2026}}</ref> == ငယ်ဘဝ == မက်ဗားကို ၁၉၈၇ ခုနှစ် ဂျုန်လ ၂၄ ရက်မာ [[အာဂျင်တီးနား]]နိုင်ငံ၊ [[ဆန်တာဖေပြည်နယ်]]၊ [[ရိုဆာရီယိုမြို့]]မာ မွီးဖွားရေ။<ref name="Bio">{{Cite book |last=Balagué |first=Guillem |title=Messi |publisher=Orion Books |year=2013 |isbn=978-1-4091-4659-9 |pages=25–30}}</ref> ဖခင်မာ ဟော်ဟေမက်ဆီဖြစ်ပြီးကေ မိခင်မာ ဆီလီယာ ကူချစ်တီနီ ဖြစ်တေ။ သူမာ မောင်နှမ သုံးဦးဟိရေ။<ref name="Bio" /> ငယ်စဉ်က ဂရန်ဒိုလီအသင်းမာ စတင်ကစပ်ခရေ။<ref name="Grandoli">{{Cite web |url=https://www.goal.com/en/news/8/main/2012/10/13/3448085/messi-remember-grandoli-as-his-first-club |title=Messi remember Grandoli as his first club |publisher=Goal.com |date=13 October 2012 |access-date=16 July 2026}}</ref> အသက် ၁၀ နှစ်မာ [[ကြီးထွားဟော်မုန်းချို့တဲ့ရေ ရောဂါ]] (Growth Hormone Deficiency) ဟိကြောင်း စစ်ဆီးတွိ့ဟိခရေ။<ref name="Growth">{{Cite news |url=https://www.telegraph.co.uk/sport/football/players/lionel-messi/11309352/Lionel-Messi-profile.html |title=Lionel Messi profile |work=The Telegraph |date=16 December 2014 |access-date=16 July 2026}}</ref> ယင်းရောဂါအတွက် ကုသစရိတ်မာ များရေတွက်တာနန့် မိသားစုမာ ဘဏ္ဍာရီးအခက်အခဲ ကြုံခရရေ။<ref name="Growth" /> ၂၀၀၀ ခုနှစ်မာ [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]]ကလပ်ဧ့ လူငယ်အကယ်ဒမီသို့ ရောက်ဟိခပြီး ကလပ်က သူ ကုသစရိတ်တိကို တာဝန်ယူပီးခရေ။<ref name="BarcaMove">{{cite web |url=https://www.fcbarcelona.com/en/news/1405920/the-story-of-the-famous-napkin |title=The story of the famous napkin |publisher=FC Barcelona |date=14 December 2020|access-date=16 July 2026}}</ref> == ကလပ်ဘဝ == === ဘာစီလိုနာ (၂၀၀၄–၂၀၂၁) === မက်ဆီစွာ အသက် ၁၇ နှစ်အရွယ် ၂၀၀၄ ခုနှစ် အောက်တိုဘာလ ၁၆ ရက်မာ ဘာစီလိုနာဧ့ အဓိကအသင်းအတွက် [[လာလီဂါ]]မာ အရင်ဆုံး ကစပ်ခရေ။<ref name="Debut">{{Cite web |url=https://www.fcbarcelona.com/en/football/first-team/news/1498157/messis-debut-15-years-on |title=Messi's debut 15 years on |publisher=FC Barcelona |date=16 October 2019 |access-date=16 July 2026}}</ref> ၂၀၀၅ ခုနှစ် မေလ ၁ ရက်မာ [[အယ်လ်ဘာစီတီ]]ကို ဂိုးသွင်းကာ ပထမဆုံးဂိုးကို သွင်းယူခရေ။<ref name="FirstGoal">{{Cite news |url=https://www.marca.com/en/football/barcelona/2019/05/01/5cc9677d46163f7d198b4607.html |title=Messi's first goal for Barcelona: 14 years ago today |work=Marca |date=1 May 2019 |access-date=16 July 2026}}</ref> ပက် ဂွါဒီယိုလာဧ့ နည်းပြအဖြစ်မာ [[ချာဗီ ဟန်နန်ဒက်စ်|ချာဗီ]]နန့် [[အင်ဒရက်စ် အီနီယက်စတာ|အီနီယက်စတာ]]ရို့နန့်တတူ ထိရောက်ရေ သုံးဦးတပ်တိုက်စစ်လိုင်း (trio) ကို ဖွဲ့စည်းနိုင်ခရေ။<ref name="Trio">{{Cite web |url=https://www.espn.com/soccer/story/_/id/37456974/xavi-iniesta-messi-masterminds-barcelona-greatest |title=Xavi, Iniesta and Messi: Masterminds of Barcelona's greatest era |publisher=ESPN |date=20 May 2020 |access-date=16 July 2026}}</ref> ဘာစီလိုနာမာ ကစပ်စဉ် မက်ဆီစွာ လာလီဂါဖလား ၁၀ ကြိမ်၊<ref name="LaLiga">{{Cite web |url=https://www.laliga.com/en-GB/news/lionel-messi-the-la-liga-record-breaker |title=Lionel Messi: The La Liga record breaker |publisher=La Liga |date=28 December 2020 |access-date=16 July 2026}}</ref> [[ယူအီးအက်ဖ်အေ ချန်ပီယံလိဂ်]]ဖလား ၄ ကြိမ် အပါအဝင် ဆုတံဆိပ် ၃၄ ခုကို ရဟိခရေ။<ref name="Trophies">{{Cite web |url=https://www.sportingnews.com/us/soccer/news/lionel-messi-trophies-championships-barcelona-psg/ohixlqmdv2w51e6fxjwwpt1z |title=Lionel Messi trophies: All the silverware won by Argentina star with Barcelona, PSG and Inter Miami |publisher=Sporting News |date=26 June 2024 |access-date=16 July 2026}}</ref> ယင်းချင့်အပြင် ကလပ်ဧ့ ဂိုးသွင်းအများဆုံး (၆၇၂ ဂိုး) နန့် ပွဲကစပ်အများဆုံး (၇၇၈ ပွဲ) ကစပ်သမားလည်းဖြစ်တေ။<ref name="Records">{{Cite web |url=https://www.fcbarcelona.com/en/football/first-team/news/2289480/lionel-messis-record-breaking-fc-barcelona-career-in-numbers |title=Lionel Messi's record-breaking FC Barcelona career in numbers |publisher=FC Barcelona |date=5 August 2021 |access-date=16 July 2026}}</ref> === ပါရီ စိန့်ဂျာမိန် (၂၀၂၁–၂၀၂၃) === ၂၀၂၁ ခုနှစ် သြဂတ်လ ၁၀ ရက်မာ ဘာစီလိုနာမှ ထွက်ခွာကာ ပြင်သစ်ကလပ် [[ပါရီ စိန့်ဂျာမိန် ဘောလုံးအသင်း|ပါရီ စိန့်ဂျာမိန်]]သို့ ပြောင်းရွိခရေ။<ref name="PSG">{{Cite web |url=https://en.psg.fr/teams/first-team/content/lionel-messi-signs-for-paris-saint-germain |title=Lionel Messi signs for Paris Saint-Germain |publisher=PSG |date=10 August 2021 |access-date=16 July 2026}}</ref> ကလပ်အတွက် [[လီဂူး ၁]]ဖလား ၂ ကြိမ် ရဟိခရေ။<ref name="Trophies" /> === အင်တာ မိုင်ယာမီ (၂၀၂၃–လက်ဟိ) === ၂၀၂၃ ခုနှစ် ဂျုန်လ ၇ ရက်မာ အမေရိကကလပ် [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]]သို့ ပြောင်းရွိကြောင်း ကြေညာခရေ။<ref name="Miami">{{Cite web |url=https://www.intermiamicf.com/news/inter-miami-cf-signs-lionel-messi |title=Inter Miami CF signs Lionel Messi |publisher=Inter Miami CF |date=7 June 2023 |access-date=16 July 2026}}</ref> ၂၀၂၃ ခုနှစ် ဂျူလိုင်လ ၂၁ ရက်မာ ညွန့်ဖူးကစပ်ကာ နောက်ဆုံးမိနစ်မာ အနိုင်ဂိုးသွင်းခရေ။<ref name="MiamiDebut">{{Cite news |url=https://www.espn.com/soccer/story/_/id/38045183/lionel-messi-scores-late-winner-inter-miami-debut |title=Lionel Messi scores late winner on Inter Miami debut |publisher=ESPN |date=22 July 2023 |access-date=16 July 2026}}</ref> အသင်းနန့်တတူ ၂၀၂၃ ခုနှစ် [[လိဂ်ဖလား (အမေရိက)|လိဂ်ဖလား]]ဖလား ရဟိခရေ။<ref name="LeaguesCup">{{Cite web |url=https://www.mlssoccer.com/news/inter-miami-cf-win-leagues-cup-2023 |title=Inter Miami CF win Leagues Cup 2023 |publisher=MLS Soccer |date=20 August 2023 |access-date=16 July 2026}}</ref> == နိုင်ငံတက်စားပြုဘဝ == မက်ဆီစွာ ၂၀၀၅ ခုနှစ် သြဂတ်လ ၁၇ ရက်မာ ဟန်ဂေရီနန့် ခြီစစ်ပွဲမာ အာဂျင်တီးနားအသင်းအတွက် အစောဆုံး ကစပ်ခရေ။<ref name="NTDebut">{{Cite web |url=https://www.espn.com/soccer/story/_/id/37419533/argentina-vs-hungary-2005-lionel-messi-debut-red-card |title=Lionel Messi's Argentina debut: The red card and the promise |publisher=ESPN |date=17 August 2020 |access-date=16 July 2026}}</ref> အသင်းနန့်တတူ ၂၀၀၈ ခုနှစ် [[နွီရာသီ အိုလံပစ်အားကဇပ်ပွဲတော်]]မာ [[ရွှီတံဆိပ်]]ဆု၊<ref name="Olympic">{{Cite web |url=https://www.olympics.com/en/athletes/lionel-messi |title=Lionel Messi |publisher=Olympics.com |access-date=16 July 2026}}</ref> ၂၀၂၁ ခုနှစ် [[ကိုပါ အမေရိကား]]ဖလား၊<ref name="Copa2021">{{Cite news |url=https://www.bbc.com/sport/football/57940643 |title=Argentina beat Brazil 1-0 to win Copa America |publisher=BBC Sport |date=11 July 2021 |access-date=16 July 2026}}</ref> နန့် ၂၀၂၂ ခုနှစ် [[ဖီဖာ ကမ္ဘာ့ဖလား]]ရို့ကို ရဟိခရေ။<ref name="WC2022">{{Cite news |url=https://www.bbc.com/sport/football/63955722 |title=Argentina beat France on penalties to win World Cup |publisher=BBC Sport |date=18 December 2022 |access-date=16 July 2026}}</ref> ၂၀၁၄ ခုနှစ် ကမ္ဘာ့ဖလားပြိုင်ပွဲမာလည်း ဒုတိယဆုရဟိခရေ။<ref name="WC2014">{{Cite web |url=https://www.fifa.com/tournaments/mens/worldcup/2014brazil |title=2014 FIFA World Cup Brazil |publisher=FIFA |access-date=16 July 2026}}</ref> သူစွာ အာဂျင်တီးနားအသင်းဧ့ ဂိုးသွင်းအများဆုံး (၁၀၈ ဂိုး) နန့် ပွဲကစပ်အများဆုံး (၁၈၀ ပွဲ) ကစပ်သမားလည်းဖြစ်တေ။<ref name="NTRecords">{{Cite web |url=https://www.afa.com.ar/en/posts/lionel-messi-has-broken-all-the-records |title=Lionel Messi has broken all the records |publisher=Argentine Football Association |date=15 June 2024 |access-date=16 July 2026}}</ref> == ဂုဏ်ပြုဆုတိ == မက်ဆီစွာ [[ဘော်လွန်ဒိုရွှီဘောလုံးဆု]]ကို စံချိန်တင် ၈ ကြိမ် (၂၀၀၉၊ ၂၀၁၀၊ ၂၀၁၁၊ ၂၀၁၂၊ ၂၀၁၅၊ ၂၀၁၉၊ ၂၀၂၁၊ ၂၀၂၃) ရဟိခရေ။<ref name="BallonDor">{{Cite web |url=https://www.francefootball.fr/ballon-d-or/ |title=Ballon d'Or winners |publisher=France Football |access-date=16 July 2026}}</ref> ယင်းချင့်အပြင် [[ဥရောပရွှီဖိနပ်ဆု]]ကို ၆ ကြိမ် (၂၀၁၀၊ ၂၀၁၂၊ ၂၀၁၃၊ ၂၀၁၇၊ ၂၀၁၈၊ ၂၀၁၉) ရဟိရေလူရေ။<ref name="GoldenShoe">{{Cite web |url=https://www.europeangoldenshoe.com/winners |title=European Golden Shoe winners |publisher=European Golden Shoe |access-date=16 July 2026}}</ref> == ကိုးကားချက်တိ == {{Reflist}} == ပြင်ပလင့်ခ်တိ == * {{Official website|https://messi.com}} * {{Instagram|leomessi}} * [https://www.intermiamicf.com/players/lionel-messi အင်တာ မိုင်ယာမီကလပ်ဧ့ ပရိုဖိုင်] * [https://www.afa.com.ar/en/players/lionel-messi အာဂျင်တီးနားဘောလုံးအဖွဲ့ချုပ်ဧ့ ပရိုဖိုင်] * [https://www.mlssoccer.com/players/lionel-messi MLS ပရိုဖိုင်] {{Authority control}} [[Category:၁၉၈၇ မွီးဖွားသူတိ]] [[Category:အသက်ရှင်နီသူတိ]] [[Category:အာဂျင်တီးနားဘောလုံးသမားတိ]] [[Category:အာဂျင်တီးနားအမျိုးသားဘောလုံးသမားတိ]] [[Category:ဘာစီလိုနာ ဘောလုံးသမားတိ]] [[Category:ပါရီ စိန့်ဂျာမိန် ဘောလုံးသမားတိ]] [[Category:အင်တာ မိုင်ယာမီ ဘောလုံးသမားတိ]] [[Category:လာလီဂါ ဘောလုံးသမားတိ]] [[Category:လီဂူး ၁ ဘောလုံးသမားတိ]] [[Category:မေဂျာလိဂ်ဆိုကာ ဘောလုံးသမားတိ]] [[Category:ဖီဖာ ကမ္ဘာ့ဖလား ဆုရဟိသူတိ]] [[Category:ကမ္ဘာ့ဖလားအနိုင်ရ ဘောလုံးသမားတိ]] [[Category:အိုလံပစ်ရွှီတံဆိပ်ရ အာဂျင်တီးနားဘောလုံးသမားတိ]] [[Category:၂၀၀၈ နွီရာသီ အိုလံပစ် ဆုတံဆိပ်ရဟိသူတိ]] [[Category:ဘော်လွန်ဒိုဆုရဟိသူတိ]] [[Category:ဥရောပရွှီဖိနပ်ဆုရဟိသူတိ]] [[Category:ရှိတန်း (ဘောလုံး) ကစပ်သမားတိ]] [[Category:အာဂျင်တီးနားက ပြင်သစ်သို့ ပြောင်းရွိသူတိ]] [[Category:အာဂျင်တီးနားက အမေရိကသို့ ပြောင်းရွိသူတိ]] 9zlvjttuqvubxv641dbiok1xsdohj1u 19588 19587 2026-07-16T08:40:40Z YaThaWinTha 42 19588 wikitext text/x-wiki {{Infobox ဘောလုံးသမား | name = လီယွန်နယ် မက်ဆီ | image = Lionel Messi 2017.jpg | image_size = 250 | caption = ၂၀၁၇ ခုနှစ်မာ မက်ဆီ | full_name = လီယွန်နယ် အင်ဒရက် မက်ဆီ ကူချစ်တီနီ | birth_date = {{birth date|1987|6|24|df=yes}} | birth_place = [[ရိုဆာရီယိုမြို့]]၊ အာဂျင်တီးနား | height = ၁.၆၉ မီတာ<ref name="FCB">{{Cite web|url=https://www.fcbarcelona.com/en/football/first-team/players/4974/lionel-messi |title=Lionel Messi |publisher=FC Barcelona |access-date=2026-07-16}}</ref> | position = [[ဟိတန်း (ဘောလုံး)|ဟိတန်း]] | currentclub = [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]] | clubnumber = ၁၀ | youthyears1 = ၁၉၉၅–၂၀၀၀ | youthclubs1 = နယူး အိုးဘွိုင်း | youthyears2 = ၂၀၀၀–၂၀၀၃ | youthclubs2 = [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]] | years1 = ၂၀၀၃–၂၀၀၄ | clubs1 = ဘာစီလိုနာ စီ | caps1 = ၁၀ | goals1 = ၅ | years2 = ၂၀၀၄–၂၀၀၅ | clubs2 = ဘာစီလိုနာ ဘီ | caps2 = ၂၂ | goals2 = ၆ | years3 = ၂၀၀၄–၂၀၂၁ | clubs3 = [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]] | caps3 = ၅၂၀ | goals3 = ၄၇၄ | years4 = ၂၀၂၁–၂၀၂၃ | clubs4 = [[ပါရီ စိန့်ဂျာမိန် ဘောလုံးအသင်း|ပါရီ စိန့်ဂျာမိန်]] | caps4 = ၅၈ | goals4 = ၂၂ | years5 = ၂၀၂၃– | clubs5 = [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]] | caps5 = ၁၃ | goals5 = ၁၂ | nationalyears1 = ၂၀၀၄–၂၀၀၅ | nationalteam1 = အာဂျင်တီးနား ယူ-၂၀ | nationalcaps1 = ၁၆ | nationalgoals1 = ၁၁ | nationalyears2 = ၂၀၀၈ | nationalteam2 = အာဂျင်တီးနား ယူ-၂၃ | nationalcaps2 = ၅ | nationalgoals2 = ၂ | nationalyears3 = ၂၀၀၅– | nationalteam3 = [[အာဂျင်တီးနားအမျိုးသားဘောလုံးအသင်း|အာဂျင်တီးနား]] | nationalcaps3 = ၁၈၀ | nationalgoals3 = ၁၀၈ }} '''လီယွန်နယ် အင်ဒရက် မက်ဆီ ကူချစ်တီနီ''' ({{Lang-es|Lionel Andrés Messi Cuccittini}}; ၁၉၈၇ ခုနှစ်၊ ဂျုန်လ ၂၄ ရက်ဖွား) စွာ [[အာဂျင်တီးနား]] [[ဘောလုံးသမား]]တဦးဖြစ်ပြီးကေ [[မေဂျာလိဂ်ဆိုကာ]]ကလပ် [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]]နန့် [[အာဂျင်တီးနားအမျိုးသားဘောလုံးအသင်း]]ရို့မာ [[ရှိတန်း (ဘောလုံး)|ရှိတန်း]]နီရာမာ ကစပ်လို့ ဟိရေ။ သူစွာ သမိုင်းတလျှောက် အကောင်းဆုံး ဘောလုံးသမားတဦးအဖြစ် အချိန်အကြာကြီး သတ်မှတ်ခံရရေ။<ref name="Greatest">{{Cite web|url=https://www.bbc.com/sport/football/64042613 |title=Messi: The greatest player of all time? |publisher=BBC Sport |date=18 December 2022|access-date=16 July 2026}}</ref><ref name="Guardian">{{Cite news |url=https://www.theguardian.com/football/2022/dec/18/lionel-messi-greatest-ever-footballer-world-cup-win|title=Lionel Messi cements his place as the greatest ever with World Cup win |work=The Guardian|date=18 December 2022|access-date=16 July 2026}}</ref> == ငယ်ဘဝ == မက်ဗားကို ၁၉၈၇ ခုနှစ် ဂျုန်လ ၂၄ ရက်မာ [[အာဂျင်တီးနား]]နိုင်ငံ၊ [[ဆန်တာဖေပြည်နယ်]]၊ [[ရိုဆာရီယိုမြို့]]မာ မွီးဖွားရေ။<ref name="Bio">{{Cite book |last=Balagué |first=Guillem |title=Messi |publisher=Orion Books |year=2013 |isbn=978-1-4091-4659-9 |pages=25–30}}</ref> ဖခင်မာ ဟော်ဟေမက်ဆီဖြစ်ပြီးကေ မိခင်မာ ဆီလီယာ ကူချစ်တီနီ ဖြစ်တေ။ သူမာ မောင်နှမ သုံးဦးဟိရေ။<ref name="Bio" /> ငယ်စဉ်က ဂရန်ဒိုလီအသင်းမာ စတင်ကစပ်ခရေ။<ref name="Grandoli">{{Cite web |url=https://www.goal.com/en/news/8/main/2012/10/13/3448085/messi-remember-grandoli-as-his-first-club |title=Messi remember Grandoli as his first club |publisher=Goal.com |date=13 October 2012 |access-date=16 July 2026}}</ref> အသက် ၁၀ နှစ်မာ [[ကြီးထွားဟော်မုန်းချို့တဲ့ရေ ရောဂါ]] (Growth Hormone Deficiency) ဟိကြောင်း စစ်ဆီးတွိ့ဟိခရေ။<ref name="Growth">{{Cite news |url=https://www.telegraph.co.uk/sport/football/players/lionel-messi/11309352/Lionel-Messi-profile.html |title=Lionel Messi profile |work=The Telegraph |date=16 December 2014 |access-date=16 July 2026}}</ref> ယင်းရောဂါအတွက် ကုသစရိတ်မာ များရေတွက်တာနန့် မိသားစုမာ ဘဏ္ဍာရီးအခက်အခဲ ကြုံခရရေ။<ref name="Growth" /> ၂၀၀၀ ခုနှစ်မာ [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]]ကလပ်ဧ့ လူငယ်အကယ်ဒမီသို့ ရောက်ဟိခပြီး ကလပ်က သူ ကုသစရိတ်တိကို တာဝန်ယူပီးခရေ။<ref name="BarcaMove">{{cite web |url=https://www.fcbarcelona.com/en/news/1405920/the-story-of-the-famous-napkin |title=The story of the famous napkin |publisher=FC Barcelona |date=14 December 2020|access-date=16 July 2026}}</ref> == ကလပ်ဘဝ == === ဘာစီလိုနာ (၂၀၀၄–၂၀၂၁) === မက်ဆီစွာ အသက် ၁၇ နှစ်အရွယ် ၂၀၀၄ ခုနှစ် အောက်တိုဘာလ ၁၆ ရက်မာ ဘာစီလိုနာဧ့ အဓိကအသင်းအတွက် [[လာလီဂါ]]မာ အရင်ဆုံး ကစပ်ခရေ။<ref name="Debut">{{Cite web |url=https://www.fcbarcelona.com/en/football/first-team/news/1498157/messis-debut-15-years-on |title=Messi's debut 15 years on |publisher=FC Barcelona |date=16 October 2019 |access-date=16 July 2026}}</ref> ၂၀၀၅ ခုနှစ် မေလ ၁ ရက်မာ [[အယ်လ်ဘာစီတီ]]ကို ဂိုးသွင်းကာ ပထမဆုံးဂိုးကို သွင်းယူခရေ။<ref name="FirstGoal">{{Cite news |url=https://www.marca.com/en/football/barcelona/2019/05/01/5cc9677d46163f7d198b4607.html |title=Messi's first goal for Barcelona: 14 years ago today |work=Marca |date=1 May 2019 |access-date=16 July 2026}}</ref> ပက် ဂွါဒီယိုလာဧ့ နည်းပြအဖြစ်မာ [[ချာဗီ ဟန်နန်ဒက်စ်|ချာဗီ]]နန့် [[အင်ဒရက်စ် အီနီယက်စတာ|အီနီယက်စတာ]]ရို့နန့်တတူ ထိရောက်ရေ သုံးဦးတပ်တိုက်စစ်လိုင်း (trio) ကို ဖွဲ့စည်းနိုင်ခရေ။<ref name="Trio">{{Cite web |url=https://www.espn.com/soccer/story/_/id/37456974/xavi-iniesta-messi-masterminds-barcelona-greatest |title=Xavi, Iniesta and Messi: Masterminds of Barcelona's greatest era |publisher=ESPN |date=20 May 2020 |access-date=16 July 2026}}</ref> ဘာစီလိုနာမာ ကစပ်စဉ် မက်ဆီစွာ လာလီဂါဖလား ၁၀ ကြိမ်၊<ref name="LaLiga">{{Cite web |url=https://www.laliga.com/en-GB/news/lionel-messi-the-la-liga-record-breaker |title=Lionel Messi: The La Liga record breaker |publisher=La Liga |date=28 December 2020 |access-date=16 July 2026}}</ref> [[ယူအီးအက်ဖ်အေ ချန်ပီယံလိဂ်]]ဖလား ၄ ကြိမ် အပါအဝင် ဆုတံဆိပ် ၃၄ ခုကို ရဟိခရေ။<ref name="Trophies">{{Cite web |url=https://www.sportingnews.com/us/soccer/news/lionel-messi-trophies-championships-barcelona-psg/ohixlqmdv2w51e6fxjwwpt1z |title=Lionel Messi trophies: All the silverware won by Argentina star with Barcelona, PSG and Inter Miami |publisher=Sporting News |date=26 June 2024 |access-date=16 July 2026}}</ref> ယင်းချင့်အပြင် ကလပ်ဧ့ ဂိုးသွင်းအများဆုံး (၆၇၂ ဂိုး) နန့် ပွဲကစပ်အများဆုံး (၇၇၈ ပွဲ) ကစပ်သမားလည်းဖြစ်တေ။<ref name="Records">{{Cite web |url=https://www.fcbarcelona.com/en/football/first-team/news/2289480/lionel-messis-record-breaking-fc-barcelona-career-in-numbers |title=Lionel Messi's record-breaking FC Barcelona career in numbers |publisher=FC Barcelona |date=5 August 2021 |access-date=16 July 2026}}</ref> === ပါရီ စိန့်ဂျာမိန် (၂၀၂၁–၂၀၂၃) === ၂၀၂၁ ခုနှစ် သြဂတ်လ ၁၀ ရက်မာ ဘာစီလိုနာမှ ထွက်ခွာကာ ပြင်သစ်ကလပ် [[ပါရီ စိန့်ဂျာမိန် ဘောလုံးအသင်း|ပါရီ စိန့်ဂျာမိန်]]သို့ ပြောင်းရွိခရေ။<ref name="PSG">{{Cite web |url=https://en.psg.fr/teams/first-team/content/lionel-messi-signs-for-paris-saint-germain |title=Lionel Messi signs for Paris Saint-Germain |publisher=PSG |date=10 August 2021 |access-date=16 July 2026}}</ref> ကလပ်အတွက် [[လီဂူး ၁]]ဖလား ၂ ကြိမ် ရဟိခရေ။<ref name="Trophies" /> === အင်တာ မိုင်ယာမီ (၂၀၂၃–လက်ဟိ) === ၂၀၂၃ ခုနှစ် ဂျုန်လ ၇ ရက်မာ အမေရိကကလပ် [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]]သို့ ပြောင်းရွိကြောင်း ကြေညာခရေ။<ref name="Miami">{{Cite web |url=https://www.intermiamicf.com/news/inter-miami-cf-signs-lionel-messi |title=Inter Miami CF signs Lionel Messi |publisher=Inter Miami CF |date=7 June 2023 |access-date=16 July 2026}}</ref> ၂၀၂၃ ခုနှစ် ဂျူလိုင်လ ၂၁ ရက်မာ ညွန့်ဖူးကစပ်ကာ နောက်ဆုံးမိနစ်မာ အနိုင်ဂိုးသွင်းခရေ။<ref name="MiamiDebut">{{Cite news |url=https://www.espn.com/soccer/story/_/id/38045183/lionel-messi-scores-late-winner-inter-miami-debut |title=Lionel Messi scores late winner on Inter Miami debut |publisher=ESPN |date=22 July 2023 |access-date=16 July 2026}}</ref> အသင်းနန့်တတူ ၂၀၂၃ ခုနှစ် [[လိဂ်ဖလား (အမေရိက)|လိဂ်ဖလား]]ဖလား ရဟိခရေ။<ref name="LeaguesCup">{{Cite web |url=https://www.mlssoccer.com/news/inter-miami-cf-win-leagues-cup-2023 |title=Inter Miami CF win Leagues Cup 2023 |publisher=MLS Soccer |date=20 August 2023 |access-date=16 July 2026}}</ref> == နိုင်ငံတက်စားပြုဘဝ == မက်ဆီစွာ ၂၀၀၅ ခုနှစ် သြဂတ်လ ၁၇ ရက်မာ ဟန်ဂေရီနန့် ခြီစစ်ပွဲမာ အာဂျင်တီးနားအသင်းအတွက် အစောဆုံး ကစပ်ခရေ။<ref name="NTDebut">{{Cite web |url=https://www.espn.com/soccer/story/_/id/37419533/argentina-vs-hungary-2005-lionel-messi-debut-red-card |title=Lionel Messi's Argentina debut: The red card and the promise |publisher=ESPN |date=17 August 2020 |access-date=16 July 2026}}</ref> အသင်းနန့်တတူ ၂၀၀၈ ခုနှစ် [[နွီရာသီ အိုလံပစ်အားကဇပ်ပွဲတော်]]မာ [[ရွှီတံဆိပ်]]ဆု၊<ref name="Olympic">{{Cite web |url=https://www.olympics.com/en/athletes/lionel-messi |title=Lionel Messi |publisher=Olympics.com |access-date=16 July 2026}}</ref> ၂၀၂၁ ခုနှစ် [[ကိုပါ အမေရိကား]]ဖလား၊<ref name="Copa2021">{{Cite news |url=https://www.bbc.com/sport/football/57940643 |title=Argentina beat Brazil 1-0 to win Copa America |publisher=BBC Sport |date=11 July 2021 |access-date=16 July 2026}}</ref> နန့် ၂၀၂၂ ခုနှစ် [[ဖီဖာ ကမ္ဘာ့ဖလား]]ရို့ကို ရဟိခရေ။<ref name="WC2022">{{Cite news |url=https://www.bbc.com/sport/football/63955722 |title=Argentina beat France on penalties to win World Cup |publisher=BBC Sport |date=18 December 2022 |access-date=16 July 2026}}</ref> ၂၀၁၄ ခုနှစ် ကမ္ဘာ့ဖလားပြိုင်ပွဲမာလည်း ဒုတိယဆုရဟိခရေ။<ref name="WC2014">{{Cite web |url=https://www.fifa.com/tournaments/mens/worldcup/2014brazil |title=2014 FIFA World Cup Brazil |publisher=FIFA |access-date=16 July 2026}}</ref> သူစွာ အာဂျင်တီးနားအသင်းဧ့ ဂိုးသွင်းအများဆုံး (၁၀၈ ဂိုး) နန့် ပွဲကစပ်အများဆုံး (၁၈၀ ပွဲ) ကစပ်သမားလည်းဖြစ်တေ။<ref name="NTRecords">{{Cite web |url=https://www.afa.com.ar/en/posts/lionel-messi-has-broken-all-the-records |title=Lionel Messi has broken all the records |publisher=Argentine Football Association |date=15 June 2024 |access-date=16 July 2026}}</ref> == ဂုဏ်ပြုဆုတိ == မက်ဆီစွာ [[ဘော်လွန်ဒိုရွှီဘောလုံးဆု]]ကို စံချိန်တင် ၈ ကြိမ် (၂၀၀၉၊ ၂၀၁၀၊ ၂၀၁၁၊ ၂၀၁၂၊ ၂၀၁၅၊ ၂၀၁၉၊ ၂၀၂၁၊ ၂၀၂၃) ရဟိခရေ။<ref name="BallonDor">{{Cite web |url=https://www.francefootball.fr/ballon-d-or/ |title=Ballon d'Or winners |publisher=France Football |access-date=16 July 2026}}</ref> ယင်းချင့်အပြင် [[ဥရောပရွှီဖိနပ်ဆု]]ကို ၆ ကြိမ် (၂၀၁၀၊ ၂၀၁၂၊ ၂၀၁၃၊ ၂၀၁၇၊ ၂၀၁၈၊ ၂၀၁၉) ရဟိရေလူရေ။<ref name="GoldenShoe">{{Cite web |url=https://www.europeangoldenshoe.com/winners |title=European Golden Shoe winners |publisher=European Golden Shoe |access-date=16 July 2026}}</ref> == ကိုးကားချက်တိ == {{Reflist}} == ပြင်ပလင့်ခ်တိ == * {{Official website|https://messi.com}} * {{Instagram|leomessi}} * [https://www.intermiamicf.com/players/lionel-messi အင်တာ မိုင်ယာမီကလပ်ဧ့ ပရိုဖိုင်] * [https://www.afa.com.ar/en/players/lionel-messi အာဂျင်တီးနားဘောလုံးအဖွဲ့ချုပ်ဧ့ ပရိုဖိုင်] * [https://www.mlssoccer.com/players/lionel-messi MLS ပရိုဖိုင်] {{Authority control}} [[Category:၁၉၈၇ မွီးဖွားသူတိ]] [[Category:အသက်ရှင်နီသူတိ]] [[Category:အာဂျင်တီးနားဘောလုံးသမားတိ]] [[Category:အာဂျင်တီးနားအမျိုးသားဘောလုံးသမားတိ]] [[Category:ဘာစီလိုနာ ဘောလုံးသမားတိ]] [[Category:ပါရီ စိန့်ဂျာမိန် ဘောလုံးသမားတိ]] [[Category:အင်တာ မိုင်ယာမီ ဘောလုံးသမားတိ]] [[Category:လာလီဂါ ဘောလုံးသမားတိ]] [[Category:လီဂူး ၁ ဘောလုံးသမားတိ]] [[Category:မေဂျာလိဂ်ဆိုကာ ဘောလုံးသမားတိ]] [[Category:ဖီဖာ ကမ္ဘာ့ဖလား ဆုရဟိသူတိ]] [[Category:ကမ္ဘာ့ဖလားအနိုင်ရ ဘောလုံးသမားတိ]] [[Category:အိုလံပစ်ရွှီတံဆိပ်ရ အာဂျင်တီးနားဘောလုံးသမားတိ]] [[Category:၂၀၀၈ နွီရာသီ အိုလံပစ် ဆုတံဆိပ်ရဟိသူတိ]] [[Category:ဘော်လွန်ဒိုဆုရဟိသူတိ]] [[Category:ဥရောပရွှီဖိနပ်ဆုရဟိသူတိ]] [[Category:ရှိတန်း (ဘောလုံး) ကစပ်သမားတိ]] [[Category:အာဂျင်တီးနားက ပြင်သစ်သို့ ပြောင်းရွိသူတိ]] [[Category:အာဂျင်တီးနားက အမေရိကသို့ ပြောင်းရွိသူတိ]] 2jdo81sujlbv74r7h0hqf9qbbh5rn67 19589 19588 2026-07-16T08:45:06Z YaThaWinTha 42 19589 wikitext text/x-wiki {{Infobox ဘောလုံးသမား | name = လီယွန်နယ် မက်ဆီ | image = Lionel Messi 2017.jpg | image_size = 250 | caption = ၂၀၁၇ ခုနှစ်မာ မက်ဆီ | full_name = လီယွန်နယ် အင်ဒရက် မက်ဆီ ကူချစ်တီနီ | birth_date = {{birth date|1987|6|24|df=yes}} | birth_place = [[ရိုဆာရီယိုမြို့]]၊ အာဂျင်တီးနား | height = ၁.၆၉ မီတာ<ref name="FCB">{{Cite web|url=https://www.fcbarcelona.com/en/football/first-team/players/4974/lionel-messi |title=Lionel Messi |publisher=FC Barcelona |access-date=2026-07-16}}</ref> | position = [[ရှိတန်း (ဘောလုံး)|ရှိတန်း]] | currentclub = [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]] | clubnumber = ၁၀ | youthyears1 = ၁၉၉၅–၂၀၀၀ | youthclubs1 = နယူး အိုးဘွိုင်း | youthyears2 = ၂၀၀၀–၂၀၀၃ | youthclubs2 = [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]] | years1 = ၂၀၀၃–၂၀၀၄ | clubs1 = ဘာစီလိုနာ စီ | caps1 = ၁၀ | goals1 = ၅ | years2 = ၂၀၀၄–၂၀၀၅ | clubs2 = ဘာစီလိုနာ ဘီ | caps2 = ၂၂ | goals2 = ၆ | years3 = ၂၀၀၄–၂၀၂၁ | clubs3 = [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]] | caps3 = ၅၂၀ | goals3 = ၄၇၄ | years4 = ၂၀၂၁–၂၀၂၃ | clubs4 = [[ပါရီ စိန့်ဂျာမိန် ဘောလုံးအသင်း|ပါရီ စိန့်ဂျာမိန်]] | caps4 = ၅၈ | goals4 = ၂၂ | years5 = ၂၀၂၃– | clubs5 = [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]] | caps5 = ၁၃ | goals5 = ၁၂ | nationalyears1 = ၂၀၀၄–၂၀၀၅ | nationalteam1 = အာဂျင်တီးနား ယူ-၂၀ | nationalcaps1 = ၁၆ | nationalgoals1 = ၁၁ | nationalyears2 = ၂၀၀၈ | nationalteam2 = အာဂျင်တီးနား ယူ-၂၃ | nationalcaps2 = ၅ | nationalgoals2 = ၂ | nationalyears3 = ၂၀၀၅– | nationalteam3 = [[အာဂျင်တီးနားအမျိုးသားဘောလုံးအသင်း|အာဂျင်တီးနား]] | nationalcaps3 = ၁၈၀ | nationalgoals3 = ၁၀၈ }} '''လီယွန်နယ် အင်ဒရက် မက်ဆီ ကူချစ်တီနီ''' ({{Lang-es|Lionel Andrés Messi Cuccittini}}; ၁၉၈၇ ခုနှစ်၊ ဂျုန်လ ၂၄ ရက်ဖွား) စွာ [[အာဂျင်တီးနား]] [[ဘောလုံးသမား]]တဦးဖြစ်ပြီးကေ [[မေဂျာလိဂ်ဆိုကာ]]ကလပ် [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]]နန့် [[အာဂျင်တီးနားအမျိုးသားဘောလုံးအသင်း]]ရို့မာ [[ရှိတန်း (ဘောလုံး)|ရှိတန်း]]နီရာမာ ကစပ်လို့ ဟိရေ။ သူစွာ သမိုင်းတလျှောက် အကောင်းဆုံး ဘောလုံးသမားတဦးအဖြစ် အချိန်အကြာကြီး သတ်မှတ်ခံရရေ။<ref name="Greatest">{{Cite web|url=https://www.bbc.com/sport/football/64042613 |title=Messi: The greatest player of all time? |publisher=BBC Sport |date=18 December 2022|access-date=16 July 2026}}</ref><ref name="Guardian">{{Cite news |url=https://www.theguardian.com/football/2022/dec/18/lionel-messi-greatest-ever-footballer-world-cup-win|title=Lionel Messi cements his place as the greatest ever with World Cup win |work=The Guardian|date=18 December 2022|access-date=16 July 2026}}</ref> == ငယ်ဘဝ == မက်ဗားကို ၁၉၈၇ ခုနှစ် ဂျုန်လ ၂၄ ရက်မာ [[အာဂျင်တီးနား]]နိုင်ငံ၊ [[ဆန်တာဖေပြည်နယ်]]၊ [[ရိုဆာရီယိုမြို့]]မာ မွီးဖွားရေ။<ref name="Bio">{{Cite book |last=Balagué |first=Guillem |title=Messi |publisher=Orion Books |year=2013 |isbn=978-1-4091-4659-9 |pages=25–30}}</ref> ဖခင်မာ ဟော်ဟေမက်ဆီဖြစ်ပြီးကေ မိခင်မာ ဆီလီယာ ကူချစ်တီနီ ဖြစ်တေ။ သူမာ မောင်နှမ သုံးဦးဟိရေ။<ref name="Bio" /> ငယ်စဉ်က ဂရန်ဒိုလီအသင်းမာ စတင်ကစပ်ခရေ။<ref name="Grandoli">{{Cite web |url=https://www.goal.com/en/news/8/main/2012/10/13/3448085/messi-remember-grandoli-as-his-first-club |title=Messi remember Grandoli as his first club |publisher=Goal.com |date=13 October 2012 |access-date=16 July 2026}}</ref> အသက် ၁၀ နှစ်မာ [[ကြီးထွားဟော်မုန်းချို့တဲ့ရေ ရောဂါ]] (Growth Hormone Deficiency) ဟိကြောင်း စစ်ဆီးတွိ့ဟိခရေ။<ref name="Growth">{{Cite news |url=https://www.telegraph.co.uk/sport/football/players/lionel-messi/11309352/Lionel-Messi-profile.html |title=Lionel Messi profile |work=The Telegraph |date=16 December 2014 |access-date=16 July 2026}}</ref> ယင်းရောဂါအတွက် ကုသစရိတ်မာ များရေတွက်တာနန့် မိသားစုမာ ဘဏ္ဍာရီးအခက်အခဲ ကြုံခရရေ။<ref name="Growth" /> ၂၀၀၀ ခုနှစ်မာ [[ဘာစီလိုနာ ဘောလုံးအသင်း|ဘာစီလိုနာ]]ကလပ်ဧ့ လူငယ်အကယ်ဒမီသို့ ရောက်ဟိခပြီး ကလပ်က သူ ကုသစရိတ်တိကို တာဝန်ယူပီးခရေ။<ref name="BarcaMove">{{cite web |url=https://www.fcbarcelona.com/en/news/1405920/the-story-of-the-famous-napkin |title=The story of the famous napkin |publisher=FC Barcelona |date=14 December 2020|access-date=16 July 2026}}</ref> == ကလပ်ဘဝ == === ဘာစီလိုနာ (၂၀၀၄–၂၀၂၁) === မက်ဆီစွာ အသက် ၁၇ နှစ်အရွယ် ၂၀၀၄ ခုနှစ် အောက်တိုဘာလ ၁၆ ရက်မာ ဘာစီလိုနာဧ့ အဓိကအသင်းအတွက် [[လာလီဂါ]]မာ အရင်ဆုံး ကစပ်ခရေ။<ref name="Debut">{{Cite web |url=https://www.fcbarcelona.com/en/football/first-team/news/1498157/messis-debut-15-years-on |title=Messi's debut 15 years on |publisher=FC Barcelona |date=16 October 2019 |access-date=16 July 2026}}</ref> ၂၀၀၅ ခုနှစ် မေလ ၁ ရက်မာ [[အယ်လ်ဘာစီတီ]]ကို ဂိုးသွင်းကာ ပထမဆုံးဂိုးကို သွင်းယူခရေ။<ref name="FirstGoal">{{Cite news |url=https://www.marca.com/en/football/barcelona/2019/05/01/5cc9677d46163f7d198b4607.html |title=Messi's first goal for Barcelona: 14 years ago today |work=Marca |date=1 May 2019 |access-date=16 July 2026}}</ref> ပက် ဂွါဒီယိုလာဧ့ နည်းပြအဖြစ်မာ [[ချာဗီ ဟန်နန်ဒက်စ်|ချာဗီ]]နန့် [[အင်ဒရက်စ် အီနီယက်စတာ|အီနီယက်စတာ]]ရို့နန့်တတူ ထိရောက်ရေ သုံးဦးတပ်တိုက်စစ်လိုင်း (trio) ကို ဖွဲ့စည်းနိုင်ခရေ။<ref name="Trio">{{Cite web |url=https://www.espn.com/soccer/story/_/id/37456974/xavi-iniesta-messi-masterminds-barcelona-greatest |title=Xavi, Iniesta and Messi: Masterminds of Barcelona's greatest era |publisher=ESPN |date=20 May 2020 |access-date=16 July 2026}}</ref> ဘာစီလိုနာမာ ကစပ်စဉ် မက်ဆီစွာ လာလီဂါဖလား ၁၀ ကြိမ်၊<ref name="LaLiga">{{Cite web |url=https://www.laliga.com/en-GB/news/lionel-messi-the-la-liga-record-breaker |title=Lionel Messi: The La Liga record breaker |publisher=La Liga |date=28 December 2020 |access-date=16 July 2026}}</ref> [[ယူအီးအက်ဖ်အေ ချန်ပီယံလိဂ်]]ဖလား ၄ ကြိမ် အပါအဝင် ဆုတံဆိပ် ၃၄ ခုကို ရဟိခရေ။<ref name="Trophies">{{Cite web |url=https://www.sportingnews.com/us/soccer/news/lionel-messi-trophies-championships-barcelona-psg/ohixlqmdv2w51e6fxjwwpt1z |title=Lionel Messi trophies: All the silverware won by Argentina star with Barcelona, PSG and Inter Miami |publisher=Sporting News |date=26 June 2024 |access-date=16 July 2026}}</ref> ယင်းချင့်အပြင် ကလပ်ဧ့ ဂိုးသွင်းအများဆုံး (၆၇၂ ဂိုး) နန့် ပွဲကစပ်အများဆုံး (၇၇၈ ပွဲ) ကစပ်သမားလည်းဖြစ်တေ။<ref name="Records">{{Cite web |url=https://www.fcbarcelona.com/en/football/first-team/news/2289480/lionel-messis-record-breaking-fc-barcelona-career-in-numbers |title=Lionel Messi's record-breaking FC Barcelona career in numbers |publisher=FC Barcelona |date=5 August 2021 |access-date=16 July 2026}}</ref> === ပါရီ စိန့်ဂျာမိန် (၂၀၂၁–၂၀၂၃) === ၂၀၂၁ ခုနှစ် သြဂတ်လ ၁၀ ရက်မာ ဘာစီလိုနာမှ ထွက်ခွာကာ ပြင်သစ်ကလပ် [[ပါရီ စိန့်ဂျာမိန် ဘောလုံးအသင်း|ပါရီ စိန့်ဂျာမိန်]]သို့ ပြောင်းရွိခရေ။<ref name="PSG">{{Cite web |url=https://en.psg.fr/teams/first-team/content/lionel-messi-signs-for-paris-saint-germain |title=Lionel Messi signs for Paris Saint-Germain |publisher=PSG |date=10 August 2021 |access-date=16 July 2026}}</ref> ကလပ်အတွက် [[လီဂူး ၁]]ဖလား ၂ ကြိမ် ရဟိခရေ။<ref name="Trophies" /> === အင်တာ မိုင်ယာမီ (၂၀၂၃–လက်ဟိ) === ၂၀၂၃ ခုနှစ် ဂျုန်လ ၇ ရက်မာ အမေရိကကလပ် [[အင်တာ မိုင်ယာမီ ဘောလုံးအသင်း|အင်တာ မိုင်ယာမီ]]သို့ ပြောင်းရွိကြောင်း ကြေညာခရေ။<ref name="Miami">{{Cite web |url=https://www.intermiamicf.com/news/inter-miami-cf-signs-lionel-messi |title=Inter Miami CF signs Lionel Messi |publisher=Inter Miami CF |date=7 June 2023 |access-date=16 July 2026}}</ref> ၂၀၂၃ ခုနှစ် ဂျူလိုင်လ ၂၁ ရက်မာ ညွန့်ဖူးကစပ်ကာ နောက်ဆုံးမိနစ်မာ အနိုင်ဂိုးသွင်းခရေ။<ref name="MiamiDebut">{{Cite news |url=https://www.espn.com/soccer/story/_/id/38045183/lionel-messi-scores-late-winner-inter-miami-debut |title=Lionel Messi scores late winner on Inter Miami debut |publisher=ESPN |date=22 July 2023 |access-date=16 July 2026}}</ref> အသင်းနန့်တတူ ၂၀၂၃ ခုနှစ် [[လိဂ်ဖလား (အမေရိက)|လိဂ်ဖလား]]ဖလား ရဟိခရေ။<ref name="LeaguesCup">{{Cite web |url=https://www.mlssoccer.com/news/inter-miami-cf-win-leagues-cup-2023 |title=Inter Miami CF win Leagues Cup 2023 |publisher=MLS Soccer |date=20 August 2023 |access-date=16 July 2026}}</ref> == နိုင်ငံတက်စားပြုဘဝ == မက်ဆီစွာ ၂၀၀၅ ခုနှစ် သြဂတ်လ ၁၇ ရက်မာ ဟန်ဂေရီနန့် ခြီစစ်ပွဲမာ အာဂျင်တီးနားအသင်းအတွက် အစောဆုံး ကစပ်ခရေ။<ref name="NTDebut">{{Cite web |url=https://www.espn.com/soccer/story/_/id/37419533/argentina-vs-hungary-2005-lionel-messi-debut-red-card |title=Lionel Messi's Argentina debut: The red card and the promise |publisher=ESPN |date=17 August 2020 |access-date=16 July 2026}}</ref> အသင်းနန့်တတူ ၂၀၀၈ ခုနှစ် [[နွီရာသီ အိုလံပစ်အားကဇပ်ပွဲတော်]]မာ [[ရွှီတံဆိပ်]]ဆု၊<ref name="Olympic">{{Cite web |url=https://www.olympics.com/en/athletes/lionel-messi |title=Lionel Messi |publisher=Olympics.com |access-date=16 July 2026}}</ref> ၂၀၂၁ ခုနှစ် [[ကိုပါ အမေရိကား]]ဖလား၊<ref name="Copa2021">{{Cite news |url=https://www.bbc.com/sport/football/57940643 |title=Argentina beat Brazil 1-0 to win Copa America |publisher=BBC Sport |date=11 July 2021 |access-date=16 July 2026}}</ref> နန့် ၂၀၂၂ ခုနှစ် [[ဖီဖာ ကမ္ဘာ့ဖလား]]ရို့ကို ရဟိခရေ။<ref name="WC2022">{{Cite news |url=https://www.bbc.com/sport/football/63955722 |title=Argentina beat France on penalties to win World Cup |publisher=BBC Sport |date=18 December 2022 |access-date=16 July 2026}}</ref> ၂၀၁၄ ခုနှစ် ကမ္ဘာ့ဖလားပြိုင်ပွဲမာလည်း ဒုတိယဆုရဟိခရေ။<ref name="WC2014">{{Cite web |url=https://www.fifa.com/tournaments/mens/worldcup/2014brazil |title=2014 FIFA World Cup Brazil |publisher=FIFA |access-date=16 July 2026}}</ref> သူစွာ အာဂျင်တီးနားအသင်းဧ့ ဂိုးသွင်းအများဆုံး (၁၀၈ ဂိုး) နန့် ပွဲကစပ်အများဆုံး (၁၈၀ ပွဲ) ကစပ်သမားလည်းဖြစ်တေ။<ref name="NTRecords">{{Cite web |url=https://www.afa.com.ar/en/posts/lionel-messi-has-broken-all-the-records |title=Lionel Messi has broken all the records |publisher=Argentine Football Association |date=15 June 2024 |access-date=16 July 2026}}</ref> == ဂုဏ်ပြုဆုတိ == မက်ဆီစွာ [[ဘော်လွန်ဒိုရွှီဘောလုံးဆု]]ကို စံချိန်တင် ၈ ကြိမ် (၂၀၀၉၊ ၂၀၁၀၊ ၂၀၁၁၊ ၂၀၁၂၊ ၂၀၁၅၊ ၂၀၁၉၊ ၂၀၂၁၊ ၂၀၂၃) ရဟိခရေ။<ref name="BallonDor">{{Cite web |url=https://www.francefootball.fr/ballon-d-or/ |title=Ballon d'Or winners |publisher=France Football |access-date=16 July 2026}}</ref> ယင်းချင့်အပြင် [[ဥရောပရွှီဖိနပ်ဆု]]ကို ၆ ကြိမ် (၂၀၁၀၊ ၂၀၁၂၊ ၂၀၁၃၊ ၂၀၁၇၊ ၂၀၁၈၊ ၂၀၁၉) ရဟိရေလူရေ။<ref name="GoldenShoe">{{Cite web |url=https://www.europeangoldenshoe.com/winners |title=European Golden Shoe winners |publisher=European Golden Shoe |access-date=16 July 2026}}</ref> == ကိုးကားချက်တိ == {{Reflist}} == ပြင်ပလင့်ခ်တိ == * {{Official website|https://messi.com}} * {{Instagram|leomessi}} * [https://www.intermiamicf.com/players/lionel-messi အင်တာ မိုင်ယာမီကလပ်ဧ့ ပရိုဖိုင်] * [https://www.afa.com.ar/en/players/lionel-messi အာဂျင်တီးနားဘောလုံးအဖွဲ့ချုပ်ဧ့ ပရိုဖိုင်] * [https://www.mlssoccer.com/players/lionel-messi MLS ပရိုဖိုင်] {{Authority control}} [[Category:၁၉၈၇ မွီးဖွားသူတိ]] [[Category:အသက်ရှင်နီသူတိ]] [[Category:အာဂျင်တီးနားဘောလုံးသမားတိ]] [[Category:အာဂျင်တီးနားအမျိုးသားဘောလုံးသမားတိ]] [[Category:ဘာစီလိုနာ ဘောလုံးသမားတိ]] [[Category:ပါရီ စိန့်ဂျာမိန် ဘောလုံးသမားတိ]] [[Category:အင်တာ မိုင်ယာမီ ဘောလုံးသမားတိ]] [[Category:လာလီဂါ ဘောလုံးသမားတိ]] [[Category:လီဂူး ၁ ဘောလုံးသမားတိ]] [[Category:မေဂျာလိဂ်ဆိုကာ ဘောလုံးသမားတိ]] [[Category:ဖီဖာ ကမ္ဘာ့ဖလား ဆုရဟိသူတိ]] [[Category:ကမ္ဘာ့ဖလားအနိုင်ရ ဘောလုံးသမားတိ]] [[Category:အိုလံပစ်ရွှီတံဆိပ်ရ အာဂျင်တီးနားဘောလုံးသမားတိ]] [[Category:၂၀၀၈ နွီရာသီ အိုလံပစ် ဆုတံဆိပ်ရဟိသူတိ]] [[Category:ဘော်လွန်ဒိုဆုရဟိသူတိ]] [[Category:ဥရောပရွှီဖိနပ်ဆုရဟိသူတိ]] [[Category:ရှိတန်း (ဘောလုံး) ကစပ်သမားတိ]] [[Category:အာဂျင်တီးနားက ပြင်သစ်သို့ ပြောင်းရွိသူတိ]] [[Category:အာဂျင်တီးနားက အမေရိကသို့ ပြောင်းရွိသူတိ]] oka22dbt1fe2y74g374wsxfbfq9gri4 ကဏ္ဍ:၁၉၈၇ မွီးဖွားသူတိ 14 5087 19591 2026-07-16T08:48:53Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ခုနှစ်အလိုက်မွီးဖွားသူတိ]]" 19591 wikitext text/x-wiki [[ကဏ္ဍ:ခုနှစ်အလိုက်မွီးဖွားသူတိ]] ppwqyjhspsxy9gps77mcm7uy64290d1 ကဏ္ဍ:အသက်ရှင်နီသူတိ 14 5088 19592 2026-07-16T08:49:52Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ခုနှစ်အလိုက်ဖြစ်စဉ်]]" 19592 wikitext text/x-wiki [[ကဏ္ဍ:ခုနှစ်အလိုက်ဖြစ်စဉ်]] 6fkdbb1p9brmds3a3g0shhiwyh51qfs ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ 14 5089 19593 2026-07-16T08:59:56Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အားကဇပ်]]" 19593 wikitext text/x-wiki [[ကဏ္ဍ:အားကဇပ်]] aju8h0q0pittnmnp9lx0vkdth1pythd 19614 19593 2026-07-16T09:15:20Z YaThaWinTha 42 19614 wikitext text/x-wiki [[ကဏ္ဍ:ဘောလုံး]] glxxcnu9x7qwyt05ed1436tevd00t59 ကဏ္ဍ:မေဂျာလိဂ်ဆိုကာ ဘောလုံးသမားတိ 14 5090 19594 2026-07-16T09:01:24Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]]" 19594 wikitext text/x-wiki [[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]] 9twzsi1t4k2zaj08be68uq8v3pifkhy ကဏ္ဍ:လီဂူး ၁ ဘောလုံးသမားတိ 14 5091 19595 2026-07-16T09:01:33Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]]" 19595 wikitext text/x-wiki [[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]] 9twzsi1t4k2zaj08be68uq8v3pifkhy ကဏ္ဍ:လာလီဂါ ဘောလုံးသမားတိ 14 5092 19596 2026-07-16T09:01:42Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]]" 19596 wikitext text/x-wiki [[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]] 9twzsi1t4k2zaj08be68uq8v3pifkhy ကဏ္ဍ:အင်တာ မိုင်ယာမီ ဘောလုံးသမားတိ 14 5093 19597 2026-07-16T09:02:04Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]]" 19597 wikitext text/x-wiki [[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]] 9twzsi1t4k2zaj08be68uq8v3pifkhy ကဏ္ဍ:ပါရီ စိန့်ဂျာမိန် ဘောလုံးသမားတိ 14 5094 19598 2026-07-16T09:02:15Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]]" 19598 wikitext text/x-wiki [[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]] 9twzsi1t4k2zaj08be68uq8v3pifkhy ကဏ္ဍ:ဘာစီလိုနာ ဘောလုံးသမားတိ 14 5095 19599 2026-07-16T09:02:23Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]]" 19599 wikitext text/x-wiki [[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]] 9twzsi1t4k2zaj08be68uq8v3pifkhy ကဏ္ဍ:အားကဇပ် 14 5096 19600 2026-07-16T09:03:19Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ယဉ်ကျေးမှု]]" 19600 wikitext text/x-wiki [[ကဏ္ဍ:ယဉ်ကျေးမှု]] 6azybn6ki8tzzrjnn5c1fm64vijzauv ကဏ္ဍ:အာဂျင်တီးနားအမျိုးသားဘောလုံးသမားတိ 14 5097 19601 2026-07-16T09:04:39Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]]" 19601 wikitext text/x-wiki [[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]] 9twzsi1t4k2zaj08be68uq8v3pifkhy ကဏ္ဍ:အာဂျင်တီးနားဘောလုံးသမားတိ 14 5098 19602 2026-07-16T09:05:15Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]]" 19602 wikitext text/x-wiki [[ကဏ္ဍ:အသင်းအလိုက် ဘောလုံးသမားတိ]] 9twzsi1t4k2zaj08be68uq8v3pifkhy ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ 14 5099 19603 2026-07-16T09:07:09Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အားကဇပ်]]" 19603 wikitext text/x-wiki [[ကဏ္ဍ:အားကဇပ်]] aju8h0q0pittnmnp9lx0vkdth1pythd 19616 19603 2026-07-16T09:15:46Z YaThaWinTha 42 19616 wikitext text/x-wiki [[ကဏ္ဍ:ဘောလုံး]] glxxcnu9x7qwyt05ed1436tevd00t59 ကဏ္ဍ:ဥရောပရွှီဖိနပ်ဆုရဟိသူတိ 14 5100 19604 2026-07-16T09:08:05Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]]" 19604 wikitext text/x-wiki [[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]] h6r4ktphveosfu6e16g35nvflj0970t ကဏ္ဍ:ဘော်လွန်ဒိုဆုရဟိသူတိ 14 5101 19605 2026-07-16T09:08:29Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]]" 19605 wikitext text/x-wiki [[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]] h6r4ktphveosfu6e16g35nvflj0970t ကဏ္ဍ:၂၀၀၈ နွီရာသီ အိုလံပစ် ဆုတံဆိပ်ရဟိသူတိ 14 5102 19606 2026-07-16T09:08:36Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]]" 19606 wikitext text/x-wiki [[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]] h6r4ktphveosfu6e16g35nvflj0970t ကဏ္ဍ:အိုလံပစ်ရွှီတံဆိပ်ရ အာဂျင်တီးနားဘောလုံးသမားတိ 14 5103 19607 2026-07-16T09:08:45Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]]" 19607 wikitext text/x-wiki [[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]] h6r4ktphveosfu6e16g35nvflj0970t ကဏ္ဍ:ကမ္ဘာ့ဖလားအနိုင်ရ ဘောလုံးသမားတိ 14 5104 19608 2026-07-16T09:08:52Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]]" 19608 wikitext text/x-wiki [[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]] h6r4ktphveosfu6e16g35nvflj0970t ကဏ္ဍ:ဖီဖာ ကမ္ဘာ့ဖလား ဆုရဟိသူတိ 14 5105 19609 2026-07-16T09:09:00Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]]" 19609 wikitext text/x-wiki [[ကဏ္ဍ:ဆုအလိုက် ဘောလုံးသမားတိ]] h6r4ktphveosfu6e16g35nvflj0970t ကဏ္ဍ:နိုင်ငံပြောင်းရွိ့ဘောလုံးသမားတိ 14 5106 19610 2026-07-16T09:12:36Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အားကဇပ်]]" 19610 wikitext text/x-wiki [[ကဏ္ဍ:အားကဇပ်]] aju8h0q0pittnmnp9lx0vkdth1pythd 19615 19610 2026-07-16T09:15:32Z YaThaWinTha 42 19615 wikitext text/x-wiki [[ကဏ္ဍ:ဘောလုံး]] glxxcnu9x7qwyt05ed1436tevd00t59 ကဏ္ဍ:အာဂျင်တီးနားက အမေရိကသို့ ပြောင်းရွိသူတိ 14 5107 19611 2026-07-16T09:13:00Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:နိုင်ငံပြောင်းရွိ့ဘောလုံးသမားတိ]]" 19611 wikitext text/x-wiki [[ကဏ္ဍ:နိုင်ငံပြောင်းရွိ့ဘောလုံးသမားတိ]] lmcpusj1zk40kol6w1vodmmkyk7233j ကဏ္ဍ:အာဂျင်တီးနားက ပြင်သစ်သို့ ပြောင်းရွိသူတိ 14 5108 19612 2026-07-16T09:13:22Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:နိုင်ငံပြောင်းရွိ့ဘောလုံးသမားတိ]]" 19612 wikitext text/x-wiki [[ကဏ္ဍ:နိုင်ငံပြောင်းရွိ့ဘောလုံးသမားတိ]] lmcpusj1zk40kol6w1vodmmkyk7233j ကဏ္ဍ:ဘောလုံး 14 5109 19613 2026-07-16T09:14:54Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:အားကဇပ်]]" 19613 wikitext text/x-wiki [[ကဏ္ဍ:အားကဇပ်]] aju8h0q0pittnmnp9lx0vkdth1pythd ကဏ္ဍ:ဘောလုံးအဖွဲ့ချုပ်တိ 14 5110 19617 2026-07-16T09:18:11Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဘောလုံး]]" 19617 wikitext text/x-wiki [[ကဏ္ဍ:ဘောလုံး]] glxxcnu9x7qwyt05ed1436tevd00t59 ကဏ္ဍ:ဘောလုံးပြိုင်ပွဲတိ 14 5111 19619 2026-07-16T10:04:00Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဘောလုံး]]" 19619 wikitext text/x-wiki [[ကဏ္ဍ:ဘောလုံး]] glxxcnu9x7qwyt05ed1436tevd00t59 ကဏ္ဍ:အားကဇပ်ပြိုင်ပွဲတိ 14 5112 19620 2026-07-16T10:04:58Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဘောလုံး]]" 19620 wikitext text/x-wiki [[ကဏ္ဍ:ဘောလုံး]] glxxcnu9x7qwyt05ed1436tevd00t59 ကဏ္ဍ:ကမ္ဘာ့ဖလား 14 5113 19621 2026-07-16T10:07:01Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဘောလုံးအဖွဲ့ချုပ်တိ]] [[ကဏ္ဍ:အားကဇပ်ပြိုင်ပွဲတိ]]" 19621 wikitext text/x-wiki [[ကဏ္ဍ:ဘောလုံးအဖွဲ့ချုပ်တိ]] [[ကဏ္ဍ:အားကဇပ်ပြိုင်ပွဲတိ]] cb5ouhqtzc1qmf47g70nyyfielf5hjj ကဏ္ဍ:ဖီဖာ 14 5114 19622 2026-07-16T10:07:46Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဘောလုံးအဖွဲ့ချုပ်တိ]]" 19622 wikitext text/x-wiki [[ကဏ္ဍ:ဘောလုံးအဖွဲ့ချုပ်တိ]] nam41czgouffmoawv8tqsp2vpaampxu ကဏ္ဍ:ဖီဖာ ကမ္ဘာ့ဖလား အနိုင်ရအသင်းတိ 14 5115 19623 2026-07-16T10:09:53Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဖီဖာ]] [[ကဏ္ဍ:ကမ္ဘာ့ဖလား]]" 19623 wikitext text/x-wiki [[ကဏ္ဍ:ဖီဖာ]] [[ကဏ္ဍ:ကမ္ဘာ့ဖလား]] e31al1v5t4m02hnqofxxnhcgrwnqsd4 ကဏ္ဍ:အပြည်ပြည်ဆိုင်ရာ ဘောလုံးပြိုင်ပွဲတိ 14 5116 19624 2026-07-16T10:10:56Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဘောလုံးပြိုင်ပွဲတိ]] [[ကဏ္ဍ:အားကဇပ်ပြိုင်ပွဲတိ]]" 19624 wikitext text/x-wiki [[ကဏ္ဍ:ဘောလုံးပြိုင်ပွဲတိ]] [[ကဏ္ဍ:အားကဇပ်ပြိုင်ပွဲတိ]] sajxddm8xik4av3dt2jccalwkfo8qyn ကဏ္ဍ:ဖီဖာ ကမ္ဘာ့ဖလားပြိုင်ပွဲ 14 5117 19625 2026-07-16T10:11:53Z YaThaWinTha 42 Created page with "[[ကဏ္ဍ:ဖီဖာ]] [[ကဏ္ဍ:ကမ္ဘာ့ဖလား]]" 19625 wikitext text/x-wiki [[ကဏ္ဍ:ဖီဖာ]] [[ကဏ္ဍ:ကမ္ဘာ့ဖလား]] e31al1v5t4m02hnqofxxnhcgrwnqsd4 တမ်းပလိတ်:Infobox international football competition 10 5118 19627 2026-07-16T10:36:08Z YaThaWinTha 42 Created page with "{{infobox | bodyclass = vcalendar | titleclass = summary | title = {{#if:{{{tourney_name|}}}|{{{year|}}} {{{tourney_name|}}} {{{yearr|}}} <includeonly>|{{PAGENAMEBASE}}</includeonly>}} | above = {{{other_titles|}}} | abovestyle = font-size: 100% | image = {{#invoke:InfoboxImage|InfoboxImage |image={{{image|}}} |size={{{image_size|{{{size|}}}}}} |sizedefault=frameless |upright=1 |alt={{{alt|}}} |suppressplaceholder=yes}} | caption = {{{caption|}}} | h..." 19627 wikitext text/x-wiki {{infobox | bodyclass = vcalendar | titleclass = summary | title = {{#if:{{{tourney_name|}}}|{{{year|}}} {{{tourney_name|}}} {{{yearr|}}} <includeonly>|{{PAGENAMEBASE}}</includeonly>}} | above = {{{other_titles|}}} | abovestyle = font-size: 100% | image = {{#invoke:InfoboxImage|InfoboxImage |image={{{image|}}} |size={{{image_size|{{{size|}}}}}} |sizedefault=frameless |upright=1 |alt={{{alt|}}} |suppressplaceholder=yes}} | caption = {{{caption|}}} | header1 = {{#if:{{{country|}}}{{{city|}}}{{{num_teams|}}}{{{venues|}}}|ပြိုင်ပွဲဆိုင်ရေ အချက်အလက်တိ}} | label2 = အိမ်ရှင်နိုင်ငံ{{#if:{{{country2|}}}|တိ|}} | data2 = {{#if:{{{country|}}}|{{{country}}}}}<!-- -->{{#if:{{{country2|}}}|<br />{{{country2|}}}}}<!-- -->{{#if:{{{country3|}}}|<br />{{{country3|}}}}}<!-- -->{{#if:{{{country4|}}}|<br />{{{country4|}}}}}<!-- -->{{#if:{{{country5|}}}|<br />{{{country5|}}}}}<!-- -->{{#if:{{{country6|}}}|<br />{{{country6|}}}}}<!-- -->{{#if:{{{country7|}}}|<br />{{{country7|}}}}}<!-- -->{{#if:{{{country8|}}}|<br />{{{country8|}}}}}<!-- -->{{#if:{{{country9|}}}|<br />{{{country9|}}}}}<!-- -->{{#if:{{{country10|}}}|<br />{{{country10|}}}}}<!-- -->{{#if:{{{country11|}}}|<br />{{{country11|}}}}}<!-- -->{{#if:{{{country12|}}}|<br />{{{country12|}}}}}<!-- -->{{#if:{{{country13|}}}|<br />{{{country13|}}}}}<!-- -->{{#if:{{{country14|}}}|<br />{{{country14|}}}}}<!-- -->{{#if:{{{country15|}}}|<br />{{{country15|}}}}} | label3 = မြို့ | data3 = {{{city|}}} | class3 = location | label4 = ကျင်းပရေနိ | data4 = {{{dates|}}} | label5 = နိူင်းပြိုင်ရေအသင်း | data5 = {{{num_teams|}}}{{#if: {{{confederations|}}}|&nbsp;(အဖွဲ့ချုပ် {{#ifeq:{{{confederations}}}|၁| }} {{{confederations}}} ဂုမှ)}}{{#if: {{{sub-confederations|}}}|&nbsp;(အဖွဲ့ချုပ်ခွဲ {{#ifeq:{{{sub-confederations}}}|၁| }} {{{sub-confederations}}} ဂုမှ)}}{{#if: {{{associations|}}}|&nbsp;(အဖွဲ့ချုပ်{{#ifeq:{{{associations}}}|၁| |}} {{{associations}}} ဂုမှ)}} | label6 = အားကဇပ်ကွင်း | data6 = {{{venues|}}}{{#if:{{{cities|}}}|&nbsp;(အိမ်ရှင်မြို့{{#ifeq: {{{cities}}}|၁| }} {{{cities}}} မြို့မာ)}} | header7 = {{#if:{{{champion|}}}{{{champion_other|}}}|နောက်ဆုံး ရပ်တည်မှုတိ}} | label8 = {{#if:{{{American|}}}|ချန်ပီယံ(တိ)|ချန်ပီယံ}} | data8 = {{#if:{{{champion|}}}|{{fb|{{{champion|}}}|{{{champion-flagvar|}}}|name={{{champion-name|}}}}}{{#if: {{{count|}}}|{{nowrap| ({{ordinal|{{{count}}}}} title)}} }} }} | label9 = {{#if:{{{American|}}}|ချန်ပီယံ(တိ)|ချန်ပီယံ}} | data9 = {{#if:{{{champion_other|}}}|{{{champion_other}}}{{#if: {{{count|}}}|{{nowrap| ({{ordinal|{{{count}}}}} title)}} }} }} | label10 = ဒုတိယ | data10 = {{#if:{{{second|}}}|{{fb|{{{second|}}}|{{{second-flagvar|}}}|name={{{second-name|}}}}} }} | label11 = ဒုတိယ | data11 = {{#if:{{{second_other|}}}|{{{second_other|}}} }} | label12 = တတိယ | data12 = {{#if:{{{third|}}}|{{fb|{{{third|}}}|{{{third-flagvar|}}}|name={{{third-name|}}}}} }} | label13 = တတိယ | data13 = {{#if:{{{third_other|}}}|{{{third_other|}}} }} | label14 = စတုတ္ထ | data14 = {{#if:{{{fourth|}}}|{{fb|{{{fourth|}}}|{{{fourth-flagvar|}}}|name={{{fourth-name|}}}}} }} | label15 = စတုတ္ထ | data15 = {{#if:{{{fourth_other|}}}|{{{fourth_other|}}} }} | label16 = Promoted | data16 = {{#if:{{{promoted|}}}|{{{promoted|}}} }} | label17 = Relegated | data17 = {{#if:{{{relegated|}}}|{{{relegated|}}} }} | header18 = {{#if:{{{matches|}}}{{{goals|}}}{{{attendance|}}}{{{top_scorer|}}}{{{player|}}}|ပြိုင်ပွဲဆိုင်ရေ ကိန်းဂဏန်းအချက်အလက်တိ}} | label19 = ပွဲစဉ် | data19 = {{formatnum:{{#if:{{{matches|}}}|{{{matches}}}{{{matches_footnote|}}}}}}} | label20 = ဂိုးအရွီအတွက် | data20 = {{formatnum:{{#if:{{{goals|}}}|{{{goals}}}{{#if:{{{matches|}}}|&nbsp;(တပွဲလျှင် {{#expr: {{{goals|0}}} / {{{matches|1}}} round 2}} ဂိုးနှုန်း)}}{{{goals_footnote|}}}}}}} | label21 = ပရိသတ်ဦးရေ | data21 = {{#if:{{{attendance|}}}|{{formatnum: {{{attendance|0}}}}}{{#if:{{{matches|}}}|&nbsp;(တပွဲလျှင် {{formatnum: {{#expr: {{{attendance|0}}} / {{{matches|1}}} round 0}}}} ဦးနှုန်း) }} }} | label22 = ဂိုးအများဆုံး<br>သွင်းသူ | data22 = {{{top_scorer|}}} | class22 = attendee | label23 = ကောင်းဘီယက်<br> အားကဇပ်သမား | data23 = {{{player|}}} | class23 = attendee | label24 = ကောင်းဘီယက်<br>လူငယ်ကစပ်သမား | data24 = {{{young_player|}}} | class24 = attendee | label25 =ကောင်းဘီယက်<br>ဂိုးစောင့် | data25 = {{{goalkeeper|}}} | class25 = attendee | label26 = အရှင်းသန့်ဆုံးဆု | data26 = {{{fair_play|}}} | class26 = attendee | belowclass = noprint | below = {{#if:{{{prevseason|}}}|{{align|left|&larr; {{{prevseason|}}} }}}}{{#if:{{{nextseason|}}}|{{align|right|{{{nextseason|}}} &rarr; }}}} {{#if:{{{updated|}}}|{{clear}}All statistics correct as of {{{updated}}}.}}{{#if:{{{extra information|}}}|{{clear}}{{{extra information}}}}} | decat = {{#if:{{{prevseason|}}}{{{nextseason|}}}|yes|no}} }}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using infobox international football competition with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Infobox international football competition]] with unknown parameter "_VALUE_"|ignoreblank=y| alt | American | associations | attendance | caption | champion | champion_other | champion-flagvar | champion-name | cities | city | confederations | count | country | country10 | country11 | country12 | country13 | country14 | country15 | country2 | country3 | country4 | country5 | country6 | country7 | country8 | country9 | dates | extra information | fair_play | fourth | fourth_other | fourth-flagvar | fourth-name | goalkeeper | goals | goals_footnote | image | image_size | matches | matches_footnote | nextseason | num_teams | other_titles | player | prevseason | promoted | relegated | second | second_other | second-flagvar | second-name | size | sub-confederations | third | third_other | third-flagvar | third-name | top_scorer | tourney_name | updated | venues | year | yearr | young_player }}<noinclude>{{documentation}}</noinclude> j65ztta3c9qfujwtd13w99mr9v9i88g ကိုကိုးကျွန်း 0 5119 19628 2026-07-16T10:38:58Z Htun Warnn Naing 1059 Created page with "{{Location map |Burma |label=Coco Islands |lon_dir=E |lat_dir=N |lat_deg=14|lat_min=7 |lon_deg=93|lon_min=22 |position=right |width=250 |float=right |mark=Cercle rouge 100%.svg |marksize=20 |caption=Location of the Coco Islands in Burma }} [[Image:Andaman nicobar 76.jpg|thumb|Andaman Islands, with Coco Islands at the extreme top of the map.]] '''ကိုကိုးကျွန်း'''ရေ မြန်မာနိုင်ငံဧ့ တောင်ဘ..." 19628 wikitext text/x-wiki {{Location map |Burma |label=Coco Islands |lon_dir=E |lat_dir=N |lat_deg=14|lat_min=7 |lon_deg=93|lon_min=22 |position=right |width=250 |float=right |mark=Cercle rouge 100%.svg |marksize=20 |caption=Location of the Coco Islands in Burma }} [[Image:Andaman nicobar 76.jpg|thumb|Andaman Islands, with Coco Islands at the extreme top of the map.]] '''ကိုကိုးကျွန်း'''ရေ မြန်မာနိုင်ငံဧ့ တောင်ဘက် [[ဘင်္ဂလားပင်လယ်အော်]]နန့် [[ကလမဲပင်လယ်]] အကြားမာ တည်ဟိရေ မြန်မာပိုင်ကျွန်းတကျွန်း ဖြစ်တေ။ ကိုကိုးကျွန်းရေ ရန်ကုန်တောင်ပိုင်းခရိုင် အထဲဟိ မြို့နယ်တခုဖြစ်ပြီးကေ အတိအကျပြောရလျင် ရန်ကုန်မြို့ဧ့ အစိတ်အပိုင်း တခုဖြစ်တေ။ ကိုကိုးကျွန်းကို ၁၉၇၄-ခုနှစ်ကပင် မြို့နယ်အဆင့် သတ်မှတ်ထားရေ။ ရန်ကုန်မြို့မှ အနောက်တောင်ဘက် မိုင်(၂၆၀)အကွာမာ ဟိရေ။ ရန်ကုန်မှ [[မြန်မာ့ကြယ်ငါးပွင့် သင်္ဘောလုပ်ငန်း]][[သင်္ဘော]]နန့် လားကေ ခုတ်မောင်းချိန် (၁၉)နာရီ ဝန်းကျင်ကြာရေ။ နိုင်ငံတကာရေပိုင်နက် စည်းမျှိုင်းဥပဒေတိအရ ကမ်းခြီမှ ၁၂-မိုင်အကွာအဝီးကို နိုင်ငံပိုင် နယ်နိမိတ်၊ နိုင်ငံပိုင်ကမ်းခြီမှ မိုင် ၂၀ဝ အထိကို အထူးစီးပွားရီးဇုံအဖြစ် သတ်မှတ်ဆောင်ရွက်နှိုင်ရေ နယ်နိမိတ် စစွာတိနန့် ခွဲခြားသတ်မှတ်ထားရေ။ ယင်းအတွက်နန့် ပင်လယ်နှစ်ခုကြားက မြန်မာပိုင်ကျွန်းမြေ၊ မြန်မာပိုင်ကမ်းခြီ ဖြစ်ရေ ကိုကိုးကျွန်းမာ ပထဝီနယ်နိမိတ်နန့် စီးပွားရီးအချက်အချာကျရေ ကျွန်းစု ဖြစ်တေ။ ယင်းအပြင် ကိုကိုးကျွန်းရေ သဘာဝပတ်ဝန်းကျင် ယိုပျက်ယွင်းစီးမှု ကင်းစင်ရေနီရာ ဖြစ်ပိုင် ရာသီဥတုနန့် ဖီးအန္တရာယ် အထိုက်အလျောက်သာ ဟိရေ ကျွန်းတကျွန်း ဖြစ်တေ။ ကိုကိုးကျွန်းရေ သင်္ဘောကြီးများ တိုက်ရိုက်ဆိုက်ကပ်နှိုင်ရေ ဆိပ်ခုံမဟိ၊ ဖောင်တော်မဟိ၊ ကျွန်းနံဘေး ပတ်ဝန်းကျင်မာ [[သန္စွာကျောက်တန်း]] များစွာဟိရေ။ ယင်းအတွက်နန့် ကျွန်းသို့ရောက်ဖို့ သင်္ဘောမှ ပိုက်ချစက်လှီတိနန့် တဆင့်လားရဧ့။ ကမ်းခြီနံဘေးတဝိုက်မာ ရီတိမ်ကေလေ့ ယင်းကနိန်လွန်ကေ ရေနက်ရေ။ ရီပြင်မာ အစိမ်းနန့် အပြာရောင် နှစ်ပိုင်း ခွဲခြာထားပိုင် ဖြစ်နီရေ။ == သမိုင်း == အိန္ဒိယနန့် အရှိတောင်အာသျှ ‌‌‌‌‌‌‌‌‌‌‌ရှီးဟောင်းကု‌န်သယ်ရီးလမ်းကြောင်း ခလာချိတ်တိစွာ တနားတခါ လာလေဟိရေ။ ၁၆ ရာစုမာ ပေါ်တူဂီခလာချိတ်တိက ကိုကိုးကျွန်းဟု နာမည်ပေခဲဧ့။ "ကိုကိုးကျွန်း" ရေ ပေါ်တူဂီ ဘာသာစကားအရ "အုန်းသီးကျွန်း"ဟု အဓိပ္ပါယ်ရရေ။ ပေါ်တူဂီ ဘာသာစကားမှ အုန်းသီးကို "coco" (ကိုကိုး) ဟုခေါ်ရေ။<ref>Google translate</ref> ကိုကိုးကျွန်းကို ၁၈ ရာစုမာ အရှိအိန္ဒိယကုမ္ပဏီက သိမ်းပိုက်ခဲပြီ။ နှစ်စိကေချေအကြာ [[ဗြိတိသျှရာဇ]] ကိုပေခဲရေ။ ၁၈၅၇-ခုနှစ်မာ အိန္ဒိယနိုင်ငံအထဲ တော်လှန်မှုတိ ဖြစ်ပွားခပနာ ဗြိတိသျှရို့က အက်ဒမင်ကျွန်း(ကလမဲကျွန်း)တောင်ပိုင်းဟိ ပို့ဘလဲရားမာ ၁၈၅၈-ခုနှစ်မာ အကျိုင်းထောင်ဆောက်လုပ်ပနာ အိန္ဒိယနန့် မြန်မာနိုင်ငံအနောက်ပိုင်းမှ တော်လှန်သူတိကို ထိန်းသိမ်းခရေ။ ၁၈၈၂ ခုနှစ်မာ ဗြိတိသျှဘားမားနိုင်ငံသို့ လွှဲပြောင်းပီးခရေ။ ဒုတိယကမ္ဘာစစ်အထဲ ဂျပန်ရေ ၁၉၄၂ ခုနှစ်မှ ၁၉၄၅ ခုနှစ်အထိ ကိုကိုးကျွန်းတိကို သိမ်းပိုက် အုပ်ချုပ်ခရေ။ မြန်မာနိုင်ငံရေ ၁၉၄၈ ခုနှစ်မာ လွတ်လပ်ရီးရရားနောက် ကိုကိုးကျွန်းကို အုပ်ချုပ်ခွင့်ရခဲရေ။ ၁၉၅၉ ခုနှစ် ဂျန်နဝါရီလမာ နီဝင်အစိုးရရေ နိုင်ငံရီးအကျိုင်းသားတိကို ထားဟိခဲရေ။ ၁၉၇၁ ခုနှစ် ဒီဇန်ဘာလမာ အကျိုင်းထောင်ကို ပိတ်ပစ်ခပြီးကေ။ ယပြီးနောက် အဆောက်အဦတိကို မြန်မာ့ရီတပ်သို့ လွှဲပြောင်းပီးခရေ။ ကိုကိုးကျွန်းမာ မြန်မာ‌ရီတပ် စခန်‌ ပေါ်ပေါက်လားခဲရေ။<ref>https://en.m.wikipedia.org/wiki/Coco_Islands</ref> == ကိုကိုးအကျွန်ြို့နယ် == {{seealso|ကိုကိုးကျွန်းမြို့နယ်}} ကိုကိုးကျွန်းမြို့နယ်ကို ၁၉၈၈ ခုနှစ်မာ ပြည်ထဲရီးဝန်ကြီး‌ဌာနဧ့ ၁၂.၇.၁၉၉၉ ရက်စွဲပါ အမိန့်ကြော်ငြာစာ ထုတ်ပြန်ပနာ အမှတ် ၁ နန့် အမှတ် ၂ ရပ်ကွက်ဟုလို့ မြို့အဖြစ် သတ်မှတ် ခဲရေ။<ref>{{Cite web |title=မော်ကွန်းတင်ပြီးမိတ္တူ |url=https://www.winnetmyanmar.com/township/kokokywaan |access-date=12 November 2023 |archive-date=12 November 2023 |archive-url=https://web.archive.org/web/20231112051904/https://www.winnetmyanmar.com/township/kokokywaan }}</ref> == ကိုကိုးကျွန်းစုနန့် အကျယ်အဝန်း == ကိုကိုးကျွန်းစုမာ ကျွန်းပေါင်း (၁၂)ခုပါရေ။ ယင်းရို့မာ-<br /> # ကိုကိုးကြီးကျွန်း = ၃၃၀၃-ဧက # ဖိနပ်ကျွန်း = ၁၁.၁၃-ဧက # မင်္ဂလာကျွန်း(စားပွဲကျွန်း) = ၂၆၇.၁၂- ဧက # ကြွက်ကျွန်း = ၄.၈၀-ဧက # ဂျယ်ရီကျွန်း = ၂၄.၄၀-ဧက # ကိုကိုးချေကျွန်း = ၁၀ဝ၅.၄၀-ဧက # ပါလီပါလေ့့ကျွန်း = ၁၈၉၈.၂၃-ဧက # ငှက်သိုက်ကျွန်း = ၅.၆၇-ဧက # အုန်းပင်ကျွန်း = ၃.၇၈-ဧက # ဇီးဖြူကျွန်း = ၁.၂၆-ဧက # ဆင်ကျွန်း = ၃.၁၅-ဧက # လူခေါင်းကျွန်း = ၇.၅၆-ဧက ရို့ဖြစ်တေ။ <ref>Weekly Eleven News Journal</ref> == ဒေနိ အခြီအနီ == ၁၉၆၀-ခုနှစ် ဝန်းကျင်က ကိုကိုးကျွန်းမာ [[နိုင်ငံရီးအကျိုင်းသား]]တိကိုရာ တွိရဖို့ ဖြစ်တေ။ ဂုချိန်ခါ နိုင်ငံပိုင် အစိုးရမှ ကိုကိုးကျွန်းကို အပန်းဖြီကျွန်း ဖြစ်လှာစီရန် ကျွန်းထက်မာ ခရီးသည် ၁၀ ဦး တည်းခိုနှိုင်ရေ အိမ် ၁၄ လုံး၊ ညောင်စောင်း၂၅ လုံးဆံ့ ဆီးရုံ၊ ဧည့်လမ်းညွှန် ၃၀ ခန့် ဟိရန် စီစိုင် ပီးထားရေ။ ဘုန်းကြီးကျောင်း၊ စာသင်ကျောင်းတိမာလည်း တည်းခိုနိုင်ဖို့ စီစိုင်ထားကြောင်း၊ ကျွန်းထက်မာ အိမ်တလုံးကို တစ်နိကေ ကျပ်တသောင်းနှုန်းဖြင့် ငှားရမ်း နီထိုင်နှိုင်ရေ။ ပထမအကြိမ် ခရီးစိုင်ကို နိုဗန်ဘာလမှ စတင်ပြုလုပ်ခလို့ သာမန်ခရီးသည် စိကေချေကိုရာ လက်မှတ် ရောင်းပီးခပြီး ခရီးသည် ၄၀၀ ကျော်အနက် အများစုကတော့ခါ ဌာနဆိုင်ရေ ဝန်ထမ်း၊ အနုပညာသျှင်၊ လုပ်ငန်းရှင်၊ [[စာနယ်ဇင်းသမား]]ရို့ ဖြစ်တေ။ လက်မှတ်ဝယ်ယူမှုကို ကန့်သတ်ထားခြင်း မဟိပေ။ နိုင်ငံသား စိစစ်ရီးကတ် ပြသနိုင်သူကို ရန်ကုန်မြို့လယ်ဟိ ရန်ကုန်တိုင်း အီးချမ်းသာယာရီး နန့် ဖွံ့ဖြိုးရီး ကောင်စီရုံးမာ လက်မှတ်များ ရောင်းချပီးရေ။ ရန်ကုန်မြို့ သာကေတဆိပ်ခုံမှ စတင် ထွက်ခွာလို့ ခရီးစိုင်အတွက် တဦးလျှင် သင်္ဘောလက်မှတ်ခ ကျပ် သုံးသောင်းခွဲ ကျရေ။ ထိုလက်မှတ်မာ ရိုးရိုးတန်း လက်မှတ်ဖြစ်ပြီးကေ သီးသန့်အခန်း ယူလိုသူတိ အတွက်လေ့ စီစိုင်ပီးထားရေ။ ၄ ယောက်ခန်းအတွက် တဦးလျှင် ကျပ် လေးသောင်း၊ ၂ ယောက်ခန်းအတွက် တဦးလျှင် ကျပ် ငါးသောင်း ကုန်ကျရေ။ ကျွန်းထက်မာ ကန့်သတ်နယ်မြီများ ဟိရေဟု သိရရေ။ ဓာတ်ပုံမရိုက်ရရေ ကန့်သတ်နယ်မြီများ ဟိကေလေ့ ဓာတ်ပုံပြိုင်ပွဲတခု စီစိုင်ထားရေ။ ၇ မိုင် ဂါတ်(ဂျယ်ရီကျွန်း)၊ ရွှီရင်စို့တောင်၊ အရှိဖက် လိပ်သောင်၊ အနောက်ဘက် လိပ်သောင်၊ ကြွက်ကျွန်း အစဟိရေ နီရာတိသို့သာ လားရောက် လိ့လာ နိုင်လီရေ။ ကိုကိုးကျွန်းမာ အမှတ် ၂၈ ရီတပ် အခြီစိုက်စခန်း ဟိရေ။ စခန်းမာ တပ်မတော်သားတိနန့် ယင်းရို့၏ မိသားစုဝင် စုစုပေါင်း ၂၀၀ ခန့် နီထိုင်ကတ်ရေ။ ကျွန်းထက်မာ လူနီအိမ်ခြီ ၁၀၀ ကျော် ဟိပြီးး စုစုပေါင်း လူဦးရွီ နှစ်ထောင်ဝန်းကျင်သာ ဟိလီရေ။ == ကိုးကား == {{reflist}} {{ရန်ကုန်တိုင်း}} {{မြန်မာနိုင်ငံဟိ ကျွန်းများ}} {{မြန်မာတိုင်းနန့် ပြည်နယ်များ}} [[Category:မြန်မာနိုင်ငံဟိ မြို့များ]] [[Category:ရန်ကုန်တိုင်းဒေသကြီး]] [[Category:အိန္ဒိယသမုဒ္ဒရာမားဟိ ကျွန်းများ]] [[Category:မြန်မာနိုင်ငံဟိ ကျွန်းများ]] [[ကဏ္ဍ:ကျွန်း]] 51opany0277d57jokhwzq9i0d51yptl တမ်းပလိတ်:Country data DZA 10 5120 19629 2026-07-16T10:39:45Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အယ်လ်ဂျီးရီးယားနိုင်ငံ | shortname alias = အယ်လ်ဂျီးရီးယား | flag alias = Flag of Algeria.svg | flag alias-1958 = Flag of Algeria (1958-1962).svg | flag alias-naval = Naval Ensign of Algeria.svg | link alias-naval = Algerian National Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noin..." 19629 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အယ်လ်ဂျီးရီးယားနိုင်ငံ | shortname alias = အယ်လ်ဂျီးရီးယား | flag alias = Flag of Algeria.svg | flag alias-1958 = Flag of Algeria (1958-1962).svg | flag alias-naval = Naval Ensign of Algeria.svg | link alias-naval = Algerian National Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1958 | redir1 = DZA | redir2 = ALG </noinclude> }} esrgo3exuccu0goasijiskmeifm64z7 တမ်းပလိတ်:Country data ALG 10 5121 19630 2026-07-16T10:39:52Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အယ်လ်ဂျီးရီးယားနိုင်ငံ | shortname alias = အယ်လ်ဂျီးရီးယား | flag alias = Flag of Algeria.svg | flag alias-1958 = Flag of Algeria (1958-1962).svg | flag alias-naval = Naval Ensign of Algeria.svg | link alias-naval = Algerian National Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noin..." 19630 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အယ်လ်ဂျီးရီးယားနိုင်ငံ | shortname alias = အယ်လ်ဂျီးရီးယား | flag alias = Flag of Algeria.svg | flag alias-1958 = Flag of Algeria (1958-1962).svg | flag alias-naval = Naval Ensign of Algeria.svg | link alias-naval = Algerian National Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1958 | redir1 = DZA | redir2 = ALG </noinclude> }} esrgo3exuccu0goasijiskmeifm64z7 တမ်းပလိတ်:Country data AUS 10 5122 19631 2026-07-16T10:40:22Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဩစတြေးလျနိုင်ငံ | shortname alias = ဩစတြေးလျ | flag alias = Flag of Australia.svg | flag alias-1918 = | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = | redir1 = | related1 = </noinclude> }}<noinclude> </noinclude>" 19631 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဩစတြေးလျနိုင်ငံ | shortname alias = ဩစတြေးလျ | flag alias = Flag of Australia.svg | flag alias-1918 = | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = | redir1 = | related1 = </noinclude> }}<noinclude> </noinclude> szosy44wdxi31qgto38oyzs9b163mfc တမ်းပလိတ်:Country data SR Bosnia and Herzegovina 10 5123 19632 2026-07-16T10:41:17Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{..." 19632 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1992 | redir1 = BIH | redir2 = Bosnia-Herzegovina | redir3 = Bosnia and Herzegovina | related1 = SR Bosnia and Herzegovina | related2 = Republika Srpska | related3 = Federation of Bosnia and Herzegovina </noinclude> }} sbl6gl7udj1qv01o5bxe2cddcxobejb တမ်းပလိတ်:Country data Republika Srpska 10 5124 19633 2026-07-16T10:41:26Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{..." 19633 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1992 | redir1 = BIH | redir2 = Bosnia-Herzegovina | redir3 = Bosnia and Herzegovina | related1 = SR Bosnia and Herzegovina | related2 = Republika Srpska | related3 = Federation of Bosnia and Herzegovina </noinclude> }} sbl6gl7udj1qv01o5bxe2cddcxobejb တမ်းပလိတ်:Country data Federation of Bosnia and Herzegovina 10 5125 19634 2026-07-16T10:41:35Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{..." 19634 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1992 | redir1 = BIH | redir2 = Bosnia-Herzegovina | redir3 = Bosnia and Herzegovina | related1 = SR Bosnia and Herzegovina | related2 = Republika Srpska | related3 = Federation of Bosnia and Herzegovina </noinclude> }} sbl6gl7udj1qv01o5bxe2cddcxobejb တမ်းပလိတ်:Country data Bosnia and Herzegovina 10 5126 19635 2026-07-16T10:41:50Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{..." 19635 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1992 | redir1 = BIH | redir2 = Bosnia-Herzegovina | redir3 = Bosnia and Herzegovina | related1 = SR Bosnia and Herzegovina | related2 = Republika Srpska | related3 = Federation of Bosnia and Herzegovina </noinclude> }} sbl6gl7udj1qv01o5bxe2cddcxobejb တမ်းပလိတ်:Country data Bosnia-Herzegovina 10 5127 19636 2026-07-16T10:42:03Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{..." 19636 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1992 | redir1 = BIH | redir2 = Bosnia-Herzegovina | redir3 = Bosnia and Herzegovina | related1 = SR Bosnia and Herzegovina | related2 = Republika Srpska | related3 = Federation of Bosnia and Herzegovina </noinclude> }} sbl6gl7udj1qv01o5bxe2cddcxobejb တမ်းပလိတ်:Country data BIH 10 5128 19637 2026-07-16T10:42:18Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{..." 19637 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1992 | redir1 = BIH | redir2 = Bosnia-Herzegovina | redir3 = Bosnia and Herzegovina | related1 = SR Bosnia and Herzegovina | related2 = Republika Srpska | related3 = Federation of Bosnia and Herzegovina </noinclude> }} sbl6gl7udj1qv01o5bxe2cddcxobejb တမ်းပလိတ်:Country data CIV 10 5129 19638 2026-07-16T10:43:08Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အိုင်ဗရီကို့စ်နိုင်ငံ | shortname alias = အိုင်ဗရီကို့စ် | flag alias = Flag of Cote d'Ivoire.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = CIV | redir2 = Ivory Coast </noinclude> }}" 19638 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အိုင်ဗရီကို့စ်နိုင်ငံ | shortname alias = အိုင်ဗရီကို့စ် | flag alias = Flag of Cote d'Ivoire.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = CIV | redir2 = Ivory Coast </noinclude> }} a6appadvi3hicmzhko3fgxpwzmgl247 တမ်းပလိတ်:Country data EGY 10 5130 19639 2026-07-16T10:43:49Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီဂျစ်နိုင်ငံ | shortname alias = အီဂျစ် | flag alias = Flag of Egypt.svg | flag alias-Ottoman = Flag of Egypt 19th century.svg | flag alias-1882 = Egypt flag 1882.svg | flag alias-1922 = Flag of Egypt 1922.svg | flag alias-1952 = Flag of Egypt 1952.svg | flag alias-UAR = Flag of the United Arab Republic.svg | flag alias-1972 = Flag of Egypt 1972.svg | flag alias-naval = N..." 19639 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီဂျစ်နိုင်ငံ | shortname alias = အီဂျစ် | flag alias = Flag of Egypt.svg | flag alias-Ottoman = Flag of Egypt 19th century.svg | flag alias-1882 = Egypt flag 1882.svg | flag alias-1922 = Flag of Egypt 1922.svg | flag alias-1952 = Flag of Egypt 1952.svg | flag alias-UAR = Flag of the United Arab Republic.svg | flag alias-1972 = Flag of Egypt 1972.svg | flag alias-naval = Naval Ensign of Egypt.svg | link alias-naval = Egyptian Navy | flag alias-air force = Air Force Ensign of Egypt.svg | link alias-air force = Egyptian Air Force | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = Ottoman | var2 = 1882 | var3 = 1922 | var4 = 1952 | var5 = UAR | var6 = 1972 | redir1 = EGY | related1 = United Arab Republic </noinclude> }}<noinclude> </noinclude> 3lnenu0ebmzcecewqg0x58j4srobemp တမ်းပလိတ်:Country data ECU 10 5131 19640 2026-07-16T10:44:10Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီကွေဒေါနိုင်ငံ | shortname alias = အီကွေဒေါ | flag alias = Flag of Ecuador.svg | flag alias-civil = Civil flag and ensign of Ecuador.svg | flag alias-1845 = Flag of Ecuador (1845–1860).svg | flag alias-naval = Flag of Ecuador.svg | link alias-naval = Ecuadorian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}}..." 19640 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီကွေဒေါနိုင်ငံ | shortname alias = အီကွေဒေါ | flag alias = Flag of Ecuador.svg | flag alias-civil = Civil flag and ensign of Ecuador.svg | flag alias-1845 = Flag of Ecuador (1845–1860).svg | flag alias-naval = Flag of Ecuador.svg | link alias-naval = Ecuadorian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1845 | var2 = civil | redir1 = ECU </noinclude> }} q1q25dw8u6z0jxu3eu63im1krik6fzi တမ်းပလိတ်:Country data China 10 5132 19641 2026-07-16T10:44:44Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တရုတ်ပြည်သူ့သမ္မတနိုင်ငံ | shortname alias = တရုတ် | flag alias = Flag of the People's Republic of China.svg | flag alias-1889 = Flag of the Qing Dynasty (1889-1912).svg | flag alias-1912 = Flag of China (1912–1928).svg | link-alias-1912 = တရုတ်သမ္မတနိုင်ငံ | flag alias-1929 = Flag of the Republic of China.svg | link-a..." 19641 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တရုတ်ပြည်သူ့သမ္မတနိုင်ငံ | shortname alias = တရုတ် | flag alias = Flag of the People's Republic of China.svg | flag alias-1889 = Flag of the Qing Dynasty (1889-1912).svg | flag alias-1912 = Flag of China (1912–1928).svg | link-alias-1912 = တရုတ်သမ္မတနိုင်ငံ | flag alias-1929 = Flag of the Republic of China.svg | link-alias-1929 = တရုတ်သမ္မတနိုင်ငံ | flag alias-military = People's Liberation Army Flag of the People's Republic of China.svg | flag alias-army = Ground Force Flag of the People's Republic of China.svg | link alias-army = ပြည်သူ့လွတ်မြောက်ရီးတပ်မတော် ကြည်းတပ် | flag alias-naval = Naval Ensign of the People's Republic of China.svg | link alias-naval = ပြည်သူ့လွတ်မြောက်ရီးတပ်မတော် ရီတပ် | flag alias-air force = Air Force Flag of the People's Republic of China.svg | link alias-air force = ပြည်သူ့လွတ်မြောက်ရီးတပ်မတော် လီတပ် | name alias-football = China PR | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1889 | var2 = 1912 | var3 = 1929 | var4 = military | redir1 = CHN | redir2 = People's Republic of China | redir3 = China | redir4 = PRC | related1 = Qing dynasty | related2 = Republic of China | related3 = Republic of China (1912–1949) </noinclude> }} oj44uhlvo0a952vfr7whhhyyjfpfbdc တမ်းပလိတ်:Country data CUW 10 5133 19642 2026-07-16T10:45:05Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကူရာဆောနိုင်ငံ | shortname alias = ကူရာဆော | flag alias = Flag of Curaçao.svg | flag alias-1982=Flag of Curaçao (1982-1984).svg | size = {{{size|}}} | name = {{{name|}}} | variant = {{{variant|}}} | altlink = {{{altlink|}}} <noinclude> | var1 = 1982 | redir1 = CUW | redir2 = CUR | redir3 = Curacao | related1 = Territory of Curaçao </noinclude> }}" 19642 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကူရာဆောနိုင်ငံ | shortname alias = ကူရာဆော | flag alias = Flag of Curaçao.svg | flag alias-1982=Flag of Curaçao (1982-1984).svg | size = {{{size|}}} | name = {{{name|}}} | variant = {{{variant|}}} | altlink = {{{altlink|}}} <noinclude> | var1 = 1982 | redir1 = CUW | redir2 = CUR | redir3 = Curacao | related1 = Territory of Curaçao </noinclude> }} sy4ue8bde91pbmxubyptrvau2k20jep တမ်းပလိတ်:Country data CPV 10 5134 19643 2026-07-16T10:45:29Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကိတ်ဗာဒေနိုင်ငံ | shortname alias = ကိတ်ဗာဒီ | flag alias = Flag of Cape Verde.svg | flag alias-1975 = Flag of Cape Verde (1975–1992).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1975 | redir1 = CPV | redir2 = Cabo Verde | redir3 = Cape Verde </noinclude> }}" 19643 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကိတ်ဗာဒေနိုင်ငံ | shortname alias = ကိတ်ဗာဒီ | flag alias = Flag of Cape Verde.svg | flag alias-1975 = Flag of Cape Verde (1975–1992).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1975 | redir1 = CPV | redir2 = Cabo Verde | redir3 = Cape Verde </noinclude> }} ksrkduj3qgxevselmj8huw7lyrde1f7 တမ်းပလိတ်:Country data COD 10 5135 19644 2026-07-16T10:45:58Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကွန်ဂိုဒီမိုကရက်တသမ္မတနိုင်ငံ | shortname alias = ကွန်ဂိုဒီမိုကရက်တသမ္မတ | flag alias = Flag of the Democratic Republic of the Congo.svg | flag alias-1960 = Flag of Congo-Léopoldville (1960-1963).svg | flag alias-1963 = Flag of Congo-Léopoldville (1963-1966).svg | flag alias-1966 = Flag of Congo-Kinshasa (196..." 19644 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကွန်ဂိုဒီမိုကရက်တသမ္မတနိုင်ငံ | shortname alias = ကွန်ဂိုဒီမိုကရက်တသမ္မတ | flag alias = Flag of the Democratic Republic of the Congo.svg | flag alias-1960 = Flag of Congo-Léopoldville (1960-1963).svg | flag alias-1963 = Flag of Congo-Léopoldville (1963-1966).svg | flag alias-1966 = Flag of Congo-Kinshasa (1966-1971).svg | flag alias-1997 = Flag of the Democratic Republic of the Congo.svg (1997-2003).svg | flag alias-2003 = Flag of the Democratic Republic of the Congo.svg (2003-2006).svg | link alias-football = DR Congo {{{mw|}}} national {{{age|}}} football team | name alias-football = DR Congo | link alias-basketball = DR Congo {{{mw|}}} national {{{age|}}} basketball team | name alias-basketball = DR Congo | link alias-volleyball = DR Congo {{{mw|}}} national volleyball team | name alias-volleyball = DR Congo | link alias-handball = DR Congo {{{mw|}}} national handball team | name alias-handball = DR Congo | link alias-rugby union = DR Congo {{{mw|}}} national rugby union team | name alias-rugby union = DR Congo | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1960 | var2 = 1963 | var3 = 1966 | var4 = 1997 | var5 = 2003 | redir1 = COD | redir2 = DR Congo | redir3 = Democratic Republic of the Congo | redir4 = Congo-Kinshasa | related1 = Zaire | related2 = Belgian Congo | related3 = Congo Free State </noinclude> }} o3fqcmh7xc6rbx30brdatnx6zisyw6r တမ်းပလိတ်:Country data TUN 10 5136 19645 2026-07-16T10:47:11Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူနီးရှားနိုင်ငံ | shortname alias = တူနီးရှား | flag alias = Flag of Tunisia.svg | flag alias-1959 = Pre-1999 Flag of Tunisia.svg | flag alias-french = Flag of Tunisia with French canton.svg | flag alias-old = Tunisian flag till 1831.svg | flag alias-bey = Flag of Tunis Bey-fr.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant =..." 19645 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူနီးရှားနိုင်ငံ | shortname alias = တူနီးရှား | flag alias = Flag of Tunisia.svg | flag alias-1959 = Pre-1999 Flag of Tunisia.svg | flag alias-french = Flag of Tunisia with French canton.svg | flag alias-old = Tunisian flag till 1831.svg | flag alias-bey = Flag of Tunis Bey-fr.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1959 | var2 = french | var3 = old | var4 = bey | redir1 = TUN | redir2 = Tunisia </noinclude> }} flllr9cqvrml378knnq1j0tngx4i2zi တမ်းပလိတ်:Country data UZB 10 5137 19646 2026-07-16T10:47:35Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥဇဘက်ကစ္စတန်နိုင်ငံ | shortname alias = ဥဇဘက်ကစ္စတန် | flag alias = Flag of Uzbekistan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = UZB | related1 = Uzbek SSR </noinclude> }}<noinclude></noinclude>" 19646 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥဇဘက်ကစ္စတန်နိုင်ငံ | shortname alias = ဥဇဘက်ကစ္စတန် | flag alias = Flag of Uzbekistan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = UZB | related1 = Uzbek SSR </noinclude> }}<noinclude></noinclude> a8r4201l21ddcs1vinbogacsap6ztrj တမ်းပလိတ်:Country data SEN 10 5138 19647 2026-07-16T10:48:05Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆီနီဂေါနိုင်ငံ | shortname alias = ဆီနီဂေါ | flag alias = Flag of Senegal.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = SEN | redir2 = Senegal </noinclude> }}" 19647 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆီနီဂေါနိုင်ငံ | shortname alias = ဆီနီဂေါ | flag alias = Flag of Senegal.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = SEN | redir2 = Senegal </noinclude> }} cfccgkoh6l94opuhs91s2ulvo2rkrj8 တမ်းပလိတ်:Country data SCO 10 5139 19648 2026-07-16T10:49:07Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = စကော့တလန်နိုင်ငံ | shortname alias = စကော့တလန် | flag alias = Flag of Scotland.svg | flag alias-1542 = Flag of Scotland (traditional).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1542 | redir1 = SCO | redir2 = Scotland | related1 = Kingdom of Scotland </noinclude> }}" 19648 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = စကော့တလန်နိုင်ငံ | shortname alias = စကော့တလန် | flag alias = Flag of Scotland.svg | flag alias-1542 = Flag of Scotland (traditional).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1542 | redir1 = SCO | redir2 = Scotland | related1 = Kingdom of Scotland </noinclude> }} i89rfuv7wslbb2ewidoq7eisy69foun တမ်းပလိတ်:Country data PAN 10 5140 19649 2026-07-16T10:49:38Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပနားမားနိုင်ငံ | shortname alias = ပနားမား | flag alias = Flag of Panama.svg | link alias-naval = {{#switch:{{{variant|}}}|1958|1958=Panamanian National Guard|1984|1984=Panamanian Defense Forces|#default=Panamanian Public Forces}} | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = PAN | redir2 = Panama </noinclude> }}" 19649 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပနားမားနိုင်ငံ | shortname alias = ပနားမား | flag alias = Flag of Panama.svg | link alias-naval = {{#switch:{{{variant|}}}|1958|1958=Panamanian National Guard|1984|1984=Panamanian Defense Forces|#default=Panamanian Public Forces}} | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = PAN | redir2 = Panama </noinclude> }} ecks73a98ufv8p02li3d7j2coknvoia တမ်းပလိတ်:Country data NZL 10 5141 19650 2026-07-16T10:50:05Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နယူးဇီလန်နိုင်ငံ | shortname alias = နယူးဇီလန် | flag alias = Flag of New Zealand.svg | flag alias-civil = Civil Ensign of New Zealand.svg | flag alias-naval = Naval Ensign of New Zealand.svg | flag alias-naval-1941 = Naval ensign of the United Kingdom.svg | link alias-naval = Royal New Zealand Navy | flag alias-air force = Air Force Ensign of New Zealand.svg |..." 19650 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နယူးဇီလန်နိုင်ငံ | shortname alias = နယူးဇီလန် | flag alias = Flag of New Zealand.svg | flag alias-civil = Civil Ensign of New Zealand.svg | flag alias-naval = Naval Ensign of New Zealand.svg | flag alias-naval-1941 = Naval ensign of the United Kingdom.svg | link alias-naval = Royal New Zealand Navy | flag alias-air force = Air Force Ensign of New Zealand.svg | link alias-air force = Royal New Zealand Air Force | link alias-field hockey = New Zealand {{{mw|men's}}} national field hockey team | link alias-softball = Black Socks | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = civil | var2 = naval-1941 | redir1 = NZL | redir2 = New Zealand </noinclude> }} azlxipdk2v9rpqkc9jllqnddg7weqzu တမ်းပလိတ်:Country data NOR 10 5142 19651 2026-07-16T10:50:45Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နော်ဝေးနှိုင်ငံ | shortname alias = နော်ဝေး | flag alias = Flag of Norway.svg | flag alias-old kingdom = Royal Standard of Norway.svg | flag alias-1814 = Flag of Norway (1814–1821).svg | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Norge-Unionsflagg-1844.svg | flag alias-naval = Flag of Norway, state.svg | border-naval = |..." 19651 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နော်ဝေးနှိုင်ငံ | shortname alias = နော်ဝေး | flag alias = Flag of Norway.svg | flag alias-old kingdom = Royal Standard of Norway.svg | flag alias-1814 = Flag of Norway (1814–1821).svg | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Norge-Unionsflagg-1844.svg | flag alias-naval = Flag of Norway, state.svg | border-naval = | link alias-naval = Royal Norwegian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = old kingdom | var2 = 1814 | var3 = 1818 | var4 = 1844 | redir1 = NOR | redir2 = Norway | related1 = Kalmar Union </noinclude> }} b1gcmmsjt10ztytrfa1azsnxz9jfo1u တမ်းပလိတ်:Country data JOR 10 5143 19652 2026-07-16T10:51:14Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျော်ဒန်နိုင်ငံ | shortname alias = ဂျော်ဒန် | flag alias = Flag of Jordan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = JOR | redir2 = Jordan </noinclude> }}" 19652 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျော်ဒန်နိုင်ငံ | shortname alias = ဂျော်ဒန် | flag alias = Flag of Jordan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = JOR | redir2 = Jordan </noinclude> }} 3jv3qyxlbka4ukptz1acrkdv19q772f တမ်းပလိတ်:Country data IRQ 10 5144 19653 2026-07-16T10:51:40Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရတ်နိုင်ငံ | shortname alias = အီရတ် | flag alias = Flag of Iraq.svg | flag alias-1924 = Flag of Iraq 1924.svg | flag alias-1959 = Flag of Iraq 1959-1963.svg | flag alias-1963 = Flag of Iraq (1963-1991).svg | flag alias-1991 = Flag of Iraq, 1991-2004.svg | flag alias-2004 = Flag of Iraq 2004-2008.svg | link alias-naval = Iraqi Navy | size = {{{size|}}} | name = {{{name|}}} |..." 19653 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရတ်နိုင်ငံ | shortname alias = အီရတ် | flag alias = Flag of Iraq.svg | flag alias-1924 = Flag of Iraq 1924.svg | flag alias-1959 = Flag of Iraq 1959-1963.svg | flag alias-1963 = Flag of Iraq (1963-1991).svg | flag alias-1991 = Flag of Iraq, 1991-2004.svg | flag alias-2004 = Flag of Iraq 2004-2008.svg | link alias-naval = Iraqi Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1924 | var2 = 1959 | var3 = 1963 | var4 = 1991 | var5 = 2004 | redir1 = IRQ </noinclude> }} n6u3opih7f4fr1gt36hfyudi3zem3wh တမ်းပလိတ်:Country data IRN 10 5145 19654 2026-07-16T10:52:04Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရန်နိုင်ငံ | shortname alias = အီရန် | flag alias = Flag of Iran.svg | flag alias-1925 = State Flag of Iran (1925).svg | flag alias-1964 = Lionflag.svg | link alias-naval = Islamic Republic of Iran Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1925 | var2 = 1964 | redir1 = IRN | redir2 = IRI </noinclu..." 19654 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရန်နိုင်ငံ | shortname alias = အီရန် | flag alias = Flag of Iran.svg | flag alias-1925 = State Flag of Iran (1925).svg | flag alias-1964 = Lionflag.svg | link alias-naval = Islamic Republic of Iran Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1925 | var2 = 1964 | redir1 = IRN | redir2 = IRI </noinclude> }} em196ipkfzkkt0zi65ald6tmsylbt0j တမ်းပလိတ်:Country data HAI 10 5146 19655 2026-07-16T10:52:28Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဟေတီနိုင်ငံ | shortname alias = ဟေတီ | flag alias = Flag of Haiti.svg | flag alias-1964 = Flag of Haiti (1964-1986).svg | flag alias-civil = Flag of Haiti (civil).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | var2 = civil | redir1 = HTI | redir2 = HAI </noinclude> }}" 19655 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဟေတီနိုင်ငံ | shortname alias = ဟေတီ | flag alias = Flag of Haiti.svg | flag alias-1964 = Flag of Haiti (1964-1986).svg | flag alias-civil = Flag of Haiti (civil).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | var2 = civil | redir1 = HTI | redir2 = HAI </noinclude> }} sg9p5esrdpzj16kq1g0202zfr3t26jv တမ်းပလိတ်:Country data GHA 10 5147 19656 2026-07-16T10:52:52Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂါနာနိုင်ငံ | shortname alias = ဂါနာ | flag alias = Flag of Ghana.svg | flag alias-1964 = Ghana flag 1964.svg | flag alias-naval = Naval Ensign of Ghana.svg | flag alias-air force = Air Force Ensign of Ghana.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | redir1 = GHA | redir2 = Ghana | related1 = Gold..." 19656 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂါနာနိုင်ငံ | shortname alias = ဂါနာ | flag alias = Flag of Ghana.svg | flag alias-1964 = Ghana flag 1964.svg | flag alias-naval = Naval Ensign of Ghana.svg | flag alias-air force = Air Force Ensign of Ghana.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | redir1 = GHA | redir2 = Ghana | related1 = Gold Coast </noinclude> }} fmthvcq4yq2piwuvm8tuitchr583p6j တမ်းပလိတ်:Current sports event icon 10 5148 19657 2026-07-16T10:54:30Z YaThaWinTha 42 Created page with "File:{{#switch:{{lc:{{{sport|}}}}} | americanfootball | american football | amfootball | college football | canadian football | arena football = AmericanFootball current event.svg | association football | football | soccer = Soccerball current event.svg | athletics = Athletics current event.svg | australian rules football | aussie rules | australian football = AFL current event.svg | badminton = Badminton_current_event.png | baseball = Baseball current event.svg..." 19657 wikitext text/x-wiki [[File:{{#switch:{{lc:{{{sport|}}}}} | americanfootball | american football | amfootball | college football | canadian football | arena football = AmericanFootball current event.svg | association football | football | soccer = Soccerball current event.svg | athletics = Athletics current event.svg | australian rules football | aussie rules | australian football = AFL current event.svg | badminton = Badminton_current_event.png | baseball = Baseball current event.svg | basket | basketball | college basketball = Basketball current event.svg | boxing = Boxing current event.svg | cricket = Cricket current event.svg | cue sports | cuesports | pool | billiard | billiards | snooker = Cue sports current event.svg | curling = Curling current event.svg | cycling = Cycling current event.svg | field hockey = Field hockey current event.svg | figure skating | skating = Figure Skating current event.svg | golf = Golf current event.svg | gymnastics = Gymnastics current event.svg | handball = Handball current event 2.svg | hockey | ice hockey = Hockey current event.svg | lacrosse | field lacrosse | box lacrosse | women's lacrosse = Lacrosse current event.svg | motorsport | motorsports = Motorsport current event.svg | netball = Netball current event.svg | olympic | olympic games | olympics = Olympics current event.svg | poker | texas hold 'em | omaha hold 'em = Poker current event.svg | prowrestling | pro wrestling = Prowrestling current event.svg | rugby league | rugby union | rugby sevens | rugby = Rugby football current event.svg | softball = Softball current event.svg | speed skating = Speed skating current event.svg | squash = Squash current event.svg | swimming = Swimming current event.svg | table tennis | ping pong | ping-pong = TableTennis current event.svg | team tennis | tennis = tennisball current event.svg | volley | volleyball | beach volleyball = Volleyball current event.svg | #default = Sports current event.svg }}|{{#if:{{{size|}}}|{{{size}}}|32px}}|alt=Current sports event|link=]]<noinclude> {{Documentation}}</noinclude> r3osm56x8agatklv0jf399cb4jw1dn2 တမ်းပလိတ်:Current sport 10 5149 19658 2026-07-16T10:55:47Z YaThaWinTha 42 Created page with "{{ {{{|safesubst:}}}#invoke:Unsubst||date=__DATE__ |$B= {{Ambox | name = Current sport | subst = <includeonly>{{subst:substcheck}}</includeonly> | small = {{{small|}}} | removalnotice=yes | type = notice <!--- IMPORTANT: When adding new sports/images, please also add them to {{Current sport-related}}. --> | image = {{Current sports event icon|sport={{{sport|}}}|size=40px}} | text = ဒေ{{{1|ဆောင်းပါး}}}သည် Portal:Current events/Spor..." 19658 wikitext text/x-wiki {{ {{{|safesubst:}}}#invoke:Unsubst||date=__DATE__ |$B= {{Ambox | name = Current sport | subst = <includeonly>{{subst:substcheck}}</includeonly> | small = {{{small|}}} | removalnotice=yes | type = notice <!--- IMPORTANT: When adding new sports/images, please also add them to {{Current sport-related}}. --> | image = {{Current sports event icon|sport={{{sport|}}}|size=40px}} | text = ဒေ{{{1|ဆောင်းပါး}}}သည် [[Portal:Current events/Sports|လက်ဟိကျင်းပနိန်ရေ အားကဇပ်နန့်{{{event|ဆက်နွယ်နီရေ ပြိုင်ပွဲ}}}]]အား မှတ်တမ်းတင်ထားရေ ဆောင်းပါးဖြစ်တေ။ ပြိုင်ပွဲကျင်းပနီမှုပေါ်မူတည်ပြီး အချက်အလက်တိ ကပျာကယာ ပြောင်းလဲလားနှိုင်ပါရေ။ ကနဦးသတင်းတင်ပြချက်တိ၊ ရမှတ်တိ သို့မဟုတ် ကိန်းဂဏန်းအချက်အလက်တိစွာ [[Wikipedia:Identifying reliable sources#Breaking news|စိတ်ချယုံကြည်ဖွယ်မဟိရေ]] အချက်အလက်တိ ဖြစ်နှိုင်ပါရေ။ ဒေ{{#if:{{{1|}}}|{{{1}}}|ဆောင်းပါး}}ဧ့ [{{fullurl:{{FULLPAGENAME}}|action=history}} နောက်ဆုံးတည်ဖြတ်မှု]စွာ လက်ဟိနောက်ဆုံးသတင်းအချက်အလက်ကို [[Wikipedia:Risk disclaimer|ဖော်ပြပီးနိုင်ဦးဖို့ မဟုတ်လီ]]။ | all = {{#switch:{{{category}}} |y |Y=Current sports events }} | date = {{{date|}}} }} }}<noinclude> {{Documentation}} </noinclude> 2r35oglaxy7fo4e2flcunqyhwbjv7wu တမ်းပလိတ်:Football box 10 5150 19659 2026-07-16T10:56:59Z YaThaWinTha 42 Created page with "{| cellspacing=0 style="width: {{{size|100%}}}; background-color: {{{bg|transparent}}}" {{#if:{{{event|}}}| ! colspan=5 style="text-align: center" {{!}} {{{event}}} {{!}}- }} | width=15% valign=top align=right rowspan=5 | {{{date}}}<br />{{#if:{{{time|}}}|{{{time}}}<br />| }}{{#if:{{{round|}}}|{{{round}}} }} ! width=24% valign=top align=right | {{{team1}}} ! width=13% valign=top align=center | {{#if:{{{score|}}}|{{{score}}}|v }}{{#if:{{{aet|}}}|<br />(Extra..." 19659 wikitext text/x-wiki {| cellspacing=0 style="width: {{{size|100%}}}; background-color: {{{bg|transparent}}}" {{#if:{{{event|}}}| ! colspan=5 style="text-align: center" {{!}} {{{event}}} {{!}}- }} | width=15% valign=top align=right rowspan=5 | {{{date}}}<br />{{#if:{{{time|}}}|{{{time}}}<br />| }}{{#if:{{{round|}}}|{{{round}}} }} ! width=24% valign=top align=right | {{{team1}}} ! width=13% valign=top align=center | {{#if:{{{score|}}}|{{{score}}}|v }}{{#if:{{{aet|}}}|<br />([[Extra time|a.e.t.]]) }} ! width=24% valign=top align=left | {{{team2}}} | style="font-size: 85%" rowspan=2 valign=top | {{{stadium}}}<br />{{#if:{{{attendance|}}}|ပွဲကြေ့ပွဲပရိသတ်: {{{attendance}}} ဦး<br />}}{{#if:{{{referee|}}}|ပလီကိုင်: {{{referee}}} }} |- style="font-size: 85%" | valign=top align=right | {{#if:{{{goals1|}}}|{{{goals1}}} }} | valign=top align=center | {{#if:{{{report|}}}|{{{report}}} }} | valign=top | {{#if:{{{goals2|}}}|{{{goals2}}} }} {{#if:{{{penaltyscore|}}}| {{!}}- {{!}} {{!}} &nbsp; ! align=center {{!}} [[Penalty shootout (association football)|Penalties]] {{!}} {{!}} &nbsp; {{!}}- style=font-size:85% {{!}} align=right valign=top {{!}} {{{penalties1}}} ! align=center valign=top {{!}} {{{penaltyscore}}} {{!}} valign=top {{!}} {{{penalties2}}} {{!}} &nbsp; {{!}} }} |}<noinclude>{{Documentation, template}}<!-- PLEASE ADD THIS TEMPLATE'S CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --></noinclude> ndumn3p6dszmo3z5f33xk9airtlzqes 19660 19659 2026-07-16T10:57:50Z YaThaWinTha 42 19660 wikitext text/x-wiki {| cellspacing=0 style="width: {{{size|100%}}}; background-color: {{{bg|transparent}}}" {{#if:{{{event|}}}| ! colspan=5 style="text-align: center" {{!}} {{{event}}} {{!}}- }} | width=15% valign=top align=right rowspan=5 | {{{date}}}<br />{{#if:{{{time|}}}|{{{time}}}<br />| }}{{#if:{{{round|}}}|{{{round}}} }} ! width=24% valign=top align=right | {{{team1}}} ! width=13% valign=top align=center | {{#if:{{{score|}}}|{{{score}}}|v }}{{#if:{{{aet|}}}|<br />([[Extra time|a.e.t.]]) }} ! width=24% valign=top align=left | {{{team2}}} | style="font-size: 85%" rowspan=2 valign=top | {{{stadium}}}<br />{{#if:{{{attendance|}}}|ပွဲကြေ့ပွဲပရိသတ်: {{{attendance}}} ဦး<br />}}{{#if:{{{referee|}}}|ပလီကိုင်: {{{referee}}} }} |- style="font-size: 85%" | valign=top align=right | {{#if:{{{goals1|}}}|{{{goals1}}} }} | valign=top align=center | {{#if:{{{report|}}}|{{{report}}} }} | valign=top | {{#if:{{{goals2|}}}|{{{goals2}}} }} {{#if:{{{penaltyscore|}}}| {{!}}- {{!}} {{!}} &nbsp; ! align=center {{!}} [[Penalty shootout (association football)|Penalties]] {{!}} {{!}} &nbsp; {{!}}- style=font-size:85% {{!}} align=right valign=top {{!}} {{{penalties1}}} ! align=center valign=top {{!}} {{{penaltyscore}}} {{!}} valign=top {{!}} {{{penalties2}}} {{!}} &nbsp; {{!}} }} |}<noinclude><!-- PLEASE ADD THIS TEMPLATE'S CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --></noinclude> 1tetnq8sswc746il89zfh300rmfze2t တမ်းပလိတ်:Fb-rt 10 5151 19661 2026-07-16T10:58:43Z YaThaWinTha 42 Created page with "{{နိုင်ငံ စာရင်းအင်း {{{1}}} | country flaglink right | variant = {{{variant|{{{2|}}}}}} | size = {{{size|}}} | name = {{{name|}}} | altlink = အမျိုးသား ဘောလုံးအသင်း | altvar = football }}<noinclude>{{documentation}} </noinclude>" 19661 wikitext text/x-wiki {{နိုင်ငံ စာရင်းအင်း {{{1}}} | country flaglink right | variant = {{{variant|{{{2|}}}}}} | size = {{{size|}}} | name = {{{name|}}} | altlink = အမျိုးသား ဘောလုံးအသင်း | altvar = football }}<noinclude>{{documentation}} </noinclude> g80s5qbeb5s1yk6pbav9hshvvlu5yop Module:Sports table 828 5152 19662 2026-07-16T10:59:46Z YaThaWinTha 42 Created page with "-- Module to build tables for standings in Sports -- See documentation for details require('strict') local p = {} -- Helper functions local function isnotblank(s) return s and s:match( '^%s*(.-)%s*$' ) ~= '' end local function firstnonblank(s1,s2) if ( s1 and s1:match( '^%s*(.-)%s*$' ) ~= '' ) then return s1 elseif ( s2 and s2:match( '^%s*(.-)%s*$' ) ~= '' ) then return s2 end return nil end -- Main function function p.main(frame) -- Declare locals local..." 19662 Scribunto text/plain -- Module to build tables for standings in Sports -- See documentation for details require('strict') local p = {} -- Helper functions local function isnotblank(s) return s and s:match( '^%s*(.-)%s*$' ) ~= '' end local function firstnonblank(s1,s2) if ( s1 and s1:match( '^%s*(.-)%s*$' ) ~= '' ) then return s1 elseif ( s2 and s2:match( '^%s*(.-)%s*$' ) ~= '' ) then return s2 end return nil end -- Main function function p.main(frame) -- Declare locals local Args = frame.args local Pargs = frame:getParent().args local ii_start, ii_end, N_rows_res = 0 local text_field_result local notes_exist = false local t = {} local t_footer = {} local t_return = {} local team_list = {} local jj, jjj -- Exit early if we are using section transclusion for a different section if( isnotblank(Pargs['transcludesection']) and isnotblank(Args['section']) ) then if( Pargs['transcludesection'] ~= Args['section'] ) then return '' end end -- Get the custom start point for the table (most will start by default at 1 local top_pos = tonumber(Args['highest_pos']) or 1 local N_teams = top_pos - 1 -- Default to 0 at start, but higher number needed to skip certain entries -- Load modules local yesno = require('Module:Yesno') -- Load style and (sub) modules local style_def = Args['style'] or 'WDL' -- Historically 'football' exists as style, this is now forwarded to WDL if style_def == 'football' then style_def = 'WDL' end local p_style = require('Module:Sports table/'..style_def) local p_sub = require('Module:Sports table/sub') -- Random value used for uniqueness math.randomseed( os.clock() * 10^8 ) local rand_val = math.random() -- Declare colour scheme local result_col = {} result_col = {green1='#BBF3BB', green2='#CCF9CC', green3='#DDFCDD', green4='#EEFFEE', blue1='#BBF3FF', blue2='#CCF9FF', blue3='#DDFCFF', blue4='#EEFFFF', yellow1='#FFFFBB', yellow2='#FFFFCC', yellow3='#FFFFDD', yellow4='#FFFFEE', red1='#FFBBBB', red2='#FFCCCC', red3='#FFDDDD', red4='#FFEEEE', black1='#BBBBBB', black2='#CCCCCC', black3='#DDDDDD', black4='#EEEEEE'} -- Declare results column header local results_header = {} results_header = {Q='Qualification', QR='Qualification or relegation', P='Promotion', PQR='Promotion, qualification or relegation', PR='Promotion or relegation', PQ='Promotion or qualification', R='Relegation'} local results_defined = false -- Check whether this would be needed -- Now define line for column header (either option or custom) local local_res_header = results_header[Args['res_col_header']] or Args['res_col_header'] or '' -- Check whether it includes a note local res_head_note = Args['note_header_res'] local res_head_note_text = '' if res_head_note then notes_exist = true res_head_note_text = frame:expandTemplate{ title = 'efn', args = { group='Table_notes', res_head_note} } end local results_header_txt = '! scope="col" |'..local_res_header..res_head_note_text..'\n' -- Get status option local t_status = p_style.status(Args) -- Read in number of consecutive teams (ignore entries after skipping a spot) while Args['team'..N_teams+1] ~= nil do N_teams = N_teams+1 -- Sneakily add it twice to the team_list parameter, once for the actual -- ranking, the second for position lookup in sub-tables -- This is possible because Lua allows both numbers and strings as indices. team_list[N_teams] = Args['team'..N_teams] -- i^th entry is team X team_list[Args['team'..N_teams]] = N_teams -- team X entry is position i end -- Show all stats in table or just matches played and points local pld_pts_val = firstnonblank(Pargs['only_pld_pts'], Args['only_pld_pts']) or 'no' local full_table local hide_class_rules = false -- True if par doesn't exist, false otherwise -- First convert to lower case if it is a string pld_pts_val = string.lower(pld_pts_val) if yesno(pld_pts_val) then full_table = false elseif pld_pts_val=='no_hide_class_rules' then full_table = true hide_class_rules = true else full_table = true end -- Show groups or note local show_groups_val = firstnonblank(Pargs['show_groups'], Args['show_groups']) or 'no' local group_col = false if yesno(show_groups_val) then group_col = true end -- Show match_table or not local show_matches_val = firstnonblank(Pargs['show_matches'], Args['show_matches']) or 'no' local match_table = false if yesno(show_matches_val) then match_table = true end local p_matches = match_table and require('Module:Sports results') -- Custom position column label or note local pos_label = Args['postitle'] or '' if pos_label == '' then -- If empty (or undeclared) then default pos_label = '<abbr title="Position">Pos</abbr>' end -- Get VTE button text (but only for non-empty text) local template_name = Args['template_name'] or '' local VTE_text = '' if template_name~='' then VTE_text = frame:expandTemplate{ title = 'navbar', args = { mini=1, style='float:right', template_name} } end -- Write column headers t_return = p_style.header(t,Args,p_sub,pos_label,group_col,VTE_text,full_table,results_header_txt) if match_table then -- Add empty column header t_return.count = t_return.count+1 table.insert(t_return.tab_text,'! scope="row" class="unsortable" style="background-color:white;border-top:white;border-bottom:white;line-width:3pt;"| \n') -- Add rest of header t_return = p_matches.header(t_return,Args,p_sub,N_teams,team_list) end t = t_return.tab_text local N_cols = t_return.count -- Determine what entries go into table -- Find out which team to show (if any) local ii_show = team_list[firstnonblank(Pargs['showteam'], Args['showteam'])] -- nil if non-existant -- Start and end positions to show local n_to_show = tonumber(Args['show_limit']) or N_teams -- Check for "legal value", if not legal (or non declared), then show all local check_n = ((n_to_show>=(N_teams-top_pos+1)) or (n_to_show<=1) or (n_to_show~=math.floor(n_to_show))) -- Also check whether there is a valid ii_show if check_n or (not ii_show) then ii_start = top_pos ii_end = N_teams else -- It's a proper integer between top_pos+1 and N_teams-1 -- If it is in the middle show the same number above and below -- If it is in the top or bottom, show the exact number -- How many to show on the side local n_show_side = math.floor(n_to_show/2) if (ii_show-top_pos+1)<=n_show_side then -- Top team ii_start = top_pos ii_end = top_pos+n_to_show-1 elseif ii_show>=(N_teams+1-n_show_side) then -- Bottom team ii_start = N_teams+1-n_to_show ii_end = N_teams else -- Normal case ii_start = ii_show-n_show_side ii_end = ii_show+n_show_side end end -- For results column local new_res_ii = ii_start -- Pre-check for existence of column for ii = ii_start, ii_end do if Args['result'..ii] then results_defined = true end end -- Remove results header if it is unused if full_table and not results_defined then -- First get it as one string, then use string replace to replace that header by empty string local t_str = tostring(table.concat(t)) t_str = mw.ustring.gsub( t_str, results_header_txt, '' ) N_cols = N_cols-1 -- There is actually one column less t = {} table.insert(t, t_str) end -- Write rows local team_name, team_code_ii, team_code_jj, pos_num, group_txt, note_local local note_string, note_local, note_local_num, note_id local note_id_list = {} local hth_id_list = {} for ii = ii_start, ii_end do -- First get code team_code_ii = team_list[ii] -- Now read values pos_num = Args['pos_'..team_code_ii] or ii group_txt = Args['group_'..team_code_ii] or ' ' team_name = Args['name_'..team_code_ii] or team_code_ii note_local = Args['note_'..team_code_ii] or nil -- Does it need a promotion/qualification/relegation tag local result_local = Args['result'..ii] or nil local bg_col = nil -- Get local background colour if result_local then bg_col = result_col[Args['col_'..result_local]] or Args['col_'..result_local] or 'white' bg_col = 'background-color:'..bg_col..';' -- Full style tag end if not bg_col then bg_col = 'background-color:transparent;' end -- Becomes default if undefined -- Bold this line or not local ii_fw = ii == ii_show and 'font-weight: bold;' or 'font-weight: normal;' -- Check whether there is a note or not, if so get text ready for it if note_local and full_table then -- Set global check for notes to true notes_exist = true -- There are now 3 options for notes -- 1) It is a full note -- 2) It is a referal to another note (i.e. it's just a team code; e.g. note_AAA=Text, note_BBB=AAA) in which the note for BBB should link to the same footnote as AAA, with -- 2a) The other linked note exist in the part of the table shown -- 2b) The part of the note does not exist in the part of the table shown if not Args['note_'..note_local] then -- Option 1 -- Now define the identifier for this note_id = '"table_note_'..team_code_ii..rand_val..'"' -- Add random end for unique ID if more tables are present on article (which might otherwise share an ID) note_id_list[team_code_ii] = note_id -- Call refn template note_string = frame:expandTemplate{ title = 'efn', args = { group='Table_notes', name=note_id, note_local} } else -- Option 2 -- It is option 2a in either one if either the main note is inside the sub-table -- or another ref to that note is inside the sub-table -- Basically when it either has been defined, or the main link will be in the table note_local_num = team_list[note_local] if note_id_list[note_local] or ((note_local_num >= ii_start) and (note_local_num <= ii_end)) then -- Option 2a note_id = '"table_note_'..note_local..rand_val..'"' note_string = frame:extensionTag{ name = 'ref', args = { group = 'မှတ်စု', name = note_id} } else -- Option 2b -- Now define the identifier for this note_id = '"table_note_'..note_local..rand_val..'"' -- Add random end for unique ID note_id_list[note_local] = note_id -- Call refn template note_string = frame:expandTemplate{ title = 'efn', args = { group='Table_notes', name=note_id, Args['note_'..note_local]} } end end else note_string = ''; end -- Insert status when needed local status_string = '' local status_local = Args['status_'..team_code_ii] local status_let_first = true local curr_letter -- Only if it is defined if status_local then -- Take it letter by letter for jjj = 1,mw.ustring.len(status_local) do curr_letter = mw.ustring.upper(mw.ustring.sub(status_local,jjj,jjj)) -- See whether it exist if t_status.code[curr_letter] then -- Depending on whether it is the first letter of not if status_let_first then status_string = curr_letter t_status.called[curr_letter] = true status_let_first = false else status_string = status_string..', '..curr_letter t_status.called[curr_letter] = true end end end -- Only add brackets/dash and bolding if it exist if not status_let_first then if t_status.position == 'before' then status_string = '<span style="font-weight:bold">'..string.lower(status_string)..' &ndash;</span> ' else status_string = ' <span style="font-weight:bold">('..status_string..')</span>' end end end -- Now build the rows table.insert(t,'|- \n') -- New row table.insert(t,'! scope="row" style="text-align: center;'..ii_fw..bg_col..'"| '..pos_num..'\n') -- Position number if full_table and group_col then table.insert(t,'| style="'..ii_fw..bg_col..'" |'..group_txt..'\n') -- Group number/name end -- Build the team string order based on status position local team_string if t_status.position == 'before' then team_string = status_string..team_name..note_string else team_string = team_name..note_string..status_string end table.insert(t,'| style="text-align: left; white-space:nowrap;'..ii_fw..bg_col..'"| '..team_string..'\n')-- Team (with possible note) -- Call to subfunction t_return = p_style.row(frame,t,Args,p_sub,notes_exist,hth_id_list,full_table,rand_val,team_list,team_code_ii,ii_start,ii_end,ii_fw,bg_col,N_teams,ii,ii_show) t = t_return.t notes_exist = t_return.notes_exist hth_id_list = t_return.hth_id_list -- Now check what needs to be added inside the results column if full_table then local res_jjj if ii == new_res_ii then -- First check how many rows you need for this N_rows_res = 1 jjj = ii+1 result_local = Args['result'..ii] or '' local cont_loop = true while (jjj<=ii_end) and cont_loop do if Args['split'..tostring(jjj-1)] then cont_loop = false new_res_ii = jjj else res_jjj = Args['result'..jjj] or '' if result_local == res_jjj then N_rows_res = N_rows_res+1 else cont_loop = false new_res_ii = jjj end end jjj = jjj+1 end -- Now create this field (reuse ii_fw and bg_col) -- Bold (if in range) or not if ii_show and (ii_show>=ii) and (ii_show<=(ii+N_rows_res-1)) then ii_fw = 'font-weight: bold;' else ii_fw = 'font-weight: normal;' end -- Get background colour bg_col = nil if Args['result'..ii] then bg_col = result_col[Args['col_'..result_local]] or Args['col_'..result_local] or 'white' bg_col = 'background-color:'..bg_col..';' -- Full style tag end if not bg_col then bg_col = 'background-color:transparent;' end -- Becomes default if undefined -- Check for notes local note_res_string, note_ref, note_text if Args['note_res_'..result_local] then notes_exist = true local note_res_local = Args['note_res_'..result_local] if not Args['note_res_'..note_res_local] then -- It does not point to another result note note_ref = 'res_'..result_local note_id = '"table_note_res_'..result_local..rand_val..'"' -- Identifier note_text = note_res_local else -- It does point to another result note note_ref = 'res_'..note_res_local note_id = '"table_note_res_'..note_res_local..rand_val..'"' -- Identifier note_text = Args['note_res_'..note_res_local] end -- Check whether it is already printed if not note_id_list[note_ref] then -- Print it note_id_list[note_ref] = note_id note_res_string = frame:expandTemplate{ title = 'efn', args = { group='Table_notes', name=note_id, note_text} } else -- Refer to it note_res_string = frame:extensionTag{ name = 'ref', args = { group = 'မှတ်စု', name = note_id} } end else note_res_string = '' end -- Get text local text_result = Args['text_'..result_local] or '' text_field_result = '| style="'..ii_fw..bg_col..'" rowspan="'..tostring(N_rows_res)..'" |'..text_result..note_res_string..'\n' -- See whether it is needed (only when blank for all entries) if results_defined then table.insert(t,text_field_result) end end end -- Insert match row if needed if match_table then -- Add empty cell table.insert(t,'| style="background-color:white;border-top:white;border-bottom:white;"| \n') -- Now include note to match results if needed for jj=top_pos,N_teams do team_code_jj = team_list[jj] if ii == jj then -- Nothing else local match_note = Args['match_'..team_code_ii..'_'..team_code_jj..'_note'] if match_note then notes_exist = true -- Only when it exist -- First check for existence of reference for note if not (Args['note_'..match_note] or Args['match_'..match_note..'_note']) then -- It's the entry note_id = '"table_note_'..team_code_ii..'_'..team_code_jj..rand_val..'"' -- Add random end for unique ID if more tables are present on article (which might otherwise share an ID) note_id_list[team_code_ii..'_'..team_code_jj] = note_id note_string = frame:expandTemplate{ title = 'efn', args = { group='Table_notes', name=note_id, match_note} } else -- Check for existence elsewhere note_local_num = team_list[match_note] or ii_end + 1 if note_id_list[match_note] or ((note_local_num >= ii_start) and (note_local_num <= ii_end)) then -- It exists note_id = '"table_note_'..match_note..rand_val..'"' -- Identifier note_string = frame:extensionTag{ name = 'ref', args = { group = 'မှတ်စု', name = note_id} } else -- Now define the identifier for this note_id = '"table_note_'..match_note..rand_val..'"' -- Add random end for unique ID note_id_list[match_note] = note_id -- Call refn template note_string = frame:expandTemplate{ title = 'efn', args = { group='Table_notes', name=note_id, Args['note_'..match_note]} } end end -- Now append this to the match result string Args['match_'..team_code_ii..'_'..team_code_jj] = Args['match_'..team_code_ii..'_'..team_code_jj]..note_string end end end -- Add rest of match row t = p_matches.row(t,Args,N_teams,team_list,ii,ii_show) end -- Now, if needed, insert a split (solid line to indicate split in standings, but only when it is not at the last shown position) if Args['split'..ii] and (ii<ii_end) then -- Base size on N_cols (it needs 2*N_cols |) table.insert(t,'|- style="background-color:'..result_col['black1']..'; line-height:3pt;"\n') table.insert(t,string.rep('|',2*N_cols)..'\n') end end -- Close table table.insert(t, '|}\n') -- Get info for footer local update = Args['update'] or 'unknown' local start_date = Args['start_date'] or 'unknown' local source = Args['source'] or frame:expandTemplate{ title = 'citation needed', args = { reason='No source parameter defined', date=os.date('%B %Y') } } local class_rules = Args['class_rules'] or nil -- Create footer text -- Date updating local matches_text = Args['matches_text'] or 'match(es)' if string.lower(update)=='complete' then -- Do nothing elseif update=='' then -- Empty parameter table.insert(t_footer,'Updated to '..matches_text..' played on unknown. ') elseif string.lower(update)=='future' then -- Future start date table.insert(t_footer,'First '..matches_text..' will be played on '..start_date..'. ') else table.insert(t_footer,'Updated to '..matches_text..' played on '..update..'. ') end -- Stack footer or not local stack_footer_val = firstnonblank(Pargs['stack_footer'], Args['stack_footer']) or 'no' local footer_break = false if yesno(stack_footer_val) then footer_break = true end -- Variable for linebreak local stack_string = '<br>' if footer_break and (not (string.lower(update)=='complete')) then table.insert(t_footer,stack_string) end table.insert(t_footer,'ရင်းမြစ်။ '..source) if class_rules and full_table and (not hide_class_rules) then table.insert(t_footer,'<br>Rules for classification: '..class_rules) end -- Now for the named status local status_exist = false local status_string = '' local curr_letter for jjj = 1,mw.ustring.len(t_status.letters) do curr_letter = mw.ustring.upper(mw.ustring.sub(t_status.letters,jjj,jjj)) if t_status.called[curr_letter] then if (footer_break and status_exist) then status_string = status_string..stack_string end if t_status.position == 'before' then status_string = status_string..'<span style="font-weight:bold">'..string.lower(curr_letter)..' &ndash;</span> '..t_status.code[curr_letter]..'; ' else status_string = status_string..'<span style="font-weight:bold">('..curr_letter..')</span> '..t_status.code[curr_letter]..'; ' end status_exist = true end end -- Now end it with a point instead (if it contains entries the '; ' needs to be removed) if status_exist then status_string = '<br>'..mw.ustring.sub(status_string,1,mw.ustring.len(status_string)-2)..'.' table.insert(t_footer,status_string) end -- Add notes (if applicable) if notes_exist then table.insert(t_footer,'<br>မှတ်စုများ။') -- As reflist size text t_footer = '<div class="reflist">'..table.concat(t_footer)..'</div>' t_footer = t_footer..frame:expandTemplate{ title = 'notelist', args = { group='Table_notes'} } else -- As reflist size text t_footer = '<div class="reflist">'..table.concat(t_footer)..'</div>' end -- Add footer to main text table table.insert(t,t_footer) return table.concat(t) end return p 62ydhd184yjed8132fnlc5yiq1jheha တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း CUW 10 5153 19663 2026-07-16T11:01:21Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကူရာဆောနိုင်ငံ | shortname alias = ကူရာဆော | flag alias = Flag of Curaçao.svg | flag alias-1982=Flag of Curaçao (1982-1984).svg | size = {{{size|}}} | name = {{{name|}}} | variant = {{{variant|}}} | altlink = {{{altlink|}}} <noinclude> | var1 = 1982 | redir1 = CUW | redir2 = CUR | redir3 = Curacao | related1 = Territory of Curaçao </noinclude> }}" 19663 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကူရာဆောနိုင်ငံ | shortname alias = ကူရာဆော | flag alias = Flag of Curaçao.svg | flag alias-1982=Flag of Curaçao (1982-1984).svg | size = {{{size|}}} | name = {{{name|}}} | variant = {{{variant|}}} | altlink = {{{altlink|}}} <noinclude> | var1 = 1982 | redir1 = CUW | redir2 = CUR | redir3 = Curacao | related1 = Territory of Curaçao </noinclude> }} sy4ue8bde91pbmxubyptrvau2k20jep တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း CRO 10 5154 19664 2026-07-16T11:01:46Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ခရိုအေးရှားနိုင်ငံ | shortname alias = ခရိုအေးရှား | flag alias = Flag of Croatia.svg | flag alias-civil = Civil Ensign of Croatia.svg | flag alias-1990 = Flag of Croatia (1990).svg | flag alias-naval = Naval ensign of Croatia.svg | link alias-naval = ခရိုအေးရှား ရီတပ် | size = {{{size|}}} | name = {{{name|}}} | altlink =..." 19664 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ခရိုအေးရှားနိုင်ငံ | shortname alias = ခရိုအေးရှား | flag alias = Flag of Croatia.svg | flag alias-civil = Civil Ensign of Croatia.svg | flag alias-1990 = Flag of Croatia (1990).svg | flag alias-naval = Naval ensign of Croatia.svg | link alias-naval = ခရိုအေးရှား ရီတပ် | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = civil | var2 = 1990 | redir1 = HRV | redir2 = CRO | redir3 = Croatia | related1 = Independent State of Croatia | related2 = SR Croatia | related3 = Kingdom of Croatia (Habsburg) </noinclude> }} m8a0ekm1bzlpf3x7gn0yy4pvp36dbdr တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း CPV 10 5155 19665 2026-07-16T11:02:09Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကိတ်ဗာဒေနိုင်ငံ | shortname alias = ကိတ်ဗာဒီ | flag alias = Flag of Cape Verde.svg | flag alias-1975 = Flag of Cape Verde (1975–1992).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1975 | redir1 = CPV | redir2 = Cabo Verde | redir3 = Cape Verde </noinclude> }}" 19665 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကိတ်ဗာဒေနိုင်ငံ | shortname alias = ကိတ်ဗာဒီ | flag alias = Flag of Cape Verde.svg | flag alias-1975 = Flag of Cape Verde (1975–1992).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1975 | redir1 = CPV | redir2 = Cabo Verde | redir3 = Cape Verde </noinclude> }} ksrkduj3qgxevselmj8huw7lyrde1f7 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း COL 10 5156 19666 2026-07-16T11:02:31Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကိုလံဘီယာနိုင်ငံ | shortname alias = ကိုလံဘီယာ | flag alias = Flag of Colombia.svg | flag alias-civil = Civil Ensign of Colombia.svg | flag alias-naval = Naval Ensign of Colombia.svg | link alias-naval = Colombian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = civil | redir1 = COL | redir..." 19666 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကိုလံဘီယာနိုင်ငံ | shortname alias = ကိုလံဘီယာ | flag alias = Flag of Colombia.svg | flag alias-civil = Civil Ensign of Colombia.svg | flag alias-naval = Naval Ensign of Colombia.svg | link alias-naval = Colombian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = civil | redir1 = COL | redir2 = Colombia </noinclude> }} itc6rz2rhob3thw3wkffw9o77pc43ab တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း COD 10 5157 19667 2026-07-16T11:02:56Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကွန်ဂိုဒီမိုကရက်တသမ္မတနိုင်ငံ | shortname alias = ကွန်ဂိုဒီမိုကရက်တသမ္မတ | flag alias = Flag of the Democratic Republic of the Congo.svg | flag alias-1960 = Flag of Congo-Léopoldville (1960-1963).svg | flag alias-1963 = Flag of Congo-Léopoldville (1963-1966).svg | flag alias-1966 = Flag of Congo-Kinshasa (196..." 19667 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကွန်ဂိုဒီမိုကရက်တသမ္မတနိုင်ငံ | shortname alias = ကွန်ဂိုဒီမိုကရက်တသမ္မတ | flag alias = Flag of the Democratic Republic of the Congo.svg | flag alias-1960 = Flag of Congo-Léopoldville (1960-1963).svg | flag alias-1963 = Flag of Congo-Léopoldville (1963-1966).svg | flag alias-1966 = Flag of Congo-Kinshasa (1966-1971).svg | flag alias-1997 = Flag of the Democratic Republic of the Congo.svg (1997-2003).svg | flag alias-2003 = Flag of the Democratic Republic of the Congo.svg (2003-2006).svg | link alias-football = DR Congo {{{mw|}}} national {{{age|}}} football team | name alias-football = DR Congo | link alias-basketball = DR Congo {{{mw|}}} national {{{age|}}} basketball team | name alias-basketball = DR Congo | link alias-volleyball = DR Congo {{{mw|}}} national volleyball team | name alias-volleyball = DR Congo | link alias-handball = DR Congo {{{mw|}}} national handball team | name alias-handball = DR Congo | link alias-rugby union = DR Congo {{{mw|}}} national rugby union team | name alias-rugby union = DR Congo | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1960 | var2 = 1963 | var3 = 1966 | var4 = 1997 | var5 = 2003 | redir1 = COD | redir2 = DR Congo | redir3 = Democratic Republic of the Congo | redir4 = Congo-Kinshasa | related1 = Zaire | related2 = Belgian Congo | related3 = Congo Free State </noinclude> }} o3fqcmh7xc6rbx30brdatnx6zisyw6r တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း CIV 10 5158 19668 2026-07-16T11:03:19Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အိုင်ဗရီကို့စ်နိုင်ငံ | shortname alias = အိုင်ဗရီကို့စ် | flag alias = Flag of Cote d'Ivoire.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = CIV | redir2 = Ivory Coast </noinclude> }}" 19668 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အိုင်ဗရီကို့စ်နိုင်ငံ | shortname alias = အိုင်ဗရီကို့စ် | flag alias = Flag of Cote d'Ivoire.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = CIV | redir2 = Ivory Coast </noinclude> }} a6appadvi3hicmzhko3fgxpwzmgl247 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း CAN 10 5159 19669 2026-07-16T11:03:43Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကနိန်ဒါနိုင်ငံ | shortname alias = ကနိန်ဒါ | flag alias = Flag of Canada.svg | flag alias-1868 = Canadian Red Ensign 1868-1921.svg | flag alias-1921 = Canadian Red Ensign 1921-1957.svg | flag alias-1957 = Canadian Red Ensign (1957-1965).svg | flag alias-1964 = Flag of Canada (1964).svg | flag alias-naval = Naval Jack of Canada.svg | flag alias-naval-1868 = Canadian Blue..." 19669 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကနိန်ဒါနိုင်ငံ | shortname alias = ကနိန်ဒါ | flag alias = Flag of Canada.svg | flag alias-1868 = Canadian Red Ensign 1868-1921.svg | flag alias-1921 = Canadian Red Ensign 1921-1957.svg | flag alias-1957 = Canadian Red Ensign (1957-1965).svg | flag alias-1964 = Flag of Canada (1964).svg | flag alias-naval = Naval Jack of Canada.svg | flag alias-naval-1868 = Canadian Blue Ensign 1868-1921.svg | flag alias-naval-1911 = Naval ensign of the United Kingdom.svg | flag alias-naval-1921 = Canadian Blue Ensign 1921-1957.svg | flag alias-naval-1957 = Canadian Blue Ensign 1957-1965.svg | flag alias-1867-official = Flag of the United Kingdom.svg | link alias-naval = တော်ဝင် ကနိန်ဒါရီတပ် | flag alias-coast guard = Coastguard Flag of Canada.svg | flag alias-air force = Air Force Ensign of Canada.svg | flag alias-air force-1924 = Ensign of the Royal Canadian Air Force.svg | link alias-air force = တော်ဝင် ကနိန်ဒါလီတပ် | flag alias-army = Flag of the Canadian Army (2016).svg | link alias-army = Canadian Army | link alias-football = Canada {{{mw|men's}}} national {{{age|}}} soccer team | link alias-basketball = Canada {{{mw|men's}}} national {{{age|}}} basketball team | link alias-field hockey = Canada {{{mw|men's}}} national field hockey team | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1868 | var2 = 1921 | var3 = 1957 | var4 = 1964 | var5 = naval-1868 | var6 = naval-1911 | var7 = naval-1921 | var8 = naval-1957 | var9 = air force-1924 | var10 = 1867-official | redir1 = CAN | redir2 = Dominion of Canada | redir3 = Canada </noinclude> }} svm6ovyvigv2dsfw9dbrvbaetm57bgv တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း BRA 10 5160 19670 2026-07-16T11:04:08Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘရာဇီးနိုင်ငံ |shortname alias = ဘရာဇီး | flag alias = Flag of Brazil.svg | flag alias-1889 = Flag of Brazil (1889-1960).svg | flag alias-1960 = Flag of Brazil (1960-1968).svg | flag alias-1968 = Flag of Brazil (1968-1992).svg | link alias-naval = Brazilian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var..." 19670 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘရာဇီးနိုင်ငံ |shortname alias = ဘရာဇီး | flag alias = Flag of Brazil.svg | flag alias-1889 = Flag of Brazil (1889-1960).svg | flag alias-1960 = Flag of Brazil (1960-1968).svg | flag alias-1968 = Flag of Brazil (1968-1992).svg | link alias-naval = Brazilian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1889 | var2 = 1960 | var3 = 1968 | redir1 = BRA | redir2 = Brazil | related1 = Empire of Brazil </noinclude> }} 8cze5ws01b3f8fep8m92a8aelltis84 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း BIH 10 5161 19671 2026-07-16T11:04:29Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{..." 19671 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနားနိုင်ငံ | shortname alias = ဘော့စနီးယားနန့် ဟာဇီဂိုဗီးနား | flag alias = Flag of Bosnia and Herzegovina.svg | flag alias-1992 = Flag of Bosnia and Herzegovina (1992-1998).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1992 | redir1 = BIH | redir2 = Bosnia-Herzegovina | redir3 = Bosnia and Herzegovina | related1 = SR Bosnia and Herzegovina | related2 = Republika Srpska | related3 = Federation of Bosnia and Herzegovina </noinclude> }} sbl6gl7udj1qv01o5bxe2cddcxobejb တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း BEL 10 5162 19672 2026-07-16T11:04:58Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘလ်ဂျီယမ်နိုင်ငံ | shortname alias = ဘလ်ဂျီယမ် | flag alias = Flag of Belgium (civil).svg | flag alias-government = Government Ensign of Belgium.svg | flag alias-state = Flag of Belgium.svg | flag alias-1830 = Flag of Belgium (1830).svg | flag alias-naval = Naval Ensign of Belgium.svg | link alias-naval = Belgian Navy | flag alias-air force = Air Force Ensign of..." 19672 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘလ်ဂျီယမ်နိုင်ငံ | shortname alias = ဘလ်ဂျီယမ် | flag alias = Flag of Belgium (civil).svg | flag alias-government = Government Ensign of Belgium.svg | flag alias-state = Flag of Belgium.svg | flag alias-1830 = Flag of Belgium (1830).svg | flag alias-naval = Naval Ensign of Belgium.svg | link alias-naval = Belgian Navy | flag alias-air force = Air Force Ensign of Belgium.svg | link alias-air force = Belgian Air Force | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = state | var2 = government | var3 = 1830 | redir1 = BEL | redir2 = Belgium </noinclude> }} kfzx9178z1odn5j6nay5073tifcpf34 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း AUT 10 5163 19673 2026-07-16T11:05:19Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဩစတြီးယားနိုင်ငံ | shortname alias = ဩစတြီးယား | flag alias = Flag of Austria.svg | flag alias-empire = Flag of the Habsburg Monarchy.svg | flag alias-state = Flag of Austria (state).svg | flag alias-war = Austria-Hungary-flag-1869-1914-naval-1786-1869-merchant.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <..." 19673 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဩစတြီးယားနိုင်ငံ | shortname alias = ဩစတြီးယား | flag alias = Flag of Austria.svg | flag alias-empire = Flag of the Habsburg Monarchy.svg | flag alias-state = Flag of Austria (state).svg | flag alias-war = Austria-Hungary-flag-1869-1914-naval-1786-1869-merchant.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = empire | var2 = state | var3 = war | redir1 = AUT | redir2 = Archduchy of Austria | redir3 = Austria | related1 = Austria-Hungary </noinclude> }} j3cbse2x02x56aenw2ykty6acpagath တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း AUS 10 5164 19674 2026-07-16T11:05:38Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဩစတြေးလျနိုင်ငံ | shortname alias = ဩစတြေးလျ | flag alias = Flag of Australia.svg | flag alias-1918 = | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = | redir1 = | related1 = </noinclude> }}<noinclude> </noinclude>" 19674 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဩစတြေးလျနိုင်ငံ | shortname alias = ဩစတြေးလျ | flag alias = Flag of Australia.svg | flag alias-1918 = | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = | redir1 = | related1 = </noinclude> }}<noinclude> </noinclude> szosy44wdxi31qgto38oyzs9b163mfc တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း ARG 10 5165 19675 2026-07-16T11:05:59Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အာဂျင်တီးနားနိုင်ငံ | shortname alias = အာဂျင်တီးနား | flag alias = Flag of Argentina.svg | flag alias-alt = Flag of Argentina (civil).svg | link alias-naval = Argentine Navy | link alias-field hockey = {{#ifeq:{{{mw}}}|women's|Las Leonas|Argentina national field hockey team}} | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | al..." 19675 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အာဂျင်တီးနားနိုင်ငံ | shortname alias = အာဂျင်တီးနား | flag alias = Flag of Argentina.svg | flag alias-alt = Flag of Argentina (civil).svg | link alias-naval = Argentine Navy | link alias-field hockey = {{#ifeq:{{{mw}}}|women's|Las Leonas|Argentina national field hockey team}} | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = alt | redir1 = ARG | related1 = Argentine Confederation </noinclude> }} 0kh7ac2p5g2af2d27ahbv0ndav6m7l3 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း ALG 10 5166 19676 2026-07-16T11:06:30Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘယ်လ်ဂျီးရီးယားနိုင်ငံ | shortname alias =ဘယ်လ်ဂျီးရီးယား | flag alias = Flag of Algeria.svg | flag alias-1958 = Flag of Algeria (1958-1962).svg | flag alias-naval = Naval Ensign of Algeria.svg | link alias-naval = Algerian National Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinc..." 19676 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဘယ်လ်ဂျီးရီးယားနိုင်ငံ | shortname alias =ဘယ်လ်ဂျီးရီးယား | flag alias = Flag of Algeria.svg | flag alias-1958 = Flag of Algeria (1958-1962).svg | flag alias-naval = Naval Ensign of Algeria.svg | link alias-naval = Algerian National Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1958 | redir1 = DZA | redir2 = ALG </noinclude> }} 3426zdgwulbf2w148uwk7hkkpk9ctq1 19677 19676 2026-07-16T11:06:52Z YaThaWinTha 42 19677 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အယ်လ်ဂျီးရီးယားနိုင်ငံ | shortname alias =အယ်လ်ဂျီးရီးယား | flag alias = Flag of Algeria.svg | flag alias-1958 = Flag of Algeria (1958-1962).svg | flag alias-naval = Naval Ensign of Algeria.svg | link alias-naval = Algerian National Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1958 | redir1 = DZA | redir2 = ALG </noinclude> }} edm7nthmk0iqb4scm2zhnppuc2fkptd Module:Sports table/WDL 828 5167 19678 2026-07-16T11:09:26Z YaThaWinTha 42 Created page with "-- Style for football tables local pp = {} function pp.header(t,Args,p_sub,pos_label,group_col,VTE_text,full_table,results_header_txt) -- Load relevant modules local yesno = require('Module:Yesno') -- Create table header -- Pre stuff local team_width = Args['teamwidth'] or '190' local sort_text = '' local sort_table_val = Args['sortable_table'] or 'no' if yesno(sort_table_val) then sort_text = 'sortable' end table.insert(t,'{|class="wikitable '..sort_text..'..." 19678 Scribunto text/plain -- Style for football tables local pp = {} function pp.header(t,Args,p_sub,pos_label,group_col,VTE_text,full_table,results_header_txt) -- Load relevant modules local yesno = require('Module:Yesno') -- Create table header -- Pre stuff local team_width = Args['teamwidth'] or '190' local sort_text = '' local sort_table_val = Args['sortable_table'] or 'no' if yesno(sort_table_val) then sort_text = 'sortable' end table.insert(t,'{|class="wikitable '..sort_text..'" style="text-align:center;"\n') -- Open table -- Custom header options local draw_head_text = Args['draw_header'] or '<abbr title="သရေ">D</abbr>' local group_head_text = Args['group_header'] or '<abbr title="အုပ်စု">အုပ်စု</abbr>' local team_head_text = Args['team_header'] or 'အသင်း' local loss_first = Args['loss_before_draw'] or false -- What to rank the teams by local ranking_style = Args['ranking_style'] or 'ရမှတ်' local show_points, show_perc = false ranking_style = string.lower(ranking_style) if ranking_style=='w' or ranking_style=='win' or ranking_style=='wins' then -- Based on wins elseif ranking_style=='perc' or ranking_style=='percentage' or ranking_style=='%' then -- Based on percentage show_perc = true else -- Based on points show_points = true end -- Use points instead of goals for/against local for_against_style = Args['for_against_style'] or 'goals' local fa_letter, fa_word_sing, fa_word_plur local hide_for_against = false -- First convert to lower case if it is a string for_against_style = string.lower(for_against_style) if for_against_style=='g' or for_against_style=='goal' or for_against_style=='goals' then fa_letter = 'G' fa_word_sing = 'ဂိုး' fa_word_plur = 'ဂိုးများ' elseif for_against_style=='p' or for_against_style=='point' or for_against_style=='points' then fa_letter = 'P' fa_word_sing = 'ရမှတ်' fa_word_plur = 'ရမှတ်များ' elseif for_against_style=='none' then hide_for_against = true else fa_letter = 'G' fa_word_sing = 'ဂိုး' fa_word_plur = 'ဂိုးများ' end -- Whether to use goal ratio (goal average) instead local use_ratio_val = Args['use_goal_ratio'] or 'no' local do_ratio = false -- True if exist, false otherwise if yesno(use_ratio_val) then do_ratio = true end -- Whether to use goal percentage instead local use_percentage_val = Args['use_goal_percentage'] or 'no' local do_percentage = false -- True if exist, false otherwise if yesno(use_percentage_val) then do_percentage = true end -- Initialize local tt = {} tt.count = 0 -- Up by one after every call tt.tab_text = t -- Actual text -- Actual headers tt = p_sub.colhead(tt,28,pos_label) -- Position col -- Add group header if full_table and group_col then tt = p_sub.colhead(tt,28,group_head_text) -- Group col end tt = p_sub.colhead(tt,team_width,team_head_text..VTE_text) -- Team col tt = p_sub.colhead(tt,28,'<abbr title="ကစပ်ပွဲ">Pld</abbr>') -- Matches played col if full_table then tt = p_sub.colhead(tt,28,'<abbr title="နိုင်">W</abbr>') -- Win col if loss_first then tt = p_sub.colhead(tt,28,'<abbr title="ယှုံး">L</abbr>') -- Loss col tt = p_sub.colhead(tt,28,draw_head_text) -- Draw col else tt = p_sub.colhead(tt,28,draw_head_text) -- Draw col tt = p_sub.colhead(tt,28,'<abbr title="ယှုံး">L</abbr>') -- Loss col end if not hide_for_against then tt = p_sub.colhead(tt,28,'<abbr title="သွင်း'..fa_word_plur..' ">'..fa_letter..'F</abbr>') -- For col tt = p_sub.colhead(tt,28,'<abbr title="ပေး'..fa_word_plur..' ">'..fa_letter..'A</abbr>') -- Against col if do_ratio then tt = p_sub.colhead(tt,28,'<abbr title="'..fa_word_sing..' အချိုး">'..fa_letter..'R</abbr>') -- Ratio col elseif do_percentage then tt = p_sub.colhead(tt,28,'<abbr title="'..fa_word_sing..' ရာခိုင်နှုန်း">%</abbr>') -- Percentage col else tt = p_sub.colhead(tt,28,'<abbr title="'..fa_word_sing..' ကွာခြားချက်">'..fa_letter..'D</abbr>') -- Difference col end end end if show_points then tt = p_sub.colhead(tt,28,'<abbr title="ရမှတ်များ">Pts</abbr>') -- Points col elseif show_perc then tt = p_sub.colhead(tt,36,'<abbr title="အနိုင် ရာခိုင်နှုန်း">PCT</abbr>') -- Win percentage col end if full_table then tt.count = tt.count+1 table.insert(tt.tab_text,results_header_txt) end return tt end function pp.row(frame,t,Args,p_sub,notes_exist,hth_id_list,full_table,rand_val,team_list,team_code_ii,ii_start,ii_end,ii_fw,bg_col,N_teams,ii,ii_show) -- Build the inner parts of individual rows -- Sub-module usage local mm = require('Module:Math') local yesno = require('Module:Yesno') -- Get custom/default options for in table local win_points = tonumber(Args['winpoints']) or 3 local draw_points = tonumber(Args['drawpoints']) or 1 local loss_points = tonumber(Args['losspoints']) or 0 -- Order of draws and losses -- local loss_first = Args['loss_before_draw'] or false -- Get some input local wins = tonumber(Args['win_'..team_code_ii]) or 0 local draws = tonumber(Args['draw_'..team_code_ii]) or 0 local losses = tonumber(Args['loss_'..team_code_ii]) or 0 local gfor = tonumber(Args['gf_'..team_code_ii]) or tonumber(Args['pf_'..team_code_ii]) or 0 local gaig = tonumber(Args['ga_'..team_code_ii]) or tonumber(Args['pa_'..team_code_ii]) or 0 local s_pts = tonumber(Args['adjust_points_'..team_code_ii]) or tonumber(Args['startpoints_'..team_code_ii]) or 0 local hth_local = Args['hth_'..team_code_ii] or nil -- Then calculate some values local matches = wins + draws + losses local points = win_points*wins + draw_points*draws + loss_points*losses + s_pts --Some sports use draw as well local win_perc = mm._precision_format((2*wins + draws) / (2*matches), 3) if matches == 0 then -- Escape for zero matches win_perc = '&mdash;' elseif losses > 0 then -- Drop the leading zero (from the string) win_perc = string.sub(win_perc,2,string.len(win_perc)) end -- Show for/against local for_against_style = Args['for_against_style'] or 'goals' local hide_for_against = false for_against_style = string.lower(for_against_style) if for_against_style=='none' then hide_for_against = true end -- Comparison of for against local gcomp -- Whether to use goal ratio (goal average) or goal percentage instead local use_ratio_val = Args['use_goal_ratio'] or 'no' local use_percentage_val = Args['use_goal_percentage'] or 'no' local skip_sign if yesno(use_ratio_val) then -- Now it is the goal ratio/goal average if gaig == 0 then gcomp = '&mdash;' else gcomp = mm._precision_format(gfor / gaig, 3) end elseif yesno(use_percentage_val) then -- Now it is the percentage if gaig == 0 then gcomp = '&mdash;' else gcomp = mm._precision_format(100 * gfor / gaig , 1) end else -- It's goal difference gcomp = gfor - gaig -- Formatting with signs if gcomp>0 then gcomp='+'..gcomp elseif gcomp < 0 then gcomp='&minus;'..-gcomp end end -- Some local vars local hth_string local tt_return = p_sub.hth(frame,Args,full_table,hth_id_list,hth_local,notes_exist,team_list,team_code_ii,ii_start,ii_end,rand_val) hth_string = tt_return.str hth_id_list = tt_return.list notes_exist = tt_return.notes_exist -- What to rank the teams by local ranking_style = Args['ranking_style'] or 'pts' local rank_points, rank_perc = false local win_fw, win_string ranking_style = string.lower(ranking_style) if ranking_style=='w' or ranking_style=='win' or ranking_style=='wins' then -- Based on wins win_fw = 'font-weight: bold;' win_string = hth_string elseif ranking_style=='perc' or ranking_style=='percentage' or ranking_style=='%' then -- Based on percentage rank_perc = true win_fw=ii_fw win_string = '' else -- Based on points rank_points = true win_fw=ii_fw win_string = '' end -- Row building table.insert(t,'| style="'..ii_fw..bg_col..'" |'..matches..'\n') -- Played if full_table then table.insert(t,'| style="'..win_fw..bg_col..'" |'..wins..win_string..'\n') -- Won if loss_first then table.insert(t,'| style="'..ii_fw..bg_col..'" |'..losses..'\n') -- Lost table.insert(t,'| style="'..ii_fw..bg_col..'" |'..draws..'\n') -- Drawn else table.insert(t,'| style="'..ii_fw..bg_col..'" |'..draws..'\n') -- Drawn table.insert(t,'| style="'..ii_fw..bg_col..'" |'..losses..'\n') -- Lost end if not hide_for_against then table.insert(t,'| style="'..ii_fw..bg_col..'" |'..gfor..'\n') -- GF table.insert(t,'| style="'..ii_fw..bg_col..'" |'..gaig..'\n') -- GA table.insert(t,'| style="'..ii_fw..bg_col..'" |'..gcomp..'\n') -- Goal comparison end end if rank_points then -- Add &minus; for negative point totals if points<0 then table.insert(t,'| style="font-weight: bold;'..bg_col..'" | &minus;'..-points..hth_string..'\n') else table.insert(t,'| style="font-weight: bold;'..bg_col..'" | '..points..hth_string..'\n') end elseif rank_perc then table.insert(t,'| style="font-weight: bold;'..bg_col..'" | '..win_perc..hth_string..'\n') end return {t=t, notes_exist=notes_exist, hth_id_list=hth_id_list} end function pp.status(Args) -- Declare status options -- ------------------------------------------------------------ -- NOTE: If you add to status_code, also add to status_called and status_letters!! -- Or functionality will be compromised -- ------------------------------------------------------------ local status_code, status_called = {} status_code = { A='Advance to a further round', C='Champion', D='Disqualified', E='Eliminated', G='Guest', H='Host', O='Play-off winner', P='Promoted', Q='Qualified to the phase indicated', R='Relegated', T='Qualified, but not yet to the particular phase indicated', X='?', Y='?', Z='?'} status_called = { A=false, C=false, D=false, E=false, G=false, H=false, O=false, P=false, Q=false, R=false, T=false, X=false, Y=false, Z=false} local status_letters = 'ACDEGHOPQRTXYZ' -- Status position (before or after read and default) local stat_pos_val = Args['status_pos'] or '' local status_position = 'after' -- Default location stat_pos_val = string.lower(stat_pos_val) if stat_pos_val=='before' then status_position = 'before' elseif stat_pos_val=='after' then status_position = 'after' end -- Read in custom status options if Args['status_text_X'] then status_code.X = Args['status_text_X'] end if Args['status_text_Y'] then status_code.Y = Args['status_text_Y'] end if Args['status_text_Z'] then status_code.Z = Args['status_text_Z'] end return {code=status_code, called=status_called, letters=status_letters, position=status_position} end return pp 6fr688ofstj54hdzc5b0gayxwe7d6oo Module:Sports table/sub 828 5168 19679 2026-07-16T11:10:12Z YaThaWinTha 42 Created page with "-- Subfunctions for this module that are called from the style modules local ppp = {} function ppp.colhead(ttt,width,text) -- For individual column headers local head_string if width=='auto' then head_string = '! scope="col" |'..text..'\n' else head_string = '! scope="col" width='..width..'|'..text..'\n' end ttt.count = ttt.count+1 table.insert(ttt.tab_text,head_string) return ttt end function ppp.hth(frame,Args,full_table,hth_id_list,hth_local,notes_exi..." 19679 Scribunto text/plain -- Subfunctions for this module that are called from the style modules local ppp = {} function ppp.colhead(ttt,width,text) -- For individual column headers local head_string if width=='auto' then head_string = '! scope="col" |'..text..'\n' else head_string = '! scope="col" width='..width..'|'..text..'\n' end ttt.count = ttt.count+1 table.insert(ttt.tab_text,head_string) return ttt end function ppp.hth(frame,Args,full_table,hth_id_list,hth_local,notes_exist,team_list,team_code_ii,ii_start,ii_end,rand_val) -- For head-to-head notes local hth_string,hth_local_num, hth_id -- Check whether there is a head-to-head note or not, if so get text ready for it the same way as for the notes if hth_local and full_table then -- Set global check for notes to true notes_exist = true if not Args['hth_'..hth_local] then -- Option 1 -- Now define the identifier for this hth_id = '"table_hth_'..team_code_ii..rand_val..'"' -- Add random end for unique ID if more tables are present on article (which might otherwise share an ID) hth_id_list[team_code_ii] = hth_id -- Call refn template hth_string = frame:expandTemplate{ title = 'efn', args = { group='Table_notes', name=hth_id, hth_local} } else -- Option 2 hth_local_num = team_list[hth_local] if hth_id_list[hth_local] or ((hth_local_num >= ii_start) and (hth_local_num <= ii_end)) then -- Option 2a hth_id = '"table_hth_'..hth_local..rand_val..'"' hth_string = frame:extensionTag{ name = 'ref', args = { group = 'မှတ်စု', name = hth_id} } else -- Option 2b hth_id = '"table_hth_'..hth_local..rand_val..'"' -- Add random end for unique ID hth_id_list[hth_local] = hth_id -- Call refn template hth_string = frame:expandTemplate{ title = 'efn', args = { group='Table_notes', name=hth_id, Args['hth_'..hth_local]} } end end else hth_string = ''; end return {str=hth_string, list=hth_id_list, notes_exist=notes_exist} end return ppp 9p0g02me82aaglh6c7c0dh0k2yeddn4 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း SWE 10 5169 19680 2026-07-16T11:13:57Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆွီဒင်နိုင်ငံ | shortname alias = ဆွီဒင် | flag alias = Flag of Sweden.svg <!-- 1562 variant removed: | flag alias-1562 = Sweden-Flag-1562.svg | border-1562 = --> | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Swedish civil ensign (1844–1905).svg | flag alias-naval = Naval Ensign of Sweden.svg | border-naval = | link alias-naval..." 19680 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆွီဒင်နိုင်ငံ | shortname alias = ဆွီဒင် | flag alias = Flag of Sweden.svg <!-- 1562 variant removed: | flag alias-1562 = Sweden-Flag-1562.svg | border-1562 = --> | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Swedish civil ensign (1844–1905).svg | flag alias-naval = Naval Ensign of Sweden.svg | border-naval = | link alias-naval = ဆွီဒင် ရီတပ် | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var2 = 1818 | var3 = 1844 | redir1 = SWE | redir2 = Sweden </noinclude> }} 0lqyysbf3zcviwrwhvu7gxmr0kbqfqg တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း SUI 10 5170 19681 2026-07-16T11:14:21Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆွစ်ဇာလန်နိုင်ငံ | shortname alias = ဆွစ်ဇာလန် | flag alias = Flag of Switzerland.svg | flag alias-civil = Civil Ensign of Switzerland.svg | size = {{#if:{{{size|}}}|{{{size}}}|23x16px}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = civil | redir1 = CHE | redir2 = SUI | redir3 = CH | redir4 = Switzerland | relate..." 19681 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆွစ်ဇာလန်နိုင်ငံ | shortname alias = ဆွစ်ဇာလန် | flag alias = Flag of Switzerland.svg | flag alias-civil = Civil Ensign of Switzerland.svg | size = {{#if:{{{size|}}}|{{{size}}}|23x16px}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = civil | redir1 = CHE | redir2 = SUI | redir3 = CH | redir4 = Switzerland | related1 = Helvetic Republic | related2 = Old Swiss Confederacy </noinclude> }} ju3t81zjp4jp2tru08jjzdo7s2aczne တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း SEN 10 5171 19682 2026-07-16T11:14:41Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆီနီဂေါနိုင်ငံ | shortname alias = ဆီနီဂေါ | flag alias = Flag of Senegal.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = SEN | redir2 = Senegal </noinclude> }}" 19682 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆီနီဂေါနိုင်ငံ | shortname alias = ဆီနီဂေါ | flag alias = Flag of Senegal.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = SEN | redir2 = Senegal </noinclude> }} cfccgkoh6l94opuhs91s2ulvo2rkrj8 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း SCO 10 5172 19683 2026-07-16T11:15:19Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = စကောတလန်နိုင်ငံ | shortname alias = စကောတလန် | flag alias = Flag of Scotland.svg | flag alias-1542 = Flag of Scotland (traditional).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1542 | redir1 = SCO | redir2 = Scotland | related1 = Kingdom of Scotland </noinclude> }}" 19683 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = စကောတလန်နိုင်ငံ | shortname alias = စကောတလန် | flag alias = Flag of Scotland.svg | flag alias-1542 = Flag of Scotland (traditional).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1542 | redir1 = SCO | redir2 = Scotland | related1 = Kingdom of Scotland </noinclude> }} 921hjjaqbqbwhswvwn0g2i8pl1o5xpe တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း RSA 10 5173 19684 2026-07-16T11:16:07Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တောင်အာဖရိကနိုင်ငံ | shortname alias = တောင်အာဖရိက | flag alias = Flag of South Africa.svg | flag alias-1910 = South Africa Flag 1910-1912.svg | flag alias-1912 = South Africa Flag 1912-1928.svg | flag alias-1928 = Flag of South Africa (1928-1994).svg | flag alias-naval = Naval Ensign of South Africa.svg | flag alias-naval-1922 = Naval ensign of the Unit..." 19684 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တောင်အာဖရိကနိုင်ငံ | shortname alias = တောင်အာဖရိက | flag alias = Flag of South Africa.svg | flag alias-1910 = South Africa Flag 1910-1912.svg | flag alias-1912 = South Africa Flag 1912-1928.svg | flag alias-1928 = Flag of South Africa (1928-1994).svg | flag alias-naval = Naval Ensign of South Africa.svg | flag alias-naval-1922 = Naval ensign of the United Kingdom.svg | flag alias-naval-1946 = Naval Ensign of South Africa (1946–1951).svg | flag alias-naval-1952 = Naval Ensign of South Africa (1959–1981).svg | flag alias-naval-1981 = Naval Ensign of South Africa (1981–1994).svg | link alias-naval = South African Navy | flag alias-air force = Air Force Ensign of South Africa.svg | flag alias-air force-1940 = Ensign of the South African Air Force 1940-1951.svg | flag alias-air force-1951 = Air Force Ensign of South Africa (1951–1958).svg | flag alias-air force-1958 = Air Force Ensign of South Africa (1958–1967, 1970–1981).svg | flag alias-air force-1967 = Air Force Ensign of South Africa (1967–1970).svg | flag alias-air force-1981 = Air Force Ensign of South Africa (1981–1982).svg | flag alias-air force-1982 = Air Force Ensign of South Africa (1982–1994).svg | flag alias-air force-1994 = Air Force Ensign of South Africa (1994–2003).svg | link alias-air force = South African Air Force | flag alias-army = | flag alias-army-1981 = Ensign of the South African Defence Force (1981-1994).svg | link alias-army = South African Army | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1910 | var2 = 1912 | var3 = 1928 | var4 = naval-1922 | var5 = naval-1946 | var6 = naval-1952 | var7 = naval-1981 | var8 = air force-1940 | var9 = air force-1951 | var10 = air force-1958 | var11 = air force-1967 | var12 = air force-1981 | var13 = air force-1982 | var14 = air force-1994 | var15 = army-1981 | redir1 = ZAF | redir2 = RSA | redir3 = South Africa | related1 = South African Republic | related2 = Union of South Africa </noinclude> }} 9pbk7d5knglndi2s24w0y1isc52946e တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း QAT 10 5174 19685 2026-07-16T11:16:51Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကာတာနိုင်ငံ | shortname alias = ကာတာ | flag alias = Flag of Qatar.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = QAT |redir2 = Qatar </noinclude> }}" 19685 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကာတာနိုင်ငံ | shortname alias = ကာတာ | flag alias = Flag of Qatar.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = QAT |redir2 = Qatar </noinclude> }} jcrlua25kzctfy2pp6r4zc0v2106jzu တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း POR 10 5175 19686 2026-07-16T11:17:23Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပေါ်တူဂီနိုင်ငံ | shortname alias = ပေါ်တူဂီ | flag alias = Flag of Portugal (official).svg | flag alias-1248 = Flag of the Kingdom of Portugal (1248–1385).svg | flag alias-1385 = Flag of the Kingdom of Portugal (1385–1485).svg | flag alias-1495 = Flag Portugal (1495).svg | flag alias-1578 = Flag Portugal (1578).svg | flag alias-1640 = Flag Portugal (1640).svg |..." 19686 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပေါ်တူဂီနိုင်ငံ | shortname alias = ပေါ်တူဂီ | flag alias = Flag of Portugal (official).svg | flag alias-1248 = Flag of the Kingdom of Portugal (1248–1385).svg | flag alias-1385 = Flag of the Kingdom of Portugal (1385–1485).svg | flag alias-1495 = Flag Portugal (1495).svg | flag alias-1578 = Flag Portugal (1578).svg | flag alias-1640 = Flag Portugal (1640).svg | flag alias-1707 = Flag Portugal (1707).svg | flag alias-1750 = Flag Portugal (1750).svg | flag alias-1816 = Flag of the United Kingdom of Portugal, Brazil, and the Algarves.svg | flag alias-1830 = Flag Portugal (1830).svg | flag alias-civil = Flag Portugal sea (1830).svg | link alias-naval = Portuguese Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1248 | var2 = 1385 | var3 = 1495 | var4 = 1578 | var5 = 1640 | var6 = 1707 | var7 = 1750 | var8 = 1816 | var9 = 1830 | var10 = civil | redir1 = PRT | redir2 = POR | redir3 = Portugal | related1 = Portuguese Empire </noinclude> }} djcoemsjrees6zgjom7krokqnclou7t တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း PAR 10 5176 19687 2026-07-16T11:21:23Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပါရာဂွေးနိုင်ငံ | shortname alias = ပါရာဂွေး | flag alias = Flag of Paraguay.svg | flag alias-1812 = Flag of Paraguay (1812-1826).svg | flag alias-1826 = Flag of Paraguay (1826-1842).svg | flag alias-1842 = Flag of Paraguay (1842–1954).svg | flag alias-1954 = Flag of Paraguay (1954-1988).svg | flag alias-1988 = Flag of Paraguay (1988-1990).svg | flag alias-1990 =..." 19687 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပါရာဂွေးနိုင်ငံ | shortname alias = ပါရာဂွေး | flag alias = Flag of Paraguay.svg | flag alias-1812 = Flag of Paraguay (1812-1826).svg | flag alias-1826 = Flag of Paraguay (1826-1842).svg | flag alias-1842 = Flag of Paraguay (1842–1954).svg | flag alias-1954 = Flag of Paraguay (1954-1988).svg | flag alias-1988 = Flag of Paraguay (1988-1990).svg | flag alias-1990 = Flag of Paraguay (1990-2013).svg | link alias-naval = Paraguayan Navy | size = {{{size|}}} | name = {{{name|}}} | variant = {{{variant|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = PRY | redir2 = PAR | redir3 = Paraguay | var1 = 1812 | var2 = 1826 | var3 = 1842 | var4 = 1954 | var5 = 1988 | var6 = 1990 </noinclude> }} fo85f4yrjxw2rdjizyvram1rj7ekr3c တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း PAN 10 5177 19688 2026-07-16T11:21:47Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပနားမားနိုင်ငံ | shortname alias = ပနားမား | flag alias = Flag of Panama.svg | link alias-naval = {{#switch:{{{variant|}}}|1958|1958=Panamanian National Guard|1984|1984=Panamanian Defense Forces|#default=Panamanian Public Forces}} | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = PAN | redir2 = Panama </noinclude> }}" 19688 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပနားမားနိုင်ငံ | shortname alias = ပနားမား | flag alias = Flag of Panama.svg | link alias-naval = {{#switch:{{{variant|}}}|1958|1958=Panamanian National Guard|1984|1984=Panamanian Defense Forces|#default=Panamanian Public Forces}} | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = PAN | redir2 = Panama </noinclude> }} ecks73a98ufv8p02li3d7j2coknvoia တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း NZL 10 5178 19689 2026-07-16T11:22:12Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပနားမားနိုင်ငံ | shortname alias = ပနားမား | flag alias = Flag of Panama.svg | link alias-naval = {{#switch:{{{variant|}}}|1958|1958=Panamanian National Guard|1984|1984=Panamanian Defense Forces|#default=Panamanian Public Forces}} | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = PAN | redir2 = Panama </noinclude> }}" 19689 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပနားမားနိုင်ငံ | shortname alias = ပနားမား | flag alias = Flag of Panama.svg | link alias-naval = {{#switch:{{{variant|}}}|1958|1958=Panamanian National Guard|1984|1984=Panamanian Defense Forces|#default=Panamanian Public Forces}} | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = PAN | redir2 = Panama </noinclude> }} ecks73a98ufv8p02li3d7j2coknvoia တမ်းပလိတ်:Country data Kalmar Union 10 5179 19690 2026-07-16T11:23:52Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နော်ဝေးနိုင်ငံ | shortname alias = နော်ဝေး | flag alias = Flag of Norway.svg | flag alias-old kingdom = Royal Standard of Norway.svg | flag alias-1814 = Flag of Norway (1814–1821).svg | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Norge-Unionsflagg-1844.svg | flag alias-naval = Flag of Norway, state.svg | border-naval = | lin..." 19690 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နော်ဝေးနိုင်ငံ | shortname alias = နော်ဝေး | flag alias = Flag of Norway.svg | flag alias-old kingdom = Royal Standard of Norway.svg | flag alias-1814 = Flag of Norway (1814–1821).svg | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Norge-Unionsflagg-1844.svg | flag alias-naval = Flag of Norway, state.svg | border-naval = | link alias-naval = Royal Norwegian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = old kingdom | var2 = 1814 | var3 = 1818 | var4 = 1844 | redir1 = NOR | redir2 = Norway | related1 = Kalmar Union </noinclude> }} 7ha49a6dkq6g06t1ipc5a51dlzg2g91 တမ်းပလိတ်:Country data Norway 10 5180 19691 2026-07-16T11:24:04Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နော်ဝေးနိုင်ငံ | shortname alias = နော်ဝေး | flag alias = Flag of Norway.svg | flag alias-old kingdom = Royal Standard of Norway.svg | flag alias-1814 = Flag of Norway (1814–1821).svg | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Norge-Unionsflagg-1844.svg | flag alias-naval = Flag of Norway, state.svg | border-naval = | lin..." 19691 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နော်ဝေးနိုင်ငံ | shortname alias = နော်ဝေး | flag alias = Flag of Norway.svg | flag alias-old kingdom = Royal Standard of Norway.svg | flag alias-1814 = Flag of Norway (1814–1821).svg | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Norge-Unionsflagg-1844.svg | flag alias-naval = Flag of Norway, state.svg | border-naval = | link alias-naval = Royal Norwegian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = old kingdom | var2 = 1814 | var3 = 1818 | var4 = 1844 | redir1 = NOR | redir2 = Norway | related1 = Kalmar Union </noinclude> }} 7ha49a6dkq6g06t1ipc5a51dlzg2g91 တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း NOR 10 5181 19692 2026-07-16T11:24:19Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နော်ဝေးနိုင်ငံ | shortname alias = နော်ဝေး | flag alias = Flag of Norway.svg | flag alias-old kingdom = Royal Standard of Norway.svg | flag alias-1814 = Flag of Norway (1814–1821).svg | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Norge-Unionsflagg-1844.svg | flag alias-naval = Flag of Norway, state.svg | border-naval = | lin..." 19692 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နော်ဝေးနိုင်ငံ | shortname alias = နော်ဝေး | flag alias = Flag of Norway.svg | flag alias-old kingdom = Royal Standard of Norway.svg | flag alias-1814 = Flag of Norway (1814–1821).svg | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Norge-Unionsflagg-1844.svg | flag alias-naval = Flag of Norway, state.svg | border-naval = | link alias-naval = Royal Norwegian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = old kingdom | var2 = 1814 | var3 = 1818 | var4 = 1844 | redir1 = NOR | redir2 = Norway | related1 = Kalmar Union </noinclude> }} 7ha49a6dkq6g06t1ipc5a51dlzg2g91 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း NOR 10 5182 19693 2026-07-16T11:24:31Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နော်ဝေးနိုင်ငံ | shortname alias = နော်ဝေး | flag alias = Flag of Norway.svg | flag alias-old kingdom = Royal Standard of Norway.svg | flag alias-1814 = Flag of Norway (1814–1821).svg | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Norge-Unionsflagg-1844.svg | flag alias-naval = Flag of Norway, state.svg | border-naval = | lin..." 19693 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နော်ဝေးနိုင်ငံ | shortname alias = နော်ဝေး | flag alias = Flag of Norway.svg | flag alias-old kingdom = Royal Standard of Norway.svg | flag alias-1814 = Flag of Norway (1814–1821).svg | flag alias-1818 = Swedish and Norwegian merchant flag 1818-1844.svg | flag alias-1844 = Norge-Unionsflagg-1844.svg | flag alias-naval = Flag of Norway, state.svg | border-naval = | link alias-naval = Royal Norwegian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = old kingdom | var2 = 1814 | var3 = 1818 | var4 = 1844 | redir1 = NOR | redir2 = Norway | related1 = Kalmar Union </noinclude> }} 7ha49a6dkq6g06t1ipc5a51dlzg2g91 တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း NED 10 5183 19694 2026-07-16T11:25:12Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နယ်သာလန်နိုင်ငံ | shortname alias = နယ်သာလန် | flag alias = Flag of the Netherlands.svg | flag alias-prinsengeus = Naval Jack of the Netherlands.svg | link alias-naval = Royal Netherlands Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = prinsengeus | redir1 = NLD | redir2 = NED | redir3 = Neth..." 19694 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နယ်သာလန်နိုင်ငံ | shortname alias = နယ်သာလန် | flag alias = Flag of the Netherlands.svg | flag alias-prinsengeus = Naval Jack of the Netherlands.svg | link alias-naval = Royal Netherlands Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = prinsengeus | redir1 = NLD | redir2 = NED | redir3 = Netherlands | related1 = Kingdom of the Netherlands | related2 = Dutch Republic | related3 = Batavian Republic </noinclude> }} ly6fdsxo87g0kc75vpjg303fb12q5rc တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း NED 10 5184 19695 2026-07-16T11:25:18Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နယ်သာလန်နိုင်ငံ | shortname alias = နယ်သာလန် | flag alias = Flag of the Netherlands.svg | flag alias-prinsengeus = Naval Jack of the Netherlands.svg | link alias-naval = Royal Netherlands Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = prinsengeus | redir1 = NLD | redir2 = NED | redir3 = Neth..." 19695 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = နယ်သာလန်နိုင်ငံ | shortname alias = နယ်သာလန် | flag alias = Flag of the Netherlands.svg | flag alias-prinsengeus = Naval Jack of the Netherlands.svg | link alias-naval = Royal Netherlands Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = prinsengeus | redir1 = NLD | redir2 = NED | redir3 = Netherlands | related1 = Kingdom of the Netherlands | related2 = Dutch Republic | related3 = Batavian Republic </noinclude> }} ly6fdsxo87g0kc75vpjg303fb12q5rc တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း MEX 10 5185 19696 2026-07-16T11:26:24Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = မက္ကဆီကိုနိုင်ငံ | shortname alias = မက္ကဆီကို | flag alias = Flag of Mexico.svg | flag alias-1821 = Flag of Mexico (1821-1823).svg | flag alias-1823 = Flag of Mexico (1823-1864, 1867-1893).svg | flag alias-1864 = Imperial Standard of Mexico (1864-1867).svg | flag alias-1893 = Flag of Mexico (1893-1916).svg | flag alias-1916 = Flag of Mexico (1916-1934).svg | fl..." 19696 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = မက္ကဆီကိုနိုင်ငံ | shortname alias = မက္ကဆီကို | flag alias = Flag of Mexico.svg | flag alias-1821 = Flag of Mexico (1821-1823).svg | flag alias-1823 = Flag of Mexico (1823-1864, 1867-1893).svg | flag alias-1864 = Imperial Standard of Mexico (1864-1867).svg | flag alias-1893 = Flag of Mexico (1893-1916).svg | flag alias-1916 = Flag of Mexico (1916-1934).svg | flag alias-1934 = Flag of Mexico (1934-1968).svg | link alias-naval = Mexican Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1821 | var2 = 1823 | var3 = 1864 | var4 = 1893 | var5 = 1916 | var6 = 1934 | redir1 = MEX | redir2= Mexico </noinclude> }} fizrg1k6iaainm82r6bax2s94hdo2g0 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း MEX 10 5186 19697 2026-07-16T11:26:33Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = မက္ကဆီကိုနိုင်ငံ | shortname alias = မက္ကဆီကို | flag alias = Flag of Mexico.svg | flag alias-1821 = Flag of Mexico (1821-1823).svg | flag alias-1823 = Flag of Mexico (1823-1864, 1867-1893).svg | flag alias-1864 = Imperial Standard of Mexico (1864-1867).svg | flag alias-1893 = Flag of Mexico (1893-1916).svg | flag alias-1916 = Flag of Mexico (1916-1934).svg | fl..." 19697 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = မက္ကဆီကိုနိုင်ငံ | shortname alias = မက္ကဆီကို | flag alias = Flag of Mexico.svg | flag alias-1821 = Flag of Mexico (1821-1823).svg | flag alias-1823 = Flag of Mexico (1823-1864, 1867-1893).svg | flag alias-1864 = Imperial Standard of Mexico (1864-1867).svg | flag alias-1893 = Flag of Mexico (1893-1916).svg | flag alias-1916 = Flag of Mexico (1916-1934).svg | flag alias-1934 = Flag of Mexico (1934-1968).svg | link alias-naval = Mexican Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1821 | var2 = 1823 | var3 = 1864 | var4 = 1893 | var5 = 1916 | var6 = 1934 | redir1 = MEX | redir2= Mexico </noinclude> }} fizrg1k6iaainm82r6bax2s94hdo2g0 တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း MAR 10 5187 19698 2026-07-16T11:27:10Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = မော်ရိုကိုနိုင်ငံ | shortname alias = မော်ရိုကို | flag alias = Flag of Morocco.svg | flag alias-1913 = Flag of Spanish Morocco.svg | flag alias-naval = Naval Ensign of Morocco.svg | link alias-naval = Royal Moroccan Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1913 | redir1 = MAR <..." 19698 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = မော်ရိုကိုနိုင်ငံ | shortname alias = မော်ရိုကို | flag alias = Flag of Morocco.svg | flag alias-1913 = Flag of Spanish Morocco.svg | flag alias-naval = Naval Ensign of Morocco.svg | link alias-naval = Royal Moroccan Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1913 | redir1 = MAR </noinclude> }}<noinclude></noinclude> 01dbkm0z6767f0qui74u2ud318str86 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း MAR 10 5188 19699 2026-07-16T11:27:15Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = မော်ရိုကိုနိုင်ငံ | shortname alias = မော်ရိုကို | flag alias = Flag of Morocco.svg | flag alias-1913 = Flag of Spanish Morocco.svg | flag alias-naval = Naval Ensign of Morocco.svg | link alias-naval = Royal Moroccan Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1913 | redir1 = MAR <..." 19699 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = မော်ရိုကိုနိုင်ငံ | shortname alias = မော်ရိုကို | flag alias = Flag of Morocco.svg | flag alias-1913 = Flag of Spanish Morocco.svg | flag alias-naval = Naval Ensign of Morocco.svg | link alias-naval = Royal Moroccan Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1913 | redir1 = MAR </noinclude> }}<noinclude></noinclude> 01dbkm0z6767f0qui74u2ud318str86 တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း KSA 10 5189 19700 2026-07-16T11:28:19Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆော်ဒီအာရီးဘီးယားနိုင်ငံ | shortname alias = ဆော်ဒီအာရီးဘီးယား | flag alias = Flag of Saudi Arabia.svg | flag alias-1932 = Flag of Saudi Arabia (1932-1934).svg | flag alias-1934 = Flag of Saudi Arabia (1934-1938).svg | flag alias-1938 = Flag of Saudi Arabia (1938-1973).svg | flag alias-naval = Naval Ensign of Saudi Arabia.svg | li..." 19700 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆော်ဒီအာရီးဘီးယားနိုင်ငံ | shortname alias = ဆော်ဒီအာရီးဘီးယား | flag alias = Flag of Saudi Arabia.svg | flag alias-1932 = Flag of Saudi Arabia (1932-1934).svg | flag alias-1934 = Flag of Saudi Arabia (1934-1938).svg | flag alias-1938 = Flag of Saudi Arabia (1938-1973).svg | flag alias-naval = Naval Ensign of Saudi Arabia.svg | link alias-naval = တော်ဝင်ဆော်ဖြားရီတပ် | flag alias-air force = Flag of the Royal Saudi Air Force (Seal).svg | link alias-air force = တော်ဝင်ဆော်ဒေလေတပ် | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1932 | var2 = 1934 | var3 = 1938 | redir1 = SAU | redir2 = KSA | redir3 = Saudi Arabia </noinclude> }} t90tmkgwk0hssv5ipems1fnk1g20kud တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း KSA 10 5190 19701 2026-07-16T11:28:25Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆော်ဒီအာရီးဘီးယားနိုင်ငံ | shortname alias = ဆော်ဒီအာရီးဘီးယား | flag alias = Flag of Saudi Arabia.svg | flag alias-1932 = Flag of Saudi Arabia (1932-1934).svg | flag alias-1934 = Flag of Saudi Arabia (1934-1938).svg | flag alias-1938 = Flag of Saudi Arabia (1938-1973).svg | flag alias-naval = Naval Ensign of Saudi Arabia.svg | li..." 19701 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဆော်ဒီအာရီးဘီးယားနိုင်ငံ | shortname alias = ဆော်ဒီအာရီးဘီးယား | flag alias = Flag of Saudi Arabia.svg | flag alias-1932 = Flag of Saudi Arabia (1932-1934).svg | flag alias-1934 = Flag of Saudi Arabia (1934-1938).svg | flag alias-1938 = Flag of Saudi Arabia (1938-1973).svg | flag alias-naval = Naval Ensign of Saudi Arabia.svg | link alias-naval = တော်ဝင်ဆော်ဖြားရီတပ် | flag alias-air force = Flag of the Royal Saudi Air Force (Seal).svg | link alias-air force = တော်ဝင်ဆော်ဒေလေတပ် | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1932 | var2 = 1934 | var3 = 1938 | redir1 = SAU | redir2 = KSA | redir3 = Saudi Arabia </noinclude> }} t90tmkgwk0hssv5ipems1fnk1g20kud တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း KOR 10 5191 19702 2026-07-16T11:29:03Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကိုရီးယားသမ္မတနိုင်ငံ | shortname alias = တောင်ကိုရီးယား | flag alias = Flag of South Korea.svg | flag alias-1948 = Flag of South Korea (1948).svg | flag alias-1949 = Flag of South Korea (1984-1997).svg | flag alias-army = Flag of the Republic of Korea Army.svg | flag alias-marine corps = Flag of the Republic of Korea Marine Corps.svg | link..." 19702 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကိုရီးယားသမ္မတနိုင်ငံ | shortname alias = တောင်ကိုရီးယား | flag alias = Flag of South Korea.svg | flag alias-1948 = Flag of South Korea (1948).svg | flag alias-1949 = Flag of South Korea (1984-1997).svg | flag alias-army = Flag of the Republic of Korea Army.svg | flag alias-marine corps = Flag of the Republic of Korea Marine Corps.svg | link alias-army = Republic of Korea Army | link alias-naval = Republic of Korea Navy | link alias-marine corps = Republic of Korea Marine Corps | name alias-badminton = ကိုရီးယား | link alias-badminton = Korea national badminton team | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1948 | var2 = 1949 | var4 = marine corps | redir1 = KOR | redir2 = Republic of Korea | redir3 = South Korea | related1 = Korea | related2 = Korean Empire | related3 = North Korea | related4 = Joseon </noinclude> }} ecjuw8jwz8kso60jl74xmycl9giiilp တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း KOR 10 5192 19703 2026-07-16T11:29:10Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကိုရီးယားသမ္မတနိုင်ငံ | shortname alias = တောင်ကိုရီးယား | flag alias = Flag of South Korea.svg | flag alias-1948 = Flag of South Korea (1948).svg | flag alias-1949 = Flag of South Korea (1984-1997).svg | flag alias-army = Flag of the Republic of Korea Army.svg | flag alias-marine corps = Flag of the Republic of Korea Marine Corps.svg | link..." 19703 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ကိုရီးယားသမ္မတနိုင်ငံ | shortname alias = တောင်ကိုရီးယား | flag alias = Flag of South Korea.svg | flag alias-1948 = Flag of South Korea (1948).svg | flag alias-1949 = Flag of South Korea (1984-1997).svg | flag alias-army = Flag of the Republic of Korea Army.svg | flag alias-marine corps = Flag of the Republic of Korea Marine Corps.svg | link alias-army = Republic of Korea Army | link alias-naval = Republic of Korea Navy | link alias-marine corps = Republic of Korea Marine Corps | name alias-badminton = ကိုရီးယား | link alias-badminton = Korea national badminton team | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1948 | var2 = 1949 | var4 = marine corps | redir1 = KOR | redir2 = Republic of Korea | redir3 = South Korea | related1 = Korea | related2 = Korean Empire | related3 = North Korea | related4 = Joseon </noinclude> }} ecjuw8jwz8kso60jl74xmycl9giiilp တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း JPN 10 5193 19704 2026-07-16T11:29:55Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျပန်နိုင်ငံ | shortname alias = ဂျပန် | flag alias = Flag of Japan.svg | flag alias-1870 = Merchant flag of Japan (1870).svg | flag alias-1945 = Flag of Allied Occupied Japan.svg | border-1945 = | flag alias-1947 = Merchant flag of Japan (1870).svg | flag alias-ryukyu = Civil ensign of the Ryukyu Islands (1952–1967).svg | border-ryukyu = | flag alias-naval = Naval Ensign of..." 19704 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျပန်နိုင်ငံ | shortname alias = ဂျပန် | flag alias = Flag of Japan.svg | flag alias-1870 = Merchant flag of Japan (1870).svg | flag alias-1945 = Flag of Allied Occupied Japan.svg | border-1945 = | flag alias-1947 = Merchant flag of Japan (1870).svg | flag alias-ryukyu = Civil ensign of the Ryukyu Islands (1952–1967).svg | border-ryukyu = | flag alias-naval = Naval Ensign of Japan.svg | flag alias-Coast Guard = Ensign of the Japanese Coast Guard.svg | link alias-naval = Japan Maritime Self-Defense Force | link alias-Coast Guard = ဂျပန်ကမ်းခြီစောင့်တပ်ဖွဲ့ | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1870 | var2 = 1945 | var3 = 1947 | var4 = ryukyu | var5 = Coast Guard | redir1 = JPN | redir2 = Japan | related1 = Empire of Japan </noinclude> }} b9vnksnmwv85iqoe1oztgnjuvap5r8q တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း JPN 10 5194 19705 2026-07-16T11:30:01Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျပန်နိုင်ငံ | shortname alias = ဂျပန် | flag alias = Flag of Japan.svg | flag alias-1870 = Merchant flag of Japan (1870).svg | flag alias-1945 = Flag of Allied Occupied Japan.svg | border-1945 = | flag alias-1947 = Merchant flag of Japan (1870).svg | flag alias-ryukyu = Civil ensign of the Ryukyu Islands (1952–1967).svg | border-ryukyu = | flag alias-naval = Naval Ensign of..." 19705 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျပန်နိုင်ငံ | shortname alias = ဂျပန် | flag alias = Flag of Japan.svg | flag alias-1870 = Merchant flag of Japan (1870).svg | flag alias-1945 = Flag of Allied Occupied Japan.svg | border-1945 = | flag alias-1947 = Merchant flag of Japan (1870).svg | flag alias-ryukyu = Civil ensign of the Ryukyu Islands (1952–1967).svg | border-ryukyu = | flag alias-naval = Naval Ensign of Japan.svg | flag alias-Coast Guard = Ensign of the Japanese Coast Guard.svg | link alias-naval = Japan Maritime Self-Defense Force | link alias-Coast Guard = ဂျပန်ကမ်းခြီစောင့်တပ်ဖွဲ့ | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1870 | var2 = 1945 | var3 = 1947 | var4 = ryukyu | var5 = Coast Guard | redir1 = JPN | redir2 = Japan | related1 = Empire of Japan </noinclude> }} b9vnksnmwv85iqoe1oztgnjuvap5r8q တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း JOR 10 5195 19706 2026-07-16T11:31:03Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျော်ဒန်နိုင်ငံ | shortname alias = ဂျော်ဒန် | flag alias = Flag of Jordan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = JOR | redir2 = Jordan </noinclude> }}" 19706 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျော်ဒန်နိုင်ငံ | shortname alias = ဂျော်ဒန် | flag alias = Flag of Jordan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = JOR | redir2 = Jordan </noinclude> }} 3jv3qyxlbka4ukptz1acrkdv19q772f တမ်းပလိတ်:Country data Jordan 10 5196 19707 2026-07-16T11:31:13Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျော်ဒန်နိုင်ငံ | shortname alias = ဂျော်ဒန် | flag alias = Flag of Jordan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = JOR | redir2 = Jordan </noinclude> }}" 19707 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျော်ဒန်နိုင်ငံ | shortname alias = ဂျော်ဒန် | flag alias = Flag of Jordan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = JOR | redir2 = Jordan </noinclude> }} 3jv3qyxlbka4ukptz1acrkdv19q772f တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း JOR 10 5197 19708 2026-07-16T11:31:19Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျော်ဒန်နိုင်ငံ | shortname alias = ဂျော်ဒန် | flag alias = Flag of Jordan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = JOR | redir2 = Jordan </noinclude> }}" 19708 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျော်ဒန်နိုင်ငံ | shortname alias = ဂျော်ဒန် | flag alias = Flag of Jordan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = JOR | redir2 = Jordan </noinclude> }} 3jv3qyxlbka4ukptz1acrkdv19q772f တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း IRQ 10 5198 19709 2026-07-16T11:31:53Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရတ်နိုင်ငံ | shortname alias = အီရတ် | flag alias = Flag of Iraq.svg | flag alias-1924 = Flag of Iraq 1924.svg | flag alias-1959 = Flag of Iraq 1959-1963.svg | flag alias-1963 = Flag of Iraq (1963-1991).svg | flag alias-1991 = Flag of Iraq, 1991-2004.svg | flag alias-2004 = Flag of Iraq 2004-2008.svg | link alias-naval = Iraqi Navy | size = {{{size|}}} | name = {{{name|}}} |..." 19709 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရတ်နိုင်ငံ | shortname alias = အီရတ် | flag alias = Flag of Iraq.svg | flag alias-1924 = Flag of Iraq 1924.svg | flag alias-1959 = Flag of Iraq 1959-1963.svg | flag alias-1963 = Flag of Iraq (1963-1991).svg | flag alias-1991 = Flag of Iraq, 1991-2004.svg | flag alias-2004 = Flag of Iraq 2004-2008.svg | link alias-naval = Iraqi Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1924 | var2 = 1959 | var3 = 1963 | var4 = 1991 | var5 = 2004 | redir1 = IRQ </noinclude> }} n6u3opih7f4fr1gt36hfyudi3zem3wh တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း IRQ 10 5199 19710 2026-07-16T11:31:58Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရတ်နိုင်ငံ | shortname alias = အီရတ် | flag alias = Flag of Iraq.svg | flag alias-1924 = Flag of Iraq 1924.svg | flag alias-1959 = Flag of Iraq 1959-1963.svg | flag alias-1963 = Flag of Iraq (1963-1991).svg | flag alias-1991 = Flag of Iraq, 1991-2004.svg | flag alias-2004 = Flag of Iraq 2004-2008.svg | link alias-naval = Iraqi Navy | size = {{{size|}}} | name = {{{name|}}} |..." 19710 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရတ်နိုင်ငံ | shortname alias = အီရတ် | flag alias = Flag of Iraq.svg | flag alias-1924 = Flag of Iraq 1924.svg | flag alias-1959 = Flag of Iraq 1959-1963.svg | flag alias-1963 = Flag of Iraq (1963-1991).svg | flag alias-1991 = Flag of Iraq, 1991-2004.svg | flag alias-2004 = Flag of Iraq 2004-2008.svg | link alias-naval = Iraqi Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1924 | var2 = 1959 | var3 = 1963 | var4 = 1991 | var5 = 2004 | redir1 = IRQ </noinclude> }} n6u3opih7f4fr1gt36hfyudi3zem3wh တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း IRN 10 5200 19711 2026-07-16T11:32:34Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရန်နိုင်ငံ | shortname alias = အီရန် | flag alias = Flag of Iran.svg | flag alias-1925 = State Flag of Iran (1925).svg | flag alias-1964 = Lionflag.svg | link alias-naval = Islamic Republic of Iran Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1925 | var2 = 1964 | redir1 = IRN | redir2 = IRI </noinclu..." 19711 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရန်နိုင်ငံ | shortname alias = အီရန် | flag alias = Flag of Iran.svg | flag alias-1925 = State Flag of Iran (1925).svg | flag alias-1964 = Lionflag.svg | link alias-naval = Islamic Republic of Iran Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1925 | var2 = 1964 | redir1 = IRN | redir2 = IRI </noinclude> }} em196ipkfzkkt0zi65ald6tmsylbt0j တမ်းပလိတ်:Country data IRI 10 5201 19712 2026-07-16T11:32:44Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရန်နိုင်ငံ | shortname alias = အီရန် | flag alias = Flag of Iran.svg | flag alias-1925 = State Flag of Iran (1925).svg | flag alias-1964 = Lionflag.svg | link alias-naval = Islamic Republic of Iran Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1925 | var2 = 1964 | redir1 = IRN | redir2 = IRI </noinclu..." 19712 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရန်နိုင်ငံ | shortname alias = အီရန် | flag alias = Flag of Iran.svg | flag alias-1925 = State Flag of Iran (1925).svg | flag alias-1964 = Lionflag.svg | link alias-naval = Islamic Republic of Iran Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1925 | var2 = 1964 | redir1 = IRN | redir2 = IRI </noinclude> }} em196ipkfzkkt0zi65ald6tmsylbt0j တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း IRN 10 5202 19713 2026-07-16T11:32:49Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရန်နိုင်ငံ | shortname alias = အီရန် | flag alias = Flag of Iran.svg | flag alias-1925 = State Flag of Iran (1925).svg | flag alias-1964 = Lionflag.svg | link alias-naval = Islamic Republic of Iran Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1925 | var2 = 1964 | redir1 = IRN | redir2 = IRI </noinclu..." 19713 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီရန်နိုင်ငံ | shortname alias = အီရန် | flag alias = Flag of Iran.svg | flag alias-1925 = State Flag of Iran (1925).svg | flag alias-1964 = Lionflag.svg | link alias-naval = Islamic Republic of Iran Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1925 | var2 = 1964 | redir1 = IRN | redir2 = IRI </noinclude> }} em196ipkfzkkt0zi65ald6tmsylbt0j တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း HAI 10 5203 19714 2026-07-16T11:33:37Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဟေတီနိုင်ငံ | shortname alias = ဟေတီ | flag alias = Flag of Haiti.svg | flag alias-1964 = Flag of Haiti (1964-1986).svg | flag alias-civil = Flag of Haiti (civil).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | var2 = civil | redir1 = HTI | redir2 = HAI </noinclude> }}" 19714 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဟေတီနိုင်ငံ | shortname alias = ဟေတီ | flag alias = Flag of Haiti.svg | flag alias-1964 = Flag of Haiti (1964-1986).svg | flag alias-civil = Flag of Haiti (civil).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | var2 = civil | redir1 = HTI | redir2 = HAI </noinclude> }} sg9p5esrdpzj16kq1g0202zfr3t26jv တမ်းပလိတ်:Country data HTI 10 5204 19715 2026-07-16T11:33:46Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဟေတီနိုင်ငံ | shortname alias = ဟေတီ | flag alias = Flag of Haiti.svg | flag alias-1964 = Flag of Haiti (1964-1986).svg | flag alias-civil = Flag of Haiti (civil).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | var2 = civil | redir1 = HTI | redir2 = HAI </noinclude> }}" 19715 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဟေတီနိုင်ငံ | shortname alias = ဟေတီ | flag alias = Flag of Haiti.svg | flag alias-1964 = Flag of Haiti (1964-1986).svg | flag alias-civil = Flag of Haiti (civil).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | var2 = civil | redir1 = HTI | redir2 = HAI </noinclude> }} sg9p5esrdpzj16kq1g0202zfr3t26jv တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း HAI 10 5205 19716 2026-07-16T11:33:52Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဟေတီနိုင်ငံ | shortname alias = ဟေတီ | flag alias = Flag of Haiti.svg | flag alias-1964 = Flag of Haiti (1964-1986).svg | flag alias-civil = Flag of Haiti (civil).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | var2 = civil | redir1 = HTI | redir2 = HAI </noinclude> }}" 19716 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဟေတီနိုင်ငံ | shortname alias = ဟေတီ | flag alias = Flag of Haiti.svg | flag alias-1964 = Flag of Haiti (1964-1986).svg | flag alias-civil = Flag of Haiti (civil).svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | var2 = civil | redir1 = HTI | redir2 = HAI </noinclude> }} sg9p5esrdpzj16kq1g0202zfr3t26jv တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း GHA 10 5206 19717 2026-07-16T11:34:37Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂါနာနိုင်ငံ | shortname alias = ဂါနာ | flag alias = Flag of Ghana.svg | flag alias-1964 = Ghana flag 1964.svg | flag alias-naval = Naval Ensign of Ghana.svg | flag alias-air force = Air Force Ensign of Ghana.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | redir1 = GHA | redir2 = Ghana | related1 = Gold..." 19717 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂါနာနိုင်ငံ | shortname alias = ဂါနာ | flag alias = Flag of Ghana.svg | flag alias-1964 = Ghana flag 1964.svg | flag alias-naval = Naval Ensign of Ghana.svg | flag alias-air force = Air Force Ensign of Ghana.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | redir1 = GHA | redir2 = Ghana | related1 = Gold Coast </noinclude> }} fmthvcq4yq2piwuvm8tuitchr583p6j တမ်းပလိတ်:Country data Gold Coast 10 5207 19718 2026-07-16T11:34:46Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂါနာနိုင်ငံ | shortname alias = ဂါနာ | flag alias = Flag of Ghana.svg | flag alias-1964 = Ghana flag 1964.svg | flag alias-naval = Naval Ensign of Ghana.svg | flag alias-air force = Air Force Ensign of Ghana.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | redir1 = GHA | redir2 = Ghana | related1 = Gold..." 19718 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂါနာနိုင်ငံ | shortname alias = ဂါနာ | flag alias = Flag of Ghana.svg | flag alias-1964 = Ghana flag 1964.svg | flag alias-naval = Naval Ensign of Ghana.svg | flag alias-air force = Air Force Ensign of Ghana.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | redir1 = GHA | redir2 = Ghana | related1 = Gold Coast </noinclude> }} fmthvcq4yq2piwuvm8tuitchr583p6j တမ်းပလိတ်:Country data Ghana 10 5208 19719 2026-07-16T11:34:56Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂါနာနိုင်ငံ | shortname alias = ဂါနာ | flag alias = Flag of Ghana.svg | flag alias-1964 = Ghana flag 1964.svg | flag alias-naval = Naval Ensign of Ghana.svg | flag alias-air force = Air Force Ensign of Ghana.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | redir1 = GHA | redir2 = Ghana | related1 = Gold..." 19719 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂါနာနိုင်ငံ | shortname alias = ဂါနာ | flag alias = Flag of Ghana.svg | flag alias-1964 = Ghana flag 1964.svg | flag alias-naval = Naval Ensign of Ghana.svg | flag alias-air force = Air Force Ensign of Ghana.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | redir1 = GHA | redir2 = Ghana | related1 = Gold Coast </noinclude> }} fmthvcq4yq2piwuvm8tuitchr583p6j တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း GHA 10 5209 19720 2026-07-16T11:35:16Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂါနာနိုင်ငံ | shortname alias = ဂါနာ | flag alias = Flag of Ghana.svg | flag alias-1964 = Ghana flag 1964.svg | flag alias-naval = Naval Ensign of Ghana.svg | flag alias-air force = Air Force Ensign of Ghana.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | redir1 = GHA | redir2 = Ghana | related1 = Gold..." 19720 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂါနာနိုင်ငံ | shortname alias = ဂါနာ | flag alias = Flag of Ghana.svg | flag alias-1964 = Ghana flag 1964.svg | flag alias-naval = Naval Ensign of Ghana.svg | flag alias-air force = Air Force Ensign of Ghana.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1964 | redir1 = GHA | redir2 = Ghana | related1 = Gold Coast </noinclude> }} fmthvcq4yq2piwuvm8tuitchr583p6j တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း GER 10 5210 19721 2026-07-16T11:35:57Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျာမနီနိုင်ငံ | shortname alias = ဂျာမနီ | flag alias = Flag of Germany.svg | flag alias-empire = Flag of the German Empire.svg | flag alias-Weimar = Flag of Germany (3-2 aspect ratio).svg | flag alias-1933 = Flag of Germany (1933-1935).svg | flag alias-Nazi = Flag of German Reich (1935–1945).svg | flag alias-EUA = German Olympic flag (1959-1968).svg | flag alias-naval =..." 19721 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျာမနီနိုင်ငံ | shortname alias = ဂျာမနီ | flag alias = Flag of Germany.svg | flag alias-empire = Flag of the German Empire.svg | flag alias-Weimar = Flag of Germany (3-2 aspect ratio).svg | flag alias-1933 = Flag of Germany (1933-1935).svg | flag alias-Nazi = Flag of German Reich (1935–1945).svg | flag alias-EUA = German Olympic flag (1959-1968).svg | flag alias-naval = Naval ensign of Germany.svg | border-naval = | link alias-naval = German Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = empire | var2 = Weimar | var3 = 1933 | var4 = Nazi | var5 = EUA | redir1 = DEU | redir2 = GER | redir3 = Germany | related1 = German Empire | related2 = Weimar Republic | related3 = Nazi Germany | related4 = Allied-occupied Germany | related5 = East Germany | related6 = West Germany </noinclude> }} lf9v1vy27wsjk5q5n97bukn3af6u4yq တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း GER 10 5211 19722 2026-07-16T11:36:02Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျာမနီနိုင်ငံ | shortname alias = ဂျာမနီ | flag alias = Flag of Germany.svg | flag alias-empire = Flag of the German Empire.svg | flag alias-Weimar = Flag of Germany (3-2 aspect ratio).svg | flag alias-1933 = Flag of Germany (1933-1935).svg | flag alias-Nazi = Flag of German Reich (1935–1945).svg | flag alias-EUA = German Olympic flag (1959-1968).svg | flag alias-naval =..." 19722 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဂျာမနီနိုင်ငံ | shortname alias = ဂျာမနီ | flag alias = Flag of Germany.svg | flag alias-empire = Flag of the German Empire.svg | flag alias-Weimar = Flag of Germany (3-2 aspect ratio).svg | flag alias-1933 = Flag of Germany (1933-1935).svg | flag alias-Nazi = Flag of German Reich (1935–1945).svg | flag alias-EUA = German Olympic flag (1959-1968).svg | flag alias-naval = Naval ensign of Germany.svg | border-naval = | link alias-naval = German Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = empire | var2 = Weimar | var3 = 1933 | var4 = Nazi | var5 = EUA | redir1 = DEU | redir2 = GER | redir3 = Germany | related1 = German Empire | related2 = Weimar Republic | related3 = Nazi Germany | related4 = Allied-occupied Germany | related5 = East Germany | related6 = West Germany </noinclude> }} lf9v1vy27wsjk5q5n97bukn3af6u4yq တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း FRA 10 5212 19723 2026-07-16T11:36:41Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပြင်သစ်နိုင်ငံ | shortname alias = ပြင်သစ် | flag alias = Flag of France.svg | flag alias-1790 = Flag of France (1790-1794).svg | flag alias-1814 = Flag of the Kingdom of France (1814-1830).svg | flag alias-naval = Civil and Naval Ensign of France.svg | flag alias-naval-1790 = Flag of French-Navy-Revolution.svg | link alias-naval = French Navy | size = {{{size|}}} | nam..." 19723 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပြင်သစ်နိုင်ငံ | shortname alias = ပြင်သစ် | flag alias = Flag of France.svg | flag alias-1790 = Flag of France (1790-1794).svg | flag alias-1814 = Flag of the Kingdom of France (1814-1830).svg | flag alias-naval = Civil and Naval Ensign of France.svg | flag alias-naval-1790 = Flag of French-Navy-Revolution.svg | link alias-naval = French Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1790 | var2 = 1814 | var3 = naval-1790 | redir1 = FRA | redir2 = France | related1 = Kingdom of France | related2 = Free France </noinclude> }} c2fg7lfl3qdizew3poa6896f67c9boq တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း FRA 10 5213 19724 2026-07-16T11:36:46Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပြင်သစ်နိုင်ငံ | shortname alias = ပြင်သစ် | flag alias = Flag of France.svg | flag alias-1790 = Flag of France (1790-1794).svg | flag alias-1814 = Flag of the Kingdom of France (1814-1830).svg | flag alias-naval = Civil and Naval Ensign of France.svg | flag alias-naval-1790 = Flag of French-Navy-Revolution.svg | link alias-naval = French Navy | size = {{{size|}}} | nam..." 19724 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ပြင်သစ်နိုင်ငံ | shortname alias = ပြင်သစ် | flag alias = Flag of France.svg | flag alias-1790 = Flag of France (1790-1794).svg | flag alias-1814 = Flag of the Kingdom of France (1814-1830).svg | flag alias-naval = Civil and Naval Ensign of France.svg | flag alias-naval-1790 = Flag of French-Navy-Revolution.svg | link alias-naval = French Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1790 | var2 = 1814 | var3 = naval-1790 | redir1 = FRA | redir2 = France | related1 = Kingdom of France | related2 = Free France </noinclude> }} c2fg7lfl3qdizew3poa6896f67c9boq တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း ESP 10 5214 19725 2026-07-16T11:37:26Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = စပိန်နိုင်ငံ | shortname alias = စပိန် | flag alias = Flag of Spain.svg | flag alias-1506 = Flag of Cross of Burgundy.svg | flag alias-1701 = Bandera de España 1701-1748.svg | flag alias-1748 = Bandera de España 1748-1785.svg | flag alias-1785 = Flag of Spain (1785–1873, 1875–1931).svg | flag alias-1873 = Flag of the First Spanish Republic.svg | flag alias-1931 = Flag of..." 19725 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = စပိန်နိုင်ငံ | shortname alias = စပိန် | flag alias = Flag of Spain.svg | flag alias-1506 = Flag of Cross of Burgundy.svg | flag alias-1701 = Bandera de España 1701-1748.svg | flag alias-1748 = Bandera de España 1748-1785.svg | flag alias-1785 = Flag of Spain (1785–1873, 1875–1931).svg | flag alias-1873 = Flag of the First Spanish Republic.svg | flag alias-1931 = Flag of Spain (1931–1939).svg | flag alias-1938 = Flag of Spain (1938–1945).svg | flag alias-1945 = Flag of Spain (1945–1977).svg | flag alias-1977 = Flag of Spain (1977–1981).svg | flag alias-civil = Flag of Spain (civil).svg | flag alias-civil-1785 = BandMercante1785.svg | link alias-naval = Spanish Navy | link alias-basketball = Spain {{{mw|men's}}} national {{{age|}}} basketball team | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1506 | var2 = 1701 | var3 = 1748 | var4 = 1785 | var5 = 1873 | var6 = 1931 | var7 = 1938 | var8 = 1945 | var9 = 1977 | var10 = civil-1785 | var11 = civil | redir1 = ESP | redir2 = SPA | redir3 = Spain | related1 = Spanish Republic | related2 = Spanish State </noinclude> }} 8fdp705btbmnvfs4exbamnhbx0v0qhf တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း ESP 10 5215 19726 2026-07-16T11:37:35Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = စပိန်နိုင်ငံ | shortname alias = စပိန် | flag alias = Flag of Spain.svg | flag alias-1506 = Flag of Cross of Burgundy.svg | flag alias-1701 = Bandera de España 1701-1748.svg | flag alias-1748 = Bandera de España 1748-1785.svg | flag alias-1785 = Flag of Spain (1785–1873, 1875–1931).svg | flag alias-1873 = Flag of the First Spanish Republic.svg | flag alias-1931 = Flag of..." 19726 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = စပိန်နိုင်ငံ | shortname alias = စပိန် | flag alias = Flag of Spain.svg | flag alias-1506 = Flag of Cross of Burgundy.svg | flag alias-1701 = Bandera de España 1701-1748.svg | flag alias-1748 = Bandera de España 1748-1785.svg | flag alias-1785 = Flag of Spain (1785–1873, 1875–1931).svg | flag alias-1873 = Flag of the First Spanish Republic.svg | flag alias-1931 = Flag of Spain (1931–1939).svg | flag alias-1938 = Flag of Spain (1938–1945).svg | flag alias-1945 = Flag of Spain (1945–1977).svg | flag alias-1977 = Flag of Spain (1977–1981).svg | flag alias-civil = Flag of Spain (civil).svg | flag alias-civil-1785 = BandMercante1785.svg | link alias-naval = Spanish Navy | link alias-basketball = Spain {{{mw|men's}}} national {{{age|}}} basketball team | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1506 | var2 = 1701 | var3 = 1748 | var4 = 1785 | var5 = 1873 | var6 = 1931 | var7 = 1938 | var8 = 1945 | var9 = 1977 | var10 = civil-1785 | var11 = civil | redir1 = ESP | redir2 = SPA | redir3 = Spain | related1 = Spanish Republic | related2 = Spanish State </noinclude> }} 8fdp705btbmnvfs4exbamnhbx0v0qhf တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း ENG 10 5216 19727 2026-07-16T11:38:18Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အင်္ဂလန်နိုင်ငံ | shortname alias = အင်္ဂလန် | flag alias = Flag of England.svg | flag alias-naval = English White Ensign 1620.svg | link alias-naval = Royal Navy | link alias-cricket = England {{{mw|}}} {{{age|}}} cricket team | size = {{{size|}}} | name = {{{name|}}} | variant = {{{variant|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} <noinclude> | redir..." 19727 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အင်္ဂလန်နိုင်ငံ | shortname alias = အင်္ဂလန် | flag alias = Flag of England.svg | flag alias-naval = English White Ensign 1620.svg | link alias-naval = Royal Navy | link alias-cricket = England {{{mw|}}} {{{age|}}} cricket team | size = {{{size|}}} | name = {{{name|}}} | variant = {{{variant|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} <noinclude> | redir1 = ENG </noinclude> }} d4glgx4yhjhzhcupyjc2hb54d3u9t16 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း ENG 10 5217 19728 2026-07-16T11:38:25Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အင်္ဂလန်နိုင်ငံ | shortname alias = အင်္ဂလန် | flag alias = Flag of England.svg | flag alias-naval = English White Ensign 1620.svg | link alias-naval = Royal Navy | link alias-cricket = England {{{mw|}}} {{{age|}}} cricket team | size = {{{size|}}} | name = {{{name|}}} | variant = {{{variant|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} <noinclude> | redir..." 19728 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အင်္ဂလန်နိုင်ငံ | shortname alias = အင်္ဂလန် | flag alias = Flag of England.svg | flag alias-naval = English White Ensign 1620.svg | link alias-naval = Royal Navy | link alias-cricket = England {{{mw|}}} {{{age|}}} cricket team | size = {{{size|}}} | name = {{{name|}}} | variant = {{{variant|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} <noinclude> | redir1 = ENG </noinclude> }} d4glgx4yhjhzhcupyjc2hb54d3u9t16 တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း EGY 10 5218 19729 2026-07-16T11:39:06Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီဂျစ်နိုင်ငံ | shortname alias = အီဂျစ် | flag alias = Flag of Egypt.svg | flag alias-Ottoman = Flag of Egypt 19th century.svg | flag alias-1882 = Egypt flag 1882.svg | flag alias-1922 = Flag of Egypt 1922.svg | flag alias-1952 = Flag of Egypt 1952.svg | flag alias-UAR = Flag of the United Arab Republic.svg | flag alias-1972 = Flag of Egypt 1972.svg | flag alias-naval = N..." 19729 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီဂျစ်နိုင်ငံ | shortname alias = အီဂျစ် | flag alias = Flag of Egypt.svg | flag alias-Ottoman = Flag of Egypt 19th century.svg | flag alias-1882 = Egypt flag 1882.svg | flag alias-1922 = Flag of Egypt 1922.svg | flag alias-1952 = Flag of Egypt 1952.svg | flag alias-UAR = Flag of the United Arab Republic.svg | flag alias-1972 = Flag of Egypt 1972.svg | flag alias-naval = Naval Ensign of Egypt.svg | link alias-naval = Egyptian Navy | flag alias-air force = Air Force Ensign of Egypt.svg | link alias-air force = Egyptian Air Force | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = Ottoman | var2 = 1882 | var3 = 1922 | var4 = 1952 | var5 = UAR | var6 = 1972 | redir1 = EGY | related1 = United Arab Republic </noinclude> }}<noinclude> </noinclude> 3lnenu0ebmzcecewqg0x58j4srobemp တမ်းပလိတ်:Country data United Arab Republic 10 5219 19730 2026-07-16T11:39:18Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီဂျစ်နိုင်ငံ | shortname alias = အီဂျစ် | flag alias = Flag of Egypt.svg | flag alias-Ottoman = Flag of Egypt 19th century.svg | flag alias-1882 = Egypt flag 1882.svg | flag alias-1922 = Flag of Egypt 1922.svg | flag alias-1952 = Flag of Egypt 1952.svg | flag alias-UAR = Flag of the United Arab Republic.svg | flag alias-1972 = Flag of Egypt 1972.svg | flag alias-naval = N..." 19730 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီဂျစ်နိုင်ငံ | shortname alias = အီဂျစ် | flag alias = Flag of Egypt.svg | flag alias-Ottoman = Flag of Egypt 19th century.svg | flag alias-1882 = Egypt flag 1882.svg | flag alias-1922 = Flag of Egypt 1922.svg | flag alias-1952 = Flag of Egypt 1952.svg | flag alias-UAR = Flag of the United Arab Republic.svg | flag alias-1972 = Flag of Egypt 1972.svg | flag alias-naval = Naval Ensign of Egypt.svg | link alias-naval = Egyptian Navy | flag alias-air force = Air Force Ensign of Egypt.svg | link alias-air force = Egyptian Air Force | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = Ottoman | var2 = 1882 | var3 = 1922 | var4 = 1952 | var5 = UAR | var6 = 1972 | redir1 = EGY | related1 = United Arab Republic </noinclude> }}<noinclude> </noinclude> 3lnenu0ebmzcecewqg0x58j4srobemp တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း EGY 10 5220 19731 2026-07-16T11:39:23Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီဂျစ်နိုင်ငံ | shortname alias = အီဂျစ် | flag alias = Flag of Egypt.svg | flag alias-Ottoman = Flag of Egypt 19th century.svg | flag alias-1882 = Egypt flag 1882.svg | flag alias-1922 = Flag of Egypt 1922.svg | flag alias-1952 = Flag of Egypt 1952.svg | flag alias-UAR = Flag of the United Arab Republic.svg | flag alias-1972 = Flag of Egypt 1972.svg | flag alias-naval = N..." 19731 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီဂျစ်နိုင်ငံ | shortname alias = အီဂျစ် | flag alias = Flag of Egypt.svg | flag alias-Ottoman = Flag of Egypt 19th century.svg | flag alias-1882 = Egypt flag 1882.svg | flag alias-1922 = Flag of Egypt 1922.svg | flag alias-1952 = Flag of Egypt 1952.svg | flag alias-UAR = Flag of the United Arab Republic.svg | flag alias-1972 = Flag of Egypt 1972.svg | flag alias-naval = Naval Ensign of Egypt.svg | link alias-naval = Egyptian Navy | flag alias-air force = Air Force Ensign of Egypt.svg | link alias-air force = Egyptian Air Force | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = Ottoman | var2 = 1882 | var3 = 1922 | var4 = 1952 | var5 = UAR | var6 = 1972 | redir1 = EGY | related1 = United Arab Republic </noinclude> }}<noinclude> </noinclude> 3lnenu0ebmzcecewqg0x58j4srobemp တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း ECU 10 5221 19732 2026-07-16T11:39:59Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီကွေဒေါနိုင်ငံ | shortname alias = အီကွေဒေါ | flag alias = Flag of Ecuador.svg | flag alias-civil = Civil flag and ensign of Ecuador.svg | flag alias-1845 = Flag of Ecuador (1845–1860).svg | flag alias-naval = Flag of Ecuador.svg | link alias-naval = Ecuadorian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}}..." 19732 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီကွေဒေါနိုင်ငံ | shortname alias = အီကွေဒေါ | flag alias = Flag of Ecuador.svg | flag alias-civil = Civil flag and ensign of Ecuador.svg | flag alias-1845 = Flag of Ecuador (1845–1860).svg | flag alias-naval = Flag of Ecuador.svg | link alias-naval = Ecuadorian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1845 | var2 = civil | redir1 = ECU </noinclude> }} q1q25dw8u6z0jxu3eu63im1krik6fzi တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း ECU 10 5222 19733 2026-07-16T11:40:05Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီကွေဒေါနိုင်ငံ | shortname alias = အီကွေဒေါ | flag alias = Flag of Ecuador.svg | flag alias-civil = Civil flag and ensign of Ecuador.svg | flag alias-1845 = Flag of Ecuador (1845–1860).svg | flag alias-naval = Flag of Ecuador.svg | link alias-naval = Ecuadorian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}}..." 19733 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = အီကွေဒေါနိုင်ငံ | shortname alias = အီကွေဒေါ | flag alias = Flag of Ecuador.svg | flag alias-civil = Civil flag and ensign of Ecuador.svg | flag alias-1845 = Flag of Ecuador (1845–1860).svg | flag alias-naval = Flag of Ecuador.svg | link alias-naval = Ecuadorian Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1845 | var2 = civil | redir1 = ECU </noinclude> }} q1q25dw8u6z0jxu3eu63im1krik6fzi တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း CZE 10 5223 19734 2026-07-16T11:40:44Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ချက်သမ္မတနိုင်ငံ | shortname alias = ချက်သမ္မတနိုင်ငံ | flag alias = Flag of the Czech Republic.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = CZE | redir2 = Czech Republic | related1 = Czechoslovakia </noinclude> }}" 19734 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ချက်သမ္မတနိုင်ငံ | shortname alias = ချက်သမ္မတနိုင်ငံ | flag alias = Flag of the Czech Republic.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = CZE | redir2 = Czech Republic | related1 = Czechoslovakia </noinclude> }} tn20ol9643xhi9de45mdvao8ezzi0tm တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း CZE 10 5224 19735 2026-07-16T11:40:51Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ချက်သမ္မတနိုင်ငံ | shortname alias = ချက်သမ္မတနိုင်ငံ | flag alias = Flag of the Czech Republic.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = CZE | redir2 = Czech Republic | related1 = Czechoslovakia </noinclude> }}" 19735 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ချက်သမ္မတနိုင်ငံ | shortname alias = ချက်သမ္မတနိုင်ငံ | flag alias = Flag of the Czech Republic.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = CZE | redir2 = Czech Republic | related1 = Czechoslovakia </noinclude> }} tn20ol9643xhi9de45mdvao8ezzi0tm တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း UZB 10 5225 19736 2026-07-16T11:42:27Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥဇဘက်ကစ္စတန်နိုင်ငံ | shortname alias = ဥဇဘက်ကစ္စတန် | flag alias = Flag of Uzbekistan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = UZB | related1 = Uzbek SSR </noinclude> }}<noinclude></noinclude>" 19736 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥဇဘက်ကစ္စတန်နိုင်ငံ | shortname alias = ဥဇဘက်ကစ္စတန် | flag alias = Flag of Uzbekistan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = UZB | related1 = Uzbek SSR </noinclude> }}<noinclude></noinclude> a8r4201l21ddcs1vinbogacsap6ztrj တမ်းပလိတ်:Country data Uzbek SSR 10 5226 19737 2026-07-16T11:44:14Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥဇဘက်ကစ္စတန်နိုင်ငံ | shortname alias = ဥဇဘက်ကစ္စတန် | flag alias = Flag of Uzbekistan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = UZB | related1 = Uzbek SSR </noinclude> }}<noinclude></noinclude>" 19737 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥဇဘက်ကစ္စတန်နိုင်ငံ | shortname alias = ဥဇဘက်ကစ္စတန် | flag alias = Flag of Uzbekistan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = UZB | related1 = Uzbek SSR </noinclude> }}<noinclude></noinclude> a8r4201l21ddcs1vinbogacsap6ztrj တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း UZB 10 5227 19738 2026-07-16T11:44:20Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥဇဘက်ကစ္စတန်နိုင်ငံ | shortname alias = ဥဇဘက်ကစ္စတန် | flag alias = Flag of Uzbekistan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = UZB | related1 = Uzbek SSR </noinclude> }}<noinclude></noinclude>" 19738 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥဇဘက်ကစ္စတန်နိုင်ငံ | shortname alias = ဥဇဘက်ကစ္စတန် | flag alias = Flag of Uzbekistan.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = UZB | related1 = Uzbek SSR </noinclude> }}<noinclude></noinclude> a8r4201l21ddcs1vinbogacsap6ztrj တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း USA 10 5228 19739 2026-07-16T11:45:01Z YaThaWinTha 42 Created page with "{{safesubst<noinclude />: {{{1<noinclude>|country showdata</noinclude>}}} | alias = အမေရိကန်ပြည်ထောင်စု | shortname alias = အမေရိကန် | flag alias = Flag of the United States.svg | flag alias-1776 = Flag of the United States (1776–1777).svg | flag alias-1777 = Flag of the United States (1777–1795).svg | flag alias-1777-Ross = Betsy Ross flag.svg | flag alias-1795 = Flag of the United States (1795-1818).svg | flag a..." 19739 wikitext text/x-wiki {{safesubst<noinclude />: {{{1<noinclude>|country showdata</noinclude>}}} | alias = အမေရိကန်ပြည်ထောင်စု | shortname alias = အမေရိကန် | flag alias = Flag of the United States.svg | flag alias-1776 = Flag of the United States (1776–1777).svg | flag alias-1777 = Flag of the United States (1777–1795).svg | flag alias-1777-Ross = Betsy Ross flag.svg | flag alias-1795 = Flag of the United States (1795-1818).svg | flag alias-1795FM = Flag of the United States (1795–1818).svg | flag alias-1818 = Flag of the United States (1818-1819).svg | flag alias-1819 = Flag of the United States (1819-1820).svg | flag alias-1820 = Flag of the United States (1820-1822).svg | flag alias-1822 = Flag of the United States (1822–1836).svg | flag alias-1836 = Flag of the United States (1836-1837).svg | flag alias-1837 = Flag of the United States (1837-1845).svg | flag alias-1845 = Flag of the United States (1845-1846).svg | flag alias-1846 = Flag of the United States (1846-1847).svg | flag alias-1847 = Flag of the United States (1847-1848).svg | flag alias-1848 = Flag of the United States (1848-1851).svg | flag alias-1851 = Flag of the United States (1851-1858).svg | flag alias-1858 = Flag of the United States (1858-1859).svg | flag alias-1859 = Flag of the United States (1859-1861).svg | flag alias-1861 = Flag of the United States (1861-1863).svg | flag alias-1863 = Flag of the United States (1863–1865).svg | flag alias-1865 = Flag of the United States (1865-1867).svg | flag alias-1867 = Flag of the United States (1867-1877).svg | flag alias-1877 = Flag of the United States (1877-1890).svg | flag alias-1890 = Flag of the United States (1890-1891).svg | flag alias-1891 = Flag of the United States (1891-1896).svg | flag alias-1896 = Flag of the United States (1896-1908).svg | flag alias-1908 = Flag of the United States (1908-1912).svg | flag alias-1912 = Flag of the United States (1912-1959).svg | flag alias-1959 = Flag of the United States (1959–1960).svg | flag alias-1960 = Flag of the United States (Web Colors).svg | flag alias-pantone = Flag of the United States (Pantone).svg | flag alias-yacht = United States yacht flag.svg | flag alias-air force = Flag of the United States Air Force.svg | link alias-air force = အမေရိကန်ပြည်ထောင်စု လီတပ်မတော် | flag alias-coast guard-1799 = Ensign of the United States Revenue-Marine (1799).png | flag alias-coast guard-1815 = Ensign of the United States Revenue-Marine (1815).png | flag alias-coast guard-1836 = Ensign of the United States Revenue-Marine (1836).png | flag alias-coast guard-1841 = Ensign of the United States Revenue-Marine (1841).png | flag alias-coast guard-1867 = Ensign of the United States Revenue-Marine (1867).png | flag alias-coast guard-1868 = Ensign of the United States Revenue-Marine (1868).png | flag alias-coast guard-1915 = Ensign of the United States Coast Guard (1915-1953).png | flag alias-coast guard-1953 = Ensign of the United States Coast Guard.svg | flag alias-coast guard = Flag of the United States Coast Guard.svg | link alias-coast guard = {{#switch:{{{variant|}}}|coast guard|coast guard-1915=အမေရိကန်ပြည်ထောင်စု ကမ်းခြီစောင့်တပ်ဖွဲ့|coast guard-1894=United States Revenue Cutter Service|coast guard-1799|coast guard-1815|coast guard-1836|coast guard-1841|coast guard-1867|coast guard-1868=United States Revenue-Marine|အမေရိကန်ပြည်ထောင်စု ကမ်းခြီစောင့်တပ်ဖွဲ့}} | flag alias-army = Flag of the United States Army.svg | link alias-army = အမေရိကန်ပြည်ထောင်စု ကြည်းတပ်မတော် | flag alias-naval-1864 = Flag of the United States Navy (1864-1959).svg | flag alias-naval = Flag of the United States Navy.svg | link alias-naval = {{#switch:{{{variant|}}}|navy|coast guard-1915=အမေရိကန်ပြည်ထောင်စု ကမ်းခြီစောင့်တပ်ဖွဲ့|အမေရိကန်ပြည်ထောင်စု ကမ်းခြီစောင့်တပ်ဖွဲ့|အမေရိကန်ပြည်ထောင်စု ရီတပ်မတော်}} | link alias-marines = {{#switch:{{{variant|}}}|marines|marines-1914=အမေရိကန်ပြည်ထောင်စု အဏ္ဏဝါတပ်ဖွဲ့|အမေရိကန်ပြည်ထောင်စု အဏ္ဏဝါတပ်ဖွဲ့}} | flag alias-marines-1914 = Flag of the United States Marine Corps (1914-1939).png | flag alias-marines = Flag of the United States Marine Corps.svg | link alias-merchant marine = အမေရိကန်ပြည်ထောင်စု ကုန်သွယ်ရီကြောင်းတပ်ဖွဲ့ | flag alias-merchant marine = Flag of the United States Merchant Marine Higher Resolution.jpg | flag alias-space force = Flag of the United States Space Force.svg | link alias-space force = အမေရိကန်ပြည်ထောင်စု အာကာသတပ်မတော် | link alias-military = အမေရိကန်ပြည်ထောင်စု တပ်မတော် | link alias-football = United States {{#ifeq:{{{mw|}}}|Olympic|men's|{{{mw|men's}}}}} national {{{age|{{#ifeq:{{{mw|}}}|Olympic|under-23}}}}} soccer team | link alias-Australian rules football = United States {{{mw|men's}}} national Australian rules football team | flag alias-23px = Flag of the United States (23px).png | {{#ifeq:{{{altlink}}}|A national rugby union team|link alias-rugby union|empty}} = ယူအက်စ်အေ လက်ရွေးစင် | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1776 | var2 = 1777 | var3 = 1777-Ross | var4 = 1795 | var5 = 1795FM | var6 = 1818 | var7 = 1819 | var8 = 1820 | var9 = 1822 | var10 = 1836 | var11 = 1837 | var12 = 1845 | var13 = 1846 | var14 = 1847 | var15 = 1848 | var16 = 1851 | var17 = 1858 | var18 = 1859 | var19 = 1861 | var20 = 1863 | var21 = 1865 | var22 = 1867 | var23 = 1877 | var24 = 1890 | var25 = 1891 | var26 = 1896 | var27 = 1908 | var28 = 1912 | var29 = 1959 | var30 = 1960 | var31 = pantone | var32 = 23px | var33 = yacht | var34 = coast guard-1915 | var35 = coast guard-1953 | var36 = marines-1914 | redir1 = USA | redir2 = US | redir3 = United States of America | redir4 = U.S. </noinclude> }} h5nqtl8r3zy7sw89fjwkhtl36iosz2q တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း USA 10 5229 19740 2026-07-16T11:45:07Z YaThaWinTha 42 Created page with "{{safesubst<noinclude />: {{{1<noinclude>|country showdata</noinclude>}}} | alias = အမေရိကန်ပြည်ထောင်စု | shortname alias = အမေရိကန် | flag alias = Flag of the United States.svg | flag alias-1776 = Flag of the United States (1776–1777).svg | flag alias-1777 = Flag of the United States (1777–1795).svg | flag alias-1777-Ross = Betsy Ross flag.svg | flag alias-1795 = Flag of the United States (1795-1818).svg | flag a..." 19740 wikitext text/x-wiki {{safesubst<noinclude />: {{{1<noinclude>|country showdata</noinclude>}}} | alias = အမေရိကန်ပြည်ထောင်စု | shortname alias = အမေရိကန် | flag alias = Flag of the United States.svg | flag alias-1776 = Flag of the United States (1776–1777).svg | flag alias-1777 = Flag of the United States (1777–1795).svg | flag alias-1777-Ross = Betsy Ross flag.svg | flag alias-1795 = Flag of the United States (1795-1818).svg | flag alias-1795FM = Flag of the United States (1795–1818).svg | flag alias-1818 = Flag of the United States (1818-1819).svg | flag alias-1819 = Flag of the United States (1819-1820).svg | flag alias-1820 = Flag of the United States (1820-1822).svg | flag alias-1822 = Flag of the United States (1822–1836).svg | flag alias-1836 = Flag of the United States (1836-1837).svg | flag alias-1837 = Flag of the United States (1837-1845).svg | flag alias-1845 = Flag of the United States (1845-1846).svg | flag alias-1846 = Flag of the United States (1846-1847).svg | flag alias-1847 = Flag of the United States (1847-1848).svg | flag alias-1848 = Flag of the United States (1848-1851).svg | flag alias-1851 = Flag of the United States (1851-1858).svg | flag alias-1858 = Flag of the United States (1858-1859).svg | flag alias-1859 = Flag of the United States (1859-1861).svg | flag alias-1861 = Flag of the United States (1861-1863).svg | flag alias-1863 = Flag of the United States (1863–1865).svg | flag alias-1865 = Flag of the United States (1865-1867).svg | flag alias-1867 = Flag of the United States (1867-1877).svg | flag alias-1877 = Flag of the United States (1877-1890).svg | flag alias-1890 = Flag of the United States (1890-1891).svg | flag alias-1891 = Flag of the United States (1891-1896).svg | flag alias-1896 = Flag of the United States (1896-1908).svg | flag alias-1908 = Flag of the United States (1908-1912).svg | flag alias-1912 = Flag of the United States (1912-1959).svg | flag alias-1959 = Flag of the United States (1959–1960).svg | flag alias-1960 = Flag of the United States (Web Colors).svg | flag alias-pantone = Flag of the United States (Pantone).svg | flag alias-yacht = United States yacht flag.svg | flag alias-air force = Flag of the United States Air Force.svg | link alias-air force = အမေရိကန်ပြည်ထောင်စု လီတပ်မတော် | flag alias-coast guard-1799 = Ensign of the United States Revenue-Marine (1799).png | flag alias-coast guard-1815 = Ensign of the United States Revenue-Marine (1815).png | flag alias-coast guard-1836 = Ensign of the United States Revenue-Marine (1836).png | flag alias-coast guard-1841 = Ensign of the United States Revenue-Marine (1841).png | flag alias-coast guard-1867 = Ensign of the United States Revenue-Marine (1867).png | flag alias-coast guard-1868 = Ensign of the United States Revenue-Marine (1868).png | flag alias-coast guard-1915 = Ensign of the United States Coast Guard (1915-1953).png | flag alias-coast guard-1953 = Ensign of the United States Coast Guard.svg | flag alias-coast guard = Flag of the United States Coast Guard.svg | link alias-coast guard = {{#switch:{{{variant|}}}|coast guard|coast guard-1915=အမေရိကန်ပြည်ထောင်စု ကမ်းခြီစောင့်တပ်ဖွဲ့|coast guard-1894=United States Revenue Cutter Service|coast guard-1799|coast guard-1815|coast guard-1836|coast guard-1841|coast guard-1867|coast guard-1868=United States Revenue-Marine|အမေရိကန်ပြည်ထောင်စု ကမ်းခြီစောင့်တပ်ဖွဲ့}} | flag alias-army = Flag of the United States Army.svg | link alias-army = အမေရိကန်ပြည်ထောင်စု ကြည်းတပ်မတော် | flag alias-naval-1864 = Flag of the United States Navy (1864-1959).svg | flag alias-naval = Flag of the United States Navy.svg | link alias-naval = {{#switch:{{{variant|}}}|navy|coast guard-1915=အမေရိကန်ပြည်ထောင်စု ကမ်းခြီစောင့်တပ်ဖွဲ့|အမေရိကန်ပြည်ထောင်စု ကမ်းခြီစောင့်တပ်ဖွဲ့|အမေရိကန်ပြည်ထောင်စု ရီတပ်မတော်}} | link alias-marines = {{#switch:{{{variant|}}}|marines|marines-1914=အမေရိကန်ပြည်ထောင်စု အဏ္ဏဝါတပ်ဖွဲ့|အမေရိကန်ပြည်ထောင်စု အဏ္ဏဝါတပ်ဖွဲ့}} | flag alias-marines-1914 = Flag of the United States Marine Corps (1914-1939).png | flag alias-marines = Flag of the United States Marine Corps.svg | link alias-merchant marine = အမေရိကန်ပြည်ထောင်စု ကုန်သွယ်ရီကြောင်းတပ်ဖွဲ့ | flag alias-merchant marine = Flag of the United States Merchant Marine Higher Resolution.jpg | flag alias-space force = Flag of the United States Space Force.svg | link alias-space force = အမေရိကန်ပြည်ထောင်စု အာကာသတပ်မတော် | link alias-military = အမေရိကန်ပြည်ထောင်စု တပ်မတော် | link alias-football = United States {{#ifeq:{{{mw|}}}|Olympic|men's|{{{mw|men's}}}}} national {{{age|{{#ifeq:{{{mw|}}}|Olympic|under-23}}}}} soccer team | link alias-Australian rules football = United States {{{mw|men's}}} national Australian rules football team | flag alias-23px = Flag of the United States (23px).png | {{#ifeq:{{{altlink}}}|A national rugby union team|link alias-rugby union|empty}} = ယူအက်စ်အေ လက်ရွေးစင် | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1776 | var2 = 1777 | var3 = 1777-Ross | var4 = 1795 | var5 = 1795FM | var6 = 1818 | var7 = 1819 | var8 = 1820 | var9 = 1822 | var10 = 1836 | var11 = 1837 | var12 = 1845 | var13 = 1846 | var14 = 1847 | var15 = 1848 | var16 = 1851 | var17 = 1858 | var18 = 1859 | var19 = 1861 | var20 = 1863 | var21 = 1865 | var22 = 1867 | var23 = 1877 | var24 = 1890 | var25 = 1891 | var26 = 1896 | var27 = 1908 | var28 = 1912 | var29 = 1959 | var30 = 1960 | var31 = pantone | var32 = 23px | var33 = yacht | var34 = coast guard-1915 | var35 = coast guard-1953 | var36 = marines-1914 | redir1 = USA | redir2 = US | redir3 = United States of America | redir4 = U.S. </noinclude> }} h5nqtl8r3zy7sw89fjwkhtl36iosz2q တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း URU 10 5230 19741 2026-07-16T11:45:40Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥရုဂွေးနိုင်ငံ | shortname alias = ဥရုဂွေး | flag alias = Flag of Uruguay.svg | link alias-naval = Uruguayan Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = URY | redir2 = URU </noinclude> }}<noinclude></noinclude>" 19741 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥရုဂွေးနိုင်ငံ | shortname alias = ဥရုဂွေး | flag alias = Flag of Uruguay.svg | link alias-naval = Uruguayan Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = URY | redir2 = URU </noinclude> }}<noinclude></noinclude> qsblj24i5apnyq2pw0ez0m2veozopz2 တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း URU 10 5231 19742 2026-07-16T11:45:45Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥရုဂွေးနိုင်ငံ | shortname alias = ဥရုဂွေး | flag alias = Flag of Uruguay.svg | link alias-naval = Uruguayan Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = URY | redir2 = URU </noinclude> }}<noinclude></noinclude>" 19742 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = ဥရုဂွေးနိုင်ငံ | shortname alias = ဥရုဂွေး | flag alias = Flag of Uruguay.svg | link alias-naval = Uruguayan Navy | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} <noinclude> | redir1 = URY | redir2 = URU </noinclude> }}<noinclude></noinclude> qsblj24i5apnyq2pw0ez0m2veozopz2 တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း TUR 10 5232 19743 2026-07-16T11:46:21Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူရကီနိုင်ငံ | shortname alias = တူရကီ | flag alias = Flag of Turkey.svg | link alias-naval = Turkish Navy | link alias-army = Turkish Army | link alias-air force = Turkish Air Force | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} <noinclude> | redir1 = TUR | redir2 = Turkey | related1 = Ottoman Empire </noinclude> }}" 19743 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူရကီနိုင်ငံ | shortname alias = တူရကီ | flag alias = Flag of Turkey.svg | link alias-naval = Turkish Navy | link alias-army = Turkish Army | link alias-air force = Turkish Air Force | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} <noinclude> | redir1 = TUR | redir2 = Turkey | related1 = Ottoman Empire </noinclude> }} 1lenqzxjgskcdkkc48y8pjopvn5etfb တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း TUR 10 5233 19744 2026-07-16T11:46:26Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူရကီနိုင်ငံ | shortname alias = တူရကီ | flag alias = Flag of Turkey.svg | link alias-naval = Turkish Navy | link alias-army = Turkish Army | link alias-air force = Turkish Air Force | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} <noinclude> | redir1 = TUR | redir2 = Turkey | related1 = Ottoman Empire </noinclude> }}" 19744 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူရကီနိုင်ငံ | shortname alias = တူရကီ | flag alias = Flag of Turkey.svg | link alias-naval = Turkish Navy | link alias-army = Turkish Army | link alias-air force = Turkish Air Force | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} <noinclude> | redir1 = TUR | redir2 = Turkey | related1 = Ottoman Empire </noinclude> }} 1lenqzxjgskcdkkc48y8pjopvn5etfb တမ်းပလိတ်:Country data နိုင်ငံ စာရင်းအင်း TUN 10 5234 19745 2026-07-16T11:46:59Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူနီးရှားနိုင်ငံ | shortname alias = တူနီးရှား | flag alias = Flag of Tunisia.svg | flag alias-1959 = Pre-1999 Flag of Tunisia.svg | flag alias-french = Flag of Tunisia with French canton.svg | flag alias-old = Tunisian flag till 1831.svg | flag alias-bey = Flag of Tunis Bey-fr.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant =..." 19745 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူနီးရှားနိုင်ငံ | shortname alias = တူနီးရှား | flag alias = Flag of Tunisia.svg | flag alias-1959 = Pre-1999 Flag of Tunisia.svg | flag alias-french = Flag of Tunisia with French canton.svg | flag alias-old = Tunisian flag till 1831.svg | flag alias-bey = Flag of Tunis Bey-fr.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1959 | var2 = french | var3 = old | var4 = bey | redir1 = TUN | redir2 = Tunisia </noinclude> }} flllr9cqvrml378knnq1j0tngx4i2zi တမ်းပလိတ်:Country data Tunisia 10 5235 19746 2026-07-16T11:47:09Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူနီးရှားနိုင်ငံ | shortname alias = တူနီးရှား | flag alias = Flag of Tunisia.svg | flag alias-1959 = Pre-1999 Flag of Tunisia.svg | flag alias-french = Flag of Tunisia with French canton.svg | flag alias-old = Tunisian flag till 1831.svg | flag alias-bey = Flag of Tunis Bey-fr.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant =..." 19746 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူနီးရှားနိုင်ငံ | shortname alias = တူနီးရှား | flag alias = Flag of Tunisia.svg | flag alias-1959 = Pre-1999 Flag of Tunisia.svg | flag alias-french = Flag of Tunisia with French canton.svg | flag alias-old = Tunisian flag till 1831.svg | flag alias-bey = Flag of Tunis Bey-fr.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1959 | var2 = french | var3 = old | var4 = bey | redir1 = TUN | redir2 = Tunisia </noinclude> }} flllr9cqvrml378knnq1j0tngx4i2zi တမ်းပလိတ်:နိုင်ငံ စာရင်းအင်း TUN 10 5236 19747 2026-07-16T11:47:16Z YaThaWinTha 42 Created page with "{{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူနီးရှားနိုင်ငံ | shortname alias = တူနီးရှား | flag alias = Flag of Tunisia.svg | flag alias-1959 = Pre-1999 Flag of Tunisia.svg | flag alias-french = Flag of Tunisia with French canton.svg | flag alias-old = Tunisian flag till 1831.svg | flag alias-bey = Flag of Tunis Bey-fr.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant =..." 19747 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = တူနီးရှားနိုင်ငံ | shortname alias = တူနီးရှား | flag alias = Flag of Tunisia.svg | flag alias-1959 = Pre-1999 Flag of Tunisia.svg | flag alias-french = Flag of Tunisia with French canton.svg | flag alias-old = Tunisian flag till 1831.svg | flag alias-bey = Flag of Tunis Bey-fr.svg | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1959 | var2 = french | var3 = old | var4 = bey | redir1 = TUN | redir2 = Tunisia </noinclude> }} flllr9cqvrml378knnq1j0tngx4i2zi တမ်းပလိတ်:Country flaglink right 10 5237 19748 2026-07-16T11:51:53Z YaThaWinTha 42 Created page with "[[{{{link alias-{{{altvar}}}|{{{shortname alias|{{{alias}}}}}} {{{altlink}}}}}}|{{#if:{{{name|}}}|{{{name}}}|{{{name alias-{{{altvar}}}|{{{shortname alias|{{{alias}}}}}}}}}}}]]<span class="flagicon">&nbsp;[[File:{{#if:{{{variant|}}}|{{{flag alias-{{{variant}}}}}}|{{{flag alias-{{{altvar}}}|{{{flag alias}}}}}}}}|{{#if:{{{size|}}}|{{{size}}}|22x20px}}|{{{border-{{{variant}}}|{{{border-{{{altvar}}}|{{{border|border}}}}}}}}} |alt=|link=]]</span><noinclude>{{documentation}}</..." 19748 wikitext text/x-wiki [[{{{link alias-{{{altvar}}}|{{{shortname alias|{{{alias}}}}}} {{{altlink}}}}}}|{{#if:{{{name|}}}|{{{name}}}|{{{name alias-{{{altvar}}}|{{{shortname alias|{{{alias}}}}}}}}}}}]]<span class="flagicon">&nbsp;[[File:{{#if:{{{variant|}}}|{{{flag alias-{{{variant}}}}}}|{{{flag alias-{{{altvar}}}|{{{flag alias}}}}}}}}|{{#if:{{{size|}}}|{{{size}}}|22x20px}}|{{{border-{{{variant}}}|{{{border-{{{altvar}}}|{{{border|border}}}}}}}}} |alt=|link=]]</span><noinclude>{{documentation}}</noinclude> cjteg87g9cg3wm6kxc94xcjfgr9s4sw