class DecodeCtfString {
//copy from Request.ALLATORIxDEMO decompiled by GDA
public static String comm(String str,int num){
String res = "";
byte[] cmdbyte = str.getBytes();
byte i = 0;
while (i < cmdbyte.length) {
cmdbyte = (byte)(cmdbyte-(i%num));
i = (byte)(i+1);
}
try{
res = new String(cmdbyte, &#34;UTF-8&#34;);
return res;
}catch(java.io.UnsupportedEncodingException e2){
e2.printStackTrace();
return res;
}
}
public int GDA_MAIN(GDAInterface gda)
{
String str1=&#34;fmcj.97;A7G462H;2F/7<I9496EH1&#34;;
String str2=&#34;A:HI9E4I1E6<}&#34;;
String res=comm(str1,8)+comm(str2,4);
gda.log(res);
return 0;
}
}