Module:number list/data/art-nav

Hello, you have come here looking for the meaning of the word Module:number list/data/art-nav. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:number list/data/art-nav, but we will also tell you about its etymology, its characteristics and you will know how to say Module:number list/data/art-nav in singular and plural. Everything you need to know about the word Module:number list/data/art-nav you have here. The definition of the word Module:number list/data/art-nav will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:number list/data/art-nav, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
local export = {}

local numbers = {}
export.numbers = numbers

numbers = {
	cardinal = "kew"
}

numbers = {
	cardinal = "ʼaw",
	ordinal = "ʼawve"
}

numbers = {
	cardinal = "mune",
	ordinal = "muve",
	fractional = "mawl"

}

numbers = {
	cardinal = "pxey",
	ordinal = "pxeyve",
	fractional = "pan"
}

numbers = {
	cardinal = "tsìng",
	ordinal = "tsìve",
	fractional = "tsìpxì"
}

numbers = {
	cardinal = "mrr",
	ordinal = "mrrve",
	fractional = "mrrpxì"
}

numbers = {
	cardinal = "pukap",
	ordinal = "puve",
	fractional = "pupxì"
}

numbers = {
	cardinal = "kinä",
	ordinal = "kive",
	fractional = "kipxì"
}

numbers = {
	cardinal = "vol",
	ordinal = "volve",
	fractional = "volpxì"
}

numbers = {
	cardinal = "volaw",
	ordinal = "volawve"
}

numbers = {
	cardinal = "vomun",
	ordinal = "vomuve"
}

numbers = {
	cardinal = "vopey",
	ordinal = "vopeyve"
}

numbers = {
	cardinal = "vosìng",
	ordinal = "vosìve"
}

numbers = {
	cardinal = "vomrr",
	ordinal = "vomrrve"
}

numbers = {
	cardinal = "vofu",
	ordinal = "vofuve"
}

numbers = {
	cardinal = "vohin",
	ordinal = "vohive"
}

local function unpack_ipairs(t)
	local i = 0
	return function()
		i = i + 1
		if t then
			return i, unpack(t)
		end
	end
end

for i, tens_prefix in unpack_ipairs {
	{ "me" },
	{ "pxe" },
	{ "tsì" },
	{ "mrr" },
	{ "pu" },
	{ "ki" }
} do
	local tens = (i + 1) * 10
	for ones = 0, 7 do
		numbers = {
			cardinal = tens_prefix .. numbers.cardinal
		}
	end
end

numbers = {
	cardinal = "zam"
}

numbers = {
	cardinal = "vozam"
}

numbers = {
	cardinal = "zazam"
}

return export