3v4l.org

run code in 300+ PHP versions simultaneously
<?php function strpose_simple($haystack, $needle, $index = 0) { $hlen = strlen($haystack); $nlen = strlen($needle); do { $pos = strpos($haystack, $needle, $index); if ($pos !== false) { $end = $pos+$nlen; if (!isset($haystack[$pos-1]) || !trim($haystack[$pos-1])) { if (!isset($haystack[$end]) || !trim($haystack[$end])) { return $pos; } else $index = $pos+1; } else $index = $pos+1; } } while ($pos !== false && $pos < $hlen); return $pos; } function strpose_slow($haystack, $needle, $offset = 0) { $found = preg_match( '(\b(?:'.preg_quote($needle).')\b)Su', $haystack, $match, PREG_OFFSET_CAPTURE, $offset ); return ($found) ? $match[0][1] : FALSE; } $haystack = "Hello World"; $needles = array( "ll", "Hello", "Worlds" ); foreach (array('strpose_simple', 'strpose_slow') as $function) { $begin = 0; $end = 1000000; $start = microtime(true); while ($begin++<$end) { foreach ($needles as $id => $needle) { $function($haystack, $needle); } } printf("%s: %.4f seconds/%d peak\n", $function, microtime(true)-$start, memory_get_usage(true)); }
Output for 7.4.0
strpose_simple: 1.9243 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.12
strpose_simple: 1.5123 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.11
strpose_simple: 1.4924 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.10
strpose_simple: 1.5463 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.9
strpose_simple: 1.9872 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.8
strpose_simple: 1.9454 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.7
strpose_simple: 1.8505 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.6
strpose_simple: 1.4309 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.5
strpose_simple: 1.9883 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.4
strpose_simple: 1.8194 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.3
strpose_simple: 1.9816 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.2
strpose_simple: 1.8617 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.1
strpose_simple: 1.5345 seconds/2097152 peak
Process exited with code 137.
Output for 7.3.0
strpose_simple: 1.4456 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.3, 7.2.25
strpose_simple: 2.0434 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.24
strpose_simple: 1.5095 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.23
strpose_simple: 2.0275 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.22
strpose_simple: 2.0437 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.21
strpose_simple: 2.0084 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.20
strpose_simple: 1.4929 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.19
strpose_simple: 2.0511 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.18
strpose_simple: 1.4552 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.17
strpose_simple: 2.0200 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.16
strpose_simple: 1.6000 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.15
strpose_simple: 2.0856 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.14
strpose_simple: 1.9465 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.13
strpose_simple: 1.5171 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.12
strpose_simple: 2.0110 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.11
strpose_simple: 2.0713 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.10
strpose_simple: 2.0951 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.9
strpose_simple: 1.8557 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.8
strpose_simple: 1.8639 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.7
strpose_simple: 1.9535 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.6
strpose_simple: 1.5655 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.5
strpose_simple: 1.8999 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.4
strpose_simple: 1.8259 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.2
strpose_simple: 2.0486 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.1
strpose_simple: 2.0175 seconds/2097152 peak
Process exited with code 137.
Output for 7.2.0
strpose_simple: 1.4933 seconds/2097152 peak
Process exited with code 137.
Output for 4.3.3 - 4.3.11, 4.4.0 - 4.4.9, 5.0.3 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.2, 5.3.4, 5.3.12 - 5.3.14, 5.3.27 - 5.3.28, 7.1.25 - 7.1.33

Process exited with code 137.
Output for 7.1.7
strpose_simple: 0.8893 seconds/2097152 peak strpose_slow: 1.3450 seconds/2097152 peak
Output for 7.1.6
strpose_simple: 0.7345 seconds/2097152 peak strpose_slow: 1.2093 seconds/2097152 peak
Output for 7.1.5
strpose_simple: 0.7327 seconds/2097152 peak strpose_slow: 1.1794 seconds/2097152 peak
Output for 7.1.0
strpose_simple: -0.6488 seconds/2097152 peak strpose_slow: 2.7576 seconds/2097152 peak
Output for 7.0.20
strpose_simple: 0.6791 seconds/2097152 peak strpose_slow: 1.3227 seconds/2097152 peak
Output for 7.0.14
strpose_simple: -0.4149 seconds/2097152 peak strpose_slow: 2.6182 seconds/2097152 peak
Output for 7.0.10
strpose_simple: 0.6595 seconds/2097152 peak strpose_slow: 1.2950 seconds/2097152 peak
Output for 7.0.9
strpose_simple: 0.8175 seconds/2097152 peak strpose_slow: 1.5781 seconds/2097152 peak
Output for 7.0.8
strpose_simple: 0.6716 seconds/2097152 peak strpose_slow: 1.3303 seconds/2097152 peak
Output for 7.0.7
strpose_simple: 0.6565 seconds/2097152 peak strpose_slow: 1.2988 seconds/2097152 peak
Output for 7.0.6
strpose_simple: 0.6943 seconds/2097152 peak strpose_slow: 1.3696 seconds/2097152 peak
Output for 7.0.5
strpose_simple: 0.6490 seconds/2097152 peak strpose_slow: 1.2934 seconds/2097152 peak
Output for 7.0.4
strpose_simple: 0.6642 seconds/2097152 peak strpose_slow: 1.3094 seconds/2097152 peak
Output for 7.0.3
strpose_simple: 0.6615 seconds/2097152 peak strpose_slow: 1.3659 seconds/2097152 peak
Output for 7.0.2
strpose_simple: 0.6974 seconds/2097152 peak strpose_slow: 1.2955 seconds/2097152 peak
Output for 7.0.1
strpose_simple: 0.6947 seconds/2097152 peak strpose_slow: 1.3681 seconds/2097152 peak
Output for 7.0.0
strpose_simple: 0.6590 seconds/2097152 peak strpose_slow: 1.2964 seconds/2097152 peak
Output for 5.6.28
strpose_simple: 2.4204 seconds/262144 peak
Process exited with code 137.
Output for 5.6.25
strpose_simple: 1.8165 seconds/262144 peak
Process exited with code 137.
Output for 5.6.24
strpose_simple: 1.7569 seconds/262144 peak
Process exited with code 137.
Output for 5.6.23
strpose_simple: 1.8288 seconds/262144 peak
Process exited with code 137.
Output for 5.6.22
strpose_simple: 1.6591 seconds/262144 peak
Process exited with code 137.
Output for 5.6.21
strpose_simple: 1.8316 seconds/262144 peak
Process exited with code 137.
Output for 5.6.20
strpose_simple: 1.7839 seconds/262144 peak
Process exited with code 137.
Output for 5.6.19
strpose_simple: 2.0334 seconds/262144 peak
Process exited with code 137.
Output for 5.6.18
strpose_simple: 1.8423 seconds/262144 peak
Process exited with code 137.
Output for 5.6.17
strpose_simple: 1.7248 seconds/262144 peak
Process exited with code 137.
Output for 5.6.16
strpose_simple: 1.8211 seconds/262144 peak
Process exited with code 137.
Output for 5.6.15
strpose_simple: 1.8097 seconds/262144 peak
Process exited with code 137.
Output for 5.6.14
strpose_simple: 1.8281 seconds/262144 peak
Process exited with code 137.
Output for 5.6.13
strpose_simple: 1.9026 seconds/262144 peak
Process exited with code 137.
Output for 5.6.12
strpose_simple: 1.8754 seconds/262144 peak
Process exited with code 137.
Output for 5.6.11
strpose_simple: 1.7936 seconds/262144 peak
Process exited with code 137.
Output for 5.6.10
strpose_simple: 1.7983 seconds/262144 peak
Process exited with code 137.
Output for 5.6.9
strpose_simple: 1.6584 seconds/262144 peak
Process exited with code 137.
Output for 5.6.8
strpose_simple: 1.6851 seconds/262144 peak
Process exited with code 137.
Output for 5.6.7
strpose_simple: 1.7456 seconds/262144 peak
Process exited with code 137.
Output for 5.6.6
strpose_simple: 1.8263 seconds/262144 peak
Process exited with code 137.
Output for 5.6.5
strpose_simple: 2.0941 seconds/262144 peak
Process exited with code 137.
Output for 5.6.4
strpose_simple: 1.7960 seconds/262144 peak
Process exited with code 137.
Output for 5.6.3
strpose_simple: 1.6443 seconds/262144 peak
Process exited with code 137.
Output for 5.6.2
strpose_simple: 1.7805 seconds/262144 peak
Process exited with code 137.
Output for 5.6.1
strpose_simple: 2.1572 seconds/262144 peak
Process exited with code 137.
Output for 5.6.0
strpose_simple: 1.7485 seconds/262144 peak
Process exited with code 137.
Output for 5.5.38
strpose_simple: 1.8848 seconds/262144 peak
Process exited with code 137.
Output for 5.5.37
strpose_simple: 1.8510 seconds/262144 peak
Process exited with code 137.
Output for 5.5.36
strpose_simple: 1.8771 seconds/262144 peak
Process exited with code 137.
Output for 5.5.35
strpose_simple: 1.9010 seconds/262144 peak
Process exited with code 137.
Output for 5.5.34
strpose_simple: 1.7632 seconds/262144 peak
Process exited with code 137.
Output for 5.5.33
strpose_simple: 1.8766 seconds/262144 peak
Process exited with code 137.
Output for 5.4.3, 5.5.32
strpose_simple: 1.8906 seconds/262144 peak
Process exited with code 137.
Output for 5.5.31
strpose_simple: 1.9075 seconds/262144 peak
Process exited with code 137.
Output for 5.5.30
strpose_simple: 1.8956 seconds/262144 peak
Process exited with code 137.
Output for 5.5.29
strpose_simple: 1.9105 seconds/262144 peak
Process exited with code 137.
Output for 5.5.28
strpose_simple: 1.8773 seconds/262144 peak
Process exited with code 137.
Output for 5.5.27
strpose_simple: 1.9948 seconds/262144 peak
Process exited with code 137.
Output for 5.5.26
strpose_simple: 2.2596 seconds/262144 peak
Process exited with code 137.
Output for 5.5.25
strpose_simple: 1.8724 seconds/262144 peak
Process exited with code 137.
Output for 5.5.24
strpose_simple: 1.8696 seconds/262144 peak
Process exited with code 137.
Output for 5.5.23
strpose_simple: 1.9067 seconds/262144 peak
Process exited with code 137.
Output for 5.5.22
strpose_simple: 1.9464 seconds/262144 peak
Process exited with code 137.
Output for 5.4.26, 5.5.21
strpose_simple: 1.9225 seconds/262144 peak
Process exited with code 137.
Output for 5.5.20
strpose_simple: 1.8425 seconds/262144 peak
Process exited with code 137.
Output for 5.5.19
strpose_simple: 1.8764 seconds/262144 peak
Process exited with code 137.
Output for 5.5.18
strpose_simple: 1.8846 seconds/262144 peak
Process exited with code 137.
Output for 5.5.16
strpose_simple: 1.8589 seconds/262144 peak
Process exited with code 137.
Output for 5.5.15
strpose_simple: 1.8400 seconds/262144 peak
Process exited with code 137.
Output for 5.5.14
strpose_simple: 1.8713 seconds/262144 peak
Process exited with code 137.
Output for 5.5.13
strpose_simple: 1.8988 seconds/262144 peak
Process exited with code 137.
Output for 5.5.12
strpose_simple: 1.8964 seconds/262144 peak
Process exited with code 137.
Output for 5.5.11
strpose_simple: 2.0454 seconds/262144 peak
Process exited with code 137.
Output for 5.4.35, 5.5.10
strpose_simple: 1.8893 seconds/262144 peak
Process exited with code 137.
Output for 5.5.9
strpose_simple: 1.8482 seconds/262144 peak
Process exited with code 137.
Output for 5.5.8
strpose_simple: 1.8948 seconds/262144 peak
Process exited with code 137.
Output for 5.5.7
strpose_simple: 1.8740 seconds/262144 peak
Process exited with code 137.
Output for 5.5.6
strpose_simple: 1.9367 seconds/262144 peak
Process exited with code 137.
Output for 5.5.5
strpose_simple: 1.9052 seconds/262144 peak
Process exited with code 137.
Output for 5.5.4
strpose_simple: 1.7915 seconds/262144 peak
Process exited with code 137.
Output for 5.5.3
strpose_simple: 1.9231 seconds/262144 peak
Process exited with code 137.
Output for 5.5.2
strpose_simple: 1.8615 seconds/262144 peak
Process exited with code 137.
Output for 5.5.1
strpose_simple: 1.8372 seconds/262144 peak
Process exited with code 137.
Output for 5.5.0
strpose_simple: 1.7528 seconds/262144 peak
Process exited with code 137.
Output for 5.4.45
strpose_simple: 1.8796 seconds/262144 peak
Process exited with code 137.
Output for 5.4.44
strpose_simple: 1.8354 seconds/262144 peak
Process exited with code 137.
Output for 5.4.43
strpose_simple: 1.8388 seconds/262144 peak
Process exited with code 137.
Output for 5.4.42
strpose_simple: 1.8651 seconds/262144 peak
Process exited with code 137.
Output for 5.4.41
strpose_simple: 2.0948 seconds/262144 peak
Process exited with code 137.
Output for 5.4.40
strpose_simple: 1.8905 seconds/262144 peak
Process exited with code 137.
Output for 5.4.39
strpose_simple: 1.8690 seconds/262144 peak
Process exited with code 137.
Output for 5.4.38
strpose_simple: 1.8536 seconds/262144 peak
Process exited with code 137.
Output for 5.4.37
strpose_simple: 1.8861 seconds/262144 peak
Process exited with code 137.
Output for 5.4.36
strpose_simple: 1.8926 seconds/262144 peak
Process exited with code 137.
Output for 5.4.34
strpose_simple: 1.8775 seconds/262144 peak
Process exited with code 137.
Output for 5.4.32
strpose_simple: 1.9563 seconds/262144 peak
Process exited with code 137.
Output for 5.4.31
strpose_simple: 1.8638 seconds/262144 peak
Process exited with code 137.
Output for 5.4.30
strpose_simple: 1.8162 seconds/262144 peak
Process exited with code 137.
Output for 5.4.29
strpose_simple: 1.9079 seconds/262144 peak
Process exited with code 137.
Output for 5.4.28
strpose_simple: 2.2891 seconds/262144 peak
Process exited with code 137.
Output for 5.4.27
strpose_simple: 1.7978 seconds/262144 peak
Process exited with code 137.
Output for 5.4.25
strpose_simple: 1.8826 seconds/262144 peak
Process exited with code 137.
Output for 5.4.24
strpose_simple: 1.8712 seconds/262144 peak
Process exited with code 137.
Output for 5.4.23
strpose_simple: 1.8328 seconds/262144 peak
Process exited with code 137.
Output for 5.4.22
strpose_simple: 1.9369 seconds/262144 peak
Process exited with code 137.
Output for 5.4.21
strpose_simple: 2.2331 seconds/262144 peak
Process exited with code 137.
Output for 5.4.20
strpose_simple: 1.9356 seconds/262144 peak
Process exited with code 137.
Output for 5.4.19
strpose_simple: 1.8440 seconds/262144 peak
Process exited with code 137.
Output for 5.4.18
strpose_simple: 2.2654 seconds/262144 peak
Process exited with code 137.
Output for 5.4.17
strpose_simple: 1.8951 seconds/262144 peak
Process exited with code 137.
Output for 5.4.16
strpose_simple: 1.9120 seconds/262144 peak
Process exited with code 137.
Output for 5.4.15
strpose_simple: 1.9127 seconds/262144 peak
Process exited with code 137.
Output for 5.4.14
strpose_simple: 2.3616 seconds/262144 peak
Process exited with code 137.
Output for 5.4.13
strpose_simple: 1.9439 seconds/262144 peak
Process exited with code 137.
Output for 5.4.12
strpose_simple: 1.9088 seconds/262144 peak
Process exited with code 137.
Output for 5.4.11
strpose_simple: 1.7596 seconds/262144 peak
Process exited with code 137.
Output for 5.4.10
strpose_simple: 1.7413 seconds/262144 peak
Process exited with code 137.
Output for 5.4.9
strpose_simple: 2.0810 seconds/262144 peak
Process exited with code 137.
Output for 5.4.8
strpose_simple: 1.9596 seconds/262144 peak
Process exited with code 137.
Output for 5.4.7
strpose_simple: 1.8820 seconds/262144 peak
Process exited with code 137.
Output for 5.4.6
strpose_simple: 1.8970 seconds/262144 peak
Process exited with code 137.
Output for 5.4.5
strpose_simple: 1.9153 seconds/262144 peak
Process exited with code 137.
Output for 5.4.4
strpose_simple: 1.9636 seconds/262144 peak
Process exited with code 137.
Output for 5.4.2
strpose_simple: 1.7452 seconds/262144 peak
Process exited with code 137.
Output for 5.4.1
strpose_simple: 1.8659 seconds/262144 peak
Process exited with code 137.
Output for 5.4.0
strpose_simple: 1.9006 seconds/262144 peak
Process exited with code 137.
Output for 5.3.29
strpose_simple: 2.1902 seconds/786432 peak
Process exited with code 137.
Output for 5.3.26
strpose_simple: 2.3816 seconds/786432 peak
Process exited with code 137.
Output for 5.3.25
strpose_simple: 2.3585 seconds/786432 peak
Process exited with code 137.
Output for 5.3.24
strpose_simple: 2.4077 seconds/786432 peak
Process exited with code 137.
Output for 5.3.23
strpose_simple: 2.2560 seconds/786432 peak
Process exited with code 137.
Output for 5.3.22
strpose_simple: 2.4046 seconds/786432 peak
Process exited with code 137.
Output for 5.3.21
strpose_simple: 2.3671 seconds/786432 peak
Process exited with code 137.
Output for 5.3.20
strpose_simple: 2.3772 seconds/786432 peak
Process exited with code 137.
Output for 5.3.19
strpose_simple: 2.3435 seconds/786432 peak
Process exited with code 137.
Output for 5.3.18
strpose_simple: 2.3431 seconds/786432 peak
Process exited with code 137.
Output for 5.3.17
strpose_simple: 2.3894 seconds/786432 peak
Process exited with code 137.
Output for 5.3.16
strpose_simple: 2.3933 seconds/786432 peak
Process exited with code 137.
Output for 5.3.15
strpose_simple: 2.3204 seconds/786432 peak
Process exited with code 137.
Output for 5.3.11
strpose_simple: 2.3899 seconds/786432 peak
Process exited with code 137.
Output for 5.3.10
strpose_simple: 2.3761 seconds/786432 peak
Process exited with code 137.
Output for 5.3.9
strpose_simple: 2.3525 seconds/786432 peak
Process exited with code 137.
Output for 5.3.8
strpose_simple: 2.3893 seconds/786432 peak
Process exited with code 137.
Output for 5.3.7
strpose_simple: 2.2846 seconds/786432 peak
Process exited with code 137.
Output for 5.3.6
strpose_simple: 2.3469 seconds/786432 peak
Process exited with code 137.
Output for 5.3.5
strpose_simple: 2.3739 seconds/786432 peak
Process exited with code 137.
Output for 5.3.3
strpose_simple: 2.4075 seconds/786432 peak
Process exited with code 137.
Output for 5.3.1
strpose_simple: 2.3610 seconds/786432 peak
Process exited with code 137.
Output for 5.3.0
strpose_simple: 2.2864 seconds/786432 peak
Process exited with code 137.
Output for 4.3.0 - 4.3.2, 5.0.0 - 5.0.2
Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string offset: -1 in /in/h5ZvI on line 12 Notice: Uninitialized string of
Process exited with code 137.

preferences:
203.21 ms | 437 KiB | 264 Q