| _hx_table = {}_hx_table.pack = _G.table.pack or function(...)    return {...}end_hx_table.unpack = _G.table.unpack or _G.unpack_hx_table.maxn = _G.table.maxn or function(t)  local maxn=0;  for i in pairs(t) do    maxn=type(i)=='number'and i>maxn and i or maxn  end  return maxnend;
 |