--[[
    Each team must have a table with the following keys:
    code: A short code of 2-4 letters (uppercase) to represent the team.
    fullName: The full name of the team.
    shortName: The short name of the team, usually the location in which it is based.
    pageName: The title of the team's article on Wikipedia. This is usually the team's full name, but if disambiguation is
              needed, it may be different.
    startYear: The year in which the team first played with that name.
    endYear: The year in which the team last played with that name (for renamed teams) or last played (for defunct teams)

    This module is to be used with mw.loadData(). It should NOT contain functions!
]]

return {

    {
        code       = "AFG",
        fullName   = "Afghanistan",
        shortName  = "Afghanistan",
        pageName   = "Afghanistan national cricket team",
    },

    {
        code       = "AUS",
        fullName   = "Australia",
        shortName  = "Australia",
        pageName   = "Australia national cricket team",
    },

    {
        code       = "BAN",
        fullName   = "Bangladesh",
        shortName  = "Bangladesh",
        pageName   = "Bangladesh national cricket team",
    },

    {
        code       = "CAN",
        fullName   = "Canada",
        shortName  = "Canada",
        pageName   = "Canada national cricket team",
    },

    {
        code       = "ENG",
        fullName   = "England",
        shortName  = "England",
        pageName   = "England cricket team",
    },

    {
        code       = "IND",
        fullName   = "India",
        shortName  = "India",
        pageName   = "India national cricket team",
    },

    {
        code       = "IRE",
        fullName   = "Ireland",
        shortName  = "Ireland",
        pageName   = "Ireland cricket team",
    },

    {
        code       = "NAM",
        fullName   = "Namibia",
        shortName  = "Namibia",
        pageName   = "Namibia national cricket team",
    },

    {
        code       = "NEP",
        fullName   = "Nepal",
        shortName  = "Nepal",
        pageName   = "Nepal national cricket team",
    },

    {
        code       = "NED",
        fullName   = "Netherlands",
        shortName  = "Netherlands",
        pageName   = "Netherlands national cricket team",
    },

    {
        code       = "NZ",
        fullName   = "New Zealand",
        shortName  = "New Zealand",
        pageName   = "New Zealand national cricket team",
    },

    {
        code       = "OMA",
        fullName   = "Oman",
        shortName  = "Oman",
        pageName   = "Oman national cricket team",
    },

    {
        code       = "PAK",
        fullName   = "Pakistan",
        shortName  = "Pakistan",
        pageName   = "Pakistan national cricket team",
    },

    {
        code       = "PNG",
        fullName   = "Papua New Guinea",
        shortName  = "Papua New Guinea",
        pageName   = "Papua New Guinea national cricket team",
    },

    {
        code       = "SCO",
        fullName   = "Scotland",
        shortName  = "Scotland",
        pageName   = "Scotland national cricket team",
    },

    {
        code       = "SA",
        fullName   = "South Africa",
        shortName  = "South Africa",
        pageName   = "South Africa national cricket team",
    },

    {
        code       = "SL",
        fullName   = "Sri Lanka",
        shortName  = "Sri Lanka",
        pageName   = "Sri Lanka national cricket team",
    },

    {
        code       = "UGA",
        fullName   = "Uganda",
        shortName  = "Uganda",
        pageName   = "Uganda national cricket team",
    },

    {
        code       = "USA",
        fullName   = "United States",
        shortName  = "United States",
        pageName   = "United States national cricket team",
    },

    {
        code       = "WIN",
        fullName   = "West Indies",
        shortName  = "West Indies",
        pageName   = "West Indies cricket team",
    },
    

}