PageRenderTime 58ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/parivartree260614/parivartree/app/cache/dev/twig/9f/cd/2480002a81565443d5e3325bdb3d760c953de0e66da22d5a485ea2d256bf.php

https://github.com/roopalidudalkar/parivartree
PHP | 438 lines | 337 code | 19 blank | 82 comment | 37 complexity | 53cc809c0e167e4786fe1f970869d441 MD5 | raw file
  1. <?php
  2. /* WebProfilerBundle:Collector:logger.html.twig */
  3. class __TwigTemplate_9fcd2480002a81565443d5e3325bdb3d760c953de0e66da22d5a485ea2d256bf extends Twig_Template
  4. {
  5. public function __construct(Twig_Environment $env)
  6. {
  7. parent::__construct($env);
  8. $this->parent = $this->env->loadTemplate("@WebProfiler/Profiler/layout.html.twig");
  9. $this->blocks = array(
  10. 'toolbar' => array($this, 'block_toolbar'),
  11. 'menu' => array($this, 'block_menu'),
  12. 'panel' => array($this, 'block_panel'),
  13. );
  14. }
  15. protected function doGetParent(array $context)
  16. {
  17. return "@WebProfiler/Profiler/layout.html.twig";
  18. }
  19. protected function doDisplay(array $context, array $blocks = array())
  20. {
  21. // line 3
  22. $context["logger"] = $this;
  23. $this->parent->display($context, array_merge($this->blocks, $blocks));
  24. }
  25. // line 5
  26. public function block_toolbar($context, array $blocks = array())
  27. {
  28. // line 6
  29. echo " ";
  30. if ((($this->getAttribute($this->getContext($context, "collector"), "counterrors") || $this->getAttribute($this->getContext($context, "collector"), "countdeprecations")) || $this->getAttribute($this->getContext($context, "collector"), "countscreams"))) {
  31. // line 7
  32. echo " ";
  33. ob_start();
  34. // line 8
  35. echo " <img width=\"15\" height=\"28\" alt=\"Logs\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAcCAYAAABoMT8aAAAA4klEQVQ4y2P4//8/AyWYYXgYwOPp6Xnc3t7+P7EYpB6k7+zZs2ADNEjRjIwDAgKWgAywIUfz8+fPVzg7O/8AGeCATQEQnAfi/SAah/wcV1dXvAYUgORANA75ehcXl+/4DHAABRIe+ZrhbgAhTHsDiEgHBA0glA6GfSDiw5mZma+A+sphBlhVVFQ88vHx+Xfu3Ll7QP5haOjjwtuAuGHv3r3NIMNABqh8+/atsaur666vr+9XUlwSHx//AGQANxCbAnEWyGQicRMQ9wBxIQM0qjiBWAFqkB00/glhayBWHwb1AgB38EJsUtxtWwAAAABJRU5ErkJggg==\" />
  36. ";
  37. // line 9
  38. if ($this->getAttribute($this->getContext($context, "collector"), "counterrors")) {
  39. // line 10
  40. echo " ";
  41. $context["status_color"] = "red";
  42. // line 11
  43. echo " ";
  44. } elseif ($this->getAttribute($this->getContext($context, "collector"), "countdeprecations")) {
  45. // line 12
  46. echo " ";
  47. $context["status_color"] = "yellow";
  48. // line 13
  49. echo " ";
  50. }
  51. // line 14
  52. echo " ";
  53. $context["error_count"] = (($this->getAttribute($this->getContext($context, "collector"), "counterrors") + $this->getAttribute($this->getContext($context, "collector"), "countdeprecations")) + $this->getAttribute($this->getContext($context, "collector"), "countscreams"));
  54. // line 15
  55. echo " <span class=\"sf-toolbar-status";
  56. if (array_key_exists("status_color", $context)) {
  57. echo " sf-toolbar-status-";
  58. echo twig_escape_filter($this->env, $this->getContext($context, "status_color"), "html", null, true);
  59. }
  60. echo "\">";
  61. echo twig_escape_filter($this->env, $this->getContext($context, "error_count"), "html", null, true);
  62. echo "</span>
  63. ";
  64. $context["icon"] = ('' === $tmp = ob_get_clean()) ? '' : new Twig_Markup($tmp, $this->env->getCharset());
  65. // line 17
  66. echo " ";
  67. ob_start();
  68. // line 18
  69. echo " ";
  70. if ($this->getAttribute($this->getContext($context, "collector"), "counterrors")) {
  71. // line 19
  72. echo " <div class=\"sf-toolbar-info-piece\">
  73. <b>Errors</b>
  74. <span class=\"sf-toolbar-status sf-toolbar-status-red\">";
  75. // line 21
  76. echo twig_escape_filter($this->env, $this->getAttribute($this->getContext($context, "collector"), "counterrors"), "html", null, true);
  77. echo "</span>
  78. </div>
  79. ";
  80. }
  81. // line 24
  82. echo " ";
  83. if ($this->getAttribute($this->getContext($context, "collector"), "countdeprecations")) {
  84. // line 25
  85. echo " <div class=\"sf-toolbar-info-piece\">
  86. <b>Deprecated Calls</b>
  87. <span class=\"sf-toolbar-status sf-toolbar-status-yellow\">";
  88. // line 27
  89. echo twig_escape_filter($this->env, $this->getAttribute($this->getContext($context, "collector"), "countdeprecations"), "html", null, true);
  90. echo "</span>
  91. </div>
  92. ";
  93. }
  94. // line 30
  95. echo " ";
  96. if ($this->getAttribute($this->getContext($context, "collector"), "countscreams")) {
  97. // line 31
  98. echo " <div class=\"sf-toolbar-info-piece\">
  99. <b>Silenced Errors</b>
  100. <span class=\"sf-toolbar-status sf-toolbar-status\">";
  101. // line 33
  102. echo twig_escape_filter($this->env, $this->getAttribute($this->getContext($context, "collector"), "countscreams"), "html", null, true);
  103. echo "</span>
  104. </div>
  105. ";
  106. }
  107. // line 36
  108. echo " ";
  109. $context["text"] = ('' === $tmp = ob_get_clean()) ? '' : new Twig_Markup($tmp, $this->env->getCharset());
  110. // line 37
  111. echo " ";
  112. $this->env->loadTemplate("@WebProfiler/Profiler/toolbar_item.html.twig")->display(array_merge($context, array("link" => $this->getContext($context, "profiler_url"))));
  113. // line 38
  114. echo " ";
  115. }
  116. }
  117. // line 41
  118. public function block_menu($context, array $blocks = array())
  119. {
  120. // line 42
  121. echo "<span class=\"label\">
  122. <span class=\"icon\"><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAgCAYAAAAMq2gFAAABjElEQVRIx2MIDw+vd3R0/GFvb/+fGtjFxeVJSUmJ1f///5nv37/PAMMMzs7OVLMEhoODgy/k5+cHJCYmagAtZAJbRG1L0DEwxCYALeOgiUXbt2+/X1NT8xTEdnd3/wi0SI4mFgHBDCBeCLXoF5BtwkCEpvNAvB8JnydCTwgQR0It+g1kWxNjUQEQOyDhAiL0gNUiWWRDjEUOyMkUZsCoRaMWjVpEvEVkFkGjFmEUqgc+fvx4hVYWIReqzi9evKileaoDslnu3LkTNLQtGk3edLPIycnpL9Bge5pb1NXVdQNosDmGRcAm7F+QgKur6783b95cBQoeRGv1kII3QPOdAoZF8+fPP4PUqnx55syZVKCEI1rLh1hsAbWEZ8aMGaUoFoFcMG3atKdIjfSPISEhawICAlaQgwMDA1f6+/sfB5rzE2Sej4/PD3C7DkjoAHHVoUOHLpSVlX3w8vL6Sa34Alr6Z8WKFaCoMARZxAHEoFZ/HBD3A/FyIF4BxMvIxCC964F4G6hZDMTxQCwJAGWE8pur5kFDAAAAAElFTkSuQmCC\" alt=\"Logger\"></span>
  123. <strong>Logs</strong>
  124. ";
  125. // line 45
  126. if ((($this->getAttribute($this->getContext($context, "collector"), "counterrors") || $this->getAttribute($this->getContext($context, "collector"), "countdeprecations")) || $this->getAttribute($this->getContext($context, "collector"), "countscreams"))) {
  127. // line 46
  128. echo " ";
  129. $context["error_count"] = (($this->getAttribute($this->getContext($context, "collector"), "counterrors") + $this->getAttribute($this->getContext($context, "collector"), "countdeprecations")) + $this->getAttribute($this->getContext($context, "collector"), "countscreams"));
  130. // line 47
  131. echo " <span class=\"count\">
  132. <span>";
  133. // line 48
  134. echo twig_escape_filter($this->env, $this->getContext($context, "error_count"), "html", null, true);
  135. echo "</span>
  136. </span>
  137. ";
  138. }
  139. // line 51
  140. echo "</span>
  141. ";
  142. }
  143. // line 54
  144. public function block_panel($context, array $blocks = array())
  145. {
  146. // line 55
  147. echo " <h2>Logs</h2>
  148. ";
  149. // line 57
  150. $context["priority"] = $this->getAttribute($this->getAttribute($this->getContext($context, "request"), "query"), "get", array(0 => "priority", 1 => 0), "method");
  151. // line 58
  152. echo "
  153. <table>
  154. <tr>
  155. <th>Filter</th>
  156. <td>
  157. <form id=\"priority-form\" action=\"\" method=\"get\" style=\"display: inline\">
  158. <input type=\"hidden\" name=\"panel\" value=\"logger\">
  159. <label for=\"priority\">Min. Priority</label>
  160. <select id=\"priority\" name=\"priority\" onchange=\"document.getElementById('priority-form').submit(); \">
  161. ";
  162. // line 68
  163. echo " ";
  164. $context['_parent'] = (array) $context;
  165. $context['_seq'] = twig_ensure_traversable($this->getAttribute($this->getContext($context, "collector"), "priorities"));
  166. foreach ($context['_seq'] as $context["value"] => $context["level"]) {
  167. // line 69
  168. echo " ";
  169. if (((!$this->getContext($context, "priority")) && ($this->getContext($context, "value") > 100))) {
  170. // line 70
  171. echo " ";
  172. $context["priority"] = $this->getContext($context, "value");
  173. // line 71
  174. echo " ";
  175. }
  176. // line 72
  177. echo " <option value=\"";
  178. echo twig_escape_filter($this->env, $this->getContext($context, "value"), "html", null, true);
  179. echo "\"";
  180. echo ((($this->getContext($context, "value") == $this->getContext($context, "priority"))) ? (" selected") : (""));
  181. echo ">";
  182. echo twig_escape_filter($this->env, $this->getAttribute($this->getContext($context, "level"), "name"), "html", null, true);
  183. echo " (";
  184. echo twig_escape_filter($this->env, $this->getAttribute($this->getContext($context, "level"), "count"), "html", null, true);
  185. echo ")</option>
  186. ";
  187. }
  188. $_parent = $context['_parent'];
  189. unset($context['_seq'], $context['_iterated'], $context['value'], $context['level'], $context['_parent'], $context['loop']);
  190. $context = array_intersect_key($context, $_parent) + $_parent;
  191. // line 74
  192. echo " ";
  193. if ($this->getAttribute($this->getContext($context, "collector"), "countdeprecations")) {
  194. // line 75
  195. echo " ";
  196. if ((!$this->getContext($context, "priority"))) {
  197. // line 76
  198. echo " ";
  199. $context["priority"] = "-100";
  200. // line 77
  201. echo " ";
  202. }
  203. // line 78
  204. echo " <option value=\"-100\"";
  205. echo ((("-100" == $this->getContext($context, "priority"))) ? (" selected") : (""));
  206. echo ">DEPRECATION only (";
  207. echo twig_escape_filter($this->env, $this->getAttribute($this->getContext($context, "collector"), "countdeprecations"), "html", null, true);
  208. echo ")</option>
  209. ";
  210. }
  211. // line 80
  212. echo " </select>
  213. <noscript>
  214. <input type=\"submit\" value=\"refresh\">
  215. </noscript>
  216. </form>
  217. </td>
  218. </tr>
  219. </table>
  220. ";
  221. // line 89
  222. if ($this->getAttribute($this->getContext($context, "collector"), "logs")) {
  223. // line 90
  224. echo " <ul class=\"alt\">
  225. ";
  226. // line 91
  227. $context['_parent'] = (array) $context;
  228. $context['_seq'] = twig_ensure_traversable($this->getAttribute($this->getContext($context, "collector"), "logs"));
  229. $context['_iterated'] = false;
  230. $context['loop'] = array(
  231. 'parent' => $context['_parent'],
  232. 'index0' => 0,
  233. 'index' => 1,
  234. 'first' => true,
  235. );
  236. foreach ($context['_seq'] as $context["_key"] => $context["log"]) {
  237. if (((($this->getContext($context, "priority") >= 0) && ($this->getAttribute($this->getContext($context, "log"), "priority") >= $this->getContext($context, "priority"))) || (($this->getContext($context, "priority") < 0) && ((($this->getAttribute($this->getAttribute($this->getContext($context, "log", true), "context", array(), "any", false, true), "type", array(), "any", true, true)) ? (_twig_default_filter($this->getAttribute($this->getAttribute($this->getContext($context, "log", true), "context", array(), "any", false, true), "type"), 0)) : (0)) == $this->getContext($context, "priority"))))) {
  238. // line 92
  239. echo " <li class=\"";
  240. echo twig_escape_filter($this->env, twig_cycle(array(0 => "odd", 1 => "even"), $this->getAttribute($this->getContext($context, "loop"), "index")), "html", null, true);
  241. if (($this->getAttribute($this->getContext($context, "log"), "priority") >= 400)) {
  242. echo " error";
  243. } elseif (($this->getAttribute($this->getContext($context, "log"), "priority") >= 300)) {
  244. echo " warning";
  245. }
  246. if ($this->getAttribute($this->getAttribute($this->getContext($context, "log", true), "context", array(), "any", false, true), "scream", array(), "any", true, true)) {
  247. echo " scream";
  248. }
  249. echo "\">
  250. ";
  251. // line 93
  252. echo $context["logger"]->getdisplay_message($this->getAttribute($this->getContext($context, "loop"), "index"), $this->getContext($context, "log"));
  253. echo "
  254. </li>
  255. ";
  256. $context['_iterated'] = true;
  257. ++$context['loop']['index0'];
  258. ++$context['loop']['index'];
  259. $context['loop']['first'] = false;
  260. }
  261. }
  262. if (!$context['_iterated']) {
  263. // line 96
  264. echo " <li><em>No logs available for this priority.</em></li>
  265. ";
  266. }
  267. $_parent = $context['_parent'];
  268. unset($context['_seq'], $context['_iterated'], $context['_key'], $context['log'], $context['_parent'], $context['loop']);
  269. $context = array_intersect_key($context, $_parent) + $_parent;
  270. // line 98
  271. echo " </ul>
  272. ";
  273. } else {
  274. // line 100
  275. echo " <p>
  276. <em>No logs available.</em>
  277. </p>
  278. ";
  279. }
  280. }
  281. // line 107
  282. public function getdisplay_message($_log_index = null, $_log = null)
  283. {
  284. $context = $this->env->mergeGlobals(array(
  285. "log_index" => $_log_index,
  286. "log" => $_log,
  287. ));
  288. $blocks = array();
  289. ob_start();
  290. try {
  291. // line 108
  292. echo " ";
  293. if ((twig_constant("Symfony\\Component\\HttpKernel\\Debug\\ErrorHandler::TYPE_DEPRECATION") == (($this->getAttribute($this->getAttribute($this->getContext($context, "log", true), "context", array(), "any", false, true), "type", array(), "any", true, true)) ? (_twig_default_filter($this->getAttribute($this->getAttribute($this->getContext($context, "log", true), "context", array(), "any", false, true), "type"), 0)) : (0)))) {
  294. // line 109
  295. echo " DEPRECATION - ";
  296. echo twig_escape_filter($this->env, $this->getAttribute($this->getContext($context, "log"), "message"), "html", null, true);
  297. echo "
  298. ";
  299. // line 110
  300. $context["id"] = ("sf-call-stack-" . $this->getContext($context, "log_index"));
  301. // line 111
  302. echo " <a href=\"#\" onclick=\"Sfjs.toggle('";
  303. echo twig_escape_filter($this->env, $this->getContext($context, "id"), "html", null, true);
  304. echo "', document.getElementById('";
  305. echo twig_escape_filter($this->env, $this->getContext($context, "id"), "html", null, true);
  306. echo "-on'), document.getElementById('";
  307. echo twig_escape_filter($this->env, $this->getContext($context, "id"), "html", null, true);
  308. echo "-off')); return false;\">
  309. <img class=\"toggle\" id=\"";
  310. // line 112
  311. echo twig_escape_filter($this->env, $this->getContext($context, "id"), "html", null, true);
  312. echo "-off\" alt=\"-\" src=\"data:image/gif;base64,R0lGODlhEgASAMQSANft94TG57Hb8GS44ez1+mC24IvK6ePx+Wa44dXs92+942e54o3L6W2844/M6dnu+P/+/l614P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAABIALAAAAAASABIAQAVCoCQBTBOd6Kk4gJhGBCTPxysJb44K0qD/ER/wlxjmisZkMqBEBW5NHrMZmVKvv9hMVsO+hE0EoNAstEYGxG9heIhCADs=\" style=\"display:none\">
  313. <img class=\"toggle\" id=\"";
  314. // line 113
  315. echo twig_escape_filter($this->env, $this->getContext($context, "id"), "html", null, true);
  316. echo "-on\" alt=\"+\" src=\"data:image/gif;base64,R0lGODlhEgASAMQTANft99/v+Ga44bHb8ITG52S44dXs9+z1+uPx+YvK6WC24G+944/M6W28443L6dnu+Ge54v/+/l614P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAABMALAAAAAASABIAQAVS4DQBTiOd6LkwgJgeUSzHSDoNaZ4PU6FLgYBA5/vFID/DbylRGiNIZu74I0h1hNsVxbNuUV4d9SsZM2EzWe1qThVzwWFOAFCQFa1RQq6DJB4iIQA7\" style=\"display:inline\">
  317. </a>
  318. ";
  319. // line 115
  320. $context['_parent'] = (array) $context;
  321. $context['_seq'] = twig_ensure_traversable($this->getAttribute($this->getAttribute($this->getContext($context, "log"), "context"), "stack"));
  322. foreach ($context['_seq'] as $context["index"] => $context["call"]) {
  323. if (($this->getContext($context, "index") > 1)) {
  324. // line 116
  325. echo " ";
  326. if (($this->getContext($context, "index") == 2)) {
  327. // line 117
  328. echo " <ul class=\"sf-call-stack\" id=\"";
  329. echo twig_escape_filter($this->env, $this->getContext($context, "id"), "html", null, true);
  330. echo "\" style=\"display: none\">
  331. ";
  332. }
  333. // line 119
  334. echo " ";
  335. if ($this->getAttribute($this->getContext($context, "call", true), "class", array(), "any", true, true)) {
  336. // line 120
  337. echo " ";
  338. $context["from"] = (($this->env->getExtension('code')->abbrClass($this->getAttribute($this->getContext($context, "call"), "class")) . "::") . $this->env->getExtension('code')->abbrMethod($this->getAttribute($this->getContext($context, "call"), "function")));
  339. // line 121
  340. echo " ";
  341. } elseif ($this->getAttribute($this->getContext($context, "call", true), "function", array(), "any", true, true)) {
  342. // line 122
  343. echo " ";
  344. $context["from"] = $this->env->getExtension('code')->abbrMethod($this->getAttribute($this->getContext($context, "call"), "function"));
  345. // line 123
  346. echo " ";
  347. } elseif ($this->getAttribute($this->getContext($context, "call", true), "file", array(), "any", true, true)) {
  348. // line 124
  349. echo " ";
  350. $context["from"] = $this->getAttribute($this->getContext($context, "call"), "file");
  351. // line 125
  352. echo " ";
  353. } else {
  354. // line 126
  355. echo " ";
  356. $context["from"] = "-";
  357. // line 127
  358. echo " ";
  359. }
  360. // line 128
  361. echo "
  362. <li>Called from ";
  363. // line 129
  364. echo ((($this->getAttribute($this->getContext($context, "call", true), "file", array(), "any", true, true) && $this->getAttribute($this->getContext($context, "call", true), "line", array(), "any", true, true))) ? ($this->env->getExtension('code')->formatFile($this->getAttribute($this->getContext($context, "call"), "file"), $this->getAttribute($this->getContext($context, "call"), "line"), $this->getContext($context, "from"))) : ($this->getContext($context, "from")));
  365. echo "</li>
  366. ";
  367. // line 131
  368. echo ((($this->getContext($context, "index") == (twig_length_filter($this->env, $this->getAttribute($this->getAttribute($this->getContext($context, "log"), "context"), "stack")) - 1))) ? ("</ul>") : (""));
  369. echo "
  370. ";
  371. }
  372. }
  373. $_parent = $context['_parent'];
  374. unset($context['_seq'], $context['_iterated'], $context['index'], $context['call'], $context['_parent'], $context['loop']);
  375. $context = array_intersect_key($context, $_parent) + $_parent;
  376. // line 133
  377. echo " ";
  378. } else {
  379. // line 134
  380. echo " ";
  381. echo twig_escape_filter($this->env, $this->getAttribute($this->getContext($context, "log"), "priorityName"), "html", null, true);
  382. echo " - ";
  383. echo twig_escape_filter($this->env, $this->getAttribute($this->getContext($context, "log"), "message"), "html", null, true);
  384. echo "
  385. ";
  386. // line 135
  387. if (($this->getAttribute($this->getContext($context, "log", true), "context", array(), "any", true, true) && (!twig_test_empty($this->getAttribute($this->getContext($context, "log"), "context"))))) {
  388. // line 136
  389. echo " <br />
  390. <small>
  391. <strong>Context</strong>: ";
  392. // line 138
  393. echo twig_escape_filter($this->env, twig_jsonencode_filter($this->getAttribute($this->getContext($context, "log"), "context"), (64 | 256)), "html", null, true);
  394. echo "
  395. </small>
  396. ";
  397. }
  398. // line 141
  399. echo " ";
  400. }
  401. } catch (Exception $e) {
  402. ob_end_clean();
  403. throw $e;
  404. }
  405. return ('' === $tmp = ob_get_clean()) ? '' : new Twig_Markup($tmp, $this->env->getCharset());
  406. }
  407. public function getTemplateName()
  408. {
  409. return "WebProfilerBundle:Collector:logger.html.twig";
  410. }
  411. public function isTraitable()
  412. {
  413. return false;
  414. }
  415. public function getDebugInfo()
  416. {
  417. return array ( 403 => 136, 401 => 135, 391 => 133, 382 => 131, 356 => 122, 347 => 119, 234 => 90, 389 => 160, 380 => 158, 363 => 153, 361 => 152, 358 => 151, 345 => 147, 340 => 145, 331 => 140, 326 => 138, 307 => 128, 288 => 118, 281 => 98, 259 => 103, 255 => 101, 253 => 100, 248 => 97, 213 => 78, 197 => 69, 175 => 58, 191 => 67, 185 => 75, 113 => 48, 104 => 31, 367 => 155, 353 => 121, 306 => 286, 232 => 89, 161 => 58, 184 => 63, 170 => 56, 150 => 71, 84 => 27, 65 => 11, 292 => 156, 287 => 153, 265 => 105, 257 => 141, 251 => 138, 233 => 131, 186 => 72, 167 => 71, 153 => 69, 148 => 67, 126 => 83, 195 => 89, 146 => 64, 58 => 14, 757 => 345, 751 => 341, 742 => 339, 738 => 338, 734 => 337, 728 => 334, 724 => 333, 710 => 325, 703 => 321, 696 => 317, 674 => 304, 667 => 300, 659 => 295, 645 => 290, 639 => 287, 635 => 286, 630 => 284, 566 => 222, 559 => 220, 553 => 217, 548 => 215, 543 => 214, 537 => 212, 531 => 210, 529 => 209, 525 => 208, 517 => 207, 512 => 204, 506 => 200, 501 => 198, 496 => 197, 490 => 195, 484 => 193, 482 => 192, 470 => 190, 459 => 183, 443 => 178, 412 => 166, 396 => 161, 390 => 159, 388 => 158, 329 => 139, 324 => 112, 274 => 96, 260 => 142, 256 => 103, 244 => 128, 222 => 83, 216 => 79, 206 => 87, 200 => 117, 127 => 35, 100 => 46, 350 => 120, 342 => 189, 284 => 112, 271 => 136, 267 => 135, 228 => 128, 215 => 104, 211 => 88, 178 => 59, 165 => 69, 20 => 1, 809 => 338, 802 => 334, 794 => 331, 786 => 328, 778 => 325, 770 => 322, 762 => 347, 754 => 316, 745 => 310, 740 => 308, 723 => 293, 717 => 329, 711 => 291, 708 => 290, 695 => 284, 689 => 313, 681 => 308, 673 => 279, 664 => 277, 661 => 276, 658 => 275, 655 => 294, 651 => 272, 649 => 291, 646 => 270, 642 => 268, 640 => 267, 636 => 266, 631 => 265, 629 => 264, 626 => 263, 622 => 261, 619 => 260, 603 => 254, 597 => 251, 589 => 250, 581 => 249, 572 => 247, 569 => 246, 564 => 245, 560 => 243, 557 => 242, 554 => 241, 551 => 240, 549 => 239, 546 => 238, 530 => 232, 524 => 229, 516 => 228, 499 => 225, 491 => 223, 488 => 222, 477 => 214, 473 => 213, 463 => 212, 454 => 181, 451 => 209, 447 => 207, 441 => 205, 438 => 204, 434 => 202, 411 => 194, 405 => 191, 397 => 190, 383 => 185, 378 => 157, 371 => 127, 335 => 169, 318 => 164, 302 => 125, 293 => 107, 377 => 129, 354 => 192, 338 => 116, 330 => 183, 313 => 110, 308 => 109, 262 => 93, 242 => 116, 237 => 91, 231 => 96, 225 => 115, 223 => 114, 198 => 107, 194 => 68, 192 => 82, 155 => 55, 134 => 39, 129 => 63, 124 => 57, 110 => 22, 508 => 227, 505 => 250, 493 => 241, 487 => 238, 478 => 191, 468 => 223, 465 => 187, 456 => 218, 446 => 216, 436 => 214, 426 => 212, 416 => 210, 406 => 208, 404 => 207, 399 => 204, 392 => 202, 376 => 156, 370 => 198, 349 => 144, 344 => 180, 339 => 179, 333 => 115, 327 => 175, 325 => 166, 321 => 135, 317 => 134, 311 => 162, 303 => 165, 296 => 121, 275 => 154, 249 => 92, 212 => 254, 210 => 77, 205 => 138, 23 => 1, 70 => 15, 449 => 180, 431 => 174, 418 => 170, 414 => 142, 394 => 134, 386 => 159, 372 => 115, 364 => 113, 359 => 123, 351 => 109, 346 => 190, 343 => 146, 334 => 141, 328 => 113, 323 => 80, 315 => 111, 304 => 67, 297 => 158, 290 => 119, 286 => 58, 282 => 57, 279 => 110, 276 => 111, 250 => 102, 207 => 76, 190 => 92, 188 => 76, 174 => 74, 152 => 54, 137 => 65, 118 => 49, 114 => 36, 97 => 41, 90 => 20, 81 => 41, 76 => 17, 180 => 70, 172 => 68, 77 => 34, 53 => 15, 34 => 6, 480 => 162, 474 => 161, 469 => 158, 461 => 155, 457 => 153, 453 => 151, 444 => 206, 440 => 148, 437 => 176, 435 => 175, 430 => 201, 427 => 200, 423 => 173, 413 => 141, 409 => 132, 407 => 138, 402 => 163, 398 => 129, 393 => 126, 387 => 187, 384 => 157, 381 => 120, 379 => 119, 374 => 128, 368 => 126, 365 => 125, 362 => 124, 360 => 147, 355 => 150, 341 => 117, 337 => 140, 322 => 165, 314 => 99, 312 => 130, 309 => 129, 305 => 108, 298 => 164, 294 => 90, 285 => 100, 283 => 115, 278 => 86, 268 => 107, 264 => 84, 258 => 126, 252 => 140, 247 => 121, 241 => 93, 229 => 87, 220 => 70, 214 => 123, 177 => 69, 169 => 75, 140 => 53, 132 => 51, 128 => 42, 107 => 56, 61 => 15, 273 => 96, 269 => 107, 254 => 198, 243 => 88, 240 => 14, 238 => 125, 235 => 89, 230 => 11, 227 => 86, 224 => 127, 221 => 80, 219 => 125, 217 => 75, 208 => 76, 204 => 75, 179 => 69, 159 => 57, 143 => 69, 135 => 46, 119 => 58, 102 => 24, 71 => 23, 67 => 14, 63 => 21, 59 => 22, 93 => 38, 88 => 24, 78 => 19, 94 => 21, 89 => 30, 85 => 23, 75 => 18, 68 => 12, 56 => 11, 27 => 3, 201 => 74, 196 => 90, 183 => 71, 171 => 73, 166 => 54, 163 => 53, 158 => 79, 156 => 71, 151 => 63, 142 => 64, 138 => 47, 136 => 52, 121 => 50, 117 => 37, 105 => 25, 91 => 25, 62 => 24, 49 => 11, 87 => 34, 46 => 10, 44 => 9, 25 => 35, 21 => 2, 31 => 4, 38 => 7, 26 => 3, 28 => 3, 24 => 3, 19 => 1, 79 => 18, 72 => 17, 69 => 26, 47 => 8, 40 => 8, 37 => 7, 22 => 2, 246 => 96, 157 => 56, 145 => 66, 139 => 63, 131 => 61, 123 => 59, 120 => 38, 115 => 58, 111 => 47, 108 => 33, 101 => 30, 98 => 34, 96 => 37, 83 => 33, 74 => 27, 66 => 25, 55 => 13, 52 => 12, 50 => 18, 43 => 12, 41 => 8, 35 => 6, 32 => 5, 29 => 3, 209 => 161, 203 => 73, 199 => 98, 193 => 95, 189 => 66, 187 => 92, 182 => 90, 176 => 79, 173 => 77, 168 => 48, 164 => 70, 162 => 74, 154 => 61, 149 => 68, 147 => 51, 144 => 42, 141 => 48, 133 => 45, 130 => 36, 125 => 41, 122 => 43, 116 => 54, 112 => 58, 109 => 27, 106 => 45, 103 => 50, 99 => 23, 95 => 27, 92 => 28, 86 => 51, 82 => 21, 80 => 32, 73 => 16, 64 => 23, 60 => 12, 57 => 20, 54 => 19, 51 => 37, 48 => 16, 45 => 8, 42 => 7, 39 => 6, 36 => 5, 33 => 4, 30 => 3,);
  418. }
  419. }