 function _00000110(word) {     var len = word.length;     if(word.length < 1)         return "";     if(word.charAt(word.length-1) == 'y')         return word.substring(0, word.length-1) + "ee";                  var _10101001_0, _10101001_1, _10101001_2, _10101001_3;      _10101001_0 = word.charAt(word.length -1).toLowerCase(); _10101001_1 = word.charAt(word.length -2).toLowerCase(); _10101001_2 = word.charAt(word.length -3).toLowerCase(); _10101001_3 = word.charAt(word.length -4).toLowerCase();  if(_10101001_0  == 'u' && _10101001_1  == 'a' && _10101001_2  == 'h' && _10101001_3  == 'c')  word = word.substring(0, word.length -4) + "chhau"; else if((_10101001_0  == 'a' || _10101001_0  == 'e' || _10101001_0  == 'u') && _10101001_1  == 'h' && _10101001_2  == 'c')  word = word.substring(0, word.length -3) + "chh" + _10101001_0; else if(_10101001_0  == 'i' && _10101001_1  == 'a' && _10101001_2  == 'l')  word = word.substring(0, word.length -3) + "laaii"; else if(_10101001_0  == 'y')  word= word.substring(0, word.length -1) + "ee"; else if(_10101001_0  == 'a' && _10101001_1 == 'm') { word+="a"; } else if(_10101001_0  == 's' && _10101001_1  == 'u' && _10101001_2  == 'n') ;  else if(_10101001_0  == 's' && _10101001_1  == 'o' && _10101001_2  == 'h') ;  else if(_10101001_0  == 'a' && _10101001_1  == 'h' && _10101001_2  == 'h') ;  else if(_10101001_0  == 'a' && _10101001_1  == 'n' && _10101001_2  == 'k') ;  else if(_10101001_0  == 'a' && _10101001_1  == 'n' && _10101001_2  == 'h') ;  else if(_10101001_0  == 'a' && _10101001_1  == 'n' && _10101001_2  == 'r') ;  else if(_10101001_0  == 'a' && _10101001_1  == 'r' && _10101001_2  == 'd'  && _10101001_3  == 'n') ;  else if(_10101001_0  == 'a' && _10101001_1  == 'n' && _10101001_2  == 'i'  && _10101001_3  == 'd') ;  else if(_10101001_0  == 'a' && _10101001_1  == 'r' && _10101001_2  == 't'  && _10101001_3  == 'n') ;      else if(!IsVowel(_10101001_0) && IsAlpha(_10101001_0) && _10101001_0 != "\\")     {          word +="a";             }         if(_10101001_0  == 'i' &&  !IsVowel(_10101001_1))  word= word.substring(0, word.length -1) + "ee"; return word; } 