class String

def unaccent

def unaccent
  split(//u).map {|c| ACCENTMAP[c] || c }.join("")
end