local function splitw(str) local res = {} for s in str:gmatch("%S+") do table.insert(res,s) end return res end