=')) { /** * UTF-8 aware alternative to strrpos * @ignore */ function utf8_strrpos($str, $needle, $offset = null) { // Emulate behaviour of strrpos rather than raising warning if (empty($str)) { return false; } if (is_null($offset)) { return mb_strrpos($str, $needle); } else { return mb_strrpos($str, $needle, $offset); } } } else { /** * UTF-8 aware alternative to strrpos * @ignore */ function utf8_strrpos($str, $needle, $offset = null) { // offset for mb_strrpos was added in 5.2.0 if (is_null($offset)) { // Emulate behaviour of strrpos rather than raising warning if (empty($str)) { return false; } return mb_strrpos($str, $needle); } else { if (!is_int($offset)) { trigger_error('utf8_strrpos expects parameter 3 to be long', E_USER_ERROR); return false; } $str = mb_substr($str, $offset); if (false !== ($pos = mb_strrpos($str, $needle))) { return $pos + $offset; } return false; } } } /** * UTF-8 aware alternative to strpos * @ignore */ function utf8_strpos($str, $needle, $offset = null) { if (is_null($offset)) { return mb_strpos($str, $needle); } else { return mb_strpos($str, $needle, $offset); } } /** * UTF-8 aware alternative to strtolower * @ignore */ function utf8_strtolower($str) { return mb_strtolower($str); } /** * UTF-8 aware alternative to strtoupper * @ignore */ function utf8_strtoupper($str) { return mb_strtoupper($str); } /** * UTF-8 aware alternative to substr * @ignore */ function utf8_substr($str, $offset, $length = null) { if (is_null($length)) { return mb_substr($str, $offset); } else { return mb_substr($str, $offset, $length); } } /** * Return the length (in characters) of a UTF-8 string * @ignore */ function utf8_strlen($text) { return mb_strlen($text, 'utf-8'); } } else { /** * UTF-8 aware alternative to strrpos * Find position of last occurrence of a char in a string * * @author Harry Fuecks * @param string $str haystack * @param string $needle needle * @param integer $offset (optional) offset (from left) * @return mixed integer position or FALSE on failure */ function utf8_strrpos($str, $needle, $offset = null) { if (is_null($offset)) { $ar = explode($needle, $str); if (sizeof($ar) > 1) { // Pop off the end of the string where the last match was made array_pop($ar); $str = join($needle, $ar); return utf8_strlen($str); } return false; } else { if (!is_int($offset)) { trigger_error('utf8_strrpos expects parameter 3 to be long', E_USER_ERROR); return false; } $str = utf8_substr($str, $offset); if (false !== ($pos = utf8_strrpos($str, $needle))) { return $pos + $offset; } return false; } } /** * UTF-8 aware alternative to strpos * Find position of first occurrence of a string * * @author Harry Fuecks * @param string $str haystack * @param string $needle needle * @param integer $offset offset in characters (from left) * @return mixed integer position or FALSE on failure */ function utf8_strpos($str, $needle, $offset = null) { if (is_null($offset)) { $ar = explode($needle, $str); if (sizeof($ar) > 1) { return utf8_strlen($ar[0]); } return false; } else { if (!is_int($offset)) { trigger_error('utf8_strpos: Offset must be an integer', E_USER_ERROR); return false; } $str = utf8_substr($str, $offset); if (false !== ($pos = utf8_strpos($str, $needle))) { return $pos + $offset; } return false; } } /** * UTF-8 aware alternative to strtolower * Make a string lowercase * Note: The concept of a characters "case" only exists is some alphabets * such as Latin, Greek, Cyrillic, Armenian and archaic Georgian - it does * not exist in the Chinese alphabet, for example. See Unicode Standard * Annex #21: Case Mappings * * @param string * @return string string in lowercase */ function utf8_strtolower($string) { static $utf8_upper_to_lower = array( "\xC3\x80" => "\xC3\xA0", "\xC3\x81" => "\xC3\xA1", "\xC3\x82" => "\xC3\xA2", "\xC3\x83" => "\xC3\xA3", "\xC3\x84" => "\xC3\xA4", "\xC3\x85" => "\xC3\xA5", "\xC3\x86" => "\xC3\xA6", "\xC3\x87" => "\xC3\xA7", "\xC3\x88" => "\xC3\xA8", "\xC3\x89" => "\xC3\xA9", "\xC3\x8A" => "\xC3\xAA", "\xC3\x8B" => "\xC3\xAB", "\xC3\x8C" => "\xC3\xAC", "\xC3\x8D" => "\xC3\xAD", "\xC3\x8E" => "\xC3\xAE", "\xC3\x8F" => "\xC3\xAF", "\xC3\x90" => "\xC3\xB0", "\xC3\x91" => "\xC3\xB1", "\xC3\x92" => "\xC3\xB2", "\xC3\x93" => "\xC3\xB3", "\xC3\x94" => "\xC3\xB4", "\xC3\x95" => "\xC3\xB5", "\xC3\x96" => "\xC3\xB6", "\xC3\x98" => "\xC3\xB8", "\xC3\x99" => "\xC3\xB9", "\xC3\x9A" => "\xC3\xBA", "\xC3\x9B" => "\xC3\xBB", "\xC3\x9C" => "\xC3\xBC", "\xC3\x9D" => "\xC3\xBD", "\xC3\x9E" => "\xC3\xBE", "\xC4\x80" => "\xC4\x81", "\xC4\x82" => "\xC4\x83", "\xC4\x84" => "\xC4\x85", "\xC4\x86" => "\xC4\x87", "\xC4\x88" => "\xC4\x89", "\xC4\x8A" => "\xC4\x8B", "\xC4\x8C" => "\xC4\x8D", "\xC4\x8E" => "\xC4\x8F", "\xC4\x90" => "\xC4\x91", "\xC4\x92" => "\xC4\x93", "\xC4\x96" => "\xC4\x97", "\xC4\x98" => "\xC4\x99", "\xC4\x9A" => "\xC4\x9B", "\xC4\x9C" => "\xC4\x9D", "\xC4\x9E" => "\xC4\x9F", "\xC4\xA0" => "\xC4\xA1", "\xC4\xA2" => "\xC4\xA3", "\xC4\xA4" => "\xC4\xA5", "\xC4\xA6" => "\xC4\xA7", "\xC4\xA8" => "\xC4\xA9", "\xC4\xAA" => "\xC4\xAB", "\xC4\xAE" => "\xC4\xAF", "\xC4\xB4" => "\xC4\xB5", "\xC4\xB6" => "\xC4\xB7", "\xC4\xB9" => "\xC4\xBA", "\xC4\xBB" => "\xC4\xBC", "\xC4\xBD" => "\xC4\xBE", "\xC5\x81" => "\xC5\x82", "\xC5\x83" => "\xC5\x84", "\xC5\x85" => "\xC5\x86", "\xC5\x87" => "\xC5\x88", "\xC5\x8A" => "\xC5\x8B", "\xC5\x8C" => "\xC5\x8D", "\xC5\x90" => "\xC5\x91", "\xC5\x94" => "\xC5\x95", "\xC5\x96" => "\xC5\x97", "\xC5\x98" => "\xC5\x99", "\xC5\x9A" => "\xC5\x9B", "\xC5\x9C" => "\xC5\x9D", "\xC5\x9E" => "\xC5\x9F", "\xC5\xA0" => "\xC5\xA1", "\xC5\xA2" => "\xC5\xA3", "\xC5\xA4" => "\xC5\xA5", "\xC5\xA6" => "\xC5\xA7", "\xC5\xA8" => "\xC5\xA9", "\xC5\xAA" => "\xC5\xAB", "\xC5\xAC" => "\xC5\xAD", "\xC5\xAE" => "\xC5\xAF", "\xC5\xB0" => "\xC5\xB1", "\xC5\xB2" => "\xC5\xB3", "\xC5\xB4" => "\xC5\xB5", "\xC5\xB6" => "\xC5\xB7", "\xC5\xB8" => "\xC3\xBF", "\xC5\xB9" => "\xC5\xBA", "\xC5\xBB" => "\xC5\xBC", "\xC5\xBD" => "\xC5\xBE", "\xC6\xA0" => "\xC6\xA1", "\xC6\xAF" => "\xC6\xB0", "\xC8\x98" => "\xC8\x99", "\xC8\x9A" => "\xC8\x9B", "\xCE\x86" => "\xCE\xAC", "\xCE\x88" => "\xCE\xAD", "\xCE\x89" => "\xCE\xAE", "\xCE\x8A" => "\xCE\xAF", "\xCE\x8C" => "\xCF\x8C", "\xCE\x8E" => "\xCF\x8D", "\xCE\x8F" => "\xCF\x8E", "\xCE\x91" => "\xCE\xB1", "\xCE\x92" => "\xCE\xB2", "\xCE\x93" => "\xCE\xB3", "\xCE\x94" => "\xCE\xB4", "\xCE\x95" => "\xCE\xB5", "\xCE\x96" => "\xCE\xB6", "\xCE\x97" => "\xCE\xB7", "\xCE\x98" => "\xCE\xB8", "\xCE\x99" => "\xCE\xB9", "\xCE\x9A" => "\xCE\xBA", "\xCE\x9B" => "\xCE\xBB", "\xCE\x9C" => "\xCE\xBC", "\xCE\x9D" => "\xCE\xBD", "\xCE\x9E" => "\xCE\xBE", "\xCE\x9F" => "\xCE\xBF", "\xCE\xA0" => "\xCF\x80", "\xCE\xA1" => "\xCF\x81", "\xCE\xA3" => "\xCF\x83", "\xCE\xA4" => "\xCF\x84", "\xCE\xA5" => "\xCF\x85", "\xCE\xA6" => "\xCF\x86", "\xCE\xA7" => "\xCF\x87", "\xCE\xA8" => "\xCF\x88", "\xCE\xA9" => "\xCF\x89", "\xCE\xAA" => "\xCF\x8A", "\xCE\xAB" => "\xCF\x8B", "\xD0\x81" => "\xD1\x91", "\xD0\x82" => "\xD1\x92", "\xD0\x83" => "\xD1\x93", "\xD0\x84" => "\xD1\x94", "\xD0\x85" => "\xD1\x95", "\xD0\x86" => "\xD1\x96", "\xD0\x87" => "\xD1\x97", "\xD0\x88" => "\xD1\x98", "\xD0\x89" => "\xD1\x99", "\xD0\x8A" => "\xD1\x9A", "\xD0\x8B" => "\xD1\x9B", "\xD0\x8C" => "\xD1\x9C", "\xD0\x8E" => "\xD1\x9E", "\xD0\x8F" => "\xD1\x9F", "\xD0\x90" => "\xD0\xB0", "\xD0\x91" => "\xD0\xB1", "\xD0\x92" => "\xD0\xB2", "\xD0\x93" => "\xD0\xB3", "\xD0\x94" => "\xD0\xB4", "\xD0\x95" => "\xD0\xB5", "\xD0\x96" => "\xD0\xB6", "\xD0\x97" => "\xD0\xB7", "\xD0\x98" => "\xD0\xB8", "\xD0\x99" => "\xD0\xB9", "\xD0\x9A" => "\xD0\xBA", "\xD0\x9B" => "\xD0\xBB", "\xD0\x9C" => "\xD0\xBC", "\xD0\x9D" => "\xD0\xBD", "\xD0\x9E" => "\xD0\xBE", "\xD0\x9F" => "\xD0\xBF", "\xD0\xA0" => "\xD1\x80", "\xD0\xA1" => "\xD1\x81", "\xD0\xA2" => "\xD1\x82", "\xD0\xA3" => "\xD1\x83", "\xD0\xA4" => "\xD1\x84", "\xD0\xA5" => "\xD1\x85", "\xD0\xA6" => "\xD1\x86", "\xD0\xA7" => "\xD1\x87", "\xD0\xA8" => "\xD1\x88", "\xD0\xA9" => "\xD1\x89", "\xD0\xAA" => "\xD1\x8A", "\xD0\xAB" => "\xD1\x8B", "\xD0\xAC" => "\xD1\x8C", "\xD0\xAD" => "\xD1\x8D", "\xD0\xAE" => "\xD1\x8E", "\xD0\xAF" => "\xD1\x8F", "\xD2\x90" => "\xD2\x91", "\xE1\xB8\x82" => "\xE1\xB8\x83", "\xE1\xB8\x8A" => "\xE1\xB8\x8B", "\xE1\xB8\x9E" => "\xE1\xB8\x9F", "\xE1\xB9\x80" => "\xE1\xB9\x81", "\xE1\xB9\x96" => "\xE1\xB9\x97", "\xE1\xB9\xA0" => "\xE1\xB9\xA1", "\xE1\xB9\xAA" => "\xE1\xB9\xAB", "\xE1\xBA\x80" => "\xE1\xBA\x81", "\xE1\xBA\x82" => "\xE1\xBA\x83", "\xE1\xBA\x84" => "\xE1\xBA\x85", "\xE1\xBB\xB2" => "\xE1\xBB\xB3" ); return strtr(strtolower($string), $utf8_upper_to_lower); } /** * UTF-8 aware alternative to strtoupper * Make a string uppercase * Note: The concept of a characters "case" only exists is some alphabets * such as Latin, Greek, Cyrillic, Armenian and archaic Georgian - it does * not exist in the Chinese alphabet, for example. See Unicode Standard * Annex #21: Case Mappings * * @param string * @return string string in uppercase */ function utf8_strtoupper($string) { static $utf8_lower_to_upper = array( "\xC3\xA0" => "\xC3\x80", "\xC3\xA1" => "\xC3\x81", "\xC3\xA2" => "\xC3\x82", "\xC3\xA3" => "\xC3\x83", "\xC3\xA4" => "\xC3\x84", "\xC3\xA5" => "\xC3\x85", "\xC3\xA6" => "\xC3\x86", "\xC3\xA7" => "\xC3\x87", "\xC3\xA8" => "\xC3\x88", "\xC3\xA9" => "\xC3\x89", "\xC3\xAA" => "\xC3\x8A", "\xC3\xAB" => "\xC3\x8B", "\xC3\xAC" => "\xC3\x8C", "\xC3\xAD" => "\xC3\x8D", "\xC3\xAE" => "\xC3\x8E", "\xC3\xAF" => "\xC3\x8F", "\xC3\xB0" => "\xC3\x90", "\xC3\xB1" => "\xC3\x91", "\xC3\xB2" => "\xC3\x92", "\xC3\xB3" => "\xC3\x93", "\xC3\xB4" => "\xC3\x94", "\xC3\xB5" => "\xC3\x95", "\xC3\xB6" => "\xC3\x96", "\xC3\xB8" => "\xC3\x98", "\xC3\xB9" => "\xC3\x99", "\xC3\xBA" => "\xC3\x9A", "\xC3\xBB" => "\xC3\x9B", "\xC3\xBC" => "\xC3\x9C", "\xC3\xBD" => "\xC3\x9D", "\xC3\xBE" => "\xC3\x9E", "\xC3\xBF" => "\xC5\xB8", "\xC4\x81" => "\xC4\x80", "\xC4\x83" => "\xC4\x82", "\xC4\x85" => "\xC4\x84", "\xC4\x87" => "\xC4\x86", "\xC4\x89" => "\xC4\x88", "\xC4\x8B" => "\xC4\x8A", "\xC4\x8D" => "\xC4\x8C", "\xC4\x8F" => "\xC4\x8E", "\xC4\x91" => "\xC4\x90", "\xC4\x93" => "\xC4\x92", "\xC4\x97" => "\xC4\x96", "\xC4\x99" => "\xC4\x98", "\xC4\x9B" => "\xC4\x9A", "\xC4\x9D" => "\xC4\x9C", "\xC4\x9F" => "\xC4\x9E", "\xC4\xA1" => "\xC4\xA0", "\xC4\xA3" => "\xC4\xA2", "\xC4\xA5" => "\xC4\xA4", "\xC4\xA7" => "\xC4\xA6", "\xC4\xA9" => "\xC4\xA8", "\xC4\xAB" => "\xC4\xAA", "\xC4\xAF" => "\xC4\xAE", "\xC4\xB5" => "\xC4\xB4", "\xC4\xB7" => "\xC4\xB6", "\xC4\xBA" => "\xC4\xB9", "\xC4\xBC" => "\xC4\xBB", "\xC4\xBE" => "\xC4\xBD", "\xC5\x82" => "\xC5\x81", "\xC5\x84" => "\xC5\x83", "\xC5\x86" => "\xC5\x85", "\xC5\x88" => "\xC5\x87", "\xC5\x8B" => "\xC5\x8A", "\xC5\x8D" => "\xC5\x8C", "\xC5\x91" => "\xC5\x90", "\xC5\x95" => "\xC5\x94", "\xC5\x97" => "\xC5\x96", "\xC5\x99" => "\xC5\x98", "\xC5\x9B" => "\xC5\x9A", "\xC5\x9D" => "\xC5\x9C", "\xC5\x9F" => "\xC5\x9E", "\xC5\xA1" => "\xC5\xA0", "\xC5\xA3" => "\xC5\xA2", "\xC5\xA5" => "\xC5\xA4", "\xC5\xA7" => "\xC5\xA6", "\xC5\xA9" => "\xC5\xA8", "\xC5\xAB" => "\xC5\xAA", "\xC5\xAD" => "\xC5\xAC", "\xC5\xAF" => "\xC5\xAE", "\xC5\xB1" => "\xC5\xB0", "\xC5\xB3" => "\xC5\xB2", "\xC5\xB5" => "\xC5\xB4", "\xC5\xB7" => "\xC5\xB6", "\xC5\xBA" => "\xC5\xB9", "\xC5\xBC" => "\xC5\xBB", "\xC5\xBE" => "\xC5\xBD", "\xC6\xA1" => "\xC6\xA0", "\xC6\xB0" => "\xC6\xAF", "\xC8\x99" => "\xC8\x98", "\xC8\x9B" => "\xC8\x9A", "\xCE\xAC" => "\xCE\x86", "\xCE\xAD" => "\xCE\x88", "\xCE\xAE" => "\xCE\x89", "\xCE\xAF" => "\xCE\x8A", "\xCE\xB1" => "\xCE\x91", "\xCE\xB2" => "\xCE\x92", "\xCE\xB3" => "\xCE\x93", "\xCE\xB4" => "\xCE\x94", "\xCE\xB5" => "\xCE\x95", "\xCE\xB6" => "\xCE\x96", "\xCE\xB7" => "\xCE\x97", "\xCE\xB8" => "\xCE\x98", "\xCE\xB9" => "\xCE\x99", "\xCE\xBA" => "\xCE\x9A", "\xCE\xBB" => "\xCE\x9B", "\xCE\xBC" => "\xCE\x9C", "\xCE\xBD" => "\xCE\x9D", "\xCE\xBE" => "\xCE\x9E", "\xCE\xBF" => "\xCE\x9F", "\xCF\x80" => "\xCE\xA0", "\xCF\x81" => "\xCE\xA1", "\xCF\x83" => "\xCE\xA3", "\xCF\x84" => "\xCE\xA4", "\xCF\x85" => "\xCE\xA5", "\xCF\x86" => "\xCE\xA6", "\xCF\x87" => "\xCE\xA7", "\xCF\x88" => "\xCE\xA8", "\xCF\x89" => "\xCE\xA9", "\xCF\x8A" => "\xCE\xAA", "\xCF\x8B" => "\xCE\xAB", "\xCF\x8C" => "\xCE\x8C", "\xCF\x8D" => "\xCE\x8E", "\xCF\x8E" => "\xCE\x8F", "\xD0\xB0" => "\xD0\x90", "\xD0\xB1" => "\xD0\x91", "\xD0\xB2" => "\xD0\x92", "\xD0\xB3" => "\xD0\x93", "\xD0\xB4" => "\xD0\x94", "\xD0\xB5" => "\xD0\x95", "\xD0\xB6" => "\xD0\x96", "\xD0\xB7" => "\xD0\x97", "\xD0\xB8" => "\xD0\x98", "\xD0\xB9" => "\xD0\x99", "\xD0\xBA" => "\xD0\x9A", "\xD0\xBB" => "\xD0\x9B", "\xD0\xBC" => "\xD0\x9C", "\xD0\xBD" => "\xD0\x9D", "\xD0\xBE" => "\xD0\x9E", "\xD0\xBF" => "\xD0\x9F", "\xD1\x80" => "\xD0\xA0", "\xD1\x81" => "\xD0\xA1", "\xD1\x82" => "\xD0\xA2", "\xD1\x83" => "\xD0\xA3", "\xD1\x84" => "\xD0\xA4", "\xD1\x85" => "\xD0\xA5", "\xD1\x86" => "\xD0\xA6", "\xD1\x87" => "\xD0\xA7", "\xD1\x88" => "\xD0\xA8", "\xD1\x89" => "\xD0\xA9", "\xD1\x8A" => "\xD0\xAA", "\xD1\x8B" => "\xD0\xAB", "\xD1\x8C" => "\xD0\xAC", "\xD1\x8D" => "\xD0\xAD", "\xD1\x8E" => "\xD0\xAE", "\xD1\x8F" => "\xD0\xAF", "\xD1\x91" => "\xD0\x81", "\xD1\x92" => "\xD0\x82", "\xD1\x93" => "\xD0\x83", "\xD1\x94" => "\xD0\x84", "\xD1\x95" => "\xD0\x85", "\xD1\x96" => "\xD0\x86", "\xD1\x97" => "\xD0\x87", "\xD1\x98" => "\xD0\x88", "\xD1\x99" => "\xD0\x89", "\xD1\x9A" => "\xD0\x8A", "\xD1\x9B" => "\xD0\x8B", "\xD1\x9C" => "\xD0\x8C", "\xD1\x9E" => "\xD0\x8E", "\xD1\x9F" => "\xD0\x8F", "\xD2\x91" => "\xD2\x90", "\xE1\xB8\x83" => "\xE1\xB8\x82", "\xE1\xB8\x8B" => "\xE1\xB8\x8A", "\xE1\xB8\x9F" => "\xE1\xB8\x9E", "\xE1\xB9\x81" => "\xE1\xB9\x80", "\xE1\xB9\x97" => "\xE1\xB9\x96", "\xE1\xB9\xA1" => "\xE1\xB9\xA0", "\xE1\xB9\xAB" => "\xE1\xB9\xAA", "\xE1\xBA\x81" => "\xE1\xBA\x80", "\xE1\xBA\x83" => "\xE1\xBA\x82", "\xE1\xBA\x85" => "\xE1\xBA\x84", "\xE1\xBB\xB3" => "\xE1\xBB\xB2" ); return strtr(strtoupper($string), $utf8_lower_to_upper); } /** * UTF-8 aware alternative to substr * Return part of a string given character offset (and optionally length) * * Note arguments: comparied to substr - if offset or length are * not integers, this version will not complain but rather massages them * into an integer. * * Note on returned values: substr documentation states false can be * returned in some cases (e.g. offset > string length) * mb_substr never returns false, it will return an empty string instead. * This adopts the mb_substr approach * * Note on implementation: PCRE only supports repetitions of less than * 65536, in order to accept up to MAXINT values for offset and length, * we'll repeat a group of 65535 characters when needed. * * Note on implementation: calculating the number of characters in the * string is a relatively expensive operation, so we only carry it out when * necessary. It isn't necessary for +ve offsets and no specified length * * @author Chris Smith * @param string $str * @param integer $offset number of UTF-8 characters offset (from left) * @param integer $length (optional) length in UTF-8 characters from offset * @return mixed string or FALSE if failure */ function utf8_substr($str, $offset, $length = NULL) { // generates E_NOTICE // for PHP4 objects, but not PHP5 objects $str = (string) $str; $offset = (int) $offset; if (!is_null($length)) { $length = (int) $length; } // handle trivial cases if ($length === 0 || ($offset < 0 && $length < 0 && $length < $offset)) { return ''; } // normalise negative offsets (we could use a tail // anchored pattern, but they are horribly slow!) if ($offset < 0) { // see notes $strlen = utf8_strlen($str); $offset = $strlen + $offset; if ($offset < 0) { $offset = 0; } } $op = ''; $lp = ''; // establish a pattern for offset, a // non-captured group equal in length to offset if ($offset > 0) { $ox = (int) ($offset / 65535); $oy = $offset % 65535; if ($ox) { $op = '(?:.{65535}){' . $ox . '}'; } $op = '^(?:' . $op . '.{' . $oy . '})'; } else { // offset == 0; just anchor the pattern $op = '^'; } // establish a pattern for length if (is_null($length)) { // the rest of the string $lp = '(.*)$'; } else { if (!isset($strlen)) { // see notes $strlen = utf8_strlen($str); } // another trivial case if ($offset > $strlen) { return ''; } if ($length > 0) { // reduce any length that would // go passed the end of the string $length = min($strlen - $offset, $length); $lx = (int) ($length / 65535); $ly = $length % 65535; // negative length requires a captured group // of length characters if ($lx) { $lp = '(?:.{65535}){' . $lx . '}'; } $lp = '(' . $lp . '.{'. $ly . '})'; } else if ($length < 0) { if ($length < ($offset - $strlen)) { return ''; } $lx = (int)((-$length) / 65535); $ly = (-$length) % 65535; // negative length requires ... capture everything // except a group of -length characters // anchored at the tail-end of the string if ($lx) { $lp = '(?:.{65535}){' . $lx . '}'; } $lp = '(.*)(?:' . $lp . '.{' . $ly . '})$'; } } if (!preg_match('#' . $op . $lp . '#us', $str, $match)) { return ''; } return $match[1]; } /** * Return the length (in characters) of a UTF-8 string * * @param string $text UTF-8 string * @return integer Length (in chars) of given string */ function utf8_strlen($text) { // Since utf8_decode is replacing multibyte characters to ? strlen works fine return strlen(utf8_decode($text)); } } /** * UTF-8 aware alternative to str_split * Convert a string to an array * * @author Harry Fuecks * @param string $str UTF-8 encoded * @param int $split_len number to characters to split string by * @return array characters in string reverses */ function utf8_str_split($str, $split_len = 1) { if (!is_int($split_len) || $split_len < 1) { return false; } $len = utf8_strlen($str); if ($len <= $split_len) { return array($str); } preg_match_all('/.{' . $split_len . '}|[^\x00]{1,' . $split_len . '}$/us', $str, $ar); return $ar[0]; } /** * UTF-8 aware alternative to strspn * Find length of initial segment matching the mask * * @author Harry Fuecks */ function utf8_strspn($str, $mask, $start = null, $length = null) { if ($start !== null || $length !== null) { $str = utf8_substr($str, $start, $length); } preg_match('/^[' . $mask . ']+/u', $str, $matches); if (isset($matches[0])) { return utf8_strlen($matches[0]); } return 0; } /** * UTF-8 aware alternative to ucfirst * Make a string's first character uppercase * * @author Harry Fuecks * @param string * @return string with first character as upper case (if applicable) */ function utf8_ucfirst($str) { switch (utf8_strlen($str)) { case 0: return ''; break; case 1: return utf8_strtoupper($str); break; default: preg_match('/^(.{1})(.*)$/us', $str, $matches); return utf8_strtoupper($matches[1]) . $matches[2]; break; } } /** * Recode a string to UTF-8 * * If the encoding is not supported, the string is returned as-is * * @param string $string Original string * @param string $encoding Original encoding (lowered) * @return string The string, encoded in UTF-8 */ function utf8_recode($string, $encoding) { $encoding = strtolower($encoding); if ($encoding == 'utf-8' || !is_string($string) || empty($string)) { return $string; } // we force iso-8859-1 to be cp1252 if ($encoding == 'iso-8859-1') { $encoding = 'cp1252'; } // convert iso-8859-8-i to iso-8859-8 else if ($encoding == 'iso-8859-8-i') { $encoding = 'iso-8859-8'; $string = hebrev($string); } // First, try iconv() if (function_exists('iconv')) { $ret = @iconv($encoding, 'utf-8', $string); if (!empty($ret)) { return $ret; } } // Try the mb_string extension if (function_exists('mb_convert_encoding')) { // mbstring is nasty on PHP4, we must make *sure* that we send a good encoding switch ($encoding) { case 'iso-8859-1': case 'iso-8859-2': case 'iso-8859-4': case 'iso-8859-7': case 'iso-8859-9': case 'iso-8859-15': case 'windows-1251': case 'windows-1252': case 'cp1252': case 'shift_jis': case 'euc-kr': case 'big5': case 'gb2312': $ret = @mb_convert_encoding($string, 'utf-8', $encoding); if (!empty($ret)) { return $ret; } } } // Try the recode extension if (function_exists('recode_string')) { $ret = @recode_string($encoding . '..utf-8', $string); if (!empty($ret)) { return $ret; } } // If nothing works, check if we have a custom transcoder available if (!preg_match('#^[a-z0-9_ \\-]+$#', $encoding)) { // Make sure the encoding name is alphanumeric, we don't want it to be abused into loading arbitrary files trigger_error('Unknown encoding: ' . $encoding, E_USER_ERROR); } global $phpbb_root_path, $phpEx; // iso-8859-* character encoding if (preg_match('/iso[_ -]?8859[_ -]?(\\d+)/', $encoding, $array)) { switch ($array[1]) { case '1': case '2': case '4': case '7': case '8': case '9': case '15': if (!function_exists('iso_8859_' . $array[1])) { if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx)) { trigger_error('Basic reencoder file is missing', E_USER_ERROR); } include($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx); } return call_user_func('iso_8859_' . $array[1], $string); break; default: trigger_error('Unknown encoding: ' . $encoding, E_USER_ERROR); break; } } // CP/WIN character encoding if (preg_match('/(?:cp|windows)[_\- ]?(\\d+)/', $encoding, $array)) { switch ($array[1]) { case '932': break; case '1250': case '1251': case '1252': case '1254': case '1255': case '1256': case '1257': case '874': if (!function_exists('cp' . $array[1])) { if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx)) { trigger_error('Basic reencoder file is missing', E_USER_ERROR); } include($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx); } return call_user_func('cp' . $array[1], $string); break; default: trigger_error('Unknown encoding: ' . $encoding, E_USER_ERROR); break; } } // TIS-620 if (preg_match('/tis[_ -]?620/', $encoding)) { if (!function_exists('tis_620')) { if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx)) { trigger_error('Basic reencoder file is missing', E_USER_ERROR); } include($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx); } return tis_620($string); } // SJIS if (preg_match('/sjis(?:[_ -]?win)?|(?:cp|ibm)[_ -]?932|shift[_ -]?jis/', $encoding)) { if (!function_exists('sjis')) { if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx)) { trigger_error('CJK reencoder file is missing', E_USER_ERROR); } include($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx); } return sjis($string); } // EUC_KR if (preg_match('/euc[_ -]?kr/', $encoding)) { if (!function_exists('euc_kr')) { if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx)) { trigger_error('CJK reencoder file is missing', E_USER_ERROR); } include($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx); } return euc_kr($string); } // BIG-5 if (preg_match('/big[_ -]?5/', $encoding)) { if (!function_exists('big5')) { if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx)) { trigger_error('CJK reencoder file is missing', E_USER_ERROR); } include($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx); } return big5($string); } // GB2312 if (preg_match('/gb[_ -]?2312/', $encoding)) { if (!function_exists('gb2312')) { if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx)) { trigger_error('CJK reencoder file is missing', E_USER_ERROR); } include($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx); } return gb2312($string); } // Trigger an error?! Fow now just give bad data :-( trigger_error('Unknown encoding: ' . $encoding, E_USER_ERROR); //return $string; // use utf_normalizer::cleanup() ? } /** * Replace all UTF-8 chars that are not in ASCII with their NCR * * @param string $text UTF-8 string in NFC * @return string ASCII string using NCRs for non-ASCII chars */ function utf8_encode_ncr($text) { return preg_replace_callback('#[\\xC2-\\xF4][\\x80-\\xBF]{1,3}#', 'utf8_encode_ncr_callback', $text); } /** * Callback used in encode_ncr() * * Takes a UTF-8 char and replaces it with its NCR. Attention, $m is an array * * @param array $m 0-based numerically indexed array passed by preg_replace_callback() * @return string A HTML NCR if the character is valid, or the original string otherwise */ function utf8_encode_ncr_callback($m) { return '&#' . utf8_ord($m[0]) . ';'; } /** * Converts a UTF-8 char to an NCR * * @param string $chr UTF-8 char * @return integer UNICODE code point */ function utf8_ord($chr) { switch (strlen($chr)) { case 1: return ord($chr); break; case 2: return ((ord($chr[0]) & 0x1F) << 6) | (ord($chr[1]) & 0x3F); break; case 3: return ((ord($chr[0]) & 0x0F) << 12) | ((ord($chr[1]) & 0x3F) << 6) | (ord($chr[2]) & 0x3F); break; case 4: return ((ord($chr[0]) & 0x07) << 18) | ((ord($chr[1]) & 0x3F) << 12) | ((ord($chr[2]) & 0x3F) << 6) | (ord($chr[3]) & 0x3F); break; default: return $chr; } } /** * Converts an NCR to a UTF-8 char * * @param int $cp UNICODE code point * @return string UTF-8 char */ function utf8_chr($cp) { if ($cp > 0xFFFF) { return chr(0xF0 | ($cp >> 18)) . chr(0x80 | (($cp >> 12) & 0x3F)) . chr(0x80 | (($cp >> 6) & 0x3F)) . chr(0x80 | ($cp & 0x3F)); } else if ($cp > 0x7FF) { return chr(0xE0 | ($cp >> 12)) . chr(0x80 | (($cp >> 6) & 0x3F)) . chr(0x80 | ($cp & 0x3F)); } else if ($cp > 0x7F) { return chr(0xC0 | ($cp >> 6)) . chr(0x80 | ($cp & 0x3F)); } else { return chr($cp); } } /** * Convert Numeric Character References to UTF-8 chars * * Notes: * - we do not convert NCRs recursively, if you pass &#38; it will return & * - we DO NOT check for the existence of the Unicode characters, therefore an entity may be converted to an inexistent codepoint * * @param string $text String to convert, encoded in UTF-8 (no normal form required) * @return string UTF-8 string where NCRs have been replaced with the actual chars */ function utf8_decode_ncr($text) { return preg_replace_callback('/&#([0-9]{1,6}|x[0-9A-F]{1,5});/i', 'utf8_decode_ncr_callback', $text); } /** * Callback used in decode_ncr() * * Takes a NCR (in decimal or hexadecimal) and returns a UTF-8 char. Attention, $m is an array. * It will ignore most of invalid NCRs, but not all! * * @param array $m 0-based numerically indexed array passed by preg_replace_callback() * @return string UTF-8 char */ function utf8_decode_ncr_callback($m) { $cp = (strncasecmp($m[1], 'x', 1)) ? $m[1] : hexdec(substr($m[1], 1)); return utf8_chr($cp); } /** * Case folds a unicode string as per Unicode 5.0, section 3.13 * * @param string $text text to be case folded * @param string $option determines how we will fold the cases * @return string case folded text */ function utf8_case_fold($text, $option = 'full') { static $uniarray = array(); global $phpbb_root_path, $phpEx; // common is always set if (!isset($uniarray['c'])) { $uniarray['c'] = include($phpbb_root_path . 'includes/utf/data/case_fold_c.' . $phpEx); } // only set full if we need to if ($option === 'full' && !isset($uniarray['f'])) { $uniarray['f'] = include($phpbb_root_path . 'includes/utf/data/case_fold_f.' . $phpEx); } // only set simple if we need to if ($option !== 'full' && !isset($uniarray['s'])) { $uniarray['s'] = include($phpbb_root_path . 'includes/utf/data/case_fold_s.' . $phpEx); } // common is always replaced $text = strtr($text, $uniarray['c']); if ($option === 'full') { // full replaces a character with multiple characters $text = strtr($text, $uniarray['f']); } else { // simple replaces a character with another character $text = strtr($text, $uniarray['s']); } return $text; } /** * Takes the input and does a "special" case fold. It does minor normalization * and returns NFKC compatable text * * @param string $text text to be case folded * @param string $option determines how we will fold the cases * @return string case folded text */ function utf8_case_fold_nfkc($text, $option = 'full') { static $fc_nfkc_closure = array( "\xCD\xBA" => "\x20\xCE\xB9", "\xCF\x92" => "\xCF\x85", "\xCF\x93" => "\xCF\x8D", "\xCF\x94" => "\xCF\x8B", "\xCF\xB2" => "\xCF\x83", "\xCF\xB9" => "\xCF\x83", "\xE1\xB4\xAC" => "\x61", "\xE1\xB4\xAD" => "\xC3\xA6", "\xE1\xB4\xAE" => "\x62", "\xE1\xB4\xB0" => "\x64", "\xE1\xB4\xB1" => "\x65", "\xE1\xB4\xB2" => "\xC7\x9D", "\xE1\xB4\xB3" => "\x67", "\xE1\xB4\xB4" => "\x68", "\xE1\xB4\xB5" => "\x69", "\xE1\xB4\xB6" => "\x6A", "\xE1\xB4\xB7" => "\x6B", "\xE1\xB4\xB8" => "\x6C", "\xE1\xB4\xB9" => "\x6D", "\xE1\xB4\xBA" => "\x6E", "\xE1\xB4\xBC" => "\x6F", "\xE1\xB4\xBD" => "\xC8\xA3", "\xE1\xB4\xBE" => "\x70", "\xE1\xB4\xBF" => "\x72", "\xE1\xB5\x80" => "\x74", "\xE1\xB5\x81" => "\x75", "\xE1\xB5\x82" => "\x77", "\xE2\x82\xA8" => "\x72\x73", "\xE2\x84\x82" => "\x63", "\xE2\x84\x83" => "\xC2\xB0\x63", "\xE2\x84\x87" => "\xC9\x9B", "\xE2\x84\x89" => "\xC2\xB0\x66", "\xE2\x84\x8B" => "\x68", "\xE2\x84\x8C" => "\x68", "\xE2\x84\x8D" => "\x68", "\xE2\x84\x90" => "\x69", "\xE2\x84\x91" => "\x69", "\xE2\x84\x92" => "\x6C", "\xE2\x84\x95" => "\x6E", "\xE2\x84\x96" => "\x6E\x6F", "\xE2\x84\x99" => "\x70", "\xE2\x84\x9A" => "\x71", "\xE2\x84\x9B" => "\x72", "\xE2\x84\x9C" => "\x72", "\xE2\x84\x9D" => "\x72", "\xE2\x84\xA0" => "\x73\x6D", "\xE2\x84\xA1" => "\x74\x65\x6C", "\xE2\x84\xA2" => "\x74\x6D", "\xE2\x84\xA4" => "\x7A", "\xE2\x84\xA8" => "\x7A", "\xE2\x84\xAC" => "\x62", "\xE2\x84\xAD" => "\x63", "\xE2\x84\xB0" => "\x65", "\xE2\x84\xB1" => "\x66", "\xE2\x84\xB3" => "\x6D", "\xE2\x84\xBB" => "\x66\x61\x78", "\xE2\x84\xBE" => "\xCE\xB3", "\xE2\x84\xBF" => "\xCF\x80", "\xE2\x85\x85" => "\x64", "\xE3\x89\x90" => "\x70\x74\x65", "\xE3\x8B\x8C" => "\x68\x67", "\xE3\x8B\x8E" => "\x65\x76", "\xE3\x8B\x8F" => "\x6C\x74\x64", "\xE3\x8D\xB1" => "\x68\x70\x61", "\xE3\x8D\xB3" => "\x61\x75", "\xE3\x8D\xB5" => "\x6F\x76", "\xE3\x8D\xBA" => "\x69\x75", "\xE3\x8E\x80" => "\x70\x61", "\xE3\x8E\x81" => "\x6E\x61", "\xE3\x8E\x82" => "\xCE\xBC\x61", "\xE3\x8E\x83" => "\x6D\x61", "\xE3\x8E\x84" => "\x6B\x61", "\xE3\x8E\x85" => "\x6B\x62", "\xE3\x8E\x86" => "\x6D\x62", "\xE3\x8E\x87" => "\x67\x62", "\xE3\x8E\x8A" => "\x70\x66", "\xE3\x8E\x8B" => "\x6E\x66", "\xE3\x8E\x8C" => "\xCE\xBC\x66", "\xE3\x8E\x90" => "\x68\x7A", "\xE3\x8E\x91" => "\x6B\x68\x7A", "\xE3\x8E\x92" => "\x6D\x68\x7A", "\xE3\x8E\x93" => "\x67\x68\x7A", "\xE3\x8E\x94" => "\x74\x68\x7A", "\xE3\x8E\xA9" => "\x70\x61", "\xE3\x8E\xAA" => "\x6B\x70\x61", "\xE3\x8E\xAB" => "\x6D\x70\x61", "\xE3\x8E\xAC" => "\x67\x70\x61", "\xE3\x8E\xB4" => "\x70\x76", "\xE3\x8E\xB5" => "\x6E\x76", "\xE3\x8E\xB6" => "\xCE\xBC\x76", "\xE3\x8E\xB7" => "\x6D\x76", "\xE3\x8E\xB8" => "\x6B\x76", "\xE3\x8E\xB9" => "\x6D\x76", "\xE3\x8E\xBA" => "\x70\x77", "\xE3\x8E\xBB" => "\x6E\x77", "\xE3\x8E\xBC" => "\xCE\xBC\x77", "\xE3\x8E\xBD" => "\x6D\x77", "\xE3\x8E\xBE" => "\x6B\x77", "\xE3\x8E\xBF" => "\x6D\x77", "\xE3\x8F\x80" => "\x6B\xCF\x89", "\xE3\x8F\x81" => "\x6D\xCF\x89", "\xE3\x8F\x83" => "\x62\x71", "\xE3\x8F\x86" => "\x63\xE2\x88\x95\x6B\x67", "\xE3\x8F\x87" => "\x63\x6F\x2E", "\xE3\x8F\x88" => "\x64\x62", "\xE3\x8F\x89" => "\x67\x79", "\xE3\x8F\x8B" => "\x68\x70", "\xE3\x8F\x8D" => "\x6B\x6B", "\xE3\x8F\x8E" => "\x6B\x6D", "\xE3\x8F\x97" => "\x70\x68", "\xE3\x8F\x99" => "\x70\x70\x6D", "\xE3\x8F\x9A" => "\x70\x72", "\xE3\x8F\x9C" => "\x73\x76", "\xE3\x8F\x9D" => "\x77\x62", "\xE3\x8F\x9E" => "\x76\xE2\x88\x95\x6D", "\xE3\x8F\x9F" => "\x61\xE2\x88\x95\x6D", "\xF0\x9D\x90\x80" => "\x61", "\xF0\x9D\x90\x81" => "\x62", "\xF0\x9D\x90\x82" => "\x63", "\xF0\x9D\x90\x83" => "\x64", "\xF0\x9D\x90\x84" => "\x65", "\xF0\x9D\x90\x85" => "\x66", "\xF0\x9D\x90\x86" => "\x67", "\xF0\x9D\x90\x87" => "\x68", "\xF0\x9D\x90\x88" => "\x69", "\xF0\x9D\x90\x89" => "\x6A", "\xF0\x9D\x90\x8A" => "\x6B", "\xF0\x9D\x90\x8B" => "\x6C", "\xF0\x9D\x90\x8C" => "\x6D", "\xF0\x9D\x90\x8D" => "\x6E", "\xF0\x9D\x90\x8E" => "\x6F", "\xF0\x9D\x90\x8F" => "\x70", "\xF0\x9D\x90\x90" => "\x71", "\xF0\x9D\x90\x91" => "\x72", "\xF0\x9D\x90\x92" => "\x73", "\xF0\x9D\x90\x93" => "\x74", "\xF0\x9D\x90\x94" => "\x75", "\xF0\x9D\x90\x95" => "\x76", "\xF0\x9D\x90\x96" => "\x77", "\xF0\x9D\x90\x97" => "\x78", "\xF0\x9D\x90\x98" => "\x79", "\xF0\x9D\x90\x99" => "\x7A", "\xF0\x9D\x90\xB4" => "\x61", "\xF0\x9D\x90\xB5" => "\x62", "\xF0\x9D\x90\xB6" => "\x63", "\xF0\x9D\x90\xB7" => "\x64", "\xF0\x9D\x90\xB8" => "\x65", "\xF0\x9D\x90\xB9" => "\x66", "\xF0\x9D\x90\xBA" => "\x67", "\xF0\x9D\x90\xBB" => "\x68", "\xF0\x9D\x90\xBC" => "\x69", "\xF0\x9D\x90\xBD" => "\x6A", "\xF0\x9D\x90\xBE" => "\x6B", "\xF0\x9D\x90\xBF" => "\x6C", "\xF0\x9D\x91\x80" => "\x6D", "\xF0\x9D\x91\x81" => "\x6E", "\xF0\x9D\x91\x82" => "\x6F", "\xF0\x9D\x91\x83" => "\x70", "\xF0\x9D\x91\x84" => "\x71", "\xF0\x9D\x91\x85" => "\x72", "\xF0\x9D\x91\x86" => "\x73", "\xF0\x9D\x91\x87" => "\x74", "\xF0\x9D\x91\x88" => "\x75", "\xF0\x9D\x91\x89" => "\x76", "\xF0\x9D\x91\x8A" => "\x77", "\xF0\x9D\x91\x8B" => "\x78", "\xF0\x9D\x91\x8C" => "\x79", "\xF0\x9D\x91\x8D" => "\x7A", "\xF0\x9D\x91\xA8" => "\x61", "\xF0\x9D\x91\xA9" => "\x62", "\xF0\x9D\x91\xAA" => "\x63", "\xF0\x9D\x91\xAB" => "\x64", "\xF0\x9D\x91\xAC" => "\x65", "\xF0\x9D\x91\xAD" => "\x66", "\xF0\x9D\x91\xAE" => "\x67", "\xF0\x9D\x91\xAF" => "\x68", "\xF0\x9D\x91\xB0" => "\x69", "\xF0\x9D\x91\xB1" => "\x6A", "\xF0\x9D\x91\xB2" => "\x6B", "\xF0\x9D\x91\xB3" => "\x6C", "\xF0\x9D\x91\xB4" => "\x6D", "\xF0\x9D\x91\xB5" => "\x6E", "\xF0\x9D\x91\xB6" => "\x6F", "\xF0\x9D\x91\xB7" => "\x70", "\xF0\x9D\x91\xB8" => "\x71", "\xF0\x9D\x91\xB9" => "\x72", "\xF0\x9D\x91\xBA" => "\x73", "\xF0\x9D\x91\xBB" => "\x74", "\xF0\x9D\x91\xBC" => "\x75", "\xF0\x9D\x91\xBD" => "\x76", "\xF0\x9D\x91\xBE" => "\x77", "\xF0\x9D\x91\xBF" => "\x78", "\xF0\x9D\x92\x80" => "\x79", "\xF0\x9D\x92\x81" => "\x7A", "\xF0\x9D\x92\x9C" => "\x61", "\xF0\x9D\x92\x9E" => "\x63", "\xF0\x9D\x92\x9F" => "\x64", "\xF0\x9D\x92\xA2" => "\x67", "\xF0\x9D\x92\xA5" => "\x6A", "\xF0\x9D\x92\xA6" => "\x6B", "\xF0\x9D\x92\xA9" => "\x6E", "\xF0\x9D\x92\xAA" => "\x6F", "\xF0\x9D\x92\xAB" => "\x70", "\xF0\x9D\x92\xAC" => "\x71", "\xF0\x9D\x92\xAE" => "\x73", "\xF0\x9D\x92\xAF" => "\x74", "\xF0\x9D\x92\xB0" => "\x75", "\xF0\x9D\x92\xB1" => "\x76", "\xF0\x9D\x92\xB2" => "\x77", "\xF0\x9D\x92\xB3" => "\x78", "\xF0\x9D\x92\xB4" => "\x79", "\xF0\x9D\x92\xB5" => "\x7A", "\xF0\x9D\x93\x90" => "\x61", "\xF0\x9D\x93\x91" => "\x62", "\xF0\x9D\x93\x92" => "\x63", "\xF0\x9D\x93\x93" => "\x64", "\xF0\x9D\x93\x94" => "\x65", "\xF0\x9D\x93\x95" => "\x66", "\xF0\x9D\x93\x96" => "\x67", "\xF0\x9D\x93\x97" => "\x68", "\xF0\x9D\x93\x98" => "\x69", "\xF0\x9D\x93\x99" => "\x6A", "\xF0\x9D\x93\x9A" => "\x6B", "\xF0\x9D\x93\x9B" => "\x6C", "\xF0\x9D\x93\x9C" => "\x6D", "\xF0\x9D\x93\x9D" => "\x6E", "\xF0\x9D\x93\x9E" => "\x6F", "\xF0\x9D\x93\x9F" => "\x70", "\xF0\x9D\x93\xA0" => "\x71", "\xF0\x9D\x93\xA1" => "\x72", "\xF0\x9D\x93\xA2" => "\x73", "\xF0\x9D\x93\xA3" => "\x74", "\xF0\x9D\x93\xA4" => "\x75", "\xF0\x9D\x93\xA5" => "\x76", "\xF0\x9D\x93\xA6" => "\x77", "\xF0\x9D\x93\xA7" => "\x78", "\xF0\x9D\x93\xA8" => "\x79", "\xF0\x9D\x93\xA9" => "\x7A", "\xF0\x9D\x94\x84" => "\x61", "\xF0\x9D\x94\x85" => "\x62", "\xF0\x9D\x94\x87" => "\x64", "\xF0\x9D\x94\x88" => "\x65", "\xF0\x9D\x94\x89" => "\x66", "\xF0\x9D\x94\x8A" => "\x67", "\xF0\x9D\x94\x8D" => "\x6A", "\xF0\x9D\x94\x8E" => "\x6B", "\xF0\x9D\x94\x8F" => "\x6C", "\xF0\x9D\x94\x90" => "\x6D", "\xF0\x9D\x94\x91" => "\x6E", "\xF0\x9D\x94\x92" => "\x6F", "\xF0\x9D\x94\x93" => "\x70", "\xF0\x9D\x94\x94" => "\x71", "\xF0\x9D\x94\x96" => "\x73", "\xF0\x9D\x94\x97" => "\x74", "\xF0\x9D\x94\x98" => "\x75", "\xF0\x9D\x94\x99" => "\x76", "\xF0\x9D\x94\x9A" => "\x77", "\xF0\x9D\x94\x9B" => "\x78", "\xF0\x9D\x94\x9C" => "\x79", "\xF0\x9D\x94\xB8" => "\x61", "\xF0\x9D\x94\xB9" => "\x62", "\xF0\x9D\x94\xBB" => "\x64", "\xF0\x9D\x94\xBC" => "\x65", "\xF0\x9D\x94\xBD" => "\x66", "\xF0\x9D\x94\xBE" => "\x67", "\xF0\x9D\x95\x80" => "\x69", "\xF0\x9D\x95\x81" => "\x6A", "\xF0\x9D\x95\x82" => "\x6B", "\xF0\x9D\x95\x83" => "\x6C", "\xF0\x9D\x95\x84" => "\x6D", "\xF0\x9D\x95\x86" => "\x6F", "\xF0\x9D\x95\x8A" => "\x73", "\xF0\x9D\x95\x8B" => "\x74", "\xF0\x9D\x95\x8C" => "\x75", "\xF0\x9D\x95\x8D" => "\x76", "\xF0\x9D\x95\x8E" => "\x77", "\xF0\x9D\x95\x8F" => "\x78", "\xF0\x9D\x95\x90" => "\x79", "\xF0\x9D\x95\xAC" => "\x61", "\xF0\x9D\x95\xAD" => "\x62", "\xF0\x9D\x95\xAE" => "\x63", "\xF0\x9D\x95\xAF" => "\x64", "\xF0\x9D\x95\xB0" => "\x65", "\xF0\x9D\x95\xB1" => "\x66", "\xF0\x9D\x95\xB2" => "\x67", "\xF0\x9D\x95\xB3" => "\x68", "\xF0\x9D\x95\xB4" => "\x69", "\xF0\x9D\x95\xB5" => "\x6A", "\xF0\x9D\x95\xB6" => "\x6B", "\xF0\x9D\x95\xB7" => "\x6C", "\xF0\x9D\x95\xB8" => "\x6D", "\xF0\x9D\x95\xB9" => "\x6E", "\xF0\x9D\x95\xBA" => "\x6F", "\xF0\x9D\x95\xBB" => "\x70", "\xF0\x9D\x95\xBC" => "\x71", "\xF0\x9D\x95\xBD" => "\x72", "\xF0\x9D\x95\xBE" => "\x73", "\xF0\x9D\x95\xBF" => "\x74", "\xF0\x9D\x96\x80" => "\x75", "\xF0\x9D\x96\x81" => "\x76", "\xF0\x9D\x96\x82" => "\x77", "\xF0\x9D\x96\x83" => "\x78", "\xF0\x9D\x96\x84" => "\x79", "\xF0\x9D\x96\x85" => "\x7A", "\xF0\x9D\x96\xA0" => "\x61", "\xF0\x9D\x96\xA1" => "\x62", "\xF0\x9D\x96\xA2" => "\x63", "\xF0\x9D\x96\xA3" => "\x64", "\xF0\x9D\x96\xA4" => "\x65", "\xF0\x9D\x96\xA5" => "\x66", "\xF0\x9D\x96\xA6" => "\x67", "\xF0\x9D\x96\xA7" => "\x68", "\xF0\x9D\x96\xA8" => "\x69", "\xF0\x9D\x96\xA9" => "\x6A", "\xF0\x9D\x96\xAA" => "\x6B", "\xF0\x9D\x96\xAB" => "\x6C", "\xF0\x9D\x96\xAC" => "\x6D", "\xF0\x9D\x96\xAD" => "\x6E", "\xF0\x9D\x96\xAE" => "\x6F", "\xF0\x9D\x96\xAF" => "\x70", "\xF0\x9D\x96\xB0" => "\x71", "\xF0\x9D\x96\xB1" => "\x72", "\xF0\x9D\x96\xB2" => "\x73", "\xF0\x9D\x96\xB3" => "\x74", "\xF0\x9D\x96\xB4" => "\x75", "\xF0\x9D\x96\xB5" => "\x76", "\xF0\x9D\x96\xB6" => "\x77", "\xF0\x9D\x96\xB7" => "\x78", "\xF0\x9D\x96\xB8" => "\x79", "\xF0\x9D\x96\xB9" => "\x7A", "\xF0\x9D\x97\x94" => "\x61", "\xF0\x9D\x97\x95" => "\x62", "\xF0\x9D\x97\x96" => "\x63", "\xF0\x9D\x97\x97" => "\x64", "\xF0\x9D\x97\x98" => "\x65", "\xF0\x9D\x97\x99" => "\x66", "\xF0\x9D\x97\x9A" => "\x67", "\xF0\x9D\x97\x9B" => "\x68", "\xF0\x9D\x97\x9C" => "\x69", "\xF0\x9D\x97\x9D" => "\x6A", "\xF0\x9D\x97\x9E" => "\x6B", "\xF0\x9D\x97\x9F" => "\x6C", "\xF0\x9D\x97\xA0" => "\x6D", "\xF0\x9D\x97\xA1" => "\x6E", "\xF0\x9D\x97\xA2" => "\x6F", "\xF0\x9D\x97\xA3" => "\x70", "\xF0\x9D\x97\xA4" => "\x71", "\xF0\x9D\x97\xA5" => "\x72", "\xF0\x9D\x97\xA6" => "\x73", "\xF0\x9D\x97\xA7" => "\x74", "\xF0\x9D\x97\xA8" => "\x75", "\xF0\x9D\x97\xA9" => "\x76", "\xF0\x9D\x97\xAA" => "\x77", "\xF0\x9D\x97\xAB" => "\x78", "\xF0\x9D\x97\xAC" => "\x79", "\xF0\x9D\x97\xAD" => "\x7A", "\xF0\x9D\x98\x88" => "\x61", "\xF0\x9D\x98\x89" => "\x62", "\xF0\x9D\x98\x8A" => "\x63", "\xF0\x9D\x98\x8B" => "\x64", "\xF0\x9D\x98\x8C" => "\x65", "\xF0\x9D\x98\x8D" => "\x66", "\xF0\x9D\x98\x8E" => "\x67", "\xF0\x9D\x98\x8F" => "\x68", "\xF0\x9D\x98\x90" => "\x69", "\xF0\x9D\x98\x91" => "\x6A", "\xF0\x9D\x98\x92" => "\x6B", "\xF0\x9D\x98\x93" => "\x6C", "\xF0\x9D\x98\x94" => "\x6D", "\xF0\x9D\x98\x95" => "\x6E", "\xF0\x9D\x98\x96" => "\x6F", "\xF0\x9D\x98\x97" => "\x70", "\xF0\x9D\x98\x98" => "\x71", "\xF0\x9D\x98\x99" => "\x72", "\xF0\x9D\x98\x9A" => "\x73", "\xF0\x9D\x98\x9B" => "\x74", "\xF0\x9D\x98\x9C" => "\x75", "\xF0\x9D\x98\x9D" => "\x76", "\xF0\x9D\x98\x9E" => "\x77", "\xF0\x9D\x98\x9F" => "\x78", "\xF0\x9D\x98\xA0" => "\x79", "\xF0\x9D\x98\xA1" => "\x7A", "\xF0\x9D\x98\xBC" => "\x61", "\xF0\x9D\x98\xBD" => "\x62", "\xF0\x9D\x98\xBE" => "\x63", "\xF0\x9D\x98\xBF" => "\x64", "\xF0\x9D\x99\x80" => "\x65", "\xF0\x9D\x99\x81" => "\x66", "\xF0\x9D\x99\x82" => "\x67", "\xF0\x9D\x99\x83" => "\x68", "\xF0\x9D\x99\x84" => "\x69", "\xF0\x9D\x99\x85" => "\x6A", "\xF0\x9D\x99\x86" => "\x6B", "\xF0\x9D\x99\x87" => "\x6C", "\xF0\x9D\x99\x88" => "\x6D", "\xF0\x9D\x99\x89" => "\x6E", "\xF0\x9D\x99\x8A" => "\x6F", "\xF0\x9D\x99\x8B" => "\x70", "\xF0\x9D\x99\x8C" => "\x71", "\xF0\x9D\x99\x8D" => "\x72", "\xF0\x9D\x99\x8E" => "\x73", "\xF0\x9D\x99\x8F" => "\x74", "\xF0\x9D\x99\x90" => "\x75", "\xF0\x9D\x99\x91" => "\x76", "\xF0\x9D\x99\x92" => "\x77", "\xF0\x9D\x99\x93" => "\x78", "\xF0\x9D\x99\x94" => "\x79", "\xF0\x9D\x99\x95" => "\x7A", "\xF0\x9D\x99\xB0" => "\x61", "\xF0\x9D\x99\xB1" => "\x62", "\xF0\x9D\x99\xB2" => "\x63", "\xF0\x9D\x99\xB3" => "\x64", "\xF0\x9D\x99\xB4" => "\x65", "\xF0\x9D\x99\xB5" => "\x66", "\xF0\x9D\x99\xB6" => "\x67", "\xF0\x9D\x99\xB7" => "\x68", "\xF0\x9D\x99\xB8" => "\x69", "\xF0\x9D\x99\xB9" => "\x6A", "\xF0\x9D\x99\xBA" => "\x6B", "\xF0\x9D\x99\xBB" => "\x6C", "\xF0\x9D\x99\xBC" => "\x6D", "\xF0\x9D\x99\xBD" => "\x6E", "\xF0\x9D\x99\xBE" => "\x6F", "\xF0\x9D\x99\xBF" => "\x70", "\xF0\x9D\x9A\x80" => "\x71", "\xF0\x9D\x9A\x81" => "\x72", "\xF0\x9D\x9A\x82" => "\x73", "\xF0\x9D\x9A\x83" => "\x74", "\xF0\x9D\x9A\x84" => "\x75", "\xF0\x9D\x9A\x85" => "\x76", "\xF0\x9D\x9A\x86" => "\x77", "\xF0\x9D\x9A\x87" => "\x78", "\xF0\x9D\x9A\x88" => "\x79", "\xF0\x9D\x9A\x89" => "\x7A", "\xF0\x9D\x9A\xA8" => "\xCE\xB1", "\xF0\x9D\x9A\xA9" => "\xCE\xB2", "\xF0\x9D\x9A\xAA" => "\xCE\xB3", "\xF0\x9D\x9A\xAB" => "\xCE\xB4", "\xF0\x9D\x9A\xAC" => "\xCE\xB5", "\xF0\x9D\x9A\xAD" => "\xCE\xB6", "\xF0\x9D\x9A\xAE" => "\xCE\xB7", "\xF0\x9D\x9A\xAF" => "\xCE\xB8", "\xF0\x9D\x9A\xB0" => "\xCE\xB9", "\xF0\x9D\x9A\xB1" => "\xCE\xBA", "\xF0\x9D\x9A\xB2" => "\xCE\xBB", "\xF0\x9D\x9A\xB3" => "\xCE\xBC", "\xF0\x9D\x9A\xB4" => "\xCE\xBD", "\xF0\x9D\x9A\xB5" => "\xCE\xBE", "\xF0\x9D\x9A\xB6" => "\xCE\xBF", "\xF0\x9D\x9A\xB7" => "\xCF\x80", "\xF0\x9D\x9A\xB8" => "\xCF\x81", "\xF0\x9D\x9A\xB9" => "\xCE\xB8", "\xF0\x9D\x9A\xBA" => "\xCF\x83", "\xF0\x9D\x9A\xBB" => "\xCF\x84", "\xF0\x9D\x9A\xBC" => "\xCF\x85", "\xF0\x9D\x9A\xBD" => "\xCF\x86", "\xF0\x9D\x9A\xBE" => "\xCF\x87", "\xF0\x9D\x9A\xBF" => "\xCF\x88", "\xF0\x9D\x9B\x80" => "\xCF\x89", "\xF0\x9D\x9B\x93" => "\xCF\x83", "\xF0\x9D\x9B\xA2" => "\xCE\xB1", "\xF0\x9D\x9B\xA3" => "\xCE\xB2", "\xF0\x9D\x9B\xA4" => "\xCE\xB3", "\xF0\x9D\x9B\xA5" => "\xCE\xB4", "\xF0\x9D\x9B\xA6" => "\xCE\xB5", "\xF0\x9D\x9B\xA7" => "\xCE\xB6", "\xF0\x9D\x9B\xA8" => "\xCE\xB7", "\xF0\x9D\x9B\xA9" => "\xCE\xB8", "\xF0\x9D\x9B\xAA" => "\xCE\xB9", "\xF0\x9D\x9B\xAB" => "\xCE\xBA", "\xF0\x9D\x9B\xAC" => "\xCE\xBB", "\xF0\x9D\x9B\xAD" => "\xCE\xBC", "\xF0\x9D\x9B\xAE" => "\xCE\xBD", "\xF0\x9D\x9B\xAF" => "\xCE\xBE", "\xF0\x9D\x9B\xB0" => "\xCE\xBF", "\xF0\x9D\x9B\xB1" => "\xCF\x80", "\xF0\x9D\x9B\xB2" => "\xCF\x81", "\xF0\x9D\x9B\xB3" => "\xCE\xB8", "\xF0\x9D\x9B\xB4" => "\xCF\x83", "\xF0\x9D\x9B\xB5" => "\xCF\x84", "\xF0\x9D\x9B\xB6" => "\xCF\x85", "\xF0\x9D\x9B\xB7" => "\xCF\x86", "\xF0\x9D\x9B\xB8" => "\xCF\x87", "\xF0\x9D\x9B\xB9" => "\xCF\x88", "\xF0\x9D\x9B\xBA" => "\xCF\x89", "\xF0\x9D\x9C\x8D" => "\xCF\x83", "\xF0\x9D\x9C\x9C" => "\xCE\xB1", "\xF0\x9D\x9C\x9D" => "\xCE\xB2", "\xF0\x9D\x9C\x9E" => "\xCE\xB3", "\xF0\x9D\x9C\x9F" => "\xCE\xB4", "\xF0\x9D\x9C\xA0" => "\xCE\xB5", "\xF0\x9D\x9C\xA1" => "\xCE\xB6", "\xF0\x9D\x9C\xA2" => "\xCE\xB7", "\xF0\x9D\x9C\xA3" => "\xCE\xB8", "\xF0\x9D\x9C\xA4" => "\xCE\xB9", "\xF0\x9D\x9C\xA5" => "\xCE\xBA", "\xF0\x9D\x9C\xA6" => "\xCE\xBB", "\xF0\x9D\x9C\xA7" => "\xCE\xBC", "\xF0\x9D\x9C\xA8" => "\xCE\xBD", "\xF0\x9D\x9C\xA9" => "\xCE\xBE", "\xF0\x9D\x9C\xAA" => "\xCE\xBF", "\xF0\x9D\x9C\xAB" => "\xCF\x80", "\xF0\x9D\x9C\xAC" => "\xCF\x81", "\xF0\x9D\x9C\xAD" => "\xCE\xB8", "\xF0\x9D\x9C\xAE" => "\xCF\x83", "\xF0\x9D\x9C\xAF" => "\xCF\x84", "\xF0\x9D\x9C\xB0" => "\xCF\x85", "\xF0\x9D\x9C\xB1" => "\xCF\x86", "\xF0\x9D\x9C\xB2" => "\xCF\x87", "\xF0\x9D\x9C\xB3" => "\xCF\x88", "\xF0\x9D\x9C\xB4" => "\xCF\x89", "\xF0\x9D\x9D\x87" => "\xCF\x83", "\xF0\x9D\x9D\x96" => "\xCE\xB1", "\xF0\x9D\x9D\x97" => "\xCE\xB2", "\xF0\x9D\x9D\x98" => "\xCE\xB3", "\xF0\x9D\x9D\x99" => "\xCE\xB4", "\xF0\x9D\x9D\x9A" => "\xCE\xB5", "\xF0\x9D\x9D\x9B" => "\xCE\xB6", "\xF0\x9D\x9D\x9C" => "\xCE\xB7", "\xF0\x9D\x9D\x9D" => "\xCE\xB8", "\xF0\x9D\x9D\x9E" => "\xCE\xB9", "\xF0\x9D\x9D\x9F" => "\xCE\xBA", "\xF0\x9D\x9D\xA0" => "\xCE\xBB", "\xF0\x9D\x9D\xA1" => "\xCE\xBC", "\xF0\x9D\x9D\xA2" => "\xCE\xBD", "\xF0\x9D\x9D\xA3" => "\xCE\xBE", "\xF0\x9D\x9D\xA4" => "\xCE\xBF", "\xF0\x9D\x9D\xA5" => "\xCF\x80", "\xF0\x9D\x9D\xA6" => "\xCF\x81", "\xF0\x9D\x9D\xA7" => "\xCE\xB8", "\xF0\x9D\x9D\xA8" => "\xCF\x83", "\xF0\x9D\x9D\xA9" => "\xCF\x84", "\xF0\x9D\x9D\xAA" => "\xCF\x85", "\xF0\x9D\x9D\xAB" => "\xCF\x86", "\xF0\x9D\x9D\xAC" => "\xCF\x87", "\xF0\x9D\x9D\xAD" => "\xCF\x88", "\xF0\x9D\x9D\xAE" => "\xCF\x89", "\xF0\x9D\x9E\x81" => "\xCF\x83", "\xF0\x9D\x9E\x90" => "\xCE\xB1", "\xF0\x9D\x9E\x91" => "\xCE\xB2", "\xF0\x9D\x9E\x92" => "\xCE\xB3", "\xF0\x9D\x9E\x93" => "\xCE\xB4", "\xF0\x9D\x9E\x94" => "\xCE\xB5", "\xF0\x9D\x9E\x95" => "\xCE\xB6", "\xF0\x9D\x9E\x96" => "\xCE\xB7", "\xF0\x9D\x9E\x97" => "\xCE\xB8", "\xF0\x9D\x9E\x98" => "\xCE\xB9", "\xF0\x9D\x9E\x99" => "\xCE\xBA", "\xF0\x9D\x9E\x9A" => "\xCE\xBB", "\xF0\x9D\x9E\x9B" => "\xCE\xBC", "\xF0\x9D\x9E\x9C" => "\xCE\xBD", "\xF0\x9D\x9E\x9D" => "\xCE\xBE", "\xF0\x9D\x9E\x9E" => "\xCE\xBF", "\xF0\x9D\x9E\x9F" => "\xCF\x80", "\xF0\x9D\x9E\xA0" => "\xCF\x81", "\xF0\x9D\x9E\xA1" => "\xCE\xB8", "\xF0\x9D\x9E\xA2" => "\xCF\x83", "\xF0\x9D\x9E\xA3" => "\xCF\x84", "\xF0\x9D\x9E\xA4" => "\xCF\x85", "\xF0\x9D\x9E\xA5" => "\xCF\x86", "\xF0\x9D\x9E\xA6" => "\xCF\x87", "\xF0\x9D\x9E\xA7" => "\xCF\x88", "\xF0\x9D\x9E\xA8" => "\xCF\x89", "\xF0\x9D\x9E\xBB" => "\xCF\x83", "\xF0\x9D\x9F\x8A" => "\xCF\x9D", ); global $phpbb_root_path, $phpEx; // do the case fold $text = utf8_case_fold($text, $option); if (!class_exists('utf_normalizer')) { global $phpbb_root_path, $phpEx; include($phpbb_root_path . 'includes/utf/utf_normalizer.' . $phpEx); } // convert to NFKC utf_normalizer::nfkc($text); // FC_NFKC_Closure, http://www.unicode.org/Public/5.0.0/ucd/DerivedNormalizationProps.txt $text = strtr($text, $fc_nfkc_closure); return $text; } /** * Assume the input is NFC: * Takes the input and does a "special" case fold. It does minor normalization as well. * * @param string $text text to be case folded * @param string $option determines how we will fold the cases * @return string case folded text */ function utf8_case_fold_nfc($text, $option = 'full') { static $uniarray = array(); static $ypogegrammeni = array( "\xCD\xBA" => "\x20\xCD\x85", "\xE1\xBE\x80" => "\xE1\xBC\x80\xCD\x85", "\xE1\xBE\x81" => "\xE1\xBC\x81\xCD\x85", "\xE1\xBE\x82" => "\xE1\xBC\x82\xCD\x85", "\xE1\xBE\x83" => "\xE1\xBC\x83\xCD\x85", "\xE1\xBE\x84" => "\xE1\xBC\x84\xCD\x85", "\xE1\xBE\x85" => "\xE1\xBC\x85\xCD\x85", "\xE1\xBE\x86" => "\xE1\xBC\x86\xCD\x85", "\xE1\xBE\x87" => "\xE1\xBC\x87\xCD\x85", "\xE1\xBE\x88" => "\xE1\xBC\x88\xCD\x85", "\xE1\xBE\x89" => "\xE1\xBC\x89\xCD\x85", "\xE1\xBE\x8A" => "\xE1\xBC\x8A\xCD\x85", "\xE1\xBE\x8B" => "\xE1\xBC\x8B\xCD\x85", "\xE1\xBE\x8C" => "\xE1\xBC\x8C\xCD\x85", "\xE1\xBE\x8D" => "\xE1\xBC\x8D\xCD\x85", "\xE1\xBE\x8E" => "\xE1\xBC\x8E\xCD\x85", "\xE1\xBE\x8F" => "\xE1\xBC\x8F\xCD\x85", "\xE1\xBE\x90" => "\xE1\xBC\xA0\xCD\x85", "\xE1\xBE\x91" => "\xE1\xBC\xA1\xCD\x85", "\xE1\xBE\x92" => "\xE1\xBC\xA2\xCD\x85", "\xE1\xBE\x93" => "\xE1\xBC\xA3\xCD\x85", "\xE1\xBE\x94" => "\xE1\xBC\xA4\xCD\x85", "\xE1\xBE\x95" => "\xE1\xBC\xA5\xCD\x85", "\xE1\xBE\x96" => "\xE1\xBC\xA6\xCD\x85", "\xE1\xBE\x97" => "\xE1\xBC\xA7\xCD\x85", "\xE1\xBE\x98" => "\xE1\xBC\xA8\xCD\x85", "\xE1\xBE\x99" => "\xE1\xBC\xA9\xCD\x85", "\xE1\xBE\x9A" => "\xE1\xBC\xAA\xCD\x85", "\xE1\xBE\x9B" => "\xE1\xBC\xAB\xCD\x85", "\xE1\xBE\x9C" => "\xE1\xBC\xAC\xCD\x85", "\xE1\xBE\x9D" => "\xE1\xBC\xAD\xCD\x85", "\xE1\xBE\x9E" => "\xE1\xBC\xAE\xCD\x85", "\xE1\xBE\x9F" => "\xE1\xBC\xAF\xCD\x85", "\xE1\xBE\xA0" => "\xE1\xBD\xA0\xCD\x85", "\xE1\xBE\xA1" => "\xE1\xBD\xA1\xCD\x85", "\xE1\xBE\xA2" => "\xE1\xBD\xA2\xCD\x85", "\xE1\xBE\xA3" => "\xE1\xBD\xA3\xCD\x85", "\xE1\xBE\xA4" => "\xE1\xBD\xA4\xCD\x85", "\xE1\xBE\xA5" => "\xE1\xBD\xA5\xCD\x85", "\xE1\xBE\xA6" => "\xE1\xBD\xA6\xCD\x85", "\xE1\xBE\xA7" => "\xE1\xBD\xA7\xCD\x85", "\xE1\xBE\xA8" => "\xE1\xBD\xA8\xCD\x85", "\xE1\xBE\xA9" => "\xE1\xBD\xA9\xCD\x85", "\xE1\xBE\xAA" => "\xE1\xBD\xAA\xCD\x85", "\xE1\xBE\xAB" => "\xE1\xBD\xAB\xCD\x85", "\xE1\xBE\xAC" => "\xE1\xBD\xAC\xCD\x85", "\xE1\xBE\xAD" => "\xE1\xBD\xAD\xCD\x85", "\xE1\xBE\xAE" => "\xE1\xBD\xAE\xCD\x85", "\xE1\xBE\xAF" => "\xE1\xBD\xAF\xCD\x85", "\xE1\xBE\xB2" => "\xE1\xBD\xB0\xCD\x85", "\xE1\xBE\xB3" => "\xCE\xB1\xCD\x85", "\xE1\xBE\xB4" => "\xCE\xAC\xCD\x85", "\xE1\xBE\xB7" => "\xE1\xBE\xB6\xCD\x85", "\xE1\xBE\xBC" => "\xCE\x91\xCD\x85", "\xE1\xBF\x82" => "\xE1\xBD\xB4\xCD\x85", "\xE1\xBF\x83" => "\xCE\xB7\xCD\x85", "\xE1\xBF\x84" => "\xCE\xAE\xCD\x85", "\xE1\xBF\x87" => "\xE1\xBF\x86\xCD\x85", "\xE1\xBF\x8C" => "\xCE\x97\xCD\x85", "\xE1\xBF\xB2" => "\xE1\xBD\xBC\xCD\x85", "\xE1\xBF\xB3" => "\xCF\x89\xCD\x85", "\xE1\xBF\xB4" => "\xCF\x8E\xCD\x85", "\xE1\xBF\xB7" => "\xE1\xBF\xB6\xCD\x85", "\xE1\xBF\xBC" => "\xCE\xA9\xCD\x85", ); global $phpbb_root_path, $phpEx; // perform a small trick, avoid further normalization on composed points that contain U+0345 in their decomposition $text = strtr($text, $ypogegrammeni); // do the case fold $text = utf8_case_fold($text, $option); return $text; } /** * A wrapper function for the normalizer which takes care of including the class if required and modifies the passed strings * to be in NFC (Normalization Form Composition). * * @param mixed $strings a string or an array of strings to normalize * @return mixed the normalized content, preserving array keys if array given. */ function utf8_normalize_nfc($strings) { if (empty($strings)) { return $strings; } if (!class_exists('utf_normalizer')) { global $phpbb_root_path, $phpEx; include($phpbb_root_path . 'includes/utf/utf_normalizer.' . $phpEx); } if (!is_array($strings)) { utf_normalizer::nfc($strings); } else if (is_array($strings)) { foreach ($strings as $key => $string) { if (is_array($string)) { foreach ($string as $_key => $_string) { utf_normalizer::nfc($strings[$key][$_key]); } } else { utf_normalizer::nfc($strings[$key]); } } } return $strings; } /** * This function is used to generate a "clean" version of a string. * Clean means that it is a case insensitive form (case folding) and that it is normalized (NFC). * Additionally a homographs of one character are transformed into one specific character (preferably ASCII * if it is an ASCII character). * * Please be aware that if you change something within this function or within * functions used here you need to rebuild/update the username_clean column in the users table. And all other * columns that store a clean string otherwise you will break this functionality. * * @param string $text An unclean string, mabye user input (has to be valid UTF-8!) * @return string Cleaned up version of the input string */ function utf8_clean_string($text) { global $phpbb_root_path, $phpEx; static $homographs = array(); if (empty($homographs)) { $homographs = include($phpbb_root_path . 'includes/utf/data/confusables.' . $phpEx); } $text = utf8_case_fold_nfkc($text); $text = strtr($text, $homographs); // Other control characters $text = preg_replace('#(?:[\x00-\x1F\x7F]+|(?:\xC2[\x80-\x9F])+)#', '', $text); // we need to reduce multiple spaces to a single one $text = preg_replace('# {2,}#', ' ', $text); // we can use trim here as all the other space characters should have been turned // into normal ASCII spaces by now return trim($text); } /** * A wrapper for htmlspecialchars($value, ENT_COMPAT, 'UTF-8') */ function utf8_htmlspecialchars($value) { return htmlspecialchars($value, ENT_COMPAT, 'UTF-8'); } /** * Trying to convert returned system message to utf8 * * PHP assumes such messages are ISO-8859-1 so we'll do that too * and if it breaks messages we'll blame it on them ;-) */ function utf8_convert_message($message) { // First of all check if conversion is neded at all, as there is no point // in converting ASCII messages from ISO-8859-1 to UTF-8 if (!preg_match('/[\x80-\xFF]/', $message)) { return utf8_htmlspecialchars($message); } // else we need to convert some part of the message return utf8_htmlspecialchars(utf8_recode($message, 'ISO-8859-1')); } /** * UTF8-compatible wordwrap replacement * * @param string $string The input string * @param int $width The column width. Defaults to 75. * @param string $break The line is broken using the optional break parameter. Defaults to '\n'. * @param bool $cut If the cut is set to TRUE, the string is always wrapped at the specified width. So if you have a word that is larger than the given width, it is broken apart. * * @return string the given string wrapped at the specified column. * */ function utf8_wordwrap($string, $width = 75, $break = "\n", $cut = false) { // We first need to explode on $break, not destroying existing (intended) breaks $lines = explode($break, $string); $new_lines = array(0 => ''); $index = 0; foreach ($lines as $line) { $words = explode(' ', $line); for ($i = 0, $size = sizeof($words); $i < $size; $i++) { $word = $words[$i]; // If cut is true we need to cut the word if it is > width chars if ($cut && utf8_strlen($word) > $width) { $words[$i] = utf8_substr($word, $width); $word = utf8_substr($word, 0, $width); $i--; } if (utf8_strlen($new_lines[$index] . $word) > $width) { $new_lines[$index] = substr($new_lines[$index], 0, -1); $index++; $new_lines[$index] = ''; } $new_lines[$index] .= $word . ' '; } $new_lines[$index] = substr($new_lines[$index], 0, -1); $index++; $new_lines[$index] = ''; } unset($new_lines[$index]); return implode($break, $new_lines); } /** * UTF8-safe basename() function * * basename() has some limitations and is dependent on the locale setting * according to the PHP manual. Therefore we provide our own locale independant * basename function. * * @param string $filename The filename basename() should be applied to * @return string The basenamed filename */ function utf8_basename($filename) { // We always check for forward slash AND backward slash // because they could be mixed or "sneaked" in. ;) // You know, never trust user input... if (strpos($filename, '/') !== false) { $filename = utf8_substr($filename, utf8_strrpos($filename, '/') + 1); } if (strpos($filename, '\\') !== false) { $filename = utf8_substr($filename, utf8_strrpos($filename, '\\') + 1); } return $filename; } /** * UTF8-safe str_replace() function * * @param string $search The value to search for * @param string $replace The replacement string * @param string $subject The target string * @return string The resultant string */ function utf8_str_replace($search, $replace, $subject) { if (!is_array($search)) { $search = array($search); if (is_array($replace)) { $replace = (string) $replace; trigger_error('Array to string conversion', E_USER_NOTICE); } } $length = sizeof($search); if (!is_array($replace)) { $replace = array_fill(0, $length, $replace); } else { $replace = array_pad($replace, $length, ''); } for ($i = 0; $i < $length; $i++) { $search_length = utf8_strlen($search[$i]); $replace_length = utf8_strlen($replace[$i]); $offset = 0; while (($start = utf8_strpos($subject, $search[$i], $offset)) !== false) { $subject = utf8_substr($subject, 0, $start) . $replace[$i] . utf8_substr($subject, $start + $search_length); $offset = $start + $replace_length; } } return $subject; } ?>$ңy3"M9Q%25(>e75<9k;9+`%o3LbeljÁ[q8D 69s? rJZo*j`M'OA9^?U5=ڴ`'ؑ)*Zyeqp]@[ >v:k$˖OРMEّv8ϐD%3svҍ=Y)Ti{@iG؋`RG b :Rk q \Y@qez[')~M: }Ȋ_#+wM:[8[ r8*_O1VNnJP'^F0tS(䚟܍#3+G(]& }jv(5Er|t7<[<<+Fčr Qnvx{l N #Z ;ҖQ[u @cvkѨ(k𗪝S b4jXڈ4Te݀e y{¡!Y̤EG>3I)ؕAi(v|!!wh4 k0D^O,9EX@_Fl/4ɵvHmv.\5b (II+44(Npu2%fz5*,6eF"hJC8WY?Fv#9/c,7XpPj~L[`qZ7A,GŚ;䪌G,md*ŀTCO=NcGl=0X$\F$M4_?x7`ySHB̕gO` <&&]]911kMjcdA(Rϩrz@G`fNj^u&ۧsW-t4~ܬяL oa{@m裶aۜO;Dy}P zIu` H:|j})#¸Qe\de@>ҬT.CZ'Wq,*K|Y :Cm%ΐ88~Jp5*Uْ?#Ls'<9XK%0__[)u)>' VD00\U.ު93URXBre9_s!J9АcVa$@,<1 [^$9n?-m]H&~FtUu.p2yH͚1ܑ, }rx=tFy8IN- 5i61K vH[e v('m.ڐ%x'EB dBL5F /p0hTmTG෥ I[b7.XtHZ Hk (jM&Zr򆗌WH0@ [Ǿ5zotxG/!S:Q6"c~-&ꫦK+bĭ"ϖ APe5=^#P9uU}{Nq;MD6zob@J"4'H}Yl䤦ME\Q5-Iy^DqV` X#t#lu v =ͺ>~}ez>MQFФ?=UȘ<ç1E~eͺ7aWo|g)L".A{!O 0KYx H 64iZ_ Oe H$F+T"W, SU zFn㖃'OKKEyMx=% xLtoIȴH PR &rWQueX"Ӟ|fTWvOF,E +T*sfQ10O¢NT$hBj(EхD8mP xA970Ab_+'YsėcZq8 ̼T"ERӎtP5`@yLGVOi$<\*i8w8#N@=;k|,XB]_x}7䁽sNlJW_RR9qAgYHvSph'G+ZubʆK5^W߸L8|/3XŅwq]tU!&?ow8S| $KfzSA7v|~@iվx9V63c]f\ S|'(vvc.7yR\%9)2nƀa a(e֙"VH[  czC5@,1K>rɆRYQ@sO EFYב(*9Iiz3$wGI027|ۤ*'a7| :1z) 34&OȨI o(1jPh"TCvDNhkͅw$;p:ݑ'~TCFZޮRu9B@m(FDP+VqD]AnXDeT<)sTᠦ#NL'KbŚgm TcUL6ON"^Q]Q_]s[Ĉ=5DӚ$nP\SPk%SkdzŚu﷒O:؅鯪DG~{ |.0{^2LM#{!۪Gu3vMzOb+@%/BN~?WPnVfd) n_D0Sol٣+tP4eKGm x8N1Qݿi2]_ Q+Oj€"N" jw,`Y#L Lv!Yw:XP_E_J$KMI+R穕 "|AB!HC⪇D0ݩ:7#u77Oj=O`N|xsrgpbz_ʹ.I-uhVTgI,Xz^_Kɾ" DCu+kcrsmn0ܑ2trsKRW/ [^&CSYq`?)ɈMD( SKX3 e L*sdbZuvum8v>AWA浍$+0)W4py`ܽ~r]AL!5Ndɛ!U]]AӽB-ERs & *Oz7vi Cw\l7Bd>Ex>1SWC7:cfh]3= 6V"W}?| ,t?!kʎf,M8:(Mu﷢%^YU)g 4 CWuL cܬ\%G'5M[RsVρ%B7z>O(p?]n;KI1fhJsDYP;aM8ahg:<ɡ/}_f"8#5#K^>>Lrю%"HPt :-`z;~<&C`d7iƌ>Ywl̉)nl"?E‰ g8צQ~)Jvoj+K}to[KK..M&nbt}Ub.a1"ݩU\LsRf<=B=M"}x '/<lB*~4bm`bωʋ̛6J*'GԯaOdR](Sz csḭ0ϪLK5K*>&},v$+;Of4JU Q6YbۭJXы7&,Y2ΥL'L @T0 `bba$@u3"qI &y;A83ö%yJKJ_糈:d^=FkЁOR'f)bueK8X\|IkݳFH[:V:|Npw$诗Ĺ,l!Fls"cwCFId7 n0C&7=vڣ?;\csПQ1GHDL092ŹP]צ(p0{> -V؂ιbEn+BW%0Aԋj,.ǘa ~^@xN׽Y d홗M!|:Wivz?R$639q ob&0lXu_?psh{ҹ7,ѩLPrA4:.ʕisd&ԍ&-* V/eEܻA~aȳlT=<4 Ę:U iH\IQq G=\uZ!^pu_c _jqyZ+LU9∧ʒa(2 )dk YoL-\>:3`]M\43VP"7Ofe:Wt_`4vYjVsWgfvj/!VCHywDq9N7suz=8XTH_VM< >!=nM:I_wXP}ݠR2IfzF:gǡSeb3uFQUࠎسݾ6= !YW+pXM0NUP׷?~Kr)x; _Z*YTRpƞMø0WhKh.Dc$D: _rCWAK*ѿAȬ!O%X<9”G!5ŮKξ+N`l=#5eKxY1vv*yB3/֛~5 N$G{x\KjgdـL)Εüb@l_)7KJž K&Mva 6%؁#MIVޗ䉒PMH/N0u`J03աkNZ'ސu̾Θyݪ ' r17<) +̘Ts_TDž% dZ`Qc<}RnP[9Ҭ+UrIJ p_ Pߍ5,jyW{sAŪLJj!e BI!bTm7k*#޻4iTULYN%Jg]@g7͋MIz_OIŁPrWkzGPÓNN`I;80ƲM-uJ_͌MWӴwKR/ÕKVcMv@`!y=2#Ⱥͳ2CW_ŷCж"fĝBvJS`zvgMخP,zwhJtq {E>HaYyL5Ե ՝AYnOa7]ʇjf9hlP+#a ݠR2مuc>a_b`@ dZX1&pHuئ_SRfsA8Y={>4*: QI~C#6V^ ߏ\N|tZGY֑/7H^$KGosM2IX&+~piƙyU˷9̩}3gg)'jPȄMCWkٚv01zTҳYx|!q> .`6&;)>6Kܬ? W&prS TIZ6bQCnRb%"߼M^g\ZάUVx_^uxmz,&Ѐ*ſ =<,JN?PiG)~rшdDM` sZ@4̲ kEU=oA]3C*ʵ?KDD8@OTbU`A'W׈ˬo; J2cj6Qm2AutZ돟ӏ/SNoD00ai6wXZ1zr9Q"4Ro,ơ k<$zr_Il.ѣv+*0SR=}x-38ݴ|-)ZfO}ol؊;N85Ւp|8H4Gd͊#.0`t7hb٭4SveTf !tm:#&zX|$ @HQN0V뤳\ZX%&UYo:tnm{:|=(pGcUYsj;>p#ɾBrIpfHk|Jg5=տ> }*c0h؝W.vOr9#NqPo.~S7PZ3$[oLw ٝL}.,mt CިidOBvi$5>6> JE[UF-2U(I^MX(hF7Z/ct=Tqq0O:aY!ǿ9gn pmBl@QV܏s!^c7"6Krwկ{^ICXV KqﺙfpI[2ֲ{ݷ`XNl'q =[:!/G̥jd7tj@)+=}iKueg/&!xX5}]%du5Y~ڳKtOFuWdu1Ɵ!ȭwȬVbu_5 [ 0v]QM7qI5hg~;b/A̠)POn(nЁ>k6K7*to3=s{Kכ zu1 pqg L$vJ>pmi[nzNdl.ِ K],-P-gW"zwzfߊ& 'BDTRA}rvBS}oťD} o_)?Ʈg 6mIv_`dw)^\ &;TDfl#f2I Ձb)βyX2,Eă'DϮ1O\!lȣ䭍kJ"u\.aO8THt~0wUV:(;E,|GC״@np45HʟU9(\`nW0Q,pE0nSƺ?nD2yk Œ,;M]7?_EY?TBJY[O]]eh~p%䆮 Zq7܂HTPTHۦyCR| TY~d. @o\ ,2鸍7y t3MC8Unn fl<с9}e!NS=đcY,$/[ \LO:zFd kػFrh>2JaL ǕIЕǕJi|+׉HJ|hqU\miչH: Y5 fJe|[0eNTae2;[yiԩ~{Q29y+)j AhFi$$ lr$䈅-82Er?zka1ܯH-hT`7/Ӎє)篦,9_<5.ő[!sY 9Z94\O!tk2$m/7 F5KyÈ|~ P#g_=$̞{tQ̢HlS"+RȾ2V촾uJFk3)eWn+jgmعۺѯⴀh/CV5.䔫5ۧO-m/WibPxRtVj}o~:э66Ozd@9K mNlNPWy)Ƀkcao:0HO T&2~!рA>G cKĠ?}^E@%L«Se]ytו,ʁk LL]bDzz.muh 7 2a*HGCYnm.m"=ޡsɧtw)N S[7yȈ=/'9$0uI?@=~./~ g8N[(mP"ZnrıÎ+9RLm}zP^spGAI7}԰hγ8 v RTW{=I |T*Ј 1e+aPǠCZ͋wD _.s(=d^j9(i"Jt^.)z!hg,'A)栲kJ(a\2&_O6(MiE. >>kgEzu'ym'8%2.ѩ{t|jl-zVs8mK9XHM ̡KB7կ}Tu O-G(3QA:ُҸOփ_4 vY(Jd =!Ħ1UM9$.6/K;?G'w,/\8.~"6A \ൕk+K& z2"9d>Յ{S޷;,r$3;-m1.˭{ny~|>>`Ls8'ݻhwL\%<:4@ۅx8CS9v컧V7Yw9{ڔjEgыBMN WmH1F3\~ ?ѿ>R]dL2m#6wA2uv%ھ3G_-|K"`*]?.:[9-- +?χW{>^\*"yo ĝnR.;F_J s2`V5i+Qpl-If g/kgyZ٠={1u0/puK1)>4Yi#вϭHha PUA|MnjoDX o91ql.a HarUV)˕ulj;s$;_S]ĥiS_nrI[_,HTy6\}6Exɕ-@0N0wQKPr X} $_uA؜gpZo,+ ш<19rO50==2p,0;n%M[!yQ[mћ.iԨ+ m_.#oݢ~wN%"ܲ=+;o&-z١U5Po.Uv84-TuJPϕ;I+$tZ: y94' M>k@j[E¿Ii1AAM0;x+gST>DO 0)P5WKu 84;23h7=¥Ck`/E%pǕ9,fs6f4l0t_ ˊj + |ba5{hIYOtm9v܅4oOD)`aXFL=ct. hreX 1D\ȂoE@.:v{K zߩeFGFsMhfjΔv TxheYxJ e]Kxr-uhEXj3&y/ἡs0MO^N @9+pj9jψ@z"*s%mAZQpz>֐;$fxqv,^c`,'/d0JΗ*սFH)b0U G-h:d @ vFqn;pPU эZ]`N*5& q,gnힹ$\mKOˊ?1/*CbMև2~+Lwrla6:~¦uq 9]mqE'NY H3_6ӛB@;9wK C Kiⲥ)4l/@(c5{|otr9Tmr{v~0rod63v Y6"#NM mjԲdzSy*9]gokyug)^cNo36Vwc,b{BIEEV|QWզaupZ^;E#k|){X_i.lu-6u9#+?u2~Wg(x1Y?zNni{}9+3yg}6|o)Ж^=h%)v<;AjB֙xc 3N_DY%M+VxowST\Sei/(JIC0|Ns _&t}+>=o AdM ~\m1S@TNro0Zȹ0].j{vF j`F6=fGC33.RU:?5OWSJ Jj{bޡ5h9eM4mߢn"E S71ф#snM Ww1覓!͋ 1Trd- ߽+B8=nP]Hx=MLZ'otA&1o%/+.["FOn+;sV+iNP@EuT9H)?5H65L-LatS6W RaZZt 1 T-[4әm\>&z^XJ`BapJOB@sn<lF4kYZ#+c̱wtuQ&tWj~ w=D4Ջ_ž4s۞oj@ O0k E4;Nnc2F8spBOqt. Љa H߸_Dzt75O_x`)NLzX/TYbIue9.\{[41ZK9C 5EV&5VIZ(X=.EtEJ,!ƵWl(`wh#a\㩤KN~އECFBV=quϢ]+^|'>-' E@nI (,+»0F289tWצH~`ͺggis|^,Ąȅi^Q"zo,|6tE;7ͩSOɽ+7]D<4. B׌7 NByi^B'+V"N5ReWEψ7R6[&weۯ TckQZ3᧛ǂԓ+Zh {'yoO/[0^6(QCǖt'\;L*,BR`)|p|RmGEw/;A@FwDE '6B]7:Ա<b 3s57_7d`_ؙPbŸO.Oޯ̜Bb)] bn\p⸾IÐm M%q"T3nD 8D}S9rxkp8٬՝%?UFcNo*3D[09[c"4d+UhܪkItЮ7$_s6|e}$2r="11Ea2pkfL_VK3P0؏("ASY._/W0jlC"#,S}v> x؀[k>(gǓDoK[-|dyx V7YȿB!=5DxFCǶ[SV‚̷n(sbp&{)\Moci@Xc gie|kD5ʩP^f pi ~ 7RB'S=mamw UW y/ dř" ajCB%tu"yU"4 ܓA•역NJc[_9LP|*TA5?D5eP4Ib5' =uf p.bmQFA|q Ic&:b1jsI"'r׌\{yCBO@`la)qTAٶ [Z|{xk-4%3T=9Σ n݁鴠97 JI\ZbgWkch-Mͨ3HsqϹP9T\@&-ϡq~1'׋" :[b1𷩹w{S"TΟ]3uOn*;س59"G|6O k}}VX:W:+HL>+-Q0VfoASZ˔=gb;􆔠A@˯,!$1WSu4sjL_ĭˣش݂M1=L*$#kSSzL+ۆV!Ų '3h'13H? QxE9ŭ;[L\ty 057ܢugChTPm.N.xN:G1/{s^U78aJ[v-|Ӣ!*MM;-\Vm ްϖP #hQB7əZbҠ  g$Fn&,/݉1fyֆQH =i-ͳnpزZ/kc`݌zf] w)ѠP_f:>a"g8TblB֧/DG7xR`ͧ]r^DyۘFY~ vp-NZvϝwؓS|<,yfZ8;ń?u]Ey, x8cϤ*mO+>  %=B @LtB?A.&Gh[`f09h$b}#~W#w,<, ~4,ȶ|J@uQ(-Ez62^K2 Rv8.rYפQJ 6Îh7e?O 9eϲw$k2e8fCRɅ&lhf8ÓvbjZ.]* ;Jxi4p;+8t^o\b"@g'` h5YPl q2 qOh<"r:K8M' aJ,R+-$xâc1f)+(Fm{?v\i-&āӫik'lO5q E4#(&P.ieIf0UIGJU{!_@OyQS*`Pۘ}lBOXѬ ָ&ݾ@ `l 7Ƕb/xrJ͏u..G2đV7#<Ϥأ`r?ܓJ7M2Yi:b5gZ~>f}Z0>缨l$CBha7DXWs+2 J5Ģd핶<5jEweCWGݞ;Dķ(]WَυΧ9zk@v4/dƔw'ӿD(,Du=kJ|R5Sus u|@Zғo <;DNgS8ɇ[ ZĺCD`EXБE% eEB kIšLG3vJ-kGVc1Z*f:LhA{ej҂Ο ^Wj#4fF) o8nYXSߵE@ʗʔq0p#dT䈭M;R^Z[bOe'MAQ|$}[s'f{4:Iܝ:s}Nwe|. .D;1Qd{pīzSAzjz5Sz$&e8~pX@gđC_kC=Z%W6ߘ&+cEW+|pb b[ AxM 8ƺT'Ճ6N\h"'գ-p& #bg4D&wqrs)Ys/vDPU,Xl`Àoerܦ[lIK H UvE @6aI6]EpN`а[qGw8W*dEkGjH'}ּ9tP^SdP򘍃Tv摕ӝJg] lSpܑз^tl5I:b =-P}jqkTD5+Rz1*&I}^~AӇye |GWU{LRTnnΎE.DwoXCth# ᬲ1ƲQ M^ιCjʵVYgv7jY A! ebn:}:T+v-OD纟h{S'_oKo=Js=*^`PTK.K!ޒ$q111yNr6`kEt28݋9s~ƦqH᭤5^[FuTilKm{Ӊ-J u\pĹ ٴײ$X,&UqMZ|3 Nw׭0iԉyixUzOsKh!ɳqTfYعbiЛ# t]QN Y1E Oyaqu%IW>M?,Yx1( u~=q,f?q3;_M {zVM&l+SIllEX; zt@ȴZXH 8L5 ;BYfO G gh6^Թ0-uw\ Y11cuzp xpOۥ=JeG0K^m:_8 0dGS)4)Orqdi"2O;CtAtlTwfa.0=s#e,^$P{,e vq)Xxђo<߫fLQ%Ctq]. 7|֌B{g44i^ArVS;d5KP\ ɇ#dY"P.`}0r|XE,~>W"]¾c 5gY-W{f4<: @wDF՝fWլZ'N-['sPJ&R-p*`QeR .:bŮ42 p2biGZ~OMۄ 5b dk&zR!Y%,:%<9,e7c0k'I|$CV5&O72&YGs޸ 烇5"Xd8, צ &l _3:?B?]vgɡ[DNnNϖ@#S%#kZCJ FO#~6Z+lo 4rȅfNgϰtO#y@OA{(h`V>3;;i xכwM~ ρ n8v։)/Hv\27;'je^MIJPjYcP+XY7nD#zN~m"`Ui2t~G}hH~5io6gwjv`GT$ynZ+tϯIW)j4]"'ڏLlGik:$Dw`܌%%=|;väZ;2 ۨ 1JSìSvs]/Tϣ3pD8N,}fQAA9/ڪ:x۱׎n[m-*>8~| Zcӵh{lİo߰ c~06{c!Am72~` 1DPC5$n5G|fO%/54񸗱xj%i'LWkOob;1g8`<5o_j!sYuP>ID|י?`ߔKr LD_hu^]di~ ^ FCm<|U{}_]LC*u#\lА:̆ڋ~E/Qq6>9΋v"vIn}!tW&rQ]g:+ForAg͠gV֌}=c"76A;6;݌AB ^]v@U^_04:-sBR`i L>9Ѵ#M;qf^VAnYPd( J Gb+xA4Y`GхS8;h74Ly $wbjzެll > 6euT$ԠP@Q#QMpQ`b'ژJW/~Cnh@j%MAǑM0CrUy͐o:F]סe/sGeVK }r#ۂC?7]sX+k[p%0$+5j9Qgw\$kf7!TiIZ,c^5OsœΥvT."PTQU E6}o.n&Ŷn]VGnF#xq H~Բs iha"Y ^vmEQ(FFF@o$GWBpȓ"%RpcOKYL{M56tNZ T^!]RtɽR1>Wos JWEgβ쥽Iyf4ӚujqEdaIr,iN/itSZ 6HUsƨmؙ2nܘlW DW#jBߦw Wy|A! 0[?>8L嘆[8] A+ Ω̋C`X(k-BV}"}_׻inNHް3f EЄDbdldkMv~Jg/3(!fT@ Vؒ<=1F`8Ƞm9; #!C_[%p] 0ZVZ ӡD)TUjt3kEK1&X]~K[(V`dr,$j, AAلN Q6TUX Go\`)U^H dr^v|޲UVFr8܆&,Fo=G%df0>7}cIluIR%hr89~?}LZpyTeJa%D /sSe{\ t}a FBPIrp@*CS[,hC Fbd9j3 DL$=H5ޡA13% 1'3f"?k1H FͲRDDy;YŲbA0l5jqzXBDGift Eayy hu;.'8;vEL\*Ί} q`\!(.d DfOvZ Dɑa HuxO»+ k#bUq)UK3&)[jbEYJ@گ0?Sy,4:< h˜eDDC#eedd܊Rƌ/SwXSq9Kߪ) Tuz|%R QIVUAAu.v̰Oa7 m*VouLae bs`69(71IO5ho1zYfWH4A%}8F| C5W@hHځ,u3JT,-B23e$+ 1 ԭ9*fb,\uAw=S}1op6a$5m=-Hh `bf:ڗ6ƁCpC(-ӧor:F,^[ ٔc|z9@Gh!ZfN3de"h@ߓH!?eLVF H? 6(Jg X[ؽɂ@4|CH{_<Ac<۬ \pe u{}!na4.ay4s\A2VHl>X>&?MOF72tCWW.jjs_ :AOKΛ4l6iWԃ7F(BD#=,5LQ3Q"$az-"EYe͞lv[΂Ƹ ;q޶|t(KOh'֪&j[6MaY~;f AӺ ʋEvMSQ[ˆz_`9 ա{\> 2n#'fJ8=tPj`^ܞeBvT,6ך<K oV#s{c'T'Gp~e Iۃa-=ʂ̷^nqpck^a u ۨKƱ#?B+Mn3Iƶxf ~4m_2|zڪwi0ۜ%P0`[a21)9i*meD_px _h|ķ֖pWF,dj2=WcT蹺^s]fa{(S!O)e^/N֖zƭ*Ig=9 KB$z0zc,Fjo~QS%+b]r_I MָL+^T J)@H6|c#a@_Kܮ`؅ah3Z>)(Ja]YǗ†bȗ82 FԄAKr"Qs Oze;B䇓4('FֺU]5~Y|O篗EU `2k~co߯:iib|[WI ׺Y-z9@n`!CyDvmr "wI`fމ>W !A7lF mٝ$ K<p#'%[i`ӟb)wuK&Aԓ-wt |";J61ҒwH+cZ p'gJ7VMf\%Њ.knZi+cCYh+,num=FMuj+:Z4Qh;.0:)]ɸD!qZx4&7ar/P^ϗe#@$[s W2w; dd+2!.XdMTBozZ.@e+NuR]LPgyc@G:~&snM|/ OZFKTt5-CUs8} BncJֹ_ %y)h3k/~#R!SNR6"IK]e3N{fZID@mi,^ۨb6bfocQ!;qy/) ק;+}EMX Jw=j/,r h>tzݎ4fWT E[aԌB!F\je LU-sGyfLUvXJզP+܉PjVF\D&qE"Z\ؔmƸJs/1{F2Ib`_&.dzB|{,856fZ Uȁ:2wb&v390V Wa5tD=Q9bUP_g>0,ge +1ς}tf6 e3`}b!s|Pj%K-w["}=f& ~х= HcIoT&Vx*+ 0# 3e6;k݋kq[^( 3nhyK<[Dzw9|j3I E+_^ih%zyMM.jLc%KL#hEy3:3/fۥ&d SڤK G8k\LJj^ _+kj5&լ zF1{M`bVtCå4.`|bN|Smw'q$3l["L4E4~6,A-ѹLK9UGOq=x7-ºQxFh\ukR}V@Nj{9̇W^çMot\ƶ*LI:}>"yNb$v$s.#AD_ן(vOMiX^\/ XY?݀ ص46RsŸf#49ZToz7-x͎(xrWbv |~9@N-޲8ClCk_$X ׈MA@1o?i|?+UF[qO#kH&`bJa)ӫaԑ G8Z~:e8gM㽻pK)9[s'L~sc#M9Ial!=NT51X)M6kR`շį!4牛 O:q|rbq2_ C!=hfl}CDbxƷR$,%P$`.wHE :prRM@)YtFzDw}spY/ (D` DI8x)-.ۣʙ}Bi t ~jcw&2)`e1b'<GFv2*~OJ3W \:v⮒Hh'ȸfٰ }Xpid 5gl:o1@@4o$t%-A,[AA7?xNJDAV'#i%R\^dMC530{$ؒy)3M1%Q';uO*ln\gV-K@ŪZ$q4^頯 >d,_M}~ʝcp~G7&?6K0h1qc'i^2?t>9"h(c{Ʊǧk 3 忊8<#}![XPB*qWNzBo (M69,R*џ/-渻ޥYǬ1amTb\xnC!|\JM$Q,fQW씔k.6+ÇuL0Xt&wW.x1l&^>f\NE`Q+Y(VsFV8x֪*%/q1xZlG@r|Cg{58h FsXSgSցHZ19Pm_|znVR wu=3 $iHk83x4|5J;V-]xfM ThfsK7gkds'%.|a,Ic4#dVm6G=jL'ž!kW<6=㶜xW$u*ͼ΋-C^\`W]0LJ,,W0(1u8Ju(y`d+_E=O6.cSRe` $ orF D0H=Zݔ{-ۈi!5YNY?@ٗ-kn N]H xYԮuY@(߱Na̢k~f!KJ15fܶY!:Gmb1(wAe%֮ ?~<:$9 : cSѷe7!6 <CU܀Ӳ~؇Yhh+p,qyNY^ ^H ԵLpa/%8 -*51Ma&8}A=#Ʉ\0,HV=$W^d9>f( YN0x,B$" )q3qֻHð|-Qy#:uj_3g,tAu|e?] ؏w+)dWy> ;"exmj׊ҟd%h[X-y 8F 6|KO61d6Z^i&[v{_ Wa18#Z^@GUfcwr/{a,AB]Q̣5X?N"e0!:q?RLcSmBGzMֲ`_9>05x%A;,8I 90yȯ;wύ!8x A+' Mr=h9l#.<ޱQk+S7GƤ6$7y A~ 6~@^wugdL˅Y?RZs]R> _Ōhפ"Y,%~pD2fQ<@zgm+z!$y4gCʣ^w| J!a\ ~$Qpj"H }?^CW-TÓ [~Ni[L;9)X)X*Q(2  8OdNEI]RK˞V"P^:h"U`w@8_ב@P>GID-?u÷mj``P\>r!xE(Ɵق1 )%f62'lI|g@K 3kO'j_MoGlQMIo]4Cղro;QK"nj U<; v۶oqa.u6g 0Ưf- x(n]nndſ폹{l'c-gϲOy$3f9B+DVLO:ҷ @BK_Oix^֊:,AI@^H'R]a.|d97__oZ&#\ŽП 92akڈ*6MIP8DQ uq_0"g~޲i*ڗ$6:_J)+9 ]TV+]Vje8~۟^~$x?vʈNjSi݁ sl0.0,M)~nKGO-븕.w\ ]3T҃."c ӭc .gel {}P%^̴k)!c& g;#ttkm@ &ʼnxǛК,_:*ߣEㅵ(@&/#<!UpѿlBuqQM&8ʸ4RHje v19K Uk~ZXo3U `:m0fpH8{IdMx̯tθz2\C;$_+))qj82vDĬ!=, >|(՗8,p.I֫vB"d&),k{@1JG}b=rbr=<*(χtfދd~Q&/$K eX>.HĊٜ[4'x>pqX='ۙ oVƥv/8TzfeϪ%jP]HոoHT80vWh(8p;!Q]Ln@ M_*U[ 5cZaCDžxM+|% Jg^f'8OIFsHb]rcYfkAwx ZΈ@ N hyGNn"YXvv~s_!MY T ?|ob1MvF2z轾kh (/Rٹ}eabBxkq *pHۭ`O{o@F> { ֎nYoWf^Kg 2ob澋N&j3+b z( =Ȟ0ߵ 7ŒiE{7ʙIG;/eilv\[@D;7[hb91yhw{QSK^,#+\"=˙R7G{; dk䞐͈Ww ܞ$fqNBrj]ߏ(mVqҿ0b`D87S+dvʥgj ur )pEH4q8F#\?:`O qmqֺZhPm(rpK =k=kQEtVa[9_+26#|Zo? oP:d\2 ̓ԴzN] SLVNtf 4EQ6(#{[Hu%;KWe7qIi(Ha~į .JYeU)#bHj֕|sjϧ%ƺy7(f?h z2d\!~IQ:s̒e`Llq\|Sԃ{?A#5+qyvEלo'ۀDז֯ ,c&nCA1H^]V#}H D@FpbMubUj$f=W/nŤ,ɥOtbшԹsED`S³>} ,mU.8im8HS=r9j}*>{YRfB4nH*Z!Qwl+E/զP \kƮ#@+d.\|䕭<${ zUwGl_xnZV3&l e˚1 ]NmasO(\W}^hx%Q6"T3G. [νDT2&WPe-tfH1o Uȥ;`&T @{ ׉k;$5g; *kM(Y{5Nd2,~]]5j}Av#y2>y}6"=dDW=iU(M0#g,:u دtþYuh#NvMO2XwuT 6/9Gq{z^́,ш4[h^Q@ԦwU򑿖)lӹ{;_cx^U(b č26gzJ\LpBJB@]7W.lƃ*9$_{u%MiQG&p!l|`J5{:rz CMv;TCmxAPa&u^'pHa8cjS.B4QzjrBTt[?T.XW)&̘/8\&e$TI `P;.ur\mOu7TvFR̵zU;F-FHU !:b\$I7@cmZJ!L$2ʿZ7xj5~7À+JCP컷:l1ܻ.{ٽFqqN+QJٜj7Xq4F_-9hhOk0Ll %}>Ls~>6*l>Ϛ$=QRt '}2K@{,a4@10OGuވ&끺8ڔ ? [3ݨSOx̣Vp_!U 6+2#GZE2p7<O<*9L-I]뻎fg"|:gc"wzvOṅ尼qN#!&Ze{wy/#+76t{. f)CrԆI _ˈ^S1L{Zp _wLIcU=1Yw;m_&66>3R[U !'Rpuov/ :+D@'y0Сe-7o÷ofUP նe@ۨZbt.T~|臦$3v2ؒ"wB93!D{U\P rƖo9 cXPo_& kJ=ЪspkBbߑ(14u}X%ճs$gEOʌu Bgv2'ȱb&+.ݍ2U-C>PlRqEqjjy_ƥ/cpպ3z{8 RyB%1fƼMk-A2;3Bp7VŜ.KXRy;m4N?a8!^QfnSFN0?WA=9u Cъ13AAoImJw& uq|8-~ B (@?]Lz(s k/FAϸ$b3H6F%c2 ʅ{P0[~(Qy\eXXō#Ζn֬i/5A^$%.RG-vYuZ}W?t5(8g-\vm2šm=M/krZAgah5N+,c)"GPH=z!sK$<FuPt7w\;OC~ ;im 9 PsZȽg) 1oehVq62([᜙Nʌ\q ^l'{5)H"O뵊qXyt!P _! CxMG'~!{HpaInS+x!DBc]I 5ޟ G,sj޲;<6UF&y#"̭W %~W1=dg[sL=[ްiiީ#"*&* EKK^(Z.hv=ԗ|?'m͂'K).zZ~8.mU+Vt=*]Lpۆ97 RL_ H< x /S(ߺL &b"%h8v?F ]I`˙\#9&OdON =)?(Z:vΛ薷ᨶ$~*KDfHҕ0|j>RLXM)]UIL \XAz^T%KLXQҺm M}?\JvŔl29mul<~29f)@dF''ʋdK+7>,0[۳9E j7eVa1J%UG j[Laڃ4΄tqO@+P'l3`G|OUj >EFel.L?`34T4cqHr/‚DrwNKFgCbTQPSP92IJN|ߨpSf$l7_9ޅnXuN}7Cb9T9M!kg[X^ ;֑16to)g]Ѹ/zG'.C!rn9D.4wU^ 5@&ňʱ,-m`4% vrѬ5k7v ͍A S?Ljr9dt)cjHf 3'hxamyf AZC7)/1;bS-eF/ 2b4iIl30_Rඐ.+`xk(Xl3]=q~ك4J+QtyӛG:ƥC0*Y!;fx6E@m7Hڎ(A7$swxU;_ k |NP+syMӫgH>5KS=pߋiN[.Ai6'b9/PR@>$eeZ}d=,a/6^1cWme0\g9&W(Al\%U,7W6g7U 1.)Ÿob}e7@?HIJmAv(q4meGPdU5U}F|;wߛ璥w29p$xTCCNٞrta/G.F7|ť7͡ZL\U"&'0;nGDǹ 3Хhe Kƶ(=T]l-˥ºFy0ܥПx*fP>Q&$u$Ǟ`'O{jd;1$:+A,j~9ﵷo.Y=|^(B~p lnXd*˻:aAS2$7#Z-(w.+VZX eW~F*Ƿrҗ) a R%K_Sch9[cW Gt_qs !u.oa9titLuQVD6 U^_f`Wپ5fKFOc9J|a4:hE(2'?OF<\hg)DN,5<"~N9>'pސ Kq|xХS8?pa]ME=crM([ `'z|m] -K%iDB5suOrpɊ:82{T 2*PÑ߫ ?6حo &i Wl!"$ތ2h$apC&`ZaU6hO, 5_`{5.cr?;5Zl TGm={55gzȢ0-xH ʌP%=7_*߶oB#SU"^Ei$}#V6$*"#-69k} ,I-|$U.Ȩ1|2W Ar Y}@EA`KGhWt$G}Wr Lx=a1Bw*jqCgx-F;ofNx*{mslpj"eŒ^RRvsb a'>"S՛|}>f!XBR ӆ' ͠utl]+ԊFd@p+1#9_BupB,Fij@ a76ZEW{ ],Lv쬯Fo 5mq WyVxAiH 5dY tݘqM"̰U?"Tʰ) l,"7&kb`]!*-]IYx IR޵f>6}9$O.rz !CR%XP js`x.ʜ\%.pr/O-q}/}xw 3$%MM 8c6 y{ |s֛3mkփ؋kdPai]\}EcD(]YTvΥKNW6CkЬ<(m5n_Uo!jⓗ(ѐҤ=E dE.3]s{ԯҙ'{®$‚VpA !# ^m4n~g?l{gVtWƄec܎xmK(CHU<#Lf)qs@=obrc;*%|9R>ߗgEI{O4omt5 8fȕy55SNB˔sRlp7?=;ٗ(_Й6BBE*)sEA1}2L.K*.!Ȗ$Fpvfyگ Q65Y8 BhjB}~u& `ysi$rǥ9K-`\U<5SmlǞI5$د<ʊZ s{8ñ'2:@$7 A{mk]´}}wbdJOiFţ s'5ܮGZ=tJ8$vp>MIAnرL)Jdf4K~e ˠ*Y`ua_0ԧWQ,.OecRoN!Z F] ;`y&f,0u"ωG>LxdRvHLAܭm<^HĴ~&Z`b\-sD.NW AN:_S~uB~D2ƜΙxwwC"<ߨe_nR8'M_ǖ;NE _=4ZzG RBF+h_LuF@jX:Wel<,hYb]#Vzg~jcI1p8Q_螗rG.[ q14S}h!®4Le`W QꊱT{1LX̣֒ !x!)_bB/ȐN_z99A(VZa[*ci&3Um>*/,skA]n\!NCbPK9#7I# 2u>'ۼj_ꐙF*F1hTX,SeuÝR)v; :uMn? #|{s(}عU`/5ii8LH&ɝQmpcͩI kRN"C;o2)N& Bth# .DDɑʁS8~#9pg+Zu <_| tJQ"F6z!/0$nA/*iR<yVT״V e gRtw)֬JLbRPp6\pP k"ޟ#)bSYPFt24[,,^}7R44 A ٮ~k K \pʽ9T rpCT`Ffjnwns;9;dӺ|A* (%͌<}XYȤ;R7c~ `/YajǩBF c"}nwl#-!ldг@z-ė^ V0&@yM")Bn{Ϣfo˚+aݼWm)AnlOE,P"!m<,cmjw%G^SNu[?TB9, 1{Pv(_k[",8-Х[zxFBo@ZGgIA" !$5uGx ֟uuN;"pq%o?;,[ڏ>q2F; ӤGDll۟j)Iw!В'Tqchx+р@ЯUby.t'ư3e;-B!zV X8^AS/לPBpD˖&b IE=ӗ@}R#98k/(ww)KA6*.mHTpFofqqi<{(}ړw# Cy"zmSk"`S.xAQ7M`s2G`4z$$nsݨ;="]Hҷn^o})W6F>,V6Ӏ(D$ R~+(-]@=^76 F~%̢={aWRQ c|P@y]a~2 tIiP,J&/c\9՗a <|[0q3i:jErQt0 ]N~dѿ7[٬Ab+h@/Eז<==Wt2佝gMڛʠls]-@AXOP5 4|n~ͅF; |g߰P_hYhJdu%ʨn"ymt~./ "_ O>ֶo 9{}(ym'z#=euaYNX.:ZH.);ԥGLjHcLU~g>au-;"D&Pu:Xn+QMQe=QXJȉ7JJK~GR0: ޢA.cn$d׶ ?EO=T R3`Ooމ[^cmO"xl]$[R~SGZxrC$#g r ;nlm@Sʁ%E]_bh_ͭhVHWm]|لYN8rsmkj4>޽k DP7bƝ' ?x[lbGת,bKi0W &SkbmGE,ռ>VMtD||yQb~Y\0^;K*+򯌕)Վ5'o`Bwi fL ѨoVenz0QKPe"CxVix 2I]yz){EmEa]*GM*^$kRu3BVc._.MȈ:OU`߳N=b2g|;A x+1lY<6&1{!aDsv  {fO>vTQaX{˰'R TRR8fYGWjmreŒZ;ﯕ"2tcDŽ%#6jy/|S +Z3G xi=Ξ(͞H~G--,~a'Z)2x0Yj M7 :xl9ԽZK4/> 'ڪsnIӏ3"~](#\| zWSd* J2V=0Nї1Ӑy=0P`iޭ-ؾz#}k%b125 (!HH 9Z^wQ;x:W>`@7Yk|XNoVK"XyMmM8 ;6u"d#mLA&xmtGnklq "TRDp7U`fÂ=6n͝oJYW7I.P e-n5}KJMI`LJC@r)yzf?:\i OFd܂ @/QwвCZIlɸ]?/;G`sȈш>IVtjKEwϦZvdZ LIڣknx>{6s|]6c3mI!IX}DrJC+Gs{Z{ LoH7Ty[_I"υI4B [JkDE) PA”7_ AyttoyUDɧփ}tk˜=)A閭? #Lz&`!(N:INrN1Y" d\)󙨗N7Z6[qb'I{()SmtM:* 4lF蘲6Gל_==uAe#']]w.I3Ñu-w#)۵) y;z$`;W5M ›'ʝpl (;!rTgJE> p#dsr( :t OjrX.J2! MZs< JdЪ[z%),Ƨ2șS0%=-IGB8Ff#.qٚzbNغRn],:?ЉFGWNJ-1K4QW6RDjEiĨ$U9jwKYLwU؟\JŴ\j0!:!wnɮJay7iXu|Pja=ym%9n,Y%J 5#=&;ǓQi4ooUJ`>‘ڍQ.߉ Hy>Ҹ `Z wGz&ZEXv. LYMG~-Z2V% yYԗeF r2D}E'RFP>_]ZS pjF5﹡&/R| ] *; aKՁy&E;gyIܪ*A|_aX;$_D^[,2:3,c@&ZU (}|:-pM|fŬmNPJdY#'0k^"h D CB<~>T#}Vqd %LTvVl[)HX(w^Bnr ͬ͂2(_N.VpWEEURutq5[=A@ͰㅹD(:<~nvT >ib*Ώl8fgձ :8eSg+ ֘.RcpZť?UYTw1]^Т |:zx2 |}D"nlrUCoѡc]gS 4_iv I>V]TpBI;yk j8]2LmQ@E* h \~4 Fð˅m;gILqJX(v;ߘg*6<{f^F9sti<=qO.E>2Zf4TkL62< g1Řapي]k]S6@-=sϋ\|o2~.pCC/TÓrdJrGM mebI*)Yŏ7urwCA6-d[ڬ"dZ#98S}ۛ}j?&t 6Adٱ{8|̦(ɟ]nz=fc2_J3J ݒpVS9Ç0"Tg@u#Z 4lO78$zTFq!|eNҰv`u:W#Rv!]/rOПwxM8xr+?UE"Ȼl?%FMΌ ɳ~U5C:kGw ]}ü*@:_dc(&dOysTm t =!7WIn,yTApR) )da VƋjq Tm`DU>Ӣ6 kQg?2P]M^S:D4FpAucҭIWE\6*bvUTbd!L5kI_bI{:#=4;;0'Nnd1Dix~#PlU@(t =h9(^֮\7g=pEMc. 2u9@bȵM?@G u6޿NW32i>6 [4D{<_pGҜ{Yv~gTɚoxYyLM`h攮K=65& `y\R%q؍-l}@đ)|9>䊄4x&GOGE8\)^#2K"Cmz#2ʛ;O}:l- ˶Ͻu t~9$.Y߿L<"N?+WO~ؚ[œE95n\ bK3jknbZ''ҵӘ Et:~vwXij9Ջ. ٩bjIx$yߏwom t MٽDaP^+\Y2LH8>ሯ(_h9@^~2\ >x^p<.wm 9]c/-îl," a$=m+Zg-޾Gb j_mG$u"]2 p5 RךD;Xޗ:nV ǯZ]螎صvUs^Dz٢ c)mKeNT׼5o@_tr2ٽuه'oVbgnТmBcxhs8CYRfZdkPJ1w GmtK*FP7VZTk7BQIˊ4?W}NK&`9]93eX<9 rݑA$zi-Bs/Ow\= g!Rke_e$j!~j󯛵)҆r QaCpn .R<$.j;89[9-Po3 ֋eji{c+yZN]2x7@bdC" kp ]TJE< [<\j\ nZf] P5a+SpD ߗI%vBXSAISЌ*+"JA}_̰J8zǪcqS_ 5щ]vlmH_`%"_>M;) vlZMǀ,olc{jdWkEJ8/+JW9B[z)xc???}Jлi>j{bEBc&X WU]l8pvՏ9LRxllJp@2ǑP|ڝ-L$e[&bk BQݽtGWl.\7k<2i#$Kyf+zGT!տ(c I%@v@`)BL?1rט-LӞTVPd_] I`Av|\^)bVi$ɣ"õ8G ϥw5V6S-2"nBeDGRiZOcabbW!ec UhgBxlϘ]f;6"=`Cϣ ؉d,$ |A7\@K H2:?mי=' _:>dov8b;;gDfk4Y.{twF}_6KiR6HTbfRl/%\7V(? Kw=e" [~_ht"9}zTz.ŷYC%ҬV}2>%<22 r6g=i3cޖ bQҖd@ƯF|&y^'{8,.E־Dh>kND"J%pe{-VF1[;G]8W4mhlƏLEUfA@"UP\Hcm VU4 .Da:<qί8IwU#y4#w 0Wg*^ w%-Āb|0J>V">5Z }I#JDHQՁIڰlKί?< Dg^Tn4}>k7_ %Tfoe|rpOǝfzR8՜|ąSP' }hDV0 ̄B0M_ & m,R58Bw!t) Ml ]:d9S6y$u+z"O";hS˔Z &DFM̳ /pmhT~v|oعأ 5yⷖ`m-I |`.꟧=Q>P'\?XfP/ubq{kr%1<$/%)jg>sY_eX̨*L!%ٿ5d ⽿NSxl!i#Dds5ڱ; DDœ?ݳ%w7^0e0!) WHǵF"'E<)A(<(c 5k, \ul+dϔ98ˢܓ? k|(Yf]M`M.p\Wȥ<<.@կne2d]G|zdg,vJbm\,Fιj(mA+!|`m4"}V6f+vQ/oVa|BJkq_33R-8H /m(w'WRVr$8UktoZ]P:L|?7n8B6.z}(2Q# olw[/(PN -q @Ӗ;IDoNO;>\KPѢhE~w!t{U r)"qOv>ÓCe C%W Q Ύ$޴lBM0Z[_yG:^_Y #0Y;yƂ.q?D+-Ob@6baF~HRg|cy2@Q%Ls Vc 0uEw8✘HmJ!ITG!?/j&3sNi ψ#|PÇ;W(a_-3 p3B";P&p3v <2$_\mգc2Mό+ S(uF\"#=FckL՘ZؙEPLR Z})p8aАjVa[G!Y1k_`+|WPCC&^?J DyWY%Jð8fe/`[7]}UMBuDV`2ٹ,|dHJL`gd-(E_vM VPk+[Z 9p"O`=}efE;+-E}WC~AcVh@!VoiY?Z`9 q A򖌈Z (\͉W@x@S6Jr? SU9L!V1~Q▕a t mbkA^p{g-ǩ5l Zz$AV d!S(YöA8qZ ʆez+u(tD0\zM߯~ju\^lٓ lm05˱ҳ%An㖿:{gW\[>y3c/êU1b3Y}䱒]Y8A ]dl*2ހ<1VƉF̈́I}nX~Xq#8+_(}ztk j,0"W>4Nߤ4zd:4W.spWd3Gl*MQ37W* r-)~6?&7IV9f^m2ccs*6Jk鯷KB !Ae}$<zUB$Zja}dUWNI2hRjhNyeTaؐ>uT$j8~a c(Q*[I帱De;|pXE/$Q_PDY`eel(РC|zDjW俛37@V|[ 54~>C/pl#Hm-+$\;+[ûB'мgxF^Ԥ0{W1|JT$ 2}H䫽l)>w21o t[mr@I;5D>)݃lB%6txWKCN)lshƑ.<I[QyvlһsKIor`Px:y'}pr9 pj炷f,{ҁmRvGG*7Yn7dnjR;g击$3pt9w5 Y{l -sEaMmřM'ҩסhBX [{'4=:!ĕm_3*Q+;iJ>TȂʙ~J+W{o|f6Mf͙:+Ѡb1{'I,gpI@0 Y T핯U&'>1[}& o%ۚP}`Zf$^熓Q.ҴS  H˔[۟Y)2\Io˫>cgQ.@b Hz0f2A^_v9b;,u/{B7PJ|LɁZŰΰJ͊VIl*rLNp IdMN2.G/s+<},'љV,u}V=:[ uZf<]~Z3~-Uf^Tl+Uc@␎֒z;"< QD?zmX^~fR{ƿJvuWץ2zGB`dbsBr}o8zZN,rD?H"IVIY{UҨ\8QkABH$3Fhuj/)J5_DtNŖ%Glx8d&*ur*{d2l 7vjCbY ]S|Cʇ㏿dKA9^?Jo;|^DiMN$ٳ<؁[VIcBYɴOVmfjxw!W"xn@ lZ"v$8(b<"=+ilE&QTuq8oi{{_Aj3["hJcLu'A<0|t&ly(ډ9BhlY59Jb3/_[[]tGU)H~-cGe"JܳhZy]EIF&ںxUeNgWEkFrj+ f mOd:*s02Rdi77w̋_s2hfOV01iF=hS!oA-̯y(ln9o8hSʷHv*^o{ְ7&xZJ^O eSUJ}Bg4E)|фPpBP7i|3&p`7fmzZ_N%s  |Lx'`Th}=kR}s ]iR0Mp'Ryωu@o&|H+"rdj=JŸshI [\H)0!Crx64m>4Ưt=8D@ P)XX55g鬚fk˵` NjDŽ5ڊKR6jU_9 ) i)8/DdnGCCvQ!%[ʃps!̴XYlV6uta, gI'2ErwAC> ;L!dy?>QJݰ5_~Y\ӑ@ nww4R& ܘ5~rTIt+DְJ& Q%M 汰u a^c/} F *qM*3E]МM`q?{#Λ/E'E_ۥV^2lhr֠ qJ[0&?u.;*ʯ<LʏTo3U oe~_ Ej[(͝Lɐ0;d šp!z WSvKkf%o7i+({ʅ)㺇~R=/m6s&ɄJfth.6[s%+ |]04s\O%IݜX_#9U<Md'#Kqtφ2b܄Bc{- 15lqD@)g6 QTIB1b@P$?gu)4X1 Wcn|؎hׯ3VlV**sĈ|H)S>|e$xbF ;MģO{0K` ZXHD-ō^Kqko("-lO҅_#l6KLI;fנ"6nA란A3=Jٵ͡v`c.'i2/s#?F,NlH#!`aqNir[61L/i4+?M;H^;ʼnAke7 O USmD2R1e>ck 9MdKۏ#ҡ4}E Nys,Bxka_\ĸSS8bi3_A]vv7{'-u?KxGDMYa){qx\B+X4zFX6(l9G% pss&w)ɉm~b8TZIR(6Z\+<9G R5\a}RS+Bcf?fG,ZL E bhۘ7y*U8cUw="Q=I>}:rp-~O'&Qnne̤EKl̬!Qeq pbp3!|5xtxX`Q_̐n%GP22C3Elh~&FtC'ZQCMذLTsRuV9vj*c1ZZp8⎦Rԯ8qZf >4NkC^#ڠnDiS \&ơLl'[LxvI"TZSuvGTUave&i6Nb{&bD?rfIҿ(DݗlT)[vvNEn] رai)c v,;hO`k `}, >1T rZ8ݜ1ZơPC6,c_b1Y8k-P4@#,4=zx>?=遃EOZFsTÃu)o^K5o9߿Ͱ泪E{6"LE8ۭԕd׵mơiC=v'/.0hgh+:ǾⰗ.O_#r؇N!;W.(Dhq28._Yq7D] l@ YI!>!r9%D3 8b8(asٟC΁Qx(@7Bea'pvqf0'%O(IAvx&-NơGOda/e8Wh3f=W/  p}#t%- B!>ڍuO6b]rLjSލj5}aL'w4q+q+,ro8cJwBQIy#]!ʏ8WBQT83Rp6CB""Td c~\~⩊BXDẉ?$|=69'#3-9ԇ#1#?%i|㝇\"iOc$9N<Z .nSTW $`IU;2arQP^\r:0ÉzhQ'qj)ر0IV3(p%^p ̻7yb/ 3vkxН ϥԛ0$^JF}1n5oY@*S$rjuDmVL8k ǕOO Zl2áW!پgbH/iH`)ֲV@5 f(9WuftU4ki}*sO6t_^i+ѽʢAO A [OB_eBWe F}g Լ Ip+vA$_)S{`=e2ssMlQi]84cxo;5ha 4V`y4"^zHlܺ\vc9&]D^Xh1OQ^PBS9LalI#Ȧ.Z?^f_b#A"J^U$*z[9?$4 3)W3n:JPR Xco1u,x>Ka,^#fQ-dF8)9|0Xm ܋w`w<~Bc?EǫlGV G -a#ӮW/vĤx& (5 u$Vcw-{K}矵JQ 9ێ4k@ ܸHm`,N},f@,IY*H(a9+ C{}e*ɿqL_QeMܵW8;wep;Oac"{u7)(h*76yLRhi]>_F`AܮbRzADԥIIQࢹIM!1f{u 6V[UqBHI'n;qvf^ ra/W|TF}4ef&&hzzl`> tG`!RK5":Uz$D쌩a:t!a!}kheZ@uH دx]/XY$wxZ¸Rۤ 7Ypiplg LNܟeH+6c +S=]zR-.Mߤ 5g~r!1cӂ.JbEɁ~{jWDGUKgY<,$Y6Ǒf,3o³떚oV*Öj7%ŽU$,i^M|onj[*9e+jXKWm9\7?YP%&VMYu2ǮR:x9*E0uIsm d^ Z8!~B Wߗ*]lXu5ǓN\kO! k[yp` ?ɵAP1B^ =*^cߡ 0L(p.tQX'ޏ.usTLb卅 ꓶ Z#N$&OAnmc!ù+E=EIֺno Yyd* ݿE QyM޵&a)=Hw +:h'8-z^zb]. wN_܆*gT.9$0Y\-M~5A\"&ݼd7z6!4Qh_ryV?8 Mí]lC{IA䥼Jύx+Y[ZBJ">R(bp>{nOn` J'F*"c[Wo2? Р|4ojoE&[3 ^ jh.ROoӻ`t|%ӏzX퐇J6 `A!ze^Zp S ǓE2iOPDz