$exchang = // сюда скопируйте массив из OmLL0Imx.js, он в самом начале файла лежит
$sourcePath = "OmLL0Imx.js";
$source = file_get_contents($sourcePath);
$limit = -1;
$count = 5;
$result = preg_replace_callback
(
"#(_0x2ee1\[(\d+)\])#si",
function($matches) use ($exchang)
{
return $exchang[$matches[2]];
},
$source
);
file_put_contents(__DIR__."/result.txt", $result);
echo "Job done";