/* * This file is part of the Symfony package. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Symfony\Polyfill\Mbstring as p; if (!function_exists('mb_convert_encoding')) { function mb_convert_encoding(array|string|null $string, ?string $to_encoding, array|string|null $from_encoding = null): array|string|false { return p\Mbstring::mb_convert_encoding($string ?? '', (string) $to_encoding, $from_encoding); } } if (!function_exists('mb_decode_mimeheader')) { function mb_decode_mimeheader(?string $string): string { return p\Mbstring::mb_decode_mimeheader((string) $string); } } if (!function_exists('mb_encode_mimeheader')) { function mb_encode_mimeheader(?string $string, ?string $charset = null, ?string $transfer_encoding = null, ?string $newline = "\r\n", ?int $indent = 0): string { return p\Mbstring::mb_encode_mimeheader((string) $string, $charset, $transfer_encoding, (string) $newline, (int) $indent); } } if (!function_exists('mb_decode_numericentity')) { function mb_decode_numericentity(?string $string, array $map, ?string $encoding = null): string { return p\Mbstring::mb_decode_numericentity((string) $string, $map, $encoding); } } if (!function_exists('mb_encode_numericentity')) { function mb_encode_numericentity(?string $string, array $map, ?string $encoding = null, ?bool $hex = false): string { return p\Mbstring::mb_encode_numericentity((string) $string, $map, $encoding, (bool) $hex); } } if (!function_exists('mb_convert_case')) { function mb_convert_case(?string $string, ?int $mode, ?string $encoding = null): string { return p\Mbstring::mb_convert_case((string) $string, (int) $mode, $encoding); } } if (!function_exists('mb_internal_encoding')) { function mb_internal_encoding(?string $encoding = null): string|bool { return p\Mbstring::mb_internal_encoding($encoding); } } if (!function_exists('mb_language')) { function mb_language(?string $language = null): string|bool { return p\Mbstring::mb_language($language); } } if (!function_exists('mb_list_encodings')) { function mb_list_encodings(): array { return p\Mbstring::mb_list_encodings(); } } if (!function_exists('mb_encoding_aliases')) { function mb_encoding_aliases(?string $encoding): array { return p\Mbstring::mb_encoding_aliases((string) $encoding); } } if (!function_exists('mb_check_encoding')) { function mb_check_encoding(array|string|null $value = null, ?string $encoding = null): bool { return p\Mbstring::mb_check_encoding($value, $encoding); } } if (!function_exists('mb_detect_encoding')) { function mb_detect_encoding(?string $string, array|string|null $encodings = null, ?bool $strict = false): string|false { return p\Mbstring::mb_detect_encoding((string) $string, $encodings, (bool) $strict); } } if (!function_exists('mb_detect_order')) { function mb_detect_order(array|string|null $encoding = null): array|bool { return p\Mbstring::mb_detect_order($encoding); } } if (!function_exists('mb_parse_str')) { function mb_parse_str(?string $string, &$result = []): bool { parse_str((string) $string, $result); return (bool) $result; } } if (!function_exists('mb_strlen')) { function mb_strlen(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strlen((string) $string, $encoding); } } if (!function_exists('mb_strpos')) { function mb_strpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_strpos((string) $haystack, (string) $needle, (int) $offset, $encoding); } } if (!function_exists('mb_strtolower')) { function mb_strtolower(?string $string, ?string $encoding = null): string { return p\Mbstring::mb_strtolower((string) $string, $encoding); } } if (!function_exists('mb_strtoupper')) { function mb_strtoupper(?string $string, ?string $encoding = null): string { return p\Mbstring::mb_strtoupper((string) $string, $encoding); } } if (!function_exists('mb_substitute_character')) { function mb_substitute_character(string|int|null $substitute_character = null): string|int|bool { return p\Mbstring::mb_substitute_character($substitute_character); } } if (!function_exists('mb_substr')) { function mb_substr(?string $string, ?int $start, ?int $length = null, ?string $encoding = null): string { return p\Mbstring::mb_substr((string) $string, (int) $start, $length, $encoding); } } if (!function_exists('mb_stripos')) { function mb_stripos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_stripos((string) $haystack, (string) $needle, (int) $offset, $encoding); } } if (!function_exists('mb_stristr')) { function mb_stristr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_stristr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } } if (!function_exists('mb_strrchr')) { function mb_strrchr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_strrchr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } } if (!function_exists('mb_strrichr')) { function mb_strrichr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_strrichr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } } if (!function_exists('mb_strripos')) { function mb_strripos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_strripos((string) $haystack, (string) $needle, (int) $offset, $encoding); } } if (!function_exists('mb_strrpos')) { function mb_strrpos(?string $haystack, ?string $needle, ?int $offset = 0, ?string $encoding = null): int|false { return p\Mbstring::mb_strrpos((string) $haystack, (string) $needle, (int) $offset, $encoding); } } if (!function_exists('mb_strstr')) { function mb_strstr(?string $haystack, ?string $needle, ?bool $before_needle = false, ?string $encoding = null): string|false { return p\Mbstring::mb_strstr((string) $haystack, (string) $needle, (bool) $before_needle, $encoding); } } if (!function_exists('mb_get_info')) { function mb_get_info(?string $type = 'all'): array|string|int|false { return p\Mbstring::mb_get_info((string) $type); } } if (!function_exists('mb_http_output')) { function mb_http_output(?string $encoding = null): string|bool { return p\Mbstring::mb_http_output($encoding); } } if (!function_exists('mb_strwidth')) { function mb_strwidth(?string $string, ?string $encoding = null): int { return p\Mbstring::mb_strwidth((string) $string, $encoding); } } if (!function_exists('mb_substr_count')) { function mb_substr_count(?string $haystack, ?string $needle, ?string $encoding = null): int { return p\Mbstring::mb_substr_count((string) $haystack, (string) $needle, $encoding); } } if (!function_exists('mb_output_handler')) { function mb_output_handler(?string $string, ?int $status): string { return p\Mbstring::mb_output_handler((string) $string, (int) $status); } } if (!function_exists('mb_http_input')) { function mb_http_input(?string $type = null): array|string|false { return p\Mbstring::mb_http_input($type); } } if (!function_exists('mb_convert_variables')) { function mb_convert_variables(?string $to_encoding, array|string|null $from_encoding, mixed &$var, mixed &...$vars): string|false { return p\Mbstring::mb_convert_variables((string) $to_encoding, $from_encoding ?? '', $var, ...$vars); } } if (!function_exists('mb_ord')) { function mb_ord(?string $string, ?string $encoding = null): int|false { return p\Mbstring::mb_ord((string) $string, $encoding); } } if (!function_exists('mb_chr')) { function mb_chr(?int $codepoint, ?string $encoding = null): string|false { return p\Mbstring::mb_chr((int) $codepoint, $encoding); } } if (!function_exists('mb_scrub')) { function mb_scrub(?string $string, ?string $encoding = null): string { $encoding ??= mb_internal_encoding(); return mb_convert_encoding((string) $string, $encoding, $encoding); } } if (!function_exists('mb_str_split')) { function mb_str_split(?string $string, ?int $length = 1, ?string $encoding = null): array { return p\Mbstring::mb_str_split((string) $string, (int) $length, $encoding); } } if (!function_exists('mb_str_pad')) { function mb_str_pad(string $string, int $length, string $pad_string = ' ', int $pad_type = STR_PAD_RIGHT, ?string $encoding = null): string { return p\Mbstring::mb_str_pad($string, $length, $pad_string, $pad_type, $encoding); } } if (extension_loaded('mbstring')) { return; } if (!defined('MB_CASE_UPPER')) { define('MB_CASE_UPPER', 0); } if (!defined('MB_CASE_LOWER')) { define('MB_CASE_LOWER', 1); } if (!defined('MB_CASE_TITLE')) { define('MB_CASE_TITLE', 2); } Linzalata: 35 venezolanos destacaron en Tokio. Carlos Behrends y Mariela Ballesteros los primeros por purovinotinto.com – Ultimas Noticias Venezuela

Linzalata: 35 venezolanos destacaron en Tokio. Carlos Behrends y Mariela Ballesteros los primeros por purovinotinto.com

0
Fuente de imagen referencial principal: Twitter / SoyMaratonista.com - @soymaratonista

[ad_1]

«Tuve anoche la oportunidad de ver en vivo por ESPN el maratón de Tokio y es indudable que ha sido uno de los más emocionantes no solo en la historia de los 16 años que tiene el de Tokio sino de los “majors”, pues al entrar en la recta final tres hombres disputaban cabeza a cabeza el primer lugar. Fue el sprint final del etíope Deso Gelmisa el que decidió. Esta tarde leía en un grupo de corredores que una final de 100 metros decidió el ganador de los 42 kilómetros» expresa en la web 42Kilómetros el maratonista y periodista venezolano especializado Ernesto Linzalata.

Así, el portal 42kilómetros comparte los detalles sobre el maratón de Tokio 2023: Gelmisa, de 25 años, cruzó la meta en 2h05.22, seguido con el mismo tiempo por su compatriota de 22 años, Mohamed Esa, y a tres segundos el también etíope Tsegaye Getachew (2h05.25). El keniano Titus Kipruto terminó en cuarto lugar con 2h05.32 y luego Cameron Levins, de Canadá con 2h05.36.

Durante la transmisión televisiva se podía observar, en todo momento, un grupo líder muy compacto. La diferencia de apenas 14 segundos entre el ganador y el quinto reafirma lo competitiva que estuvo esta edición, la primera abierta al público después de la de 2019, pues la de 2020 fue cancelada por la pandemia de COVID-19 y las posteriores solo permitieron atletas profesionales. Cerca de 38.000 corredores participaron el domingo 5 de marzo.

En la categoría femenina, la keniana Rosemary Wanjiru quedó en primera posición con un tiempo de 2h16.28. Le siguieron las etíopes Tsehay Gemechu (2h16.56), Ashete Bekere (2h19.11) y Workenesh Edesa (2h20.13).

Bravo por los venezolanos

Dentro del grupo de participantes hubo 35 venezolanos. Carlos Behrends, con 3.09.19, fue el primer hombre en cruzar la meta, mientras Mariela Ballesteros, con 3.27.57, fue la primera mujer, entre las 11 inscritas por el país.

Los venezolanos finalizaron de la siguiente manera:

Carlos Behrends, 3.09.19; Moisés Sterental, 3.10.52; Omar Zambrano, 3.14.43; Raúl Acosta, 3.17.49; Alejandro Figueroa, 3.19.37; César Lárez, 3.22.58; Mariela Ballesteros, 3.27.57; Argenis Álvarez, 3.29.51; José Pérez Nessi, 3.32.38; Carlos Ochoa, 3.36.25; José Pérez, 3.37.35; Saúl Sarshalom, 3.48.59; Iván Hernández, 3.49.56; Olga Mercedes Azpúrua, 3.53.35; Carlos Enrique Salinas, 3.58.05 y Lenys Linares, 3.59.59.

Les siguieron Ana Rujana, 4.00.57; Carlos Flores, 4.09.32; Gilberto Rujana, 4.12.21; Soraya Siem, 4.15.13; José J. Díaz, 4.17.55; María Rodrigues Pereira, 4.18.24; Ángel Valverde, 4.20.15; Antonio Annese, 4.24.18; Javier Manrique, 4.27.19; I. Mendoza, 4.47.03; Gabriela Rivero, 4.47.56; Carlos Salinas Marcano, 4.52.04; Isabella Salinas Velasco, 4.56.08; Virginia Loreto de Mejía, 5.06.00; José Carrasco, 5.22.11; Carlos Núñez Parodi, 5.27.43; Katiuska Vegas, 5.37.29; Luis Capriles, 6.00.02 y Nelson Lara, 6.10.39.

José Pérez y Javier Manrique celebrando sus logros

Entre los venezolanos vale la pena destacar el caso de Adriana Millilo, quien terminó en 3.26.15, pero que aparece en el listado oficial inscrita por Estados Unidos (y no Venezuela), por lo que no fue incluida en el grupo de 35.

Por cierto Mariela Ballesteros logró su “chapota” Six Star de la Abbott World Marathon Major por haber culminado los seis majors.

Felicitaciones a todos los venezolanos que cruzaron la meta.

Resultados oficiales en www.marathon.tokyo.com

Tomado y con información de 42Kilómetros

Ernesto Linzalata / Periodista y maratonista

Fuente de imagen referencial principal: Twitter / SoyMaratonista.com – @soymaratonista



[ad_2]

Source link

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *