ADVERTISEMENT

Olympic champ Hidilyn Diaz named PSA Athlete of the Year

Published Feb 6, 2022 02:21 pm

Hidilyn Diaz (AFP)

For giving joy to the country and providing its proudest sports moment in history, weightlifter Hidilyn Diaz will be honored as the 2021 Athlete of the Year during the San Miguel Corporation-Philippine Sportswriters Association (SMC-PSA) Annual Awards Night on March 14 at the grand ballroom of the Diamond Hotel.

Diaz, bless her heart, ended the Philippine’s long search for Olympic glory that spawned for almost a century by bagging a historic breakthrough gold medal in the women’s 55 kg event of the Tokyo Olympiad.

The exploit eventually snowballed in the Filipinos’ inspired Olympic bid in the midst of the pandemic, as boxing delivered three more medals behind silver winners Nesthy Petecio and Carlo Paalam and bronze medalist Eumir Marcial that capped the country’s most productive campaign ever in the Summer Games.

The 30-year-old Diaz accordingly, leads the compact list of top achievers from last year who will be recognized during the affair that counts on the Philippine Sports Commission (PSC), Philippine Olympic Committee (POC), and Cignal TV as major backers.

“Hidilyn Diaz winning the country’s first ever Olympic gold medal was definitely the highpoint of what had been a truly memorable year for Philippine sports. The PSA was unanimous in its choice of Hidilyn as our Athlete of the Year for 2021,” said PSA president Rey C. Lachica, sports editor of Tempo.

The event annually mounted by the country’s oldest media organization, is presented by MILO, 1Pacman, Philippine Basketball Association (PBA), Rain or Shine, ICTSI, Chooks To Go, Smart, Philippine Racing Commission (Philracom), and the MVP Sports Foundation (MVPSF).

The feat was just among the many honors Diaz, the pride of Zamboanga City, has brought to the country, but this one certainly topped them all.

Diaz did it in record style. She established a new Olympic mark with a lift of 127 kg in the clean and jerk, and another one behind a total lift of 224 kilogram in beating Chinese rival and record holder Liao Qiuyun in a dramatic finale for the gold.

The lady weightlifter also went down in history as only the second Filipino athlete to win multiple Olympic medals after the late swimmer Teofilo Yldefonso (two bronze medals).

It will be the third Athlete of the Year honor to be bestowed by the country’s oldest media organization to Diaz in the last six years.

She first won the award in 2016 when she bagged a silver in the Rio De Janeiro Olympics, ending the country’s 20-year medal drought in the quadrennial showpiece.

Two years later, she shared the same honor with the golfing trio of Yuka Saso, Bianca Pagdanganan, and Lois Kaye Go, along with skateboarder Margilyn Didal when they accounted for the four gold medals the Philippines won in the 2018 Asian Games in Indonesia.

Related Tags

Hidilyn Diaz Philippine Sportswriters Association
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.