fork download
  1.  
  2. <?php
  3.  
  4. function data_processing ($name_file) {
  5.  
  6. $arr[vremia] = [];//создали пустой массив
  7. $arr[content] = [];//создали пустой массив
  8. $arr_new=[];
  9.  
  10. //$vesti = iconv ("UTF-8", "windows-1251", 'ВЕСТИ');
  11.  
  12.  
  13. $descriptor = fopen($name_file.'.txt', 'r');
  14. $descriptor2 = fopen($name_file.'_edited.txt', 'w');
  15. if ($descriptor) {
  16. while (($string = fgets($descriptor)) !== false) {
  17. //fwrite($descriptor2, $string); //строку из 1.txt записываем в 2.txt
  18.  
  19. $times = mb_substr($string, 0, 5); //получили время
  20. $content = mb_substr($string, 6, mb_strlen($string)); //получили контент
  21.  
  22. //вырезаем концы строк, конец файла и что-нибудь ещё ненужное
  23. $order = array("\r\n", "\n", "\r", iconv ("UTF-8", "windows-1251", "ОНТ представляет: "));
  24. $replace = '';
  25. $newcontent = str_replace($order, $replace, $content);
  26.  
  27. // ----------------------------- БЛОК ЗАМЕН ---------------------------- //
  28.  
  29. //заменяем ВЕСТИ на Вести и ВЕСТИ НЕДЕЛИ на Вести недели
  30. $newcontent = str_replace(iconv ("UTF-8", "windows-1251", "ВЕСТИ НЕДЕЛИ"),
  31. iconv ("UTF-8", "windows-1251", "Вести недели"), $newcontent);
  32. $newcontent = str_replace(iconv ("UTF-8", "windows-1251", "ВЕСТИ"),
  33. iconv ("UTF-8", "windows-1251", "Вести"), $newcontent);
  34.  
  35.  
  36.  
  37. //fwrite($descriptor2, $times.' ');
  38. //fwrite($descriptor2, $content); //записали в файл строку без времени
  39.  
  40. //if ($arr[content] == $vesti){ $arr[content] = "Вести"; echo "Find VESTI";}
  41.  
  42. $num1 = array_push($arr[vremia], $times);
  43. $num2 = array_push($arr[content], $newcontent);
  44.  
  45.  
  46.  
  47. }
  48. fclose($descriptor); //прочитали всё из файла в массив $arr
  49.  
  50. }
  51. else {echo 'Невозможно открыть указанный файл';}
  52.  
  53. //вырезаем ненужные нолики из времени
  54.  
  55. //echo $arr[vremia][0];
  56.  
  57. foreach ($arr[vremia] as &$value) {
  58. if (mb_substr($value, 0, 1) == "0") {
  59. $value = mb_substr($value, 1, mb_strlen($value));
  60. }
  61. }
  62.  
  63. unset($value); //уничтожаем $value
  64.  
  65. //echo $arr[vremia][0];
  66.  
  67. for ($j = 0; $j < $num1; ++$j) {
  68.  
  69. if ($arr[content][$j] == "") continue;
  70. $num3 = array_push($arr_new, $arr[vremia][$j]);
  71. $efir = $arr[content][$j];
  72.  
  73. for ($i = $j+1; $i < $num1; ++$i) {
  74.  
  75.  
  76.  
  77. if ($arr[content][$i] == "") continue;
  78. if ($arr[content][$i] == $efir) {
  79. $num3 = array_push($arr_new, $arr[vremia][$i]);
  80. $arr[content][$i] = "";
  81. }
  82. }
  83.  
  84. for($z = 0; $z < count($arr_new); ++$z) {
  85. if ($z == count($arr_new)-1) fwrite($descriptor2, $arr_new[$z].' ');
  86. else fwrite($descriptor2, $arr_new[$z].', ');
  87. }
  88.  
  89. fwrite($descriptor2, $efir."\n"); //записали в файл строку без времени
  90. $arr_new=[];
  91. }
  92.  
  93.  
  94. //var_dump($arr_new);
  95. //var_dump($arr);
  96.  
  97. //echo ();
  98.  
  99. fclose($descriptor2);
  100.  
  101. } // ------- конец функции data_processing -----------
  102.  
  103. function cutting ($name_file){
  104.  
  105. //построчно читаем входной файл в массив $arr2
  106.  
  107. $arr2 = [];
  108. $descriptor = fopen($name_file.'.txt', 'r');
  109. if ($descriptor) {
  110. while (($string = fgets($descriptor)) !== false) {
  111. $num1 = array_push($arr2, $string);
  112. }
  113. fclose($descriptor); //прочитали!
  114.  
  115. }
  116. else {echo 'Невозможно открыть указанный файл';}
  117.  
  118. //var_dump($arr2);
  119.  
  120. $descr_mo = fopen('MO_'.$name_file.'.txt', 'w');
  121. $descr_tu = fopen('TU_'.$name_file.'.txt', 'w');
  122. $descr_we = fopen('WE_'.$name_file.'.txt', 'w');
  123. $descr_th = fopen('TH_'.$name_file.'.txt', 'w');
  124. $descr_fr = fopen('FR_'.$name_file.'.txt', 'w');
  125. $descr_sa = fopen('SA_'.$name_file.'.txt', 'w');
  126. $descr_su = fopen('SU_'.$name_file.'.txt', 'w');
  127.  
  128. $mo1 = iconv ("UTF-8", "windows-1251", 'Понедельник');
  129. $mo2 = iconv ("UTF-8", "windows-1251", 'Панядзелак');
  130. $tu1 = iconv ("UTF-8", "windows-1251", 'Вторник');
  131. $tu2 = iconv ("UTF-8", "windows-1251", 'Аўторак');
  132. $we1 = iconv ("UTF-8", "windows-1251", 'Среда');
  133. $we2 = iconv ("UTF-8", "windows-1251", 'Серада');
  134. $th1 = iconv ("UTF-8", "windows-1251", 'Четверг');
  135. $th2 = iconv ("UTF-8", "windows-1251", 'Чацвер');
  136. $fr1 = iconv ("UTF-8", "windows-1251", 'Пятница');
  137. $fr2 = iconv ("UTF-8", "windows-1251", 'Пятніца');
  138. $sa1 = iconv ("UTF-8", "windows-1251", 'Суббота');
  139. $sa2 = iconv ("UTF-8", "windows-1251", 'Субота');
  140. $su1 = iconv ("UTF-8", "windows-1251", 'Воскресенье');
  141. $su2 = iconv ("UTF-8", "windows-1251", 'Нядзеля');
  142.  
  143.  
  144.  
  145. $order = array("\r\n", "\n", "\r");
  146. $replace = '';
  147. for ($i = 0; $i < count($arr2); ++$i){
  148. $arr2[$i] = str_replace($order, $replace, $arr2[$i]);
  149. }
  150.  
  151. for ($i = 0; $i < count($arr2); ++$i) {
  152.  
  153. //работаем по понедельнику
  154. if (strpos($arr2[$i], $mo1)!== false or strpos($arr2[$i], $mo2)!== false){
  155. while ($arr2[$i+2]<>"") {
  156. if ($arr2[$i+3]<>"") fwrite($descr_mo, $arr2[$i+2]."\n");
  157. else fwrite($descr_mo, $arr2[$i+2]);
  158. $i++;
  159. }
  160. }
  161.  
  162. //работаем по вторнику
  163. if (strpos($arr2[$i], $tu1)!== false or strpos($arr2[$i], $tu2)!== false){
  164. while ($arr2[$i+2]<>"") {
  165. if ($arr2[$i+3]<>"") fwrite($descr_tu, $arr2[$i+2]."\n");
  166. else fwrite($descr_tu, $arr2[$i+2]);
  167. $i++;
  168. }
  169. }
  170.  
  171. //работаем по среде
  172. if (strpos($arr2[$i], $we1)!== false or strpos($arr2[$i], $we2)!== false){
  173. while ($arr2[$i+2]<>"") {
  174. if ($arr2[$i+3]<>"") fwrite($descr_we, $arr2[$i+2]."\n");
  175. else fwrite($descr_we, $arr2[$i+2]);
  176. $i++;
  177. }
  178. }
  179.  
  180. //работаем по четвергу
  181. if (strpos($arr2[$i], $th1)!== false or strpos($arr2[$i], $th2)!== false){
  182. while ($arr2[$i+2]<>"") {
  183. if ($arr2[$i+3]<>"") fwrite($descr_th, $arr2[$i+2]."\n");
  184. else fwrite($descr_th, $arr2[$i+2]);
  185. $i++;
  186. }
  187. }
  188.  
  189. //работаем по пятнице
  190. if (strpos($arr2[$i], $fr1)!== false or strpos($arr2[$i], $fr2)!== false){
  191. while ($arr2[$i+2]<>"") {
  192. if ($arr2[$i+3]<>"") fwrite($descr_fr, $arr2[$i+2]."\n");
  193. else fwrite($descr_fr, $arr2[$i+2]);
  194. $i++;
  195. }
  196. }
  197.  
  198. //работаем по субботе
  199. if (strpos($arr2[$i], $sa1)!== false or strpos($arr2[$i], $sa2)!== false){
  200. while ($arr2[$i+2]<>"") {
  201. if ($arr2[$i+3]<>"") fwrite($descr_sa, $arr2[$i+2]."\n");
  202. else fwrite($descr_sa, $arr2[$i+2]);
  203. $i++;
  204. }
  205. }
  206.  
  207. //работаем по воскресенью
  208. if (strpos($arr2[$i], $su1)!== false or strpos($arr2[$i], $su2)!== false){
  209. while ($arr2[$i+2]<>"") {
  210. if ($arr2[$i+3]<>"") fwrite($descr_su, $arr2[$i+2]."\n");
  211. else fwrite($descr_su, $arr2[$i+2]);
  212. $i++;
  213. }
  214. }
  215.  
  216. }
  217.  
  218. //var_dump($arr2);
  219. fclose($descr_mo);
  220. fclose($descr_tu);
  221. fclose($descr_we);
  222. fclose($descr_th);
  223. fclose($descr_fr);
  224. fclose($descr_sa);
  225. fclose($descr_su);
  226.  
  227. } //конец функции cutting
  228.  
  229.  
  230. // --- ОСНОВНОЙ БЛОК --- //
  231.  
  232. $index = "19";
  233. $channels = array('bt_'.$index,
  234. 'ont_'.$index,
  235. 'ctv_'.$index,
  236. 'mir_'.$index,
  237. 'rtr_'.$index,
  238. 'ntv_'.$index,
  239. 'lad_'.$index,
  240. 'belarus3_'.$index,
  241. 'belarus5_'.$index,
  242. 'vitebsk_'.$index,
  243. 'belarus4_vit_'.$index);
  244.  
  245. $week = array('MO_',
  246. 'TU_',
  247. 'WE_',
  248. 'TH_',
  249. 'FR_',
  250. 'SA_',
  251. 'SU_');
  252.  
  253.  
  254. foreach ($channels as &$value) {
  255. cutting ($value);
  256.  
  257. foreach ($week as &$value2) {
  258. data_processing ($value2.$value);
  259. unlink($value2.$value.'.txt');
  260. }
  261. }
  262.  
  263. unset($value);
  264. unset($value2);
  265.  
  266. //начинаем склеивать все пн в один ПН, все вт в один ВТ и т.д.
  267.  
  268.  
  269. foreach ($week as &$value2) {
  270.  
  271. $descript = fopen($value2.'.txt', 'w'); // это в какой пишем, т.е. в MO_.txt и т.д.
  272.  
  273. foreach ($channels as &$value3) {
  274.  
  275. $descript2 = fopen($value2.$value3.'_edited.txt', 'r');
  276. // это из какого пишем, т.е. из MO_lad_19_edited.txt и т.д.
  277.  
  278.  
  279. switch ($value3) {
  280. case 'bt_'.$index:
  281. $name = iconv ("UTF-8", "windows-1251", "БЕЛАРУСЬ 1");
  282. break;
  283. case 'ont_'.$index:
  284. $name = iconv ("UTF-8", "windows-1251", "ОНТ");
  285. break;
  286. case 'ctv_'.$index:
  287. $name = iconv ("UTF-8", "windows-1251", "СТВ");
  288. break;
  289. case 'mir_'.$index:
  290. $name = iconv ("UTF-8", "windows-1251", "МИР");
  291. break;
  292. case 'rtr_'.$index:
  293. $name = iconv ("UTF-8", "windows-1251", "РОССИЯ Беларусь");
  294. break;
  295. case 'ntv_'.$index:
  296. $name = iconv ("UTF-8", "windows-1251", "НТВ Беларусь");
  297. break;
  298. case 'lad_'.$index:
  299. $name = iconv ("UTF-8", "windows-1251", "БЕЛАРУСЬ 2");
  300. break;
  301. case 'belarus3_'.$index:
  302. $name = iconv ("UTF-8", "windows-1251", "БЕЛАРУСЬ 3");
  303. break;
  304. case 'belarus5_'.$index:
  305. $name = iconv ("UTF-8", "windows-1251", "БЕЛАРУСЬ 5");
  306. break;
  307. case 'vitebsk_'.$index:
  308. $name = iconv ("UTF-8", "windows-1251", "ВИТЕБСК");
  309. break;
  310. case 'belarus4_vit_'.$index:
  311. $name = iconv ("UTF-8", "windows-1251", "БЕЛАРУСЬ 4 Витебск");
  312. break;
  313. }
  314.  
  315. fwrite($descript, "\n");
  316. fwrite($descript, $name."\n"); // записываем в MO_.txt название канала
  317. fwrite($descript, "\n");
  318.  
  319.  
  320. while (($string = fgets($descript2)) !== false) {
  321.  
  322. fwrite($descript, $string); //строку записываем в MO_.txt
  323.  
  324. }
  325.  
  326. fclose($descript2);
  327.  
  328. };
  329.  
  330. fclose($descript);
  331.  
  332. }
  333.  
  334. unset($value2);
  335. unset($value3);
  336.  
  337.  
  338.  
  339.  
  340. //Удаляем промежуточные файлы вида WE_vitebsk_19_edited.txt
  341.  
  342. foreach ($channels as &$value) {
  343. foreach ($week as &$value2) {
  344. unlink($value2.$value.'_edited.txt');
  345. }
  346. }
  347.  
  348. unset($value);
  349. unset($value2);
  350.  
  351.  
  352.  
  353.  
  354. //дадим итоговым файлам человеческие имена
  355.  
  356. rename("MO_.txt", iconv ("UTF-8", "windows-1251", "01. Понедельник.txt"));
  357. rename("TU_.txt", iconv ("UTF-8", "windows-1251", "02. Вторник.txt"));
  358. rename("WE_.txt", iconv ("UTF-8", "windows-1251", "03. Среда.txt"));
  359. rename("TH_.txt", iconv ("UTF-8", "windows-1251", "04. Четверг.txt"));
  360. rename("FR_.txt", iconv ("UTF-8", "windows-1251", "05. Пятница.txt"));
  361. rename("SA_.txt", iconv ("UTF-8", "windows-1251", "06. Субота.txt"));
  362. rename("SU_.txt", iconv ("UTF-8", "windows-1251", "07. Воскресенье.txt"));
  363.  
  364.  
  365. //print_r($channels);
  366.  
  367.  
  368. ?>
  369.  
  370.  
Runtime error #stdin #stdout #stderr 0.02s 24640KB
stdin
Standard input is empty
stdout
Невозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файлНевозможно открыть указанный файл
stderr
PHP Warning:  fopen(bt_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 108
PHP Warning:  fopen(MO_bt_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 120
PHP Warning:  fopen(TU_bt_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 121
PHP Warning:  fopen(WE_bt_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 122
PHP Warning:  fopen(TH_bt_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 123
PHP Warning:  fopen(FR_bt_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 124
PHP Warning:  fopen(SA_bt_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 125
PHP Warning:  fopen(SU_bt_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 126
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 219
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 220
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 221
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 222
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 223
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 224
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 225
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(MO_bt_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(MO_bt_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(MO_bt_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TU_bt_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TU_bt_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TU_bt_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(WE_bt_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(WE_bt_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(WE_bt_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TH_bt_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TH_bt_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TH_bt_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(FR_bt_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(FR_bt_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(FR_bt_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SA_bt_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SA_bt_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SA_bt_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SU_bt_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SU_bt_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SU_bt_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  fopen(ont_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 108
PHP Warning:  fopen(MO_ont_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 120
PHP Warning:  fopen(TU_ont_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 121
PHP Warning:  fopen(WE_ont_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 122
PHP Warning:  fopen(TH_ont_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 123
PHP Warning:  fopen(FR_ont_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 124
PHP Warning:  fopen(SA_ont_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 125
PHP Warning:  fopen(SU_ont_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 126
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 219
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 220
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 221
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 222
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 223
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 224
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 225
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(MO_ont_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(MO_ont_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(MO_ont_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TU_ont_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TU_ont_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TU_ont_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(WE_ont_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(WE_ont_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(WE_ont_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TH_ont_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TH_ont_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TH_ont_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(FR_ont_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(FR_ont_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(FR_ont_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SA_ont_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SA_ont_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SA_ont_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SU_ont_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SU_ont_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SU_ont_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  fopen(ctv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 108
PHP Warning:  fopen(MO_ctv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 120
PHP Warning:  fopen(TU_ctv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 121
PHP Warning:  fopen(WE_ctv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 122
PHP Warning:  fopen(TH_ctv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 123
PHP Warning:  fopen(FR_ctv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 124
PHP Warning:  fopen(SA_ctv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 125
PHP Warning:  fopen(SU_ctv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 126
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 219
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 220
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 221
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 222
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 223
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 224
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 225
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(MO_ctv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(MO_ctv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(MO_ctv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TU_ctv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TU_ctv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TU_ctv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(WE_ctv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(WE_ctv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(WE_ctv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TH_ctv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TH_ctv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TH_ctv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(FR_ctv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(FR_ctv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(FR_ctv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SA_ctv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SA_ctv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SA_ctv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SU_ctv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SU_ctv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SU_ctv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  fopen(mir_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 108
PHP Warning:  fopen(MO_mir_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 120
PHP Warning:  fopen(TU_mir_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 121
PHP Warning:  fopen(WE_mir_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 122
PHP Warning:  fopen(TH_mir_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 123
PHP Warning:  fopen(FR_mir_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 124
PHP Warning:  fopen(SA_mir_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 125
PHP Warning:  fopen(SU_mir_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 126
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 219
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 220
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 221
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 222
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 223
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 224
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 225
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(MO_mir_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(MO_mir_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(MO_mir_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TU_mir_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TU_mir_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TU_mir_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(WE_mir_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(WE_mir_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(WE_mir_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TH_mir_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TH_mir_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TH_mir_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(FR_mir_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(FR_mir_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(FR_mir_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SA_mir_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SA_mir_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SA_mir_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SU_mir_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SU_mir_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SU_mir_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  fopen(rtr_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 108
PHP Warning:  fopen(MO_rtr_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 120
PHP Warning:  fopen(TU_rtr_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 121
PHP Warning:  fopen(WE_rtr_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 122
PHP Warning:  fopen(TH_rtr_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 123
PHP Warning:  fopen(FR_rtr_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 124
PHP Warning:  fopen(SA_rtr_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 125
PHP Warning:  fopen(SU_rtr_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 126
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 219
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 220
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 221
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 222
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 223
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 224
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 225
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(MO_rtr_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(MO_rtr_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(MO_rtr_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TU_rtr_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TU_rtr_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TU_rtr_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(WE_rtr_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(WE_rtr_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(WE_rtr_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TH_rtr_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TH_rtr_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TH_rtr_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(FR_rtr_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(FR_rtr_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(FR_rtr_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SA_rtr_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SA_rtr_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SA_rtr_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SU_rtr_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SU_rtr_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SU_rtr_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  fopen(ntv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 108
PHP Warning:  fopen(MO_ntv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 120
PHP Warning:  fopen(TU_ntv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 121
PHP Warning:  fopen(WE_ntv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 122
PHP Warning:  fopen(TH_ntv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 123
PHP Warning:  fopen(FR_ntv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 124
PHP Warning:  fopen(SA_ntv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 125
PHP Warning:  fopen(SU_ntv_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 126
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 219
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 220
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 221
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 222
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 223
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 224
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 225
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(MO_ntv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(MO_ntv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(MO_ntv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TU_ntv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TU_ntv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TU_ntv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(WE_ntv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(WE_ntv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(WE_ntv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TH_ntv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TH_ntv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TH_ntv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(FR_ntv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(FR_ntv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(FR_ntv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SA_ntv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SA_ntv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SA_ntv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SU_ntv_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SU_ntv_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SU_ntv_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  fopen(lad_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 108
PHP Warning:  fopen(MO_lad_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 120
PHP Warning:  fopen(TU_lad_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 121
PHP Warning:  fopen(WE_lad_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 122
PHP Warning:  fopen(TH_lad_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 123
PHP Warning:  fopen(FR_lad_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 124
PHP Warning:  fopen(SA_lad_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 125
PHP Warning:  fopen(SU_lad_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 126
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 219
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 220
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 221
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 222
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 223
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 224
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 225
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(MO_lad_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(MO_lad_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(MO_lad_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TU_lad_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TU_lad_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TU_lad_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(WE_lad_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(WE_lad_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(WE_lad_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TH_lad_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TH_lad_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TH_lad_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(FR_lad_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(FR_lad_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(FR_lad_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SA_lad_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SA_lad_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SA_lad_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(SU_lad_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(SU_lad_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(SU_lad_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  fopen(belarus3_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 108
PHP Warning:  fopen(MO_belarus3_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 120
PHP Warning:  fopen(TU_belarus3_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 121
PHP Warning:  fopen(WE_belarus3_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 122
PHP Warning:  fopen(TH_belarus3_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 123
PHP Warning:  fopen(FR_belarus3_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 124
PHP Warning:  fopen(SA_belarus3_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 125
PHP Warning:  fopen(SU_belarus3_19.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 126
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 219
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 220
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 221
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 222
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 223
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 224
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 225
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(MO_belarus3_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(MO_belarus3_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(MO_belarus3_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TU_belarus3_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TU_belarus3_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(TU_belarus3_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(WE_belarus3_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(WE_belarus3_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP Notice:  Undefined variable: num1 in /home/P8wdsZ/prog.php on line 67
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/P8wdsZ/prog.php on line 99
PHP Warning:  unlink(WE_belarus3_19.txt): No such file or directory in /home/P8wdsZ/prog.php on line 259
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 6
PHP Warning:  Use of undefined constant content - assumed 'content' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 7
PHP Warning:  fopen(TH_belarus3_19.txt): failed to open stream: No such file or directory in /home/P8wdsZ/prog.php on line 13
PHP Warning:  fopen(TH_belarus3_19_edited.txt): failed to open stream: Permission denied in /home/P8wdsZ/prog.php on line 14
PHP Warning:  Use of undefined constant vremia - assumed 'vremia' (this will throw an Error in a future version of PHP) in /home/P8wdsZ/prog.php on line 57
PHP N