Module:DartsRankings/data/EADC Players
Appearance
local data = {}
-- list of currently ranked EADC players by last name with:
-- { "Name" , "Country" , "First" , "Last" , "disambiguation" },
-- Name in first entry should match EADC listing (case insensitive)
-- 2nd entry is the 3 letter country code for the player
-- 3rd entry should be the first name (for sorting purposes) of the wikipedia page
-- 4th entry should be the last name (for sorting purposes) of the wikipedia page
-- 5th entry iundicates if the page exists (to reduce redlinks)
--[[6th entry is optional, and is the disambiguator for page (for Template:Sortname) ]]--
data.library = {
{ "Vladimir Akshulakov" , "RUS" , "Vladimir" , "Akshulakov" , 0 },
{ "Maxim Aldoshin" , "RUS" , "Maxim" , "Aldoshin" , 0 },
{ "Maxim Belov" , "RUS" , "Maxim" , "Belov" , 0 },
{ "Dmitriy Gorbunov" , "RUS" , "Dmitriy" , "Gorbunov" , 1 },
{ "Evgenii Izotov" , "RUS" , "Evgenii" , "Izotov" , 0 },
{ "Aleksei Kadochnikov" , "RUS" , "Aleksei" , "Kadochnikov" , 1 },
{ "Vitaliy Khohryakov" , "RUS" , "Vitaliy" , "Khohryakov" , 0 },
{ "Anton Kolesov" , "RUS" , "Anton" , "Kolesov" , 0 },
{ "Boris Koltsov" , "RUS" , "Boris" , "Koltsov" , 1 },
{ "Pavel Levenkov" , "RUS" , "Pavel" , "Levenkov" , 0 },
{ "Dmitry Lushankov" , "BLR" , "Dmitry" , "Lushankov" , 0 },
{ "Aleksandr Nelaev" , "RUS" , "Aleksandr" , "Nelaev" , 0 },
{ "Roman Obukhov" , "RUS" , "Roman" , "Obukhov" , 0 },
{ "Vladimir Pisarev" , "RUS" , "Vladimir" , "Pisarev" , 0 },
{ "Andrey Pontus" , "BLR" , "Andrey" , "Pontus" , 0 },
{ "Andrey Pryalkin" , "RUS" , "Andrey" , "Pryalkin" , 0 },
{ "Dmitri Shepkin" , "RUS" , "Dmitri" , "Shepkin" , 0 },
{ "Dmitriy Sitkarev" , "RUS" , "Dmitriy" , "Sitkarev" , 0 },
{ "Oleg Soldatov" , "RUS" , "Oleg" , "Soldatov" , 0 },
{ "Dmitry Zhavaronkov" , "RUS" , "Dmitry" , "Zhavaronkov" , 0 },
}
return data