commit 9d75757fec13593910076888da710372d7e6de0f Author: Lennart J. Kurzweg (Nx2) Date: Fri Aug 16 19:28:51 2024 +0200 init diff --git a/app/.envrc b/app/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/app/.envrc @@ -0,0 +1 @@ +use nix diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..069d1f7 --- /dev/null +++ b/app/.gitignore @@ -0,0 +1,5 @@ +.venv +*/__pycache__/* +.direnv +.vscode + diff --git a/app/app.py b/app/app.py new file mode 100644 index 0000000..c1aadfb --- /dev/null +++ b/app/app.py @@ -0,0 +1,53 @@ +from flask import Flask, render_template, jsonify, request +import random +import json +from res.name_cc import name_cc + + +def name_to_image_url(country_name: str) -> str: + try: + cc = name_cc[country_name] + except: + cc = None + + if cc != None: + return f"https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/{cc}.png" + else: return "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EOR.png" + + +app = Flask(__name__) + +# Load data from JSON file +with open('data/data.json') as f: + data = json.load(f) + +# Route to display the game +@app.route('/') +def index(): + return render_template('index.html') + +# API to get a random discipline and participants +@app.route('/get_random_discipline', methods=['GET']) +def get_random_discipline(): + discipline = random.choice(list(data.keys())) + category = random.choice(list(data[discipline].keys())) + participants = data[discipline][category]['participants'] + + # Prepare the data to send to the frontend + response = { + "participants": [ + { + "country_name": participant["country"] if participant["country"] != "EOR" else "Équipe olympique des réfugiés", + "country_img_url": name_to_image_url(participant["country"]), + "athlete_name": participant.get("athlete", {}).get("name", None), + "athlete_img_url": participant.get("athlete", {}).get("image", None), + "athlete_meta_url": participant.get("athlete", {}).get("meta_url", None) + } for participant in participants + ], + "answer": f"{discipline.capitalize()} {' '.join(category.split('-'))}" + } + + return jsonify(response) + +if __name__ == '__main__': + app.run(host='0.0.0.0', port=5000, debug=True) diff --git a/app/data/data.json b/app/data/data.json new file mode 100644 index 0000000..7becaae --- /dev/null +++ b/app/data/data.json @@ -0,0 +1,22545 @@ +{ + "3x3-basketball": { + "men": { + "participants": [ + { + "country": "Latvia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Mongolia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png" + } + ], + "type": "team" + } + }, + "archery": { + "men-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dmicl5uutlj67dqzms2b", + "meta_url": "https://olympics.com/en/athletes/mete-gazoz", + "name": "Mete GAZOZ" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wqskg2yd9ivshl7fhneu", + "meta_url": "https://olympics.com/en/athletes/mauro-nespoli", + "name": "Mauro NESPOLI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/uupcbfsk6iwm3logerhl", + "meta_url": "https://olympics.com/en/athletes/takaharu-furukawa", + "name": "Takaharu FURUKAWA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chih-chun-tang", + "name": "Chih-Chun TANG" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jyyjbcgrrwv8of7pch5n", + "meta_url": "https://olympics.com/en/athletes/woojin-kim", + "name": "Woojin KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696001279/primary/al2ml66gkbd5z4qmv9j7", + "meta_url": "https://olympics.com/en/athletes/florian-unruh", + "name": "Florian UNRUH" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ryz9rzqngwr41s37gnid", + "meta_url": "https://olympics.com/en/athletes/brady-ellison", + "name": "Brady ELLISON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jialun-li", + "name": "Jialun LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/ilfat-abdullin", + "name": "Ilfat ABDULLIN" + }, + "country": "Kazakhstan" + } + ], + "type": "single" + }, + "men-s-team": { + "participants": [ + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Chinese Taipei", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + }, + "mixed-team": { + "participants": [ + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Türkiye", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + }, + { + "country": "Indonesia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Bangladesh", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BAN.png" + } + ], + "type": "team" + }, + "women-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/q8lmzclsqqynyqtku3vl", + "meta_url": "https://olympics.com/en/athletes/san-an", + "name": "San AN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/g5caifwbsdg2umdntm1v", + "meta_url": "https://olympics.com/en/athletes/elena-osipova", + "name": "Elena OSIPOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ctyrifehithawgemn73z", + "meta_url": "https://olympics.com/en/athletes/lucilla-boari", + "name": "Lucilla BOARI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/mackenzie-brown", + "name": "Mackenzie BROWN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mhchoozwe2tlvkds6nuk", + "meta_url": "https://olympics.com/en/athletes/alejandra-valencia", + "name": "Alejandra VALENCIA" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jiaxin-wu", + "name": "Jiaxin WU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/chae-young-kang", + "name": "Chae Young KANG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/duzvb4nsfjye1wxw1jij", + "meta_url": "https://olympics.com/en/athletes/deepika-kumari", + "name": "Deepika KUMARI" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/yasemin-anagoz", + "name": "Yasemin ANAGOZ" + }, + "country": "Türkiye" + } + ], + "type": "single" + }, + "women-s-team": { + "participants": [ + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + } + }, + "artistic-gymnastics": { + "men-s-all-around": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/h1y80xxxhdkyhzoqkjdh", + "meta_url": "https://olympics.com/en/athletes/daiki-hashimoto", + "name": "Daiki HASHIMOTO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ix3qylz4l5djvt0l9dp4", + "meta_url": "https://olympics.com/en/athletes/ruoteng-xiao", + "name": "Ruoteng XIAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnyucbyniaesrvxdqwb", + "meta_url": "https://olympics.com/en/athletes/nikita-nagornyy", + "name": "Nikita NAGORNYY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wei-sun-x7266", + "name": "Wei SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1616583970/primary/aedmimy6asgraeqr9kgj", + "meta_url": "https://olympics.com/en/athletes/kitazono-takeru", + "name": "Takeru Kitazono" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/d4qp4wtocuepd5ugfr2x", + "meta_url": "https://olympics.com/en/athletes/artur-dalaloyan", + "name": "Artur DALALOYAN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chia-hung-tang", + "name": "Chia-Hung TANG" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/james-hall", + "name": "James HALL" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681050594/primary/u9wupk042mzql9f74ipy", + "meta_url": "https://olympics.com/en/athletes/joe-fraser", + "name": "Joe FRASER" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "men-s-floor-exercise": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kqxvqgdes7kvttukqgda", + "meta_url": "https://olympics.com/en/athletes/artem-dolgopyat", + "name": "Artem DOLGOPYAT" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ijlc5aazgs4quuwxekyt", + "meta_url": "https://olympics.com/en/athletes/rayderley-miguel-zapata", + "name": "Rayderley Miguel ZAPATA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ix3qylz4l5djvt0l9dp4", + "meta_url": "https://olympics.com/en/athletes/ruoteng-xiao", + "name": "Ruoteng XIAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/sunghyun-ryu", + "name": "Sunghyun RYU" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/milad-karimi", + "name": "Milad KARIMI" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/yul-moldauer", + "name": "Yul MOLDAUER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnyucbyniaesrvxdqwb", + "meta_url": "https://olympics.com/en/athletes/nikita-nagornyy", + "name": "Nikita NAGORNYY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695907242/primary/j0o7zfontuytk8yqqg8t", + "meta_url": "https://olympics.com/en/athletes/hansol-kim", + "name": "Hansol KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/shane-wiskus", + "name": "Shane WISKUS" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-horizontal-bar": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/h1y80xxxhdkyhzoqkjdh", + "meta_url": "https://olympics.com/en/athletes/daiki-hashimoto", + "name": "Daiki HASHIMOTO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qfmcw9mlmkylaynnud3k", + "meta_url": "https://olympics.com/en/athletes/tin-srbic", + "name": "Tin SRBIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnyucbyniaesrvxdqwb", + "meta_url": "https://olympics.com/en/athletes/nikita-nagornyy", + "name": "Nikita NAGORNYY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ibqwz3xonr0hhcampcal", + "meta_url": "https://olympics.com/en/athletes/brody-malone", + "name": "Brody MALONE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/tyson-bull", + "name": "Tyson BULL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1616583970/primary/aedmimy6asgraeqr9kgj", + "meta_url": "https://olympics.com/en/athletes/kitazono-takeru", + "name": "Takeru Kitazono" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/bart-deurloo", + "name": "Bart DEURLOO" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/milad-karimi", + "name": "Milad KARIMI" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681051925/primary/glaj0rf9uxcf6gg78wbg", + "meta_url": "https://olympics.com/en/athletes/marios-georgiou", + "name": "Marios GEORGIOU" + }, + "country": "Cyprus" + } + ], + "type": "single" + }, + "men-s-parallel-bars": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t5nugscphnw03hsglgq9", + "meta_url": "https://olympics.com/en/athletes/jingyuan-zou", + "name": "Jingyuan ZOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624018320/primary/mhsn0g9s6qkohwbyahrs", + "meta_url": "https://olympics.com/en/athletes/lukas-dauser", + "name": "Lukas DAUSER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wyzxsl1qcd66yufs6cjd", + "meta_url": "https://olympics.com/en/athletes/ferhat-arican", + "name": "Ferhat ARICAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vwr2nomrekp5q0kwmbec", + "meta_url": "https://olympics.com/en/athletes/hao-you", + "name": "Hao YOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t4mhvpe3xyw5yrozhxjn", + "meta_url": "https://olympics.com/en/athletes/david-belyavskiy", + "name": "David BELYAVSKIY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623839635/primary/v3xlggfoed3hibfaucro", + "meta_url": "https://olympics.com/en/athletes/sam-anthony-mikulak", + "name": "Sam Mikulak" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/petro-pakhnyuk", + "name": "Petro PAKHNYUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681050594/primary/u9wupk042mzql9f74ipy", + "meta_url": "https://olympics.com/en/athletes/joe-fraser", + "name": "Joe FRASER" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ix3qylz4l5djvt0l9dp4", + "meta_url": "https://olympics.com/en/athletes/ruoteng-xiao", + "name": "Ruoteng XIAO" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "men-s-pommel-horse": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/miwa3j2scy7ccq0src7z", + "meta_url": "https://olympics.com/en/athletes/max-whitlock", + "name": "Max WHITLOCK" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cgouojmep3jwheqbbp2g", + "meta_url": "https://olympics.com/en/athletes/chih-kai-lee", + "name": "Chih Kai LEE" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rawhqusdqtyqrh4v0d0i", + "meta_url": "https://olympics.com/en/athletes/kazuma-kaya", + "name": "Kazuma KAYA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t4mhvpe3xyw5yrozhxjn", + "meta_url": "https://olympics.com/en/athletes/david-belyavskiy", + "name": "David BELYAVSKIY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/kohei-kameyama", + "name": "Kohei KAMEYAMA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/alec-yoder", + "name": "Alec YODER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1677664059/primary/huvgb3rwmu71ldr1ocwf", + "meta_url": "https://olympics.com/en/athletes/rhys-mc-clenaghan", + "name": "Rhys MC CLENAGHAN" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wei-sun-x7266", + "name": "Wei SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/h1y80xxxhdkyhzoqkjdh", + "meta_url": "https://olympics.com/en/athletes/daiki-hashimoto", + "name": "Daiki HASHIMOTO" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "men-s-rings": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/k5soi8sibrno6ovengjq", + "meta_url": "https://olympics.com/en/athletes/yang-liu", + "name": "Yang LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vwr2nomrekp5q0kwmbec", + "meta_url": "https://olympics.com/en/athletes/hao-you", + "name": "Hao YOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cmgkolispysjuvurz9iq", + "meta_url": "https://olympics.com/en/athletes/eleftherios-petrounias", + "name": "Eleftherios PETROUNIAS" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ez4tuw1ee57sx1eldghs", + "meta_url": "https://olympics.com/en/athletes/samir-ait-said", + "name": "Samir AIT SAID" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/ibrahim-colak", + "name": "Ibrahim COLAK" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnjemrs5hktkxmlul2y", + "meta_url": "https://olympics.com/en/athletes/denis-ablyazin", + "name": "Denis ABLYAZIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681051532/primary/n6g7lwy7al59vr8whyo3", + "meta_url": "https://olympics.com/en/athletes/adem-asil", + "name": "Adem ASIL" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/x0id3zooxksk1839fpyd", + "meta_url": "https://olympics.com/en/athletes/arthur-zanetti", + "name": "Arthur ZANETTI" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/marco-lodadio", + "name": "Marco LODADIO" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-team": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + } + ], + "type": "team" + }, + "men-s-vault": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/j3tz5etoz1dyzg8d1kee", + "meta_url": "https://olympics.com/en/athletes/jeahwan-shin", + "name": "Jeahwan SHIN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnjemrs5hktkxmlul2y", + "meta_url": "https://olympics.com/en/athletes/denis-ablyazin", + "name": "Denis ABLYAZIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zp9oay3wb4q8qv2zmqlg", + "meta_url": "https://olympics.com/en/athletes/artur-davtyan", + "name": "Artur DAVTYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1655913750/primary/y9zqhstrzijpteorefyi", + "meta_url": "https://olympics.com/en/athletes/carlos-edriel-yulo", + "name": "Carlos Edriel YULO" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnyucbyniaesrvxdqwb", + "meta_url": "https://olympics.com/en/athletes/nikita-nagornyy", + "name": "Nikita NAGORNYY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681051532/primary/n6g7lwy7al59vr8whyo3", + "meta_url": "https://olympics.com/en/athletes/adem-asil", + "name": "Adem ASIL" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681050855/primary/tspvkrn2vtwbknzhrfnx", + "meta_url": "https://olympics.com/en/athletes/ahmet-onder", + "name": "Ahmet ONDER" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/caio-souza", + "name": "Caio SOUZA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/hakseon-yang", + "name": "Hakseon YANG" + }, + "country": "Korea" + } + ], + "type": "single" + }, + "women-s-all-around": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1671609594/primary/eqeervowz90ywnikayw0", + "meta_url": "https://olympics.com/en/athletes/sunisa-lee", + "name": "Sunisa LEE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622474472/primary/fjbtpoo29bijx1vx3ewe", + "meta_url": "https://olympics.com/en/athletes/rebeca-andrade", + "name": "Rebeca ANDRADE" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/suqulhh6vbxnpjen5v1x", + "meta_url": "https://olympics.com/en/athletes/angelina-melnikova", + "name": "Angelina MELNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/vladislava-urazova", + "name": "Vladislava URAZOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626350319/primary/cln8tchdae1bmrav2ggz", + "meta_url": "https://olympics.com/en/athletes/mai-murakami", + "name": "Mai MURAKAMI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zmntgoek9pxruxu4plu4", + "meta_url": "https://olympics.com/en/athletes/nina-derwael", + "name": "Nina DERWAEL" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/b52vkkracznxkm5ucbhs", + "meta_url": "https://olympics.com/en/athletes/xijing-tang", + "name": "Xijing TANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fpc9yke117k3ryl3y69h", + "meta_url": "https://olympics.com/en/athletes/jade-carey", + "name": "Jade CAREY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624018101/primary/yje9xomdmye7afqzvrbb", + "meta_url": "https://olympics.com/en/athletes/elisabeth-seitz", + "name": "Elisabeth SEITZ" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-balance-beam": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yyur2gvcbjqutnlhpfy2", + "meta_url": "https://olympics.com/en/athletes/chenchen-guan", + "name": "Chenchen GUAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/b52vkkracznxkm5ucbhs", + "meta_url": "https://olympics.com/en/athletes/xijing-tang", + "name": "Xijing TANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627219484/primary/cts0yqdhtfm9yowtrv1j", + "meta_url": "https://olympics.com/en/athletes/simone-biles", + "name": "Simone BILES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ej0vhwqcqj1jqergmcnb", + "meta_url": "https://olympics.com/en/athletes/elsabeth-black", + "name": "Elsabeth BLACK" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1671609594/primary/eqeervowz90ywnikayw0", + "meta_url": "https://olympics.com/en/athletes/sunisa-lee", + "name": "Sunisa LEE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/urara-ashikawa", + "name": "Urara ASHIKAWA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/flavia-saraiva", + "name": "Flavia SARAIVA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/vladislava-urazova", + "name": "Vladislava URAZOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/larisa-andreea-iordache", + "name": "Larisa Andreea IORDACHE" + }, + "country": "Romania" + } + ], + "type": "single" + }, + "women-s-floor-exercise": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fpc9yke117k3ryl3y69h", + "meta_url": "https://olympics.com/en/athletes/jade-carey", + "name": "Jade CAREY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bxgkiocnmklojlnoibkf", + "meta_url": "https://olympics.com/en/athletes/vanessa-ferrari", + "name": "Vanessa FERRARI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626350319/primary/cln8tchdae1bmrav2ggz", + "meta_url": "https://olympics.com/en/athletes/mai-murakami", + "name": "Mai MURAKAMI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/suqulhh6vbxnpjen5v1x", + "meta_url": "https://olympics.com/en/athletes/angelina-melnikova", + "name": "Angelina MELNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622474472/primary/fjbtpoo29bijx1vx3ewe", + "meta_url": "https://olympics.com/en/athletes/rebeca-andrade", + "name": "Rebeca ANDRADE" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1672412877/primary/v21dz8qugr5mo3y4idip", + "meta_url": "https://olympics.com/en/athletes/jessica-gadirova", + "name": "Jessica GADIROVA" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704275215/primary/ypv2tpoo7e2a5dbdtbud", + "meta_url": "https://olympics.com/en/athletes/jennifer-gadirova", + "name": "Jennifer GADIROVA" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nkk8qmzydzzt2milmwcw", + "meta_url": "https://olympics.com/en/athletes/viktoria-listunova", + "name": "Viktoria LISTUNOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627219484/primary/cts0yqdhtfm9yowtrv1j", + "meta_url": "https://olympics.com/en/athletes/simone-biles", + "name": "Simone BILES" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-team": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + } + ], + "type": "team" + }, + "women-s-uneven-bars": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zmntgoek9pxruxu4plu4", + "meta_url": "https://olympics.com/en/athletes/nina-derwael", + "name": "Nina DERWAEL" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/we8e2qwl43xdealoeb5n", + "meta_url": "https://olympics.com/en/athletes/anastasiia-iliankova", + "name": "Anastasiia ILIANKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1671609594/primary/eqeervowz90ywnikayw0", + "meta_url": "https://olympics.com/en/athletes/sunisa-lee", + "name": "Sunisa LEE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yufei-lu", + "name": "Yufei LU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624018101/primary/yje9xomdmye7afqzvrbb", + "meta_url": "https://olympics.com/en/athletes/elisabeth-seitz", + "name": "Elisabeth SEITZ" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qv4kbzimaz8ghq2c82xp", + "meta_url": "https://olympics.com/en/athletes/melanie-de-jesus-dos-santos", + "name": "Melanie DE JESUS DOS SANTOS" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yilin-fan", + "name": "Yilin FAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/suqulhh6vbxnpjen5v1x", + "meta_url": "https://olympics.com/en/athletes/angelina-melnikova", + "name": "Angelina MELNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/vladislava-urazova", + "name": "Vladislava URAZOVA" + }, + "country": "ROC" + } + ], + "type": "single" + }, + "women-s-vault": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622474472/primary/fjbtpoo29bijx1vx3ewe", + "meta_url": "https://olympics.com/en/athletes/rebeca-andrade", + "name": "Rebeca ANDRADE" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622654233/primary/ikgd1j1wwcz2x66vlmte", + "meta_url": "https://olympics.com/en/athletes/mykayla-skinner", + "name": "Mykayla SKINNER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xnbepb9nstr6hiocdonz", + "meta_url": "https://olympics.com/en/athletes/seojeong-yeo", + "name": "Seojeong YEO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/aimsulzs34mkdjqttulb", + "meta_url": "https://olympics.com/en/athletes/alexa-moreno", + "name": "Alexa MORENO" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/suqulhh6vbxnpjen5v1x", + "meta_url": "https://olympics.com/en/athletes/angelina-melnikova", + "name": "Angelina MELNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/liliia-akhaimova", + "name": "Liliia AKHAIMOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/shallon-olsen", + "name": "Shallon OLSEN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fpc9yke117k3ryl3y69h", + "meta_url": "https://olympics.com/en/athletes/jade-carey", + "name": "Jade CAREY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627219484/primary/cts0yqdhtfm9yowtrv1j", + "meta_url": "https://olympics.com/en/athletes/simone-biles", + "name": "Simone BILES" + }, + "country": "United States" + } + ], + "type": "single" + } + }, + "artistic-swimming": { + "duet": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Austria", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + } + ], + "type": "team" + }, + "team": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + } + }, + "athletics": { + "4-x-400m-relay-mixed": { + "participants": [ + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Dominican Rep", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Jamaica", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png" + }, + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + } + ], + "type": "team" + }, + "men-s-10000m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ctscxdjq1uhxduk8mr3d", + "meta_url": "https://olympics.com/en/athletes/selemon-barega", + "name": "Selemon BAREGA" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623249161/primary/qgvdhzqza9vc5pwcwsyr", + "meta_url": "https://olympics.com/en/athletes/joshua-kiprui-cheptegei", + "name": "Joshua Kiprui CHEPTEGEI" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/briumfppawd1eeyutre5", + "meta_url": "https://olympics.com/en/athletes/jacob-kiplimo", + "name": "Jacob KIPLIMO" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694942991/primary/lq1hbu8v93gjrbsnlvut", + "meta_url": "https://olympics.com/en/athletes/berihu-aregawi", + "name": "Berihu AREGAWI" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/grant-fisher", + "name": "Grant FISHER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iv5ygphc3fqzoq0tounj", + "meta_url": "https://olympics.com/en/athletes/mohammed-ahmed", + "name": "Mohammed AHMED" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/rodgers-kwemoi", + "name": "Rodgers KWEMOI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/yomif-kejelcha", + "name": "Yomif KEJELCHA" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/rhonex-kipruto", + "name": "Rhonex KIPRUTO" + }, + "country": "Kenya" + } + ], + "type": "single" + }, + "men-s-100m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zrjbzrhlmfp2ijaldobu", + "meta_url": "https://olympics.com/en/athletes/lamont-marcell-jacobs", + "name": "Lamont Marcell JACOBS" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nzjuej6z12oq9yjsj02q", + "meta_url": "https://olympics.com/en/athletes/fred-kerley", + "name": "Fred KERLEY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ybj5xczdvb9ytm29qsuf", + "meta_url": "https://olympics.com/en/athletes/andre-de-grasse", + "name": "Andre DE GRASSE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xv8nb3tmk9ufnitbulpl", + "meta_url": "https://olympics.com/en/athletes/akani-simbine", + "name": "Akani SIMBINE" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/ronnie-baker", + "name": "Ronnie BAKER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ilewzsbwoqzyobb5yeqc", + "meta_url": "https://olympics.com/en/athletes/bingtian-su", + "name": "Bingtian SU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NGR.png", + "meta_url": "https://olympics.com/en/athletes/enoch-adegoke", + "name": "Enoch ADEGOKE" + }, + "country": "Nigeria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941987/primary/hllbqx1nut3ecoq3r3sm", + "meta_url": "https://olympics.com/en/athletes/zharnel-hughes", + "name": "Zharnel HUGHES" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694942666/primary/k8oum5ptzkxedn1l1l79", + "meta_url": "https://olympics.com/en/athletes/ferdinand-omurwa", + "name": "Ferdinand OMANYALA OMURWA" + }, + "country": "Kenya" + } + ], + "type": "single" + }, + "men-s-110m-hurdles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ujchvtxgdaxri6lhcav2", + "meta_url": "https://olympics.com/en/athletes/hansle-parchment", + "name": "Hansle PARCHMENT" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wysqfiupajmp9txttg2a", + "meta_url": "https://olympics.com/en/athletes/grant-holloway", + "name": "Grant HOLLOWAY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vzscgpehigphit89zsq5", + "meta_url": "https://olympics.com/en/athletes/ronald-levy", + "name": "Ronald LEVY" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/n5optqibiuzcysjtyqob", + "meta_url": "https://olympics.com/en/athletes/devon-allen", + "name": "Devon ALLEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/pascal-martinot-lagarde", + "name": "Pascal MARTINOT-LAGARDE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/asier-martinez", + "name": "Asier MARTINEZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/andrew-pozzi", + "name": "Andrew POZZI" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/aurel-manga", + "name": "Aurel MANGA" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/daniel-roberts", + "name": "Daniel ROBERTS" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-1500m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zydjthkswawnszt7rohh", + "meta_url": "https://olympics.com/en/athletes/jakob-ingebrigtsen", + "name": "Jakob INGEBRIGTSEN" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/osjmkrmuqi08ucqd8nw8", + "meta_url": "https://olympics.com/en/athletes/timothy-cheruiyot", + "name": "Timothy CHERUIYOT" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bqr34vtdk0mkklybqcl4", + "meta_url": "https://olympics.com/en/athletes/josh-kerr", + "name": "Josh KERR" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/abel-kipsang", + "name": "Abel KIPSANG" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/adel-mechaal", + "name": "Adel MECHAAL" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zbivwqtdmd1ghlrvs2be", + "meta_url": "https://olympics.com/en/athletes/cole-hocker", + "name": "Cole HOCKER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/stewart-mcsweyn", + "name": "Stewart MCSWEYN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/michal-rozmys", + "name": "Michal ROZMYS" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jake-heyward", + "name": "Jake HEYWARD" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "men-s-200m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ybj5xczdvb9ytm29qsuf", + "meta_url": "https://olympics.com/en/athletes/andre-de-grasse", + "name": "Andre DE GRASSE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dqclpxk5srjzbqn5lscj", + "meta_url": "https://olympics.com/en/athletes/kenneth-bednarek", + "name": "Kenneth BEDNAREK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hd31f5phuokbrypg6inp", + "meta_url": "https://olympics.com/en/athletes/noah-lyles", + "name": "Noah LYLES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xby5ri03ab7e3ecxlqxz", + "meta_url": "https://olympics.com/en/athletes/erriyon-knighton", + "name": "Erriyon KNIGHTON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LBR.png", + "meta_url": "https://olympics.com/en/athletes/joseph-fahnbulleh", + "name": "Joseph FAHNBULLEH" + }, + "country": "Liberia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/aaron-brown", + "name": "Aaron BROWN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/rasheed-dwyer", + "name": "Rasheed DWYER" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png", + "meta_url": "https://olympics.com/en/athletes/jereem-richards", + "name": "Jereem RICHARDS" + }, + "country": "Tri. & Tobago" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NGR.png", + "meta_url": "https://olympics.com/en/athletes/divine-oduduru", + "name": "Divine ODUDURU" + }, + "country": "Nigeria" + } + ], + "type": "single" + }, + "men-s-20km-race-walk": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c8n5uzosdidjgjkgyoi2", + "meta_url": "https://olympics.com/en/athletes/massimo-stano", + "name": "Massimo STANO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vge9hog0zadz82w1s8su", + "meta_url": "https://olympics.com/en/athletes/koki-ikeda", + "name": "Koki IKEDA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/prrpwebk6fey1jbs1fiv", + "meta_url": "https://olympics.com/en/athletes/toshikazu-yamanishi", + "name": "Toshikazu YAMANISHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/alvaro-martin", + "name": "Alvaro MARTIN" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/christopher-linke", + "name": "Christopher LINKE" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/diego-garcia-x7802", + "name": "Diego GARCIA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/kaihua-wang", + "name": "Kaihua WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jun-zhang-x4466", + "name": "Jun ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/perseus-karlstrom", + "name": "Perseus KARLSTROM" + }, + "country": "Sweden" + } + ], + "type": "single" + }, + "men-s-3000m-steeplechase": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qgdjjtfpxjet6gucwxs6", + "meta_url": "https://olympics.com/en/athletes/soufiane-elbakkali", + "name": "Soufiane ELBAKKALI" + }, + "country": "Morocco" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/f6zkjo5dyamcclhsutki", + "meta_url": "https://olympics.com/en/athletes/lamecha-girma", + "name": "Lamecha GIRMA" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hyrycurzotqdjjmk1c8g", + "meta_url": "https://olympics.com/en/athletes/benjamin-kigen", + "name": "Benjamin KIGEN" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/getnet-wale", + "name": "Getnet WALE" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ERI.png", + "meta_url": "https://olympics.com/en/athletes/yemane-haileselassie", + "name": "Yemane HAILESELASSIE" + }, + "country": "Eritrea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/matthew-hughes", + "name": "Matthew HUGHES" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/w0r3nbn5myaqsec4z7cf", + "meta_url": "https://olympics.com/en/athletes/ryuji-miura", + "name": "Ryuji MIURA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/topi-raitanen", + "name": "Topi RAITANEN" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/ala-zoghlami", + "name": "Ala ZOGHLAMI" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-4-x-100m-relay": { + "participants": [ + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Jamaica", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Ghana", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GHA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "men-s-4-x-400m-relay": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Botswana", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BOT.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Jamaica", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Tri. & Tobago", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + } + ], + "type": "team" + }, + "men-s-400m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/d1nsqqhmlbdzclkqdnga", + "meta_url": "https://olympics.com/en/athletes/steven-gardiner", + "name": "Steven GARDINER" + }, + "country": "Bahamas" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/akakeyw6r97xu9qwkxix", + "meta_url": "https://olympics.com/en/athletes/anthony-zambrano", + "name": "Anthony ZAMBRANO" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dfluyntdo5twiopuonvb", + "meta_url": "https://olympics.com/en/athletes/kirani-james", + "name": "Kirani JAMES" + }, + "country": "Grenada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michael-cherry", + "name": "Michael CHERRY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michael-norman", + "name": "Michael NORMAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/christopher-taylor", + "name": "Christopher TAYLOR" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BOT.png", + "meta_url": "https://olympics.com/en/athletes/isaac-makwala", + "name": "Isaac MAKWALA" + }, + "country": "Botswana" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/liemarvin-bonevacia", + "name": "Liemarvin BONEVACIA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png", + "meta_url": "https://olympics.com/en/athletes/deon-lendore", + "name": "Deon LENDORE" + }, + "country": "Tri. & Tobago" + } + ], + "type": "single" + }, + "men-s-400m-hurdles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nfevlqh0wwusuplglo2j", + "meta_url": "https://olympics.com/en/athletes/karsten-warholm", + "name": "Karsten WARHOLM" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kvdrn6bbl9qqwrybl19i", + "meta_url": "https://olympics.com/en/athletes/rai-benjamin", + "name": "Rai BENJAMIN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sn80o8axxuajeed0qsbr", + "meta_url": "https://olympics.com/en/athletes/alison-dos-santos", + "name": "Alison DOS SANTOS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IVB.png", + "meta_url": "https://olympics.com/en/athletes/kyron-mcmaster", + "name": "Kyron MCMASTER" + }, + "country": "Virgin Isl, Brit" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/skjx12oribe3bpp0vski", + "meta_url": "https://olympics.com/en/athletes/abderrahaman-samba", + "name": "Abderrahaman SAMBA" + }, + "country": "Qatar" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/n9p4al6tom03dahlaeid", + "meta_url": "https://olympics.com/en/athletes/yasmani-copello", + "name": "Yasmani COPELLO" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png", + "meta_url": "https://olympics.com/en/athletes/rasmus-magi", + "name": "Rasmus MAGI" + }, + "country": "Estonia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alessandro-sibilio", + "name": "Alessandro SIBILIO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png", + "meta_url": "https://olympics.com/en/athletes/thomas-barr", + "name": "Thomas BARR" + }, + "country": "Ireland" + } + ], + "type": "single" + }, + "men-s-5000m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623249161/primary/qgvdhzqza9vc5pwcwsyr", + "meta_url": "https://olympics.com/en/athletes/joshua-kiprui-cheptegei", + "name": "Joshua Kiprui CHEPTEGEI" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iv5ygphc3fqzoq0tounj", + "meta_url": "https://olympics.com/en/athletes/mohammed-ahmed", + "name": "Mohammed AHMED" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624889314/primary/ssrhvpctqbeczv4tdmdm", + "meta_url": "https://olympics.com/en/athletes/paul-kipkemoi-chelimo", + "name": "Paul Kipkemoi CHELIMO" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/nicholas-kipkorir-kimeli", + "name": "Nicholas Kipkorir KIMELI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/briumfppawd1eeyutre5", + "meta_url": "https://olympics.com/en/athletes/jacob-kiplimo", + "name": "Jacob KIPLIMO" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRN.png", + "meta_url": "https://olympics.com/en/athletes/birhanu-balew", + "name": "Birhanu BALEW" + }, + "country": "Bahrain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/justyn-knight", + "name": "Justyn KNIGHT" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/mohamed-katir", + "name": "Mohamed KATIR" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/grant-fisher", + "name": "Grant FISHER" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-50km-race-walk": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ezwkzakegvjxh0ydfsmb", + "meta_url": "https://olympics.com/en/athletes/dawid-tomala", + "name": "Dawid TOMALA" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qyxjtxhftbu2falwifxy", + "meta_url": "https://olympics.com/en/athletes/jonathan-hilbert", + "name": "Jonathan HILBERT" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/uro6l6s4uu6auc4keygx", + "meta_url": "https://olympics.com/en/athletes/evan-dunfee", + "name": "Evan DUNFEE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/marc-tur", + "name": "Marc TUR" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/joao-vieira", + "name": "Joao VIEIRA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/masatora-kawano", + "name": "Masatora KAWANO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/tongda-bian", + "name": "Tongda BIAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/rhydian-cowley", + "name": "Rhydian COWLEY" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/veli-matti-partanen", + "name": "Veli-Matti PARTANEN" + }, + "country": "Finland" + } + ], + "type": "single" + }, + "men-s-800m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ibhrsg5vhovyoejbgdkt", + "meta_url": "https://olympics.com/en/athletes/emmanuel-kipkurui-korir", + "name": "Emmanuel Kipkurui KORIR" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t2wqs3vkrrfosqkflq9g", + "meta_url": "https://olympics.com/en/athletes/ferguson-cheruiyot-rotich", + "name": "Ferguson Cheruiyot ROTICH" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mxiclyz5d5dbioeovdip", + "meta_url": "https://olympics.com/en/athletes/patryk-dobek", + "name": "Patryk DOBEK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/peter-bol", + "name": "Peter BOL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/adrian-ben", + "name": "Adrian BEN" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BIH.png", + "meta_url": "https://olympics.com/en/athletes/amel-tuka", + "name": "Amel TUKA" + }, + "country": "Bosnia & Herzegovina" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/gabriel-tual", + "name": "Gabriel TUAL" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tmuoorabk9urf0ysqrl2", + "meta_url": "https://olympics.com/en/athletes/nijel-amos", + "name": "Nijel AMOS" + }, + "country": "Botswana" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/clayton-murphy", + "name": "Clayton MURPHY" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-decathlon": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wnrl8b1uvvoggujivmzc", + "meta_url": "https://olympics.com/en/athletes/damian-warner", + "name": "Damian WARNER" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bhvl0vtmqorbgeezrfmo", + "meta_url": "https://olympics.com/en/athletes/kevin-mayer", + "name": "Kevin MAYER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ozgb1ruhuz9ntcbpjhyy", + "meta_url": "https://olympics.com/en/athletes/ashley-moloney", + "name": "Ashley MOLONEY" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/garrett-scantling", + "name": "Garrett SCANTLING" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/pierce-lepage", + "name": "Pierce LEPAGE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/zachery-ziemek", + "name": "Zachery ZIEMEK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRN.png", + "meta_url": "https://olympics.com/en/athletes/lindon-victor", + "name": "Lindon VICTOR" + }, + "country": "Grenada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/ilya-shkurenyov", + "name": "Ilya SHKURENYOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/jorge-urena", + "name": "Jorge URENA" + }, + "country": "Spain" + } + ], + "type": "single" + }, + "men-s-discus-throw": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/skefabjaisqlpo6w76kb", + "meta_url": "https://olympics.com/en/athletes/daniel-stahl", + "name": "Daniel STAHL" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sxrfom0xczons9cisizq", + "meta_url": "https://olympics.com/en/athletes/simon-pettersson", + "name": "Simon PETTERSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ejyxvpdyjcgzbsval091", + "meta_url": "https://olympics.com/en/athletes/lukas-weisshaidinger", + "name": "Lukas WEISSHAIDINGER" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/matthew-denny", + "name": "Matthew DENNY" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/kristjan-ceh", + "name": "Kristjan CEH" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png", + "meta_url": "https://olympics.com/en/athletes/andrius-gudzius", + "name": "Andrius GUDZIUS" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/mauricio-ortega", + "name": "Mauricio ORTEGA" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/sam-mattis", + "name": "Sam MATTIS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/chad-wright", + "name": "Chad WRIGHT" + }, + "country": "Jamaica" + } + ], + "type": "single" + }, + "men-s-hammer-throw": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/q9l94yfl4aqhsnlvaubj", + "meta_url": "https://olympics.com/en/athletes/wojciech-nowicki", + "name": "Wojciech NOWICKI" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/v4d4w4znilovwaadlvjx", + "meta_url": "https://olympics.com/en/athletes/eivind-henriksen", + "name": "Eivind HENRIKSEN" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/egat0vum3fs6sh2ey4rx", + "meta_url": "https://olympics.com/en/athletes/pawel-fajdek", + "name": "Pawel FAJDEK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/mykhaylo-kokhan", + "name": "Mykhaylo KOKHAN" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/quentin-bigot", + "name": "Quentin BIGOT" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/nick-miller", + "name": "Nick MILLER" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/rudy-winkler-x1704", + "name": "Rudy WINKLER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/valeriy-pronkin", + "name": "Valeriy PRONKIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/esref-apak", + "name": "Esref APAK" + }, + "country": "Türkiye" + } + ], + "type": "single" + }, + "men-s-high-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ydrta9gsy9l95h7uwttn", + "meta_url": "https://olympics.com/en/athletes/mutaz-essa-barshim", + "name": "Mutaz Essa BARSHIM" + }, + "country": "Qatar" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/usrjx6xglbqdbdcuumgb", + "meta_url": "https://olympics.com/en/athletes/gianmarco-tamberi", + "name": "Gianmarco TAMBERI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dguozqawamb4dtpi3dwu", + "meta_url": "https://olympics.com/en/athletes/maksim-nedasekau", + "name": "Maksim NEDASEKAU" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941191/primary/ptyn23wykmekwdmqrrva", + "meta_url": "https://olympics.com/en/athletes/sanghyeok-woo", + "name": "Sanghyeok WOO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/o1ozr8eo1ije6jyrbtgo", + "meta_url": "https://olympics.com/en/athletes/brandon-starc", + "name": "Brandon STARC" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/mikhail-akimenko", + "name": "Mikhail AKIMENKO" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941364/primary/z1sig3xkinoclovo0jmr", + "meta_url": "https://olympics.com/en/athletes/juvaughn-harrison", + "name": "Juvaughn HARRISON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/django-lovett", + "name": "Django LOVETT" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/ilya-ivanyuk", + "name": "Ilya IVANYUK" + }, + "country": "ROC" + } + ], + "type": "single" + }, + "men-s-javelin-throw": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/o7jvipsa0kfv8uv9hzbm", + "meta_url": "https://olympics.com/en/athletes/neeraj-chopra", + "name": "Neeraj CHOPRA" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/k8qdtmqq3vqspzwagksw", + "meta_url": "https://olympics.com/en/athletes/jakub-vadlejch", + "name": "Jakub VADLEJCH" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/f3ck4xwyft6rkv3gpnzz", + "meta_url": "https://olympics.com/en/athletes/vitezslav-vesely", + "name": "Vitezslav VESELY" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/julian-weber", + "name": "Julian WEBER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/v3r8wc1p361yb0yl8k0y", + "meta_url": "https://olympics.com/en/athletes/arshad-nadeem", + "name": "Arshad NADEEM" + }, + "country": "Pakistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/aliaksei-katkavets", + "name": "Aliaksei KATKAVETS" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/andrian-mardare", + "name": "Andrian MARDARE" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/lassi-etelatalo", + "name": "Lassi ETELATALO" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624888218/primary/qv6gpqmzffm1xn5v2gd0", + "meta_url": "https://olympics.com/en/athletes/johannes-vetter", + "name": "Johannes VETTER" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-long-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ucvgayqwfhsaqs6cnjzl", + "meta_url": "https://olympics.com/en/athletes/miltiadis-tentoglou", + "name": "Miltiadis TENTOGLOU" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/x4jegpbukshlgaxwxotj", + "meta_url": "https://olympics.com/en/athletes/juan-miguel-echevarria", + "name": "Juan Miguel ECHEVARRIA" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/umvl0qzzlx7enwocrssm", + "meta_url": "https://olympics.com/en/athletes/maykel-masso", + "name": "Maykel MASSO" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/eusebio-caceres", + "name": "Eusebio CACERES" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941364/primary/z1sig3xkinoclovo0jmr", + "meta_url": "https://olympics.com/en/athletes/juvaughn-harrison", + "name": "Juvaughn HARRISON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yuki-hashioka", + "name": "Yuki HASHIOKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/thobias-montler", + "name": "Thobias MONTLER" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/filippo-randazzo", + "name": "Filippo RANDAZZO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/kristian-pulli", + "name": "Kristian PULLI" + }, + "country": "Finland" + } + ], + "type": "single" + }, + "men-s-marathon": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sofaf1eebviulpdlbw9y", + "meta_url": "https://olympics.com/en/athletes/eliud-kipchoge", + "name": "Eliud KIPCHOGE" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mnaknwhomqkjnc9z5qin", + "meta_url": "https://olympics.com/en/athletes/abdi-nageeye", + "name": "Abdi NAGEEYE" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dqupmn20qp8zzneeroa7", + "meta_url": "https://olympics.com/en/athletes/bashir-abdi", + "name": "Bashir ABDI" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/lawrence-cherono", + "name": "Lawrence CHERONO" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/ayad-lamdassem", + "name": "Ayad LAMDASSEM" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c3e2slvgwuwieuglei2a", + "meta_url": "https://olympics.com/en/athletes/suguru-osako", + "name": "Suguru OSAKO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TAN.png", + "meta_url": "https://olympics.com/en/athletes/alphonce-felix-simbu", + "name": "Alphonce Felix SIMBU" + }, + "country": "Tanzania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/galen-rupp", + "name": "Galen RUPP" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAR.png", + "meta_url": "https://olympics.com/en/athletes/othmane-el-goumri", + "name": "Othmane EL GOUMRI" + }, + "country": "Morocco" + } + ], + "type": "single" + }, + "men-s-pole-vault": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/adzmrximqjxi6qiggikf", + "meta_url": "https://olympics.com/en/athletes/armand-duplantis", + "name": "Armand DUPLANTIS" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ygwxskcvudufvsxlyohf", + "meta_url": "https://olympics.com/en/athletes/christopher-nilsen", + "name": "Christopher NILSEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/a0audss8cuv1kqby7s9j", + "meta_url": "https://olympics.com/en/athletes/thiago-braz", + "name": "Thiago BRAZ" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/emmanouil-karalis", + "name": "Emmanouil KARALIS" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kc-lightfoot", + "name": "Kc LIGHTFOOT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/piotr-lisek", + "name": "Piotr LISEK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/harry-coppell", + "name": "Harry COPPELL" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/renaud-lavillenie", + "name": "Renaud LAVILLENIE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/oleg-zernikel", + "name": "Oleg ZERNIKEL" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-shot-put": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624015873/primary/kt4oghphagqwmygoykze", + "meta_url": "https://olympics.com/en/athletes/ryan-crouser", + "name": "Ryan CROUSER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wzzx5u6mmopaxnry2r4u", + "meta_url": "https://olympics.com/en/athletes/joe-kovacs", + "name": "Joe KOVACS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sgvf5k8sjratpbwffy0x", + "meta_url": "https://olympics.com/en/athletes/tomas-walsh", + "name": "Tomas WALSH" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/darlan-romani", + "name": "Darlan ROMANI" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/zane-weir", + "name": "Zane WEIR" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/RSA.png", + "meta_url": "https://olympics.com/en/athletes/kyle-blignaut", + "name": "Kyle BLIGNAUT" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/armin-sinancevic", + "name": "Armin SINANCEVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/mostafa-amr-hassan", + "name": "Mostafa Amr HASSAN" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/jacko-gill", + "name": "Jacko GILL" + }, + "country": "New Zealand" + } + ], + "type": "single" + }, + "men-s-triple-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qbnxs7u6guwcwv8ohotn", + "meta_url": "https://olympics.com/en/athletes/pedro-p-pichardo", + "name": "Pedro P. PICHARDO" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sscotjleq5kpqqnbgl2k", + "meta_url": "https://olympics.com/en/athletes/yaming-zhu", + "name": "Yaming ZHU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1674067509/primary/c40gqpt135lwjupwelye", + "meta_url": "https://olympics.com/en/athletes/fabrice-zango-hugues", + "name": "Fabrice ZANGO HUGUES" + }, + "country": "Burkina Faso" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/will-claye", + "name": "Will CLAYE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALG.png", + "meta_url": "https://olympics.com/en/athletes/yasser-triki", + "name": "Yasser TRIKI" + }, + "country": "Algeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/necati-er", + "name": "Necati ER" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941621/primary/rtk4slcntrv96r8cvnkl", + "meta_url": "https://olympics.com/en/athletes/donald-scott-x9655", + "name": "Donald SCOTT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yaoqing-fang", + "name": "Yaoqing FANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/andrea-dallavalle", + "name": "Andrea DALLAVALLE" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "women-s-10000m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623249190/primary/ysm4nynmaeklp0ufe93i", + "meta_url": "https://olympics.com/en/athletes/sifan-hassan", + "name": "Sifan HASSAN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gbscutwrletxpsbdgrdb", + "meta_url": "https://olympics.com/en/athletes/kalkidan-gezahegne", + "name": "Kalkidan GEZAHEGNE" + }, + "country": "Bahrain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/adfxnnoe5gxcamvufn7h", + "meta_url": "https://olympics.com/en/athletes/letesenbet-gidey", + "name": "Letesenbet GIDEY" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hgvy7ymf68ljve8kk9cm", + "meta_url": "https://olympics.com/en/athletes/hellen-onsando-obiri", + "name": "Hellen Onsando OBIRI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/oo7vl11zk9yalpfgjomq", + "meta_url": "https://olympics.com/en/athletes/francine-niyonsaba", + "name": "Francine NIYONSABA" + }, + "country": "Burundi" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/irene-chepet-cheptai", + "name": "Irene Chepet CHEPTAI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ririka-hironaka", + "name": "Ririka HIRONAKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/konstanze-klosterhalfen", + "name": "Konstanze KLOSTERHALFEN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/eilish-mccolgan", + "name": "Eilish MCCOLGAN" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-100m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1565166356/primary/qzpojeoixvotrbfvaecz", + "meta_url": "https://olympics.com/en/athletes/elaine-thompson", + "name": "Elaine THOMPSON-HERAH" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hgotdozfbffr1w9jbbj6", + "meta_url": "https://olympics.com/en/athletes/shelly-ann-fraser-pryce", + "name": "Shelly-Ann FRASER-PRYCE" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fzzzuvcxij4endutbtby", + "meta_url": "https://olympics.com/en/athletes/shericka-jackson", + "name": "Shericka JACKSON" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xx8tf35zjmahnplrashb", + "meta_url": "https://olympics.com/en/athletes/marie-josee-ta-lou", + "name": "Marie-Josee TA LOU" + }, + "country": "Côte d'Ivoire" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/ajla-del-ponte", + "name": "Ajla DEL PONTE" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/mujinga-kambundji", + "name": "Mujinga KAMBUNDJI" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/teahna-daniels", + "name": "Teahna DANIELS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gl1kk1iwkmojvi4aqfoe", + "meta_url": "https://olympics.com/en/athletes/daryll-neita", + "name": "Daryll NEITA" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png", + "meta_url": "https://olympics.com/en/athletes/michelle-lee-ahye", + "name": "Michelle-Lee AHYE" + }, + "country": "Tri. & Tobago" + } + ], + "type": "single" + }, + "women-s-100m-hurdles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rutyrximxxjrixmekdde", + "meta_url": "https://olympics.com/en/athletes/jasmine-camacho-quinn", + "name": "Jasmine CAMACHO-QUINN" + }, + "country": "Puerto Rico" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fca5tphhrz0pkcsrauff", + "meta_url": "https://olympics.com/en/athletes/kendra-harrison", + "name": "Kendra HARRISON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cgi2wxhucuddllsuxre4", + "meta_url": "https://olympics.com/en/athletes/megan-tapper", + "name": "Megan TAPPER" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/e9jjcflzr1pzyldqjsnq", + "meta_url": "https://olympics.com/en/athletes/oluwatobiloba-amusan", + "name": "Oluwatobiloba AMUSAN" + }, + "country": "Nigeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/nadine-visser", + "name": "Nadine VISSER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BAH.png", + "meta_url": "https://olympics.com/en/athletes/devynne-charlton", + "name": "Devynne CHARLTON" + }, + "country": "Bahamas" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/gabriele-cunningham", + "name": "Gabriele CUNNINGHAM" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/britany-anderson", + "name": "Britany ANDERSON" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRC.png", + "meta_url": "https://olympics.com/en/athletes/andrea-carolina-vargas", + "name": "Andrea Carolina VARGAS" + }, + "country": "Costa Rica" + } + ], + "type": "single" + }, + "women-s-1500m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623925461/primary/id7wtmqchnjah1sxb177", + "meta_url": "https://olympics.com/en/athletes/faith-chepngetich-kipyegon", + "name": "Faith Chepngetich KIPYEGON" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pgvqgv7jfrshn5z1tiqs", + "meta_url": "https://olympics.com/en/athletes/laura-muir", + "name": "Laura MUIR" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623249190/primary/ysm4nynmaeklp0ufe93i", + "meta_url": "https://olympics.com/en/athletes/sifan-hassan", + "name": "Sifan HASSAN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/freweyni-gebreezibeher", + "name": "Freweyni GEBREEZIBEHER" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/gabriela-stafford", + "name": "Gabriela STAFFORD" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/linden-hall", + "name": "Linden HALL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UGA.png", + "meta_url": "https://olympics.com/en/athletes/winnie-nanyondo", + "name": "Winnie NANYONDO" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/nozomi-tanaka", + "name": "Nozomi TANAKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/marta-perez", + "name": "Marta PEREZ" + }, + "country": "Spain" + } + ], + "type": "single" + }, + "women-s-200m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1565166356/primary/qzpojeoixvotrbfvaecz", + "meta_url": "https://olympics.com/en/athletes/elaine-thompson", + "name": "Elaine THOMPSON-HERAH" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ezmw14pr49etb5pbr2p2", + "meta_url": "https://olympics.com/en/athletes/christine-mboma", + "name": "Christine MBOMA" + }, + "country": "Namibia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/foazuth2u6szn9lzd004", + "meta_url": "https://olympics.com/en/athletes/gabrielle-thomas", + "name": "Gabrielle THOMAS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hgotdozfbffr1w9jbbj6", + "meta_url": "https://olympics.com/en/athletes/shelly-ann-fraser-pryce", + "name": "Shelly-Ann FRASER-PRYCE" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xx8tf35zjmahnplrashb", + "meta_url": "https://olympics.com/en/athletes/marie-josee-ta-lou", + "name": "Marie-Josee TA LOU" + }, + "country": "Côte d'Ivoire" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NAM.png", + "meta_url": "https://olympics.com/en/athletes/beatrice-masilingi", + "name": "Beatrice MASILINGI" + }, + "country": "Namibia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/mujinga-kambundji", + "name": "Mujinga KAMBUNDJI" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kvwffmvxbuupfgrgmani", + "meta_url": "https://olympics.com/en/athletes/shaunae-miller", + "name": "Shaunae MILLER-UIBO" + }, + "country": "Bahamas" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NGR.png", + "meta_url": "https://olympics.com/en/athletes/nzubechi-grace-nwokocha", + "name": "Nzubechi Grace NWOKOCHA" + }, + "country": "Nigeria" + } + ], + "type": "single" + }, + "women-s-20km-race-walk": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/antonella-palmisano", + "name": "Antonella PALMISANO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/sandra-arenas", + "name": "Sandra ARENAS" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/hong-liu", + "name": "Hong LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691575535/primary/mtbbrzou38yufhyqo5zy", + "meta_url": "https://olympics.com/en/athletes/maria-perez-x7722", + "name": "Maria PEREZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/alegna-gonzalez", + "name": "Alegna GONZALEZ" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/jemima-montag", + "name": "Jemima MONTAG" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shijie-qieyang", + "name": "Shijie QIEYANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/antigoni-drisbioti", + "name": "Antigoni DRISBIOTI" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/paola-perez-1", + "name": "Paola PEREZ" + }, + "country": "Ecuador" + } + ], + "type": "single" + }, + "women-s-3000m-steeplechase": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UGA.png", + "meta_url": "https://olympics.com/en/athletes/peruth-chemutai", + "name": "Peruth CHEMUTAI" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/courtney-frerichs", + "name": "Courtney FRERICHS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/hyvin-kiyeng", + "name": "Hyvin KIYENG" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/mekides-abebe", + "name": "Mekides ABEBE" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/gesa-felicitas-krause", + "name": "Gesa Felicitas KRAUSE" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/marusa-mismas", + "name": "Marusa MISMAS" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/k40trknpsdf6krdfjpym", + "meta_url": "https://olympics.com/en/athletes/beatrice-chepkoech", + "name": "Beatrice CHEPKOECH" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/zerfe-wondemagegn", + "name": "Zerfe WONDEMAGEGN" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/elizabeth-bird", + "name": "Elizabeth BIRD" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-4-x-100m-relay": { + "participants": [ + { + "country": "Jamaica", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + } + ], + "type": "team" + }, + "women-s-4-x-400m-relay": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Jamaica", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Cuba", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + } + ], + "type": "team" + }, + "women-s-400m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kvwffmvxbuupfgrgmani", + "meta_url": "https://olympics.com/en/athletes/shaunae-miller", + "name": "Shaunae MILLER-UIBO" + }, + "country": "Bahamas" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691572945/primary/brlhr485x4syureoy4pm", + "meta_url": "https://olympics.com/en/athletes/marileidy-paulino", + "name": "Marileidy PAULINO" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zzgcd2x8zo6orqp4brwr", + "meta_url": "https://olympics.com/en/athletes/allyson-felix", + "name": "Allyson FELIX" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/stephenie-ann-mcpherson", + "name": "Stephenie Ann MCPHERSON" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/candice-mcleod", + "name": "Candice MCLEOD" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jodie-williams", + "name": "Jodie WILLIAMS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/quanera-hayes", + "name": "Quanera HAYES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/roxana-gomez", + "name": "Roxana GOMEZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BAR.png", + "meta_url": "https://olympics.com/en/athletes/sada-williams", + "name": "Sada WILLIAMS" + }, + "country": "Barbados" + } + ], + "type": "single" + }, + "women-s-400m-hurdles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/muhgclgwjtsm0t0grfdg", + "meta_url": "https://olympics.com/en/athletes/sydney-mclaughlin", + "name": "Sydney MCLAUGHLIN-LEVRONE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/lnuznccafbicrtm0n8uu", + "meta_url": "https://olympics.com/en/athletes/dalilah-muhammad", + "name": "Dalilah MUHAMMAD" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694943270/primary/qaok4dvmstfzzzne32il", + "meta_url": "https://olympics.com/en/athletes/femke-bol", + "name": "Femke BOL" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/janieve-russell", + "name": "Janieve RUSSELL" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/anna-ryzhykova", + "name": "Anna RYZHYKOVA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/viktoriya-tkachuk", + "name": "Viktoriya TKACHUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PAN.png", + "meta_url": "https://olympics.com/en/athletes/gianna-woodruff", + "name": "Gianna WOODRUFF" + }, + "country": "Panama" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/anna-cockrell", + "name": "Anna COCKRELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/paulien-couckuyt", + "name": "Paulien COUCKUYT" + }, + "country": "Belgium" + } + ], + "type": "single" + }, + "women-s-5000m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623249190/primary/ysm4nynmaeklp0ufe93i", + "meta_url": "https://olympics.com/en/athletes/sifan-hassan", + "name": "Sifan HASSAN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hgvy7ymf68ljve8kk9cm", + "meta_url": "https://olympics.com/en/athletes/hellen-onsando-obiri", + "name": "Hellen Onsando OBIRI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694943410/primary/qxkpjr1ucspcq7zvjrsd", + "meta_url": "https://olympics.com/en/athletes/gudaf-tsegay", + "name": "Gudaf TSEGAY" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/agnes-jebet-tirop", + "name": "Agnes Jebet TIROP" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/ejgayehu-taye", + "name": "Ejgayehu TAYE" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/senbere-teferi", + "name": "Senbere TEFERI" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/nadia-battocletti", + "name": "Nadia BATTOCLETTI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/yasemin-can", + "name": "Yasemin CAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ririka-hironaka", + "name": "Ririka HIRONAKA" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "women-s-800m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xmxoxuqqdrjhpyd6un5d", + "meta_url": "https://olympics.com/en/athletes/athing-mu", + "name": "Athing MU" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gw0wl0i1inx1qbrulvw7", + "meta_url": "https://olympics.com/en/athletes/keely-hodgkinson", + "name": "Keely HODGKINSON" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/raevyn-rogers", + "name": "Raevyn ROGERS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jemma-reekie", + "name": "Jemma REEKIE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/chunyu-wang", + "name": "Chunyu WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/habitam-alemu", + "name": "Habitam ALEMU" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/alexandra-bell", + "name": "Alexandra BELL" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/natoya-goule", + "name": "Natoya GOULE" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/lore-hoffmann", + "name": "Lore HOFFMANN" + }, + "country": "Switzerland" + } + ], + "type": "single" + }, + "women-s-discus-throw": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/odle238dupbzbvcvcmei", + "meta_url": "https://olympics.com/en/athletes/valarie-allman", + "name": "Valarie ALLMAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/kristin-pudenz", + "name": "Kristin PUDENZ" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/yaime-perez", + "name": "Yaime PEREZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mpcs7kwarzdmk83vh0b9", + "meta_url": "https://olympics.com/en/athletes/sandra-perkovic", + "name": "Sandra PERKOVIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/liliana-ca", + "name": "Liliana CA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png", + "meta_url": "https://olympics.com/en/athletes/kamalpreet-kaur", + "name": "Kamalpreet KAUR" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/shadae-lawrence", + "name": "Shadae LAWRENCE" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/marike-steinacker", + "name": "Marike STEINACKER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/claudine-vita", + "name": "Claudine VITA" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-hammer-throw": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yjb9c7ngp5hghw6whezz", + "meta_url": "https://olympics.com/en/athletes/anita-wlodarczyk", + "name": "Anita WLODARCZYK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zheng-wang-1", + "name": "Zheng WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/malwina-kopron", + "name": "Malwina KOPRON" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/alexandra-tavernier", + "name": "Alexandra TAVERNIER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1723041276/primary/eq2oulqqokjmzhrdh5eb", + "meta_url": "https://olympics.com/en/athletes/camryn-rogers", + "name": "Camryn ROGERS" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/bianca-florentina-ghelber", + "name": "Bianca Florentina GHELBER" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/joanna-fiodorow", + "name": "Joanna FIODOROW" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/deanna-price", + "name": "Deanna PRICE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/julia-ratcliffe", + "name": "Julia RATCLIFFE" + }, + "country": "New Zealand" + } + ], + "type": "single" + }, + "women-s-heptathlon": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sudl4kxf9x11u46zfb3z", + "meta_url": "https://olympics.com/en/athletes/nafissatou-thiam", + "name": "Nafissatou THIAM" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/anouk-vetter", + "name": "Anouk VETTER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/emma-oosterwegel", + "name": "Emma OOSTERWEGEL" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/noor-vidts", + "name": "Noor VIDTS" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kendell-williams", + "name": "Kendell WILLIAMS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/annie-kunz", + "name": "Annie KUNZ" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/carolin-schafer", + "name": "Carolin SCHAFER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/ivona-dadic", + "name": "Ivona DADIC" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/erica-bougard", + "name": "Erica BOUGARD" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-high-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626767277/primary/rv0tfbio1cc1jdjb3iqm", + "meta_url": "https://olympics.com/en/athletes/mariya-lasitskene", + "name": "Mariya LASITSKENE" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/nicola-mcdermott", + "name": "Nicola MCDERMOTT" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1655913355/primary/szu1u2wdvntueanxls63", + "meta_url": "https://olympics.com/en/athletes/yaroslava-mahuchikh", + "name": "Yaroslava MAHUCHIKH" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/iryna-gerashchenko", + "name": "Iryna GERASHCHENKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1693667898/primary/v9orhup1argkndj9l55e", + "meta_url": "https://olympics.com/en/athletes/eleanor-patterson", + "name": "Eleanor PATTERSON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/vashti-cunningham", + "name": "Vashti CUNNINGHAM" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/safina-sadullayeva", + "name": "Safina SADULLAYEVA" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/yuliia-levchenko", + "name": "Yuliia LEVCHENKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MNE.png", + "meta_url": "https://olympics.com/en/athletes/marija-vukovic", + "name": "Marija VUKOVIC" + }, + "country": "Montenegro" + } + ], + "type": "single" + }, + "women-s-javelin-throw": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shiying-liu", + "name": "Shiying LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/maria-andrejczyk", + "name": "Maria ANDREJCZYK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kelsey-lee-roberts", + "name": "Kelsey-Lee ROBERTS" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/eda-tugsuz", + "name": "Eda TUGSUZ" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": null, + "name": "Huihui Lyu" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kathryn-mitchell", + "name": "Kathryn MITCHELL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png", + "meta_url": "https://olympics.com/en/athletes/liveta-jasiunaite", + "name": "Liveta JASIUNAITE" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941496/primary/hrp44lbtvbyf05yhdhby", + "meta_url": "https://olympics.com/en/athletes/mackenzie-little", + "name": "Mackenzie LITTLE" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/christin-hussong", + "name": "Christin HUSSONG" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-long-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/h6ffmja1qkjfxunnkawa", + "meta_url": "https://olympics.com/en/athletes/malaika-mihambo", + "name": "Malaika MIHAMBO" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kydp2iuasb8e8pftmeby", + "meta_url": "https://olympics.com/en/athletes/brittney-reese", + "name": "Brittney REESE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NGR.png", + "meta_url": "https://olympics.com/en/athletes/ese-brume", + "name": "Ese BRUME" + }, + "country": "Nigeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/ivana-spanovic", + "name": "Ivana SPANOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/maryna-bekh", + "name": "Maryna BEKH-ROMANCHUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/tara-davis", + "name": "Tara DAVIS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/brooke-stratton", + "name": "Brooke STRATTON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624891303/primary/qhbtqm5ovm57s3t2s4vt", + "meta_url": "https://olympics.com/en/athletes/jazmin-sawyers", + "name": "Jazmin SAWYERS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/khaddi-sagnia", + "name": "Khaddi SAGNIA" + }, + "country": "Sweden" + } + ], + "type": "single" + }, + "women-s-marathon": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gljkyw6nukpyftayljdu", + "meta_url": "https://olympics.com/en/athletes/peres-jepchirchir", + "name": "Peres JEPCHIRCHIR" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/brigid-kosgei", + "name": "Brigid KOSGEI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/molly-seidel", + "name": "Molly SEIDEL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/roza-dereje", + "name": "Roza DEREJE" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/volha-mazuronak", + "name": "Volha MAZURONAK" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/melat-yisak-kejeta", + "name": "Melat Yisak KEJETA" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRN.png", + "meta_url": "https://olympics.com/en/athletes/eunice-chebichii-chumba", + "name": "Eunice Chebichii CHUMBA" + }, + "country": "Bahrain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/znpnuao75qrkjy3n9ucz", + "meta_url": "https://olympics.com/en/athletes/mao-ichiyama", + "name": "Mao ICHIYAMA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/malindi-elmore", + "name": "Malindi ELMORE" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-pole-vault": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1692859033/primary/guuggazvmpwlj0i2dhhu", + "meta_url": "https://olympics.com/en/athletes/katie-nageotte", + "name": "Katie MOON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sdzyfc8ucv3ifd4omvqk", + "meta_url": "https://olympics.com/en/athletes/anzhelika-sidorova", + "name": "Anzhelika SIDOROVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/holly-bradshaw", + "name": "Holly BLEASDALE-BRADSHAW" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/whlk559nat8bhiswdm7g", + "meta_url": "https://olympics.com/en/athletes/ekaterini-stefanidi", + "name": "Katerina STEFANIDI" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/maryna-kylypko", + "name": "Maryna KYLYPKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/wilma-murto", + "name": "Wilma MURTO" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694940970/primary/pez5pngcssldpscworqo", + "meta_url": "https://olympics.com/en/athletes/tina-sutej", + "name": "Tina SUTEJ" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/nikoleta-kyriakopoulou", + "name": "Nikoleta KYRIAKOPOULOU" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/robeilys-peinado", + "name": "Robeilys PEINADO" + }, + "country": "Venezuela" + } + ], + "type": "single" + }, + "women-s-shot-put": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696001614/primary/hhimhugh1prkeb7jtcnz", + "meta_url": "https://olympics.com/en/athletes/lijiao-gong", + "name": "Lijiao GONG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/raven-saunders", + "name": "Raven SAUNDERS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hjewsbfwexzo9lsfekqz", + "meta_url": "https://olympics.com/en/athletes/valerie-adams", + "name": "Valerie ADAMS" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694940688/primary/ly4cv90e0khec9ljkkib", + "meta_url": "https://olympics.com/en/athletes/auriole-dongmo", + "name": "Auriole DONGMO" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jiayuan-song", + "name": "Jiayuan SONG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/maddison-lee-wesche", + "name": "Maddison-Lee WESCHE" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/fanny-roos", + "name": "Fanny ROOS" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/sara-gambetta", + "name": "Sara GAMBETTA" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/aliona-dubitskaya", + "name": "Aliona DUBITSKAYA" + }, + "country": "Belarus" + } + ], + "type": "single" + }, + "women-s-triple-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/q8t8ckpnchmgk4mczt3j", + "meta_url": "https://olympics.com/en/athletes/yulimar-rojas", + "name": "Yulimar ROJAS" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/patricia-mamona", + "name": "Patricia MAMONA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1678183776/primary/wwpnmwhsew4lyqz9sj6k", + "meta_url": "https://olympics.com/en/athletes/ana-peleteiro", + "name": "Ana PELETEIRO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694940773/primary/guxlppkqwrluoei0m9ze", + "meta_url": "https://olympics.com/en/athletes/shanieka-thomas", + "name": "Shanieka THOMAS" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/liadagmis-povea", + "name": "Liadagmis POVEA" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/hanna-knyazyeva-minenko", + "name": "Hanna KNYAZYEVA-MINENKO" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/keturah-orji", + "name": "Keturah ORJI" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/kimberly-williams", + "name": "Kimberly WILLIAMS" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/rouguy-diallo", + "name": "Rouguy DIALLO" + }, + "country": "France" + } + ], + "type": "single" + } + }, + "badminton": { + "men-s-doubles": { + "participants": [ + { + "country": "Chinese Taipei", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Malaysia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAS.png" + }, + { + "country": "Indonesia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Indonesia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "men-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ustehnnnyhrydzpnng8s", + "meta_url": "https://olympics.com/en/athletes/viktor-axelsen", + "name": "Viktor AXELSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yvowdbsxbjyxd9lbfueg", + "meta_url": "https://olympics.com/en/athletes/long-chen", + "name": "Long CHEN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zwgxasfg51sxkwxfj0kw", + "meta_url": "https://olympics.com/en/athletes/anthony-sinisuka-ginting", + "name": "Anthony Sinisuka GINTING" + }, + "country": "Indonesia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GUA.png", + "meta_url": "https://olympics.com/en/athletes/kevin-cordon", + "name": "Kevin CORDON" + }, + "country": "Guatemala" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1690015393/primary/oexb6kpdexleggmjhiy1", + "meta_url": "https://olympics.com/en/athletes/anders-antonsen", + "name": "Anders ANTONSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fkkl6wykugo0xx2e8bhd", + "meta_url": "https://olympics.com/en/athletes/tien-chen-chou", + "name": "Tien Chen CHOU" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/kwanghee-heo", + "name": "Kwanghee HEO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gdhnlmtianruxykgjgmk", + "meta_url": "https://olympics.com/en/athletes/yuqi-shi", + "name": "Yuqi SHI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/mark-caljouw", + "name": "Mark CALJOUW" + }, + "country": "Netherlands" + } + ], + "type": "single" + }, + "mixed-doubles": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Hong Kong, China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Indonesia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png" + }, + { + "country": "Thailand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Malaysia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAS.png" + } + ], + "type": "team" + }, + "women-s-doubles": { + "participants": [ + { + "country": "Indonesia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + } + ], + "type": "team" + }, + "women-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/a1ae80dxj0voyv1kqwaf", + "meta_url": "https://olympics.com/en/athletes/yu-fei-chen", + "name": "Yu Fei CHEN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tkizcxnbmvngixobcgts", + "meta_url": "https://olympics.com/en/athletes/tzu-ying-tai", + "name": "Tzu Ying TAI" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gsfzbbjmgyi8atet8iot", + "meta_url": "https://olympics.com/en/athletes/v-sindhu-pusarla", + "name": "Pusarla Venkata SINDHU" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/bingjiao-he", + "name": "Bingjiao HE" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rcozed7mjlnmr3aksq2b", + "meta_url": "https://olympics.com/en/athletes/seyoung-an", + "name": "Se-young AN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/ratchanok-intanon", + "name": "Ratchanok INTANON" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622544939/primary/tpsyl1jo67ppni1obizw", + "meta_url": "https://olympics.com/en/athletes/nozomi-okuhara", + "name": "Nozomi OKUHARA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/j8hqan0s6ifgsacmobhg", + "meta_url": "https://olympics.com/en/athletes/akane-yamaguchi", + "name": "Akane YAMAGUCHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/mia-blichfeldt", + "name": "Mia BLICHFELDT" + }, + "country": "Denmark" + } + ], + "type": "single" + } + }, + "baseball-softball": { + "baseball": { + "participants": [ + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Dominican Rep", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Israel", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + } + ], + "type": "team" + }, + "softball": { + "participants": [ + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + } + ], + "type": "team" + } + }, + "basketball": { + "men": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Slovenia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Czechia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + } + ], + "type": "team" + } + }, + "beach-volleyball": { + "men": { + "participants": [ + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Qatar", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/QAT.png" + }, + { + "country": "Latvia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Latvia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + } + ], + "type": "team" + } + }, + "boxing": { + "men-s-feather-52-57kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/albert-batyrgaziev", + "name": "Albert BATYRGAZIEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/duke-ragan", + "name": "Duke RAGAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/lazaro-alvarez-estrada", + "name": "Lazaro ALVAREZ ESTRADA" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694174487/primary/cx8bnl8f8ihy7dlpawvs", + "meta_url": "https://olympics.com/en/athletes/samuel-takyi", + "name": "Samuel TAKYI" + }, + "country": "Ghana" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/tsendbaatar-erdenebat", + "name": "Tsendbaatar ERDENEBAT" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png", + "meta_url": "https://olympics.com/en/athletes/kurt-anthony-walker", + "name": "Kurt Anthony WALKER" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/chatchai-butdee", + "name": "Chatchai BUTDEE" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/ceiber-avila-segura", + "name": "Ceiber David ÁVILA SEGURA" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/alexy-miguel-de-la-cruz-baez", + "name": "Alexy Miguel DE LA CRUZ BAEZ" + }, + "country": "Dominican Rep" + } + ], + "type": "single" + }, + "men-s-fly-48-52kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/galal-yafai", + "name": "Galal YAFAI" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PHI.png", + "meta_url": "https://olympics.com/en/athletes/carlo-paalam", + "name": "Carlo PAALAM" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/saken-bibossinov", + "name": "Saken BIBOSSINOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ryomei-tanaka", + "name": "Ryomei TANAKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/yosbany-veitia-soto", + "name": "Yosbany VEITIA SOTO" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/shakhobidin-zoirov", + "name": "Shakhobidin ZOIROV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/gabriel-escobar-mascunano", + "name": "Gabriel ESCOBAR MASCUNANO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/yuberjen-herney-martinez-rivas", + "name": "Yuberjen Herney MARTINEZ RIVAS" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kpric8te85lbpntwhz9s", + "meta_url": "https://olympics.com/en/athletes/patrick-chinyemba", + "name": "Patrick CHINYEMBA" + }, + "country": "Zambia" + } + ], + "type": "single" + }, + "men-s-heavy-81-91kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": null, + "name": "Julio la Cruz" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/muslim-gadzhimagomedov", + "name": "Muslim GADZHIMAGOMEDOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/abner-teixeira", + "name": "Abner TEIXEIRA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/david-nyika", + "name": "David NYIKA" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1709576717/primary/saseuqyxqctdypqkx7o2", + "meta_url": "https://olympics.com/en/athletes/enmanuel-reyes-pla", + "name": "Enmanuel REYES PLA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/ammar-riad-abduljabbar", + "name": "Ammar Riad ABDULJABBAR" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JOR.png", + "meta_url": "https://olympics.com/en/athletes/hussein-iashaish", + "name": "Hussein IASHAISH" + }, + "country": "Jordan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/uladzislau-smiahlikau", + "name": "Uladzislau SMIAHLIKAU" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/elly-ajowi-ochola", + "name": "Elly Ajowi OCHOLA" + }, + "country": "Kenya" + } + ], + "type": "single" + }, + "men-s-light-57-63kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/andy-cruz", + "name": "Andy CRUZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/keyshawn-davis", + "name": "Keyshawn DAVIS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/harrison-garside", + "name": "Harrison GARSIDE" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/hovhannes-bachkov", + "name": "Hovhannes BACHKOV" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/wanderson-de-oliveira", + "name": "Wanderson DE OLIVEIRA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/gabil-mamedov", + "name": "Gabil MAMEDOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/zakir-safiullin", + "name": "Zakir SAFIULLIN" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/elnur-abduraimov", + "name": "Elnur ABDURAIMOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/luke-mccormack", + "name": "Luke MCCORMACK" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "men-s-light-heavy-75-81kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/w1y6rtdntitmswdqm1sw", + "meta_url": "https://olympics.com/en/athletes/arlen-lopez", + "name": "Arlen LOPEZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/benjamin-whittaker", + "name": "Benjamin WHITTAKER" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/loren-berto-alfonso-dominguez", + "name": "Loren Berto ALFONSO DOMINGUEZ" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/imam-khataev", + "name": "Imam KHATAEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/rogelio-romero-torres", + "name": "Rogelio ROMERO TORRES" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/keno-machado", + "name": "Keno MACHADO" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/bayram-malkan", + "name": "Bayram MALKAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/gazimagomed-schamilovich-jalidov-gafurova", + "name": "Gazimagomed Schamilovich JALIDOV GAFUROVA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALG.png", + "meta_url": "https://olympics.com/en/athletes/mohammed-houmri", + "name": "Mohammed HOUMRI" + }, + "country": "Algeria" + } + ], + "type": "single" + }, + "men-s-middle-69-75kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/hebert-sousa", + "name": "Hebert SOUSA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/oleksandr-khyzhniak", + "name": "Oleksandr KHYZHNIAK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/gleb-bakshi", + "name": "Gleb BAKSHI" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PHI.png", + "meta_url": "https://olympics.com/en/athletes/eumir-marcial", + "name": "Eumir MARCIAL" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/abilkhan-amankul", + "name": "Abilkhan AMANKUL" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/euri-cedeno-martinez", + "name": "Euri CEDENO MARTINEZ" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HAI.png", + "meta_url": "https://olympics.com/en/athletes/darrelle-valsaint-jr", + "name": "Darrelle VALSAINT JR" + }, + "country": "Haiti" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/arman-darchinyan", + "name": "Arman DARCHINYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/erbieke-tuoheta", + "name": "Erbieke TUOHETA" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "men-s-super-heavy-over-91kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/un9ozv1vz393vwhzegbc", + "meta_url": "https://olympics.com/en/athletes/bakhodir-jalolov", + "name": "Bakhodir JALOLOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/richard-torrez-jr", + "name": "Richard TORREZ JR" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/frazer-clarke", + "name": "Frazer CLARKE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/kamshybek-kunkabayev", + "name": "Kamshybek KUNKABAYEV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png", + "meta_url": "https://olympics.com/en/athletes/satish-kumar", + "name": "Satish KUMAR" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/dainier-pero", + "name": "Dainier PERO" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/ivan-veriasov", + "name": "Ivan VERIASOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/mourad-aliev", + "name": "Mourad ALIEV" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/mahammad-abdullayev", + "name": "Mahammad ABDULLAYEV" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-s-welter-63-69kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tgcai0aycxm7vtuhtsv0", + "meta_url": "https://olympics.com/en/athletes/roniel-iglesias", + "name": "Roniel IGLESIAS" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623674591/primary/xnv3keigaevnz07txc5c", + "meta_url": "https://olympics.com/en/athletes/pat-mccormack", + "name": "Pat MCCORMACK" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/andrei-zamkovoi", + "name": "Andrei ZAMKOVOI" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png", + "meta_url": "https://olympics.com/en/athletes/aidan-walsh", + "name": "Aidan WALSH" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/delante-johnson", + "name": "Delante JOHNSON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/bobo-usmon-baturov", + "name": "Bobo-Usmon BATUROV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/eskerkhan-madiev", + "name": "Eskerkhan MADIEV" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MRI.png", + "meta_url": "https://olympics.com/en/athletes/merven-clair", + "name": "Merven CLAIR" + }, + "country": "Mauritius" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/sewonrets-quincy-mensah-okazawa", + "name": "Sewonrets Quincy Mensah OKAZAWA" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "women-s-feather-54-57kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/sena-irie", + "name": "Sena IRIE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695907591/primary/k5apawvkldy6iymarajr", + "meta_url": "https://olympics.com/en/athletes/nesthy-petecio", + "name": "Nesthy PETECIO" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/karriss-artingstall", + "name": "Karriss ARTINGSTALL" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622805821/primary/xemcupaawseitdxinchj", + "meta_url": "https://olympics.com/en/athletes/irma-testa", + "name": "Irma TESTA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/maria-claudia-nechita", + "name": "Maria Claudia NECHITA" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/yeni-marcela-arias-castaneda", + "name": "Yeni Marcela ARIAS CASTANEDA" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/skye-nicolson", + "name": "Skye NICOLSON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/caroline-veyre", + "name": "Caroline VEYRE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/khouloud-hlimi", + "name": "Khouloud HLIMI" + }, + "country": "Tunisia" + } + ], + "type": "single" + }, + "women-s-fly-48-51kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/stoyka-zhelyazkova-krasteva", + "name": "Stoyka Zhelyazkova KRASTEVA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/buse-naz-cakiroglu", + "name": "Buse Naz CAKIROGLU" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/tsukimi-namiki", + "name": "Tsukimi NAMIKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/hsiao-wen-huang", + "name": "Hsiao-Wen HUANG" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yuan-chang", + "name": "Yuan CHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/jutamas-jitpong", + "name": "Jutamas JITPONG" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/ingrit-valencia-victoria", + "name": "Ingrit VALENCIA VICTORIA" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/nina-radovanovic", + "name": "Nina RADOVANOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/virginia-fuchs", + "name": "Virginia FUCHS" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-light-57-60kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1723039476/primary/lrn1cfakhyaublp1jznp", + "meta_url": "https://olympics.com/en/athletes/kellie-anne-harrington", + "name": "Kellie Anne HARRINGTON" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/beatriz-ferreira", + "name": "Beatriz FERREIRA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/sudaporn-seesondee", + "name": "Sudaporn SEESONDEE" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/mira-potkonen", + "name": "Mira POTKONEN" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALG.png", + "meta_url": "https://olympics.com/en/athletes/imane-khelif", + "name": "Imane KHELIF" + }, + "country": "Algeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/raykhona-kodirova", + "name": "Raykhona KODIROVA" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/caroline-dubois", + "name": "Caroline DUBOIS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/esra-yildiz", + "name": "Esra YILDIZ" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/rebecca-nicoli", + "name": "Rebecca NICOLI" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "women-s-middle-69-75kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/lauren-price", + "name": "Lauren PRICE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/qian-li-2", + "name": "Qian LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/nouchka-fontijn", + "name": "Nouchka FONTIJN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/zenfira-magomedalieva", + "name": "Zenfira MAGOMEDALIEVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PAN.png", + "meta_url": "https://olympics.com/en/athletes/atheyna-bylon", + "name": "Atheyna BYLON" + }, + "country": "Panama" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/axi3yv3k5bzcxwsfzqz2", + "meta_url": "https://olympics.com/en/athletes/pooja-rani", + "name": "Pooja RANI" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/tammara-thibeault", + "name": "Tammara THIBEAULT" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694172935/primary/dugmby9y7cmlhtlndiks", + "meta_url": "https://olympics.com/en/athletes/rady-gramane", + "name": "Rady GRAMANE" + }, + "country": "Mozambique" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/myagmarjargal-munkhbat", + "name": "Myagmarjargal MUNKHBAT" + }, + "country": "Mongolia" + } + ], + "type": "single" + }, + "women-s-welter-64-69kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/busenaz-surmeneli", + "name": "Busenaz SURMENELI" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/hong-gu", + "name": "Hong GU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/p8pbcqq68mmel8jlloia", + "meta_url": "https://olympics.com/en/athletes/lovlina-borgohain", + "name": "Lovlina BORGOHAIN" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/oshae-jones", + "name": "Oshae JONES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/anna-lysenko", + "name": "Anna LYSENKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MOZ.png", + "meta_url": "https://olympics.com/en/athletes/alcinda-helena-panguana", + "name": "Alcinda Helena PANGUANA" + }, + "country": "Mozambique" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/nien-chin-chen", + "name": "Nien-Chin CHEN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/maria-altagracia-moronta-hernandez", + "name": "Maria Altagracia MORONTA HERNANDEZ" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/karolina-koszewska", + "name": "Karolina KOSZEWSKA" + }, + "country": "Poland" + } + ], + "type": "single" + } + }, + "canoe-slalom": { + "men-s-canoe": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t6yvjrfcbsnohcozzzaf", + "meta_url": "https://olympics.com/en/athletes/benjamin-savsek", + "name": "Benjamin SAVSEK" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/lukas-rohan", + "name": "Lukas ROHAN" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/whzflboclq1barmgx90x", + "meta_url": "https://olympics.com/en/athletes/sideris-tasiadis", + "name": "Sideris TASIADIS" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/adam-burgess", + "name": "Adam BURGESS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/martin-thomas", + "name": "Martin THOMAS" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/matej-benus", + "name": "Matej BENUS" + }, + "country": "Slovakia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/zachary-lokken", + "name": "Zachary LOKKEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/ander-elosegi", + "name": "Ander ELOSEGI" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/daniel-watkins", + "name": "Daniel WATKINS" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "men-s-kayak": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wkioplimppwi6zqcqien", + "meta_url": "https://olympics.com/en/athletes/jiri-prskavec", + "name": "Jiri PRSKAVEC" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/jakub-grigar", + "name": "Jakub GRIGAR" + }, + "country": "Slovakia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/hannes-aigner", + "name": "Hannes AIGNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/felix-oschmautz", + "name": "Felix OSCHMAUTZ" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michal-smolen", + "name": "Michal SMOLEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/bradley-forbes-cryans", + "name": "Bradley FORBES-CRYANS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/boris-neveu", + "name": "Boris NEVEU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/lucien-delfour", + "name": "Lucien DELFOUR" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/erik-holmer", + "name": "Erik HOLMER" + }, + "country": "Sweden" + } + ], + "type": "single" + }, + "women-s-canoe": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1620817982/primary/flolyx0evszciu8ysirq", + "meta_url": "https://olympics.com/en/athletes/jessica-fox", + "name": "Jessica FOX" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704279651/primary/smetnqu5ad2zulrigkr1", + "meta_url": "https://olympics.com/en/athletes/mallory-franklin", + "name": "Mallory FRANKLIN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/andrea-herzog", + "name": "Andrea HERZOG" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/marjorie-delassus", + "name": "Marjorie DELASSUS" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/nadine-weratschnig", + "name": "Nadine WERATSCHNIG" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/tereza-fiserova", + "name": "Tereza FISEROVA" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/viktoriia-us", + "name": "Viktoriia US" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/nuria-vilarrubla", + "name": "Nuria VILARRUBLA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/monika-skachova", + "name": "Monika SKACHOVA" + }, + "country": "Slovakia" + } + ], + "type": "single" + }, + "women-s-kayak": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/ricarda-funk", + "name": "Ricarda FUNK" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jdboaiynbldveloipdde", + "meta_url": "https://olympics.com/en/athletes/maialen-chourraut", + "name": "Maialen CHOURRAUT" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1620817982/primary/flolyx0evszciu8ysirq", + "meta_url": "https://olympics.com/en/athletes/jessica-fox", + "name": "Jessica FOX" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/stefanie-horn", + "name": "Stefanie HORN" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/klaudia-kinga-zwolinska", + "name": "Klaudia Kinga ZWOLINSKA" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/luuka-jones", + "name": "Luuka JONES" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/martina-wegman", + "name": "Martina WEGMAN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/viktoriia-us", + "name": "Viktoriia US" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/eliska-mintalova", + "name": "Eliska MINTALOVA" + }, + "country": "Slovakia" + } + ], + "type": "single" + } + }, + "canoe-sprint": { + "men-s-canoe-double-1000m": { + "participants": [ + { + "country": "Cuba", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + } + ], + "type": "team" + }, + "men-s-canoe-single-1000m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1660836169/primary/ovsxg6udj1jrhfwyg5bb", + "meta_url": "https://olympics.com/en/athletes/isaquias-queiroz-dos-santos", + "name": "Isaquias QUEIROZ DOS SANTOS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/hao-liu-x6188", + "name": "Hao LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/serghei-tarnovschi", + "name": "Serghei TARNOVSCHI" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/adrien-bart", + "name": "Adrien BART" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/martin-fuksa", + "name": "Martin FUKSA" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/conrad-robin-scheibner", + "name": "Conrad-Robin SCHEIBNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cexcty1jmtjawpbjsfun", + "meta_url": "https://olympics.com/en/athletes/fernando-dayan-jorge", + "name": "Fernando Dayan JORGE ENRIQUEZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/pengfei-zheng", + "name": "Pengfei ZHENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/jose-ramon-pelier-cordova", + "name": "Jose Ramon PELIER CORDOVA" + }, + "country": "Cuba" + } + ], + "type": "single" + }, + "men-s-kayak-double-1000m": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Czechia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + } + ], + "type": "team" + }, + "men-s-kayak-four-500m": { + "participants": [ + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Slovakia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Portugal", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + }, + "men-s-kayak-single-1000m": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/balint-kopasz", + "name": "Balint KOPASZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/adam-varga-x2538", + "name": "Adam VARGA" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kgeyx3hn1uylkc2ijwio", + "meta_url": "https://olympics.com/en/athletes/fernando-pimenta", + "name": "Fernando PIMENTA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/jacob-schopf", + "name": "Jacob SCHOPF" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/josef-dostal", + "name": "Josef DOSTAL" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/dong-zhang", + "name": "Dong ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dq9qli2eqvl8mbxsshwm", + "meta_url": "https://olympics.com/en/athletes/thomas-green", + "name": "Thomas GREEN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png", + "meta_url": "https://olympics.com/en/athletes/agustin-vernice", + "name": "Agustin VERNICE" + }, + "country": "Argentina" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/samuele-burgo", + "name": "Samuele BURGO" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-kayak-single-200m": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/sandor-totka", + "name": "Sandor TOTKA" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/manfredi-rizza", + "name": "Manfredi RIZZA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/liam-heath", + "name": "Liam HEATH" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/kolos-csizmadia", + "name": "Kolos CSIZMADIA" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/carlos-arevalo-lopez", + "name": "Carlos AREVALO LOPEZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/petter-menning", + "name": "Petter MENNING" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cpqltp0kptywwaqag1wv", + "meta_url": "https://olympics.com/en/athletes/saul-craviotto", + "name": "Saul CRAVIOTTO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png", + "meta_url": "https://olympics.com/en/athletes/roberts-akmens", + "name": "Roberts AKMENS" + }, + "country": "Latvia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/d39l8xdxrbk30csoavud", + "meta_url": "https://olympics.com/en/athletes/maxime-beaumont", + "name": "Maxime BEAUMONT" + }, + "country": "France" + } + ], + "type": "single" + }, + "women-s-canoe-double-500m": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Cuba", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png" + }, + { + "country": "Rep of Moldova", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Chile", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHI.png" + } + ], + "type": "team" + }, + "women-s-canoe-single-200m": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/nevin-harrison", + "name": "Nevin HARRISON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/laurence-vincent-lapointe", + "name": "Laurence VINCENT-LAPOINTE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/liudmyla-luzan", + "name": "Liudmyla LUZAN" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/dorota-borowska", + "name": "Dorota BOROWSKA" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/antia-jacome", + "name": "Antia JACOME" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wenjun-lin", + "name": "Wenjun LIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/olesia-romasenko", + "name": "Olesia ROMASENKO" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/katie-vincent", + "name": "Katie VINCENT" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/virag-balla", + "name": "Virag BALLA" + }, + "country": "Hungary" + } + ], + "type": "single" + }, + "women-s-kayak-double-500m": { + "participants": [ + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + } + ], + "type": "team" + }, + "women-s-kayak-four-500m": { + "participants": [ + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "women-s-kayak-single-200m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/o428zmlorhnfao6ojy8m", + "meta_url": "https://olympics.com/en/athletes/lisa-carrington", + "name": "Lisa CARRINGTON" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pcbbuhtkfwj1mgsaazws", + "meta_url": "https://olympics.com/en/athletes/teresa-portela", + "name": "Teresa PORTELA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ubflika6iwbdb7rvbvte", + "meta_url": "https://olympics.com/en/athletes/emma-jorgensen", + "name": "Emma JORGENSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/marta-walczykiewicz", + "name": "Marta WALCZYKIEWICZ" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/linnea-stensils", + "name": "Linnea STENSILS" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/dora-lucz", + "name": "Dora LUCZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/francesca-genzo", + "name": "Francesca GENZO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/deborah-kerr", + "name": "Deborah KERR" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/andreanne-langlois", + "name": "Andreanne LANGLOIS" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-kayak-single-500m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/o428zmlorhnfao6ojy8m", + "meta_url": "https://olympics.com/en/athletes/lisa-carrington", + "name": "Lisa CARRINGTON" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/tamara-csipes", + "name": "Tamara CSIPES" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ubflika6iwbdb7rvbvte", + "meta_url": "https://olympics.com/en/athletes/emma-jorgensen", + "name": "Emma JORGENSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ecq8oftdqtwqub3pr3jh", + "meta_url": "https://olympics.com/en/athletes/danuta-kozak", + "name": "Danuta KOZAK" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/linnea-stensils", + "name": "Linnea STENSILS" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/hermien-peters", + "name": "Hermien PETERS" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624965244/primary/x36uyvpeezzpp3norv18", + "meta_url": "https://olympics.com/en/athletes/teresa-portela-1", + "name": "Teresa PORTELA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/alyce-burnett", + "name": "Alyce BURNETT" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/caitlin-ryan", + "name": "Caitlin RYAN" + }, + "country": "New Zealand" + } + ], + "type": "single" + } + }, + "cycling-bmx-freestyle": { + "men-s-park": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1690107475/primary/tff381d8bnudpta8sbb5", + "meta_url": "https://olympics.com/en/athletes/logan-martin", + "name": "Logan MARTIN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1672308882/primary/uefqdiizxyktg19khi9p", + "meta_url": "https://olympics.com/en/athletes/daniel-dhers", + "name": "Daniel DHERS" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/declan-brooks", + "name": "Declan BROOKS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRC.png", + "meta_url": "https://olympics.com/en/athletes/kenneth-fabian-tencio-esquivel", + "name": "Kenneth Fabian TENCIO ESQUIVEL" + }, + "country": "Costa Rica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695988041/primary/ynpfcgydyhbduzprjffh", + "meta_url": "https://olympics.com/en/athletes/rimu-nakamura", + "name": "Rim NAKAMURA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/irek-rizaev", + "name": "Irek RIZAEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707482629/primary/w5sidq2kbp8ft3hwy4vg", + "meta_url": "https://olympics.com/en/athletes/anthony-jeanjean", + "name": "Anthony JEANJEAN" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/justin-dowell", + "name": "Justin DOWELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/nick-bruce", + "name": "Nick BRUCE" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-park": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694852507/primary/pj06aekpr0ajrymgmyra", + "meta_url": "https://olympics.com/en/athletes/charlotte-worthington", + "name": "Charlotte WORTHINGTON" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691050747/primary/zog4f74yxhnnvjcfqvnt", + "meta_url": "https://olympics.com/en/athletes/hannah-roberts", + "name": "Hannah ROBERTS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/nikita-ducarroz", + "name": "Nikita DUCARROZ" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/perris-benegas", + "name": "Perris BENEGAS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/natalya-diehm", + "name": "Natalya DIEHM" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lara-marie-lessmann", + "name": "Lara Marie LESSMANN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/minato-oike", + "name": "Minato OIKE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHI.png", + "meta_url": "https://olympics.com/en/athletes/macarena-perez-grasset", + "name": "Macarena PEREZ GRASSET" + }, + "country": "Chile" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/elizaveta-posadskikh", + "name": "Elizaveta POSADSKIKH" + }, + "country": "ROC" + } + ], + "type": "single" + } + }, + "cycling-bmx-racing": { + "men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/p4rckfuhjfxec9d8nqx1", + "meta_url": "https://olympics.com/en/athletes/niek-kimmann", + "name": "Niek KIMMANN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/kye-whyte", + "name": "Kye WHYTE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/carlos-alberto-ramirez-yepes", + "name": "Carlos Alberto RAMIREZ YEPES" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/sylvain-andre", + "name": "Sylvain ANDRE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/alfredo-campo", + "name": "Alfredo CAMPO" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/romain-mahieu", + "name": "Romain MAHIEU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1723039365/primary/ozrnkyvm3wrwqri19rv7", + "meta_url": "https://olympics.com/en/athletes/joris-daudet", + "name": "Joris DAUDET" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wp437rabpdjgitloeskx", + "meta_url": "https://olympics.com/en/athletes/connor-fields", + "name": "Connor FIELDS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png", + "meta_url": "https://olympics.com/en/athletes/nicolas-exequiel-torres", + "name": "Nicolas Exequiel TORRES" + }, + "country": "Argentina" + } + ], + "type": "single" + }, + "women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/bethany-shriever", + "name": "Bethany SHRIEVER" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xtxtalj2soh3tg1sqh7i", + "meta_url": "https://olympics.com/en/athletes/mariana-pajon", + "name": "Mariana PAJÓN" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/merel-smulders", + "name": "Merel SMULDERS" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/felicia-stancil", + "name": "Felicia STANCIL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/lauren-reynolds", + "name": "Lauren REYNOLDS" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/simone-christensen", + "name": "Simone CHRISTENSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/axelle-etienne", + "name": "Axelle ETIENNE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/drew-mechielsen", + "name": "Drew MECHIELSEN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/saya-sakakibara", + "name": "Saya SAKAKIBARA" + }, + "country": "Australia" + } + ], + "type": "single" + } + }, + "cycling-mountain-bike": { + "men-s-cross-country": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ahx23rdmu0bbu0eedp6r", + "meta_url": "https://olympics.com/en/athletes/thomas-pidcock", + "name": "Thomas PIDCOCK" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/l6u7z3wvlr1wgshfv8ry", + "meta_url": "https://olympics.com/en/athletes/mathias-flueckiger", + "name": "Mathias FLUECKIGER" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iaitrcz1pn7kdb58easo", + "meta_url": "https://olympics.com/en/athletes/david-valero-serrano", + "name": "David VALERO SERRANO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ejofdxu9bevcw8p5dczc", + "meta_url": "https://olympics.com/en/athletes/nino-schurter", + "name": "Nino SCHURTER" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qhp832d1jssoy0tyl0bp", + "meta_url": "https://olympics.com/en/athletes/victor-koretzky", + "name": "Victor KORETZKY" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/anton-cooper", + "name": "Anton COOPER" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/vlad-dascalu", + "name": "Vlad DASCALU" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/RSA.png", + "meta_url": "https://olympics.com/en/athletes/alan-hatherly", + "name": "Alan HATHERLY" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/jordan-sarrou", + "name": "Jordan SARROU" + }, + "country": "France" + } + ], + "type": "single" + }, + "women-s-cross-country": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/azkbwbsjemxqj6yhjlrz", + "meta_url": "https://olympics.com/en/athletes/jolanda-neff", + "name": "Jolanda NEFF" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xnttqzhwsdquw7genlks", + "meta_url": "https://olympics.com/en/athletes/sina-frei", + "name": "Sina FREI" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/oyjbpejscg8lsjixdkvt", + "meta_url": "https://olympics.com/en/athletes/linda-indergand", + "name": "Linda INDERGAND" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/kata-blanka-vas", + "name": "Kata Blanka VAS" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/anne-terpstra", + "name": "Anne TERPSTRA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bgekwevytquepy5nnqev", + "meta_url": "https://olympics.com/en/athletes/loana-lecomte", + "name": "Loana LECOMTE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/peg6eihu3xtpyddlgr2k", + "meta_url": "https://olympics.com/en/athletes/evie-richards", + "name": "Evie RICHARDS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/yana-belomoyna", + "name": "Yana BELOMOYNA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/haley-batten", + "name": "Haley BATTEN" + }, + "country": "United States" + } + ], + "type": "single" + } + }, + "cycling-road": { + "men-s-individual-time-trial": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qqyfmj4clnyvwzts9jrj", + "meta_url": "https://olympics.com/en/athletes/primoz-roglic", + "name": "Primoz ROGLIC" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/tom-dumoulin", + "name": "Tom DUMOULIN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/rohan-dennis", + "name": "Rohan DENNIS" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/stefan-kueng", + "name": "Stefan KUENG" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/filippo-ganna", + "name": "Filippo GANNA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1596904905/primary/hlimkyhbned3ttgvopf7", + "meta_url": "https://olympics.com/en/athletes/wout-van-aert", + "name": "Wout VAN AERT" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/kasper-asgreen", + "name": "Kasper ASGREEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/rigoberto-uran", + "name": "Rigoberto URAN" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vynbryblopoxjkp9gpjm", + "meta_url": "https://olympics.com/en/athletes/remco-evenepoel", + "name": "Remco EVENEPOEL" + }, + "country": "Belgium" + } + ], + "type": "single" + }, + "men-s-road-race": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/acmzgsrs1jgjnrcs52fo", + "meta_url": "https://olympics.com/en/athletes/richard-carapaz", + "name": "Richard CARAPAZ" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1596904905/primary/hlimkyhbned3ttgvopf7", + "meta_url": "https://olympics.com/en/athletes/wout-van-aert", + "name": "Wout VAN AERT" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wz7lh2qegawi5fjpkh80", + "meta_url": "https://olympics.com/en/athletes/tadej-pogacar", + "name": "Tadej POGACAR" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/bauke-mollema", + "name": "Bauke MOLLEMA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/michael-woods-1", + "name": "Michael WOODS" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/brandon-mcnulty", + "name": "Brandon MCNULTY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/david-gaudu", + "name": "David GAUDU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/rigoberto-uran", + "name": "Rigoberto URAN" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/adam-yates", + "name": "Adam YATES" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-individual-time-trial": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1683299255/primary/giwsdhgcznejsdhgkubv", + "meta_url": "https://olympics.com/en/athletes/annemiek-van-vleuten", + "name": "Annemiek VAN VLEUTEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/marlen-reusser", + "name": "Marlen REUSSER" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/s3jobb2xspripzbkche4", + "meta_url": "https://olympics.com/en/athletes/anna-van-der-breggen", + "name": "Anna VAN DER BREGGEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/grace-brown", + "name": "Grace BROWN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/amber-neben", + "name": "Amber NEBEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lisa-brennauer", + "name": "Lisa BRENNAUER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/r6z1r9vjjr1g202jlm78", + "meta_url": "https://olympics.com/en/athletes/chloe-dygert", + "name": "Chloe DYGERT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1677940110/primary/mf5rk9tv3lrmwzp6pl8x", + "meta_url": "https://olympics.com/en/athletes/ashleigh-moolman-pasio", + "name": "Ashleigh MOOLMAN-PASIO" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/juliette-labous", + "name": "Juliette LABOUS" + }, + "country": "France" + } + ], + "type": "single" + }, + "women-s-road-race": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/anna-kiesenhofer", + "name": "Anna KIESENHOFER" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1683299255/primary/giwsdhgcznejsdhgkubv", + "meta_url": "https://olympics.com/en/athletes/annemiek-van-vleuten", + "name": "Annemiek VAN VLEUTEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/elisa-longo-borghini", + "name": "Elisa LONGO BORGHINI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/lotte-kopecky", + "name": "Lotte KOPECKY" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1618913514/primary/umgnjwhyopzfzx2ubogy", + "meta_url": "https://olympics.com/en/athletes/marianne-vos", + "name": "Marianne VOS" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lisa-brennauer", + "name": "Lisa BRENNAUER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/coryn-rivera", + "name": "Coryn RIVERA" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/marta-cavalli", + "name": "Marta Cavalli" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/olga-zabelinskaya", + "name": "Olga ZABELINSKAYA" + }, + "country": "Uzbekistan" + } + ], + "type": "single" + } + }, + "cycling-track": { + "men-s-keirin": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wzb31wkjeycsaggufrop", + "meta_url": "https://olympics.com/en/athletes/jason-kenny", + "name": "Jason KENNY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAS.png", + "meta_url": "https://olympics.com/en/athletes/azizulhasni-awang", + "name": "Azizulhasni AWANG" + }, + "country": "Malaysia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691050660/primary/klokzmnedruaztitectn", + "meta_url": "https://olympics.com/en/athletes/harrie-lavreysen", + "name": "Harrie LAVREYSEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUR.png", + "meta_url": "https://olympics.com/en/athletes/jair-tjon-en-fa", + "name": "Jair TJON EN FA" + }, + "country": "Suriname" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/matthew-glaetzer", + "name": "Matthew GLAETZER" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/maximilian-levy", + "name": "Maximilian LEVY" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yuta-wakimoto", + "name": "Yuta WAKIMOTO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jack-carlin", + "name": "Jack CARLIN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png", + "meta_url": "https://olympics.com/en/athletes/kwesi-browne", + "name": "Kwesi BROWNE" + }, + "country": "Tri. & Tobago" + } + ], + "type": "single" + }, + "men-s-madison": { + "participants": [ + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + } + ], + "type": "team" + }, + "men-s-omnium": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/matthew-walls", + "name": "Matthew WALLS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/campbell-stewart", + "name": "Campbell STEWART" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/elia-viviani", + "name": "Elia VIVIANI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/benjamin-thomas", + "name": "Benjamin THOMAS" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/niklas-larsen", + "name": "Niklas LARSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/jan-willem-van-schip", + "name": "Jan-Willem VAN SCHIP" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/thery-schir", + "name": "Thery SCHIR" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/gavin-hoover", + "name": "Gavin HOOVER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/roger-kluge", + "name": "Roger KLUGE" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-sprint": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691050660/primary/klokzmnedruaztitectn", + "meta_url": "https://olympics.com/en/athletes/harrie-lavreysen", + "name": "Harrie LAVREYSEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/jeffrey-hoogland", + "name": "Jeffrey HOOGLAND" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jack-carlin", + "name": "Jack CARLIN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/denis-dmitriev", + "name": "Denis DMITRIEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/maximilian-levy", + "name": "Maximilian LEVY" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png", + "meta_url": "https://olympics.com/en/athletes/nicholas-paul", + "name": "Nicholas PAUL" + }, + "country": "Tri. & Tobago" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/sebastien-vigier", + "name": "Sebastien VIGIER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wzb31wkjeycsaggufrop", + "meta_url": "https://olympics.com/en/athletes/jason-kenny", + "name": "Jason KENNY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yuta-wakimoto", + "name": "Yuta WAKIMOTO" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "men-s-team-pursuit": { + "participants": [ + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + } + ], + "type": "team" + }, + "men-s-team-sprint": { + "participants": [ + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + } + ], + "type": "team" + }, + "women-s-keirin": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/shanne-braspennincx", + "name": "Shanne BRASPENNINCX" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/ellesse-andrews", + "name": "Ellesse ANDREWS" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/lauriane-genest", + "name": "Lauriane GENEST" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/olena-starikova", + "name": "Olena STARIKOVA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kelsey-mitchell", + "name": "Kelsey MITCHELL" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/liubov-basova", + "name": "Liubov BASOVA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/emma-hinze", + "name": "Emma HINZE" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/wai-sze-lee", + "name": "Wai Sze LEE" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kaarle-mcculloch", + "name": "Kaarle MCCULLOCH" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-s-madison": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "women-s-omnium": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/jennifer-valente", + "name": "Jennifer VALENTE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yumi-kajihara", + "name": "Yumi KAJIHARA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/kirsten-wild", + "name": "Kirsten WILD" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/amalie-dideriksen", + "name": "Amalie DIDERIKSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/anita-yvonne-stenberg", + "name": "Anita Yvonne STENBERG" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624265206/primary/hk0g7viorpmkiiq2ybsf", + "meta_url": "https://olympics.com/en/athletes/laura-kenny", + "name": "Laura KENNY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/maria-martins-x4749", + "name": "Maria MARTINS" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/clara-copponi", + "name": "Clara COPPONI" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/allison-beveridge", + "name": "Allison BEVERIDGE" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-sprint": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kelsey-mitchell", + "name": "Kelsey MITCHELL" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/olena-starikova", + "name": "Olena STARIKOVA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/wai-sze-lee", + "name": "Wai Sze LEE" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/emma-hinze", + "name": "Emma HINZE" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lea-sophie-friedrich", + "name": "Lea Sophie FRIEDRICH" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/katy-marchant", + "name": "Katy MARCHANT" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/shanne-braspennincx", + "name": "Shanne BRASPENNINCX" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/lauriane-genest", + "name": "Lauriane GENEST" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/mathilde-gros", + "name": "Mathilde GROS" + }, + "country": "France" + } + ], + "type": "single" + }, + "women-s-team-pursuit": { + "participants": [ + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + } + ], + "type": "team" + }, + "women-s-team-sprint": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Lithuania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + } + ], + "type": "team" + } + }, + "diving": { + "men-s-10m-platform": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/klg5vovnaouj5vqqhqyp", + "meta_url": "https://olympics.com/en/athletes/yuan-cao", + "name": "Yuan CAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jian-yang-x3822", + "name": "Jian YANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yhx2nabtwcbzfbin2kxx", + "meta_url": "https://olympics.com/en/athletes/thomas-daley", + "name": "Thomas DALEY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/aleksandr-bondar", + "name": "Aleksandr BONDAR" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/viktor-minibaev", + "name": "Viktor MINIBAEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/oleksii-sereda", + "name": "Oleksii SEREDA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/rikuto-tamai", + "name": "Rikuto TAMAI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/cassiel-rousseau", + "name": "Cassiel ROUSSEAU" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/jordan-windle", + "name": "Jordan WINDLE" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-3m-springboard": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/siyi-xie", + "name": "Siyi XIE" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1689412286/primary/msqbp2rwa4ynvh9cw2np", + "meta_url": "https://olympics.com/en/athletes/zongyuan-wang", + "name": "Zongyuan WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nrcgkccsyhjkr28dwhts", + "meta_url": "https://olympics.com/en/athletes/jack-laugher", + "name": "Jack LAUGHER" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/haram-woo", + "name": "Haram WOO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/evgenii-kuznetsov", + "name": "Evgenii KUZNETSOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/rommel-pacheco", + "name": "Rommel PACHECO" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/martin-wolfram", + "name": "Martin WOLFRAM" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/anton-down-jenkins", + "name": "Anton DOWN-JENKINS" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/james-heatly", + "name": "James HEATLY" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "men-s-synchronised-10m-platform": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + }, + "men-s-synchronised-3m-springboard": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + } + ], + "type": "team" + }, + "women-s-10m-platform": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696003493/primary/ekuattnnf4cx3pfbuyrw", + "meta_url": "https://olympics.com/en/athletes/hongchan-quan", + "name": "Hongchan QUAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yuxi-chen", + "name": "Yuxi CHEN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623138126/primary/bugcwsf1qrbte3b83xfn", + "meta_url": "https://olympics.com/en/athletes/melissa-wu", + "name": "Melissa WU" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xoba8hvqbxpataimlbaq", + "meta_url": "https://olympics.com/en/athletes/gabriela-belem-agundez-garcia", + "name": "Gabriela Belem AGÚNDEZ GARCIA" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/delaney-schnell", + "name": "Delaney SCHNELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xjjo8svznwom1j16dvml", + "meta_url": "https://olympics.com/en/athletes/alejandra-orozco", + "name": "Alejandra OROZCO" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pcdwthydnixy6hnicsbk", + "meta_url": "https://olympics.com/en/athletes/andrea-spendolini-sirieix", + "name": "Andrea SPENDOLINI SIRIEIX" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/elena-wassen-x8110", + "name": "Elena WASSEN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/lois-toulson", + "name": "Lois TOULSON" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-3m-springboard": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/l6r8l9iargl28rntaulv", + "meta_url": "https://olympics.com/en/athletes/tingmao-shi", + "name": "Tingmao SHI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/han-wang", + "name": "Han WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/krysta-palmer", + "name": "Krysta PALMER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAS.png", + "meta_url": "https://olympics.com/en/athletes/nur-dhabitah-sabri", + "name": "Nur Dhabitah SABRI" + }, + "country": "Malaysia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/inge-jansen", + "name": "Inge JANSEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/aranza-vazquez-montano", + "name": "Aranza VAZQUEZ MONTANO" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/tina-punzel", + "name": "Tina PUNZEL" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qfe8kztpmpdi5a21hbkm", + "meta_url": "https://olympics.com/en/athletes/jennifer-abel", + "name": "Jennifer ABEL" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/hailey-hernandez", + "name": "Hailey HERNANDEZ" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-synchronised-10m-platform": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Malaysia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAS.png" + } + ], + "type": "team" + }, + "women-s-synchronised-3m-springboard": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + } + }, + "equestrian": { + "dressage-individual": { + "participants": [ + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + } + ], + "type": "team" + }, + "dressage-team": { + "participants": [ + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Portugal", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "eventing-individual": { + "participants": [ + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + } + ], + "type": "team" + }, + "eventing-team": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + }, + "jumping-individual": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + } + ], + "type": "team" + }, + "jumping-team": { + "participants": [ + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + } + ], + "type": "team" + } + }, + "fencing": { + "men-s-epee-individual": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/romain-cannone", + "name": "Romain CANNONE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/gergely-siklosi", + "name": "Gergely SIKLOSI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/igor-reizlin", + "name": "Igor REIZLIN" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/andrea-santarelli", + "name": "Andrea SANTARELLI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/sergey-bida", + "name": "Sergey BIDA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/masaru-yamada", + "name": "Masaru YAMADA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/sangyoung-park", + "name": "Sangyoung PARK" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/mohamed-elsayed-x6068", + "name": "Mohamed ELSAYED" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/bas-verwijlen", + "name": "Bas VERWIJLEN" + }, + "country": "Netherlands" + } + ], + "type": "single" + }, + "men-s-epee-team": { + "participants": [ + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "men-s-foil-individual": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/ka-long-cheung", + "name": "Ka Long CHEUNG" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ulqnhsl1qfrzv7se135n", + "meta_url": "https://olympics.com/en/athletes/daniele-garozzo", + "name": "Daniele GAROZZO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/alexander-choupenitch", + "name": "Alexander CHOUPENITCH" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/takahiro-shikine", + "name": "Takahiro SHIKINE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wiwcavhdveskxuxy5b4z", + "meta_url": "https://olympics.com/en/athletes/enzo-lefort", + "name": "Enzo LEFORT" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/alaaeldin-abouelkassem", + "name": "Alaaeldin ABOUELKASSEM" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707393930/primary/dwodc4ok6cscf5gkb2dv", + "meta_url": "https://olympics.com/en/athletes/mohamed-hamza", + "name": "Mohamed HAMZA" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/kirill-borodachev", + "name": "Kirill BORODACHEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alessio-foconi", + "name": "Alessio FOCONI" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-foil-team": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Hong Kong, China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + } + ], + "type": "team" + }, + "men-s-sabre-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fiprzlzmlaym1ocpnfee", + "meta_url": "https://olympics.com/en/athletes/aron-szilagyi", + "name": "Aron SZILAGYI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/luigi-samele", + "name": "Luigi SAMELE" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/junghwan-kim", + "name": "Junghwan KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ldopekbykgupmz9vvrrk", + "meta_url": "https://olympics.com/en/athletes/sandro-bazadze", + "name": "Sandro BAZADZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696001032/primary/mtcx9e4b8qbb9efwktqb", + "meta_url": "https://olympics.com/en/athletes/sanguk-oh", + "name": "Sanguk OH" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/kamil-ibragimov", + "name": "Kamil IBRAGIMOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/enrico-berre", + "name": "Enrico BERRE'" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/ali-pakdaman", + "name": "Ali PAKDAMAN" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/eli-dershwitz", + "name": "Eli DERSHWITZ" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-sabre-team": { + "participants": [ + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + }, + { + "country": "Isl Rep of Iran", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + }, + "women-s-epee-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/i9hlzgv7wd7afgrrmb3d", + "meta_url": "https://olympics.com/en/athletes/yiwen-sun", + "name": "Yiwen SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bk3iea0avrr3bwgwhpab", + "meta_url": "https://olympics.com/en/athletes/ana-maria-popescu", + "name": "Ana Maria POPESCU" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png", + "meta_url": "https://olympics.com/en/athletes/katrina-lehis", + "name": "Katrina LEHIS" + }, + "country": "Estonia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/aizanat-murtazaeva", + "name": "Aizanat MURTAZAEVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624616753/primary/syyyxthldlyieisgmcfe", + "meta_url": "https://olympics.com/en/athletes/man-wai-vivian-kong", + "name": "Man Wai Vivian KONG" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/federica-isola", + "name": "Federica ISOLA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png", + "meta_url": "https://olympics.com/en/athletes/julia-beljajeva", + "name": "Julia BELJAJEVA" + }, + "country": "Estonia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hfk242rgar5phxfk4eku", + "meta_url": "https://olympics.com/en/athletes/rossella-fiamingo", + "name": "Rossella FIAMINGO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/sheng-lin", + "name": "Sheng LIN" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "women-s-epee-team": { + "participants": [ + { + "country": "Estonia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Hong Kong, China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + } + ], + "type": "team" + }, + "women-s-foil-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pwmllxz4hg97xmdmshsi", + "meta_url": "https://olympics.com/en/athletes/lee-kiefer", + "name": "Lee KIEFER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jsfl4di65rdmgybb4rgb", + "meta_url": "https://olympics.com/en/athletes/inna-deriglazova", + "name": "Inna DERIGLAZOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bzujsbglg98ft5etqbhp", + "meta_url": "https://olympics.com/en/athletes/larisa-korobeynikova", + "name": "Larisa KOROBEYNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707393825/primary/rlnbu7j5a1reu6xlhpoz", + "meta_url": "https://olympics.com/en/athletes/alice-volpi", + "name": "Alice VOLPI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/arianna-errigo", + "name": "Arianna ERRIGO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yuka-ueno", + "name": "Yuka UENO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/hee-sook-jeon", + "name": "Hee Sook JEON" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kelleigh-ryan", + "name": "Kelleigh RYAN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1678349418/primary/pzdizxvauvfozudivs0p", + "meta_url": "https://olympics.com/en/athletes/ysaora-thibus", + "name": "Ysaora THIBUS" + }, + "country": "France" + } + ], + "type": "single" + }, + "women-s-foil-team": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + } + ], + "type": "team" + }, + "women-s-sabre-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vz8gfnc8ftiapitd7vcx", + "meta_url": "https://olympics.com/en/athletes/sofia-pozdniakova", + "name": "Sofia POZDNIAKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/znx2uug90up6pqp3b0qe", + "meta_url": "https://olympics.com/en/athletes/sofiya-velikaya", + "name": "Sofiya VELIKAYA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cvc4bbklqrzk1gjepple", + "meta_url": "https://olympics.com/en/athletes/manon-brunet", + "name": "Manon BRUNET" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/anna-marton", + "name": "Anna MARTON" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/mariel-zagunis", + "name": "Mariel ZAGUNIS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jiarui-qian", + "name": "Jiarui QIAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/olga-nikitina", + "name": "Olga NIKITINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/zaynab-dayibekova", + "name": "Zaynab DAYIBEKOVA" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/liza-pusztai", + "name": "Liza PUSZTAI" + }, + "country": "Hungary" + } + ], + "type": "single" + }, + "women-s-sabre-team": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Tunisia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png" + } + ], + "type": "team" + } + }, + "football": { + "men": { + "participants": [ + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Côte d'Ivoire", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CIV.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Zambia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ZAM.png" + } + ], + "type": "team" + } + }, + "golf": { + "men-s-individual-stroke-play": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/xander-schauffele", + "name": "Xander SCHAUFFELE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/rory-sabbatini", + "name": "Rory SABBATINI" + }, + "country": "Slovakia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/c-t-pan", + "name": "C.T. PAN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/collin-morikawa", + "name": "Collin MORIKAWA" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHI.png", + "meta_url": "https://olympics.com/en/athletes/mito-pereira", + "name": "Mito PEREIRA" + }, + "country": "Chile" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tquomy4k4zi5soknpm7a", + "meta_url": "https://olympics.com/en/athletes/rory-mcilroy", + "name": "Rory MCILROY" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/juan-sebastian-munoz-amaya", + "name": "Juan Sebastian MUNOZ AMAYA" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/hideki-matsuyama", + "name": "Hideki MATSUYAMA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/paul-casey", + "name": "Paul CASEY" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-individual-stroke-play": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/chrj1laubabvs0jlwbnf", + "meta_url": "https://olympics.com/en/athletes/nelly-korda", + "name": "Nelly KORDA" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/mone-inami", + "name": "Mone INAMI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/re6z5tfrwftozmtkwjzn", + "meta_url": "https://olympics.com/en/athletes/lydia-ko", + "name": "Lydia KO" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kxcj19wxt8vznur2l73j", + "meta_url": "https://olympics.com/en/athletes/aditi-ashok", + "name": "Aditi ASHOK" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/hannah-green", + "name": "Hannah GREEN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/emily-kristine-pedersen", + "name": "Emily Kristine PEDERSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png", + "meta_url": "https://olympics.com/en/athletes/stephanie-meadow", + "name": "Stephanie MEADOW" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shanshan-feng", + "name": "Shanshan FENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PHI.png", + "meta_url": "https://olympics.com/en/athletes/yuka-saso", + "name": "Yuka SASO" + }, + "country": "Philippines" + } + ], + "type": "single" + } + }, + "handball": { + "men": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + }, + { + "country": "Bahrain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRN.png" + }, + { + "country": "Portugal", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Montenegro", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MNE.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + } + ], + "type": "team" + } + }, + "hockey": { + "men": { + "participants": [ + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + } + }, + "judo": { + "men-100-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/imrbxjdtpyf41vwojpzo", + "meta_url": "https://olympics.com/en/athletes/aaron-wolf", + "name": "Aaron WOLF" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/guham-cho", + "name": "Guham CHO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/jorge-fonseca", + "name": "Jorge FONSECA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/niiaz-iliasov", + "name": "Niiaz ILIASOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/shady-elnahas", + "name": "Shady ELNAHAS" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/varlam-liparteliani", + "name": "Varlam LIPARTELIANI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/peter-paltchik", + "name": "Peter PALTCHIK" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/karl-richard-frey", + "name": "Karl-Richard FREY" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/zelym-kotsoiev", + "name": "Zelym KOTSOIEV" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-60-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rrqeccgsevadwrmtanpc", + "meta_url": "https://olympics.com/en/athletes/naohisa-takato", + "name": "Naohisa TAKATO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/yung-wei-yang", + "name": "Yung Wei YANG" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dabfhlpsrlanwjlitczj", + "meta_url": "https://olympics.com/en/athletes/yeldos-smetov", + "name": "Yeldos SMETOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wgkthp7emlvodqhvo25w", + "meta_url": "https://olympics.com/en/athletes/luka-mkheidze", + "name": "Luka MKHEIDZE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/tornike-tsjakadoea", + "name": "Tornike TSJAKADOEA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/won-jin-kim", + "name": "Won Jin KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/artem-lesiuk", + "name": "Artem LESIUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/lukhumi-chkhvimiani", + "name": "Lukhumi CHKHVIMIANI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/karamat-huseynov", + "name": "Karamat HUSEYNOV" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-66-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/drcr0rjlajt1tr32ckdy", + "meta_url": "https://olympics.com/en/athletes/hifumi-abe", + "name": "Hifumi ABE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/vazha-margvelashvili", + "name": "Vazha MARGVELASHVILI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/baul-an", + "name": "Baul AN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/daniel-cargnin", + "name": "Daniel CARGNIN" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/manuel-lombardo", + "name": "Manuel LOMBARDO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/baruch-shmailov", + "name": "Baruch SHMAILOV" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/baskhuu-yondonperenlei", + "name": "Baskhuu YONDONPERENLEI" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/adrian-gomboc", + "name": "Adrian GOMBOC" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/nathan-katz", + "name": "Nathan KATZ" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "men-73-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627297505/primary/pssil06nd1fvfo7ybvqx", + "meta_url": "https://olympics.com/en/athletes/shohei-ono", + "name": "Shohei ONO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/lasha-shavdatuashvili", + "name": "Lasha SHAVDATUASHVILI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/changrim-an", + "name": "Changrim AN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/tsogtbaatar-tsend-ochir", + "name": "Tsogtbaatar TSEND-OCHIR" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/rustam-orujov", + "name": "Rustam ORUJOV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/arthur-margelidon", + "name": "Arthur MARGELIDON" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOS.png", + "meta_url": "https://olympics.com/en/athletes/akil-gjakova", + "name": "Akil GJAKOVA" + }, + "country": "Kosovo" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/tohar-butbul", + "name": "Tohar BUTBUL" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DJI.png", + "meta_url": "https://olympics.com/en/athletes/aden-alexandre-houssein", + "name": "Aden-Alexandre HOUSSEIN" + }, + "country": "Djibouti" + } + ], + "type": "single" + }, + "men-81-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/lm2bzyulros3u2444fop", + "meta_url": "https://olympics.com/en/athletes/takanori-nagase", + "name": "Takanori NAGASE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/saeid-mollaei", + "name": "Saeid MOLLAEI" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/shamil-borchashvili", + "name": "Shamil BORCHASHVILI" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/matthias-casse", + "name": "Matthias CASSE" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/dominic-ressel", + "name": "Dominic RESSEL" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/tato-grigalashvili", + "name": "Tato GRIGALASHVILI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/alan-khubetsov", + "name": "Alan KHUBETSOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/sharofiddin-boltaboev", + "name": "Sharofiddin BOLTABOEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/murad-fatiyev", + "name": "Murad FATIYEV" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-90-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/lasha-bekauri", + "name": "Lasha BEKAURI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/eduard-trippel", + "name": "Eduard TRIPPEL" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/davlat-bobonov", + "name": "Davlat BOBONOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/krisztian-toth", + "name": "Krisztian TOTH" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/mihael-zgank", + "name": "Mihael ZGANK" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/mikhail-igolnikov", + "name": "Mikhail IGOLNIKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/nikoloz-sherazadishvili", + "name": "Nikoloz SHERAZADISHVILI" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/noel-van-t-end", + "name": "Noel VAN T END" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/mammadali-mehdiyev", + "name": "Mammadali MEHDIYEV" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-over-100-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/lukas-krpalek", + "name": "Lukas KRPALEK" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/guram-tushishvili", + "name": "Guram TUSHISHVILI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gp3dx2mhfrojf7q88a09", + "meta_url": "https://olympics.com/en/athletes/teddy-riner", + "name": "Teddy RINER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/tamerlan-bashaev", + "name": "Tamerlan BASHAEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/hisayoshi-harasawa", + "name": "Hisayoshi HARASAWA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/iakiv-khammo", + "name": "Iakiv KHAMMO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/rafael-silva", + "name": "Rafael SILVA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/bekmurod-oltiboev", + "name": "Bekmurod OLTIBOEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/ushangi-kokauri", + "name": "Ushangi KOKAURI" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "mixed-team": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Israel", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Mongolia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "None", + "img": null + } + ], + "type": "team" + }, + "women-48-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOS.png", + "meta_url": "https://olympics.com/en/athletes/distria-krasniqi", + "name": "Distria KRASNIQI" + }, + "country": "Kosovo" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/funa-tonaki", + "name": "Funa TONAKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/daria-bilodid", + "name": "Daria BILODID" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/urantsetseg-munkhbat", + "name": "Urantsetseg MUNKHBAT" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/shira-rishony", + "name": "Shira RISHONY" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/catarina-costa", + "name": "Catarina COSTA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chen-hao-lin", + "name": "Chen-Hao LIN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/u3ilc7hcordv7miks9mj", + "meta_url": "https://olympics.com/en/athletes/paula-pareto", + "name": "Paula PARETO" + }, + "country": "Argentina" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/gabriela-chibana", + "name": "Gabriela CHIBANA" + }, + "country": "Brazil" + } + ], + "type": "single" + }, + "women-52-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1628855524/primary/t4jca7xvi7xwfhmwhurj", + "meta_url": "https://olympics.com/en/athletes/uta-abe", + "name": "Uta ABE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ypwqbtxuwvntsitsk0up", + "meta_url": "https://olympics.com/en/athletes/amandine-buchard", + "name": "Amandine BUCHARD" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/odette-giuffrida", + "name": "Odette GIUFFRIDA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/chelsie-giles", + "name": "Chelsie GILES" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/reka-pupp", + "name": "Reka PUPP" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/fabienne-kocher", + "name": "Fabienne KOCHER" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/da-sol-park", + "name": "Da-Sol PARK" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/charline-van-snick", + "name": "Charline VAN SNICK" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/larissa-pimenta", + "name": "Larissa PIMENTA" + }, + "country": "Brazil" + } + ], + "type": "single" + }, + "women-57-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOS.png", + "meta_url": "https://olympics.com/en/athletes/nora-gjakova", + "name": "Nora GJAKOVA" + }, + "country": "Kosovo" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ep59fjvrnsz6knggfbql", + "meta_url": "https://olympics.com/en/athletes/sarah-leonie-cysique", + "name": "Sarah Leonie CYSIQUE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/tsukasa-yoshida", + "name": "Tsukasa YOSHIDA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/jessica-klimkait", + "name": "Jessica KLIMKAIT" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/eteri-liparteliani", + "name": "Eteri LIPARTELIANI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/kaja-kajzer", + "name": "Kaja KAJZER" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/julia-kowalczyk", + "name": "Julia KOWALCZYK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/timna-nelson-levy", + "name": "Timna NELSON LEVY" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/ivelina-ilieva", + "name": "Ivelina ILIEVA" + }, + "country": "Bulgaria" + } + ], + "type": "single" + }, + "women-63-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ikxxsjneqdkrnmlxigsi", + "meta_url": "https://olympics.com/en/athletes/clarisse-agbegnenou", + "name": "Clarisse AGBEGNENOU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jtgla1ritmt0dtkufh6k", + "meta_url": "https://olympics.com/en/athletes/tina-trstenjak", + "name": "Tina TRSTENJAK" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/maria-centracchio", + "name": "Maria CENTRACCHIO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/catherine-beauchemin-pinard", + "name": "Catherine BEAUCHEMIN-PINARD" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/juul-franssen", + "name": "Juul FRANSSEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/anriquelis-barrios", + "name": "Anriquelis BARRIOS" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/ketleyn-quadros", + "name": "Ketleyn QUADROS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/agata-ozdoba-blach", + "name": "Agata OZDOBA-BLACH" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/katharina-haecker", + "name": "Katharina HAECKER" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-70-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/chizuru-arai", + "name": "Chizuru ARAI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/michaela-polleres", + "name": "Michaela POLLERES" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/madina-taimazova", + "name": "Madina TAIMAZOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/sanne-van-dijke", + "name": "Sanne VAN DIJKE" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/barbara-matic", + "name": "Barbara MATIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/giovanna-scoccimarro", + "name": "Giovanna SCOCCIMARRO" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alice-bellandi", + "name": "Alice BELLANDI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/elisavet-teltsidou", + "name": "Elisavet TELTSIDOU" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/aoife-coughlan", + "name": "Aoife COUGHLAN" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-78-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/shori-hamada", + "name": "Shori HAMADA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/madeleine-malonga", + "name": "Madeleine MALONGA" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/anna-maria-wagner", + "name": "Anna-Maria WAGNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/mayra-aguiar", + "name": "Mayra AGUIAR" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/kaliema-antomarchi", + "name": "Kaliema ANTOMARCHI" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/hyunji-yoon", + "name": "Hyunji YOON" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/guusje-steenhuis", + "name": "Guusje STEENHUIS" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/aleksandra-babintseva", + "name": "Aleksandra BABINTSEVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/bernadette-graf", + "name": "Bernadette GRAF" + }, + "country": "Austria" + } + ], + "type": "single" + }, + "women-over-78-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fbdnrd8xdgmapgiuqudk", + "meta_url": "https://olympics.com/en/athletes/akira-sone", + "name": "Akira SONE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/thuxjc9zznvls7vultmn", + "meta_url": "https://olympics.com/en/athletes/idalys-ortiz", + "name": "Idalys ORTIZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/iryna-kindzerska", + "name": "Iryna KINDZERSKA" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/op1zd4t3e5hy1y88jms0", + "meta_url": "https://olympics.com/en/athletes/romane-dicko", + "name": "Romane DICKO" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shiyan-xu", + "name": "Shiyan XU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/kayra-sayit", + "name": "Kayra SAYIT" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704285594/primary/fbmlonrlddquenndzuf5", + "meta_url": "https://olympics.com/en/athletes/maria-suelen-altheman", + "name": "Maria Suelen ALTHEMAN" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/mijin-han", + "name": "Mijin HAN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BIH.png", + "meta_url": "https://olympics.com/en/athletes/larisa-ceric", + "name": "Larisa CERIC" + }, + "country": "Bosnia & Herzegovina" + } + ], + "type": "single" + } + }, + "karate": { + "men-s-kata": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ryo-kiyuna", + "name": "Ryo KIYUNA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/damian-quintero", + "name": "Damian QUINTERO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/ali-sofuoglu", + "name": "Ali SOFUOGLU" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/ariel-torres-gutierrez", + "name": "Ariel TORRES GUTIERREZ" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/antonio-jose-diaz-fernandez", + "name": "Antonio Jose DIAZ FERNANDEZ" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/heejun-park", + "name": "Heejun PARK" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/mattia-busato", + "name": "Mattia BUSATO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/ilja-smorguner", + "name": "Ilja SMORGUNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/yi-ta-wang", + "name": "Yi-Ta WANG" + }, + "country": "Chinese Taipei" + } + ], + "type": "single" + }, + "men-s-kumite-67kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/steven-da-costa", + "name": "Steven DA COSTA" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/eray-samdan", + "name": "Eray SAMDAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/darkhan-assadilov", + "name": "Darkhan ASSADILOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JOR.png", + "meta_url": "https://olympics.com/en/athletes/abdel-rahman-almasatfa", + "name": "Abdel Rahman ALMASATFA" + }, + "country": "Jordan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623064792/primary/so94a5zkbfy1g6ejs1af", + "meta_url": "https://olympics.com/en/athletes/hamoon-derafshipour", + "name": "Hamoon DERAFSHIPOUR" + }, + "country": "EOR" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/ali-elsawy", + "name": "Ali ELSAWY" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png", + "meta_url": "https://olympics.com/en/athletes/kalvis-kalnins", + "name": "Kalvis KALNINS" + }, + "country": "Latvia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/naoto-sago", + "name": "Naoto SAGO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/andres-eduardo-madera-delgado", + "name": "Andres Eduardo MADERA DELGADO" + }, + "country": "Venezuela" + } + ], + "type": "single" + }, + "men-s-kumite-75kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/luigi-busa", + "name": "Luigi BUSA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/rafael-aghayev", + "name": "Rafael AGHAYEV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/stanislav-horuna", + "name": "Stanislav HORUNA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/karoly-gabor-harspataki", + "name": "Karoly Gabor HARSPATAKI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/noah-bitsch", + "name": "Noah BITSCH" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ken-nishimura", + "name": "Ken NISHIMURA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/nurkanat-azhikanov", + "name": "Nurkanat AZHIKANOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/thomas-scott-x4423", + "name": "Thomas SCOTT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/tsuneari-yahiro", + "name": "Tsuneari YAHIRO" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "men-s-kumite-over-75kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/sajad-ganjzadeh", + "name": "Sajad GANJZADEH" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KSA.png", + "meta_url": "https://olympics.com/en/athletes/tareg-hamedi", + "name": "Tareg HAMEDI" + }, + "country": "Saudi Arabia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/ugur-aktas", + "name": "Ugur AKTAS" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ryutaro-araga", + "name": "Ryutaro ARAGA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/ivan-kvesic", + "name": "Ivan KVESIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/gogita-arkania", + "name": "Gogita ARKANIA" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/daniel-gaysinsky", + "name": "Daniel GAYSINSKY" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/daniyar-yuldashev", + "name": "Daniyar YULDASHEV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/brian-irr", + "name": "Brian IRR" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-kata": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/sandra-sanchez-jaime", + "name": "Sandra SANCHEZ JAIME" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/kiyou-shimizu", + "name": "Kiyou SHIMIZU" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/mo-sheung-grace-lau", + "name": "Mo Sheung Grace LAU" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/viviana-bottaro", + "name": "Viviana BOTTARO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/dilara-bozan", + "name": "Dilara BOZAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/sakura-kokumai", + "name": "Sakura KOKUMAI" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/alexandra-feracci", + "name": "Alexandra FERACCI" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/jasmin-juettner", + "name": "Jasmin JUETTNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MKD.png", + "meta_url": "https://olympics.com/en/athletes/puliksenija-jovanoska", + "name": "Puliksenija JOVANOSKA" + }, + "country": "North Macedonia" + } + ], + "type": "single" + }, + "women-s-kumite-55kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/ivet-goranova", + "name": "Ivet GORANOVA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/anzhelika-terliuga", + "name": "Anzhelika TERLIUGA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/bettina-plank", + "name": "Bettina PLANK" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/tzuyun-wen", + "name": "Tzuyun WEN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/sara-bahmanyar", + "name": "Sara BAHMANYAR" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/miho-miyahara", + "name": "Miho MIYAHARA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/serap-ozcelik-arapoglu", + "name": "Serap OZCELIK ARAPOGLU" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/moldir-zhangbyrbay", + "name": "Moldir ZHANGBYRBAY" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/radwa-sayed", + "name": "Radwa SAYED" + }, + "country": "Egypt" + } + ], + "type": "single" + }, + "women-s-kumite-61kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/jovana-prekovic", + "name": "Jovana PREKOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/xiaoyan-yin", + "name": "Xiaoyan YIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/merve-coban", + "name": "Merve COBAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/giana-lotfy", + "name": "Giana LOTFY" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/anita-serogina", + "name": "Anita SEROGINA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/claudymar-garces-sequera", + "name": "Claudymar GARCES SEQUERA" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PER.png", + "meta_url": "https://olympics.com/en/athletes/alexandra-vanessa-grande-risco", + "name": "Alexandra Vanessa GRANDE RISCO" + }, + "country": "Peru" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/mayumi-someya", + "name": "Mayumi SOMEYA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAR.png", + "meta_url": "https://olympics.com/en/athletes/btissam-sadini", + "name": "Btissam SADINI" + }, + "country": "Morocco" + } + ], + "type": "single" + }, + "women-s-kumite-over-61kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/feryal-abdelaziz", + "name": "Feryal ABDELAZIZ" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/iryna-zaretska", + "name": "Iryna ZARETSKA" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/sofya-berultseva", + "name": "Sofya BERULTSEVA" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/li-gong-x1108", + "name": "Li GONG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/elena-quirici", + "name": "Elena QUIRICI" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/silvia-semeraro", + "name": "Silvia SEMERARO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/hamideh-abbasali", + "name": "Hamideh ABBASALI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ayumi-uekusa", + "name": "Ayumi UEKUSA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALG.png", + "meta_url": "https://olympics.com/en/athletes/lamya-matoub", + "name": "Lamya MATOUB" + }, + "country": "Algeria" + } + ], + "type": "single" + } + }, + "marathon-swimming": { + "men-s-10km": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c7wgxy5rwtdzotjqxtzd", + "meta_url": "https://olympics.com/en/athletes/florian-wellbrock", + "name": "Florian WELLBROCK" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/kristof-rasovszky", + "name": "Kristof RASOVSZKY" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dyzcfehub9drzljqcrod", + "meta_url": "https://olympics.com/en/athletes/gregorio-paltrinieri", + "name": "Gregorio PALTRINIERI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/matan-roditi", + "name": "Matan RODITI" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/athanasios-kynigakis", + "name": "Athanasios KYNIGAKIS" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/marc-antoine-olivier", + "name": "Marc-Antoine OLIVIER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/ferry-weertman", + "name": "Ferry WEERTMAN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/RSA.png", + "meta_url": "https://olympics.com/en/athletes/michael-mcglynn", + "name": "Michael MCGLYNN" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/hau-li-fan", + "name": "Hau-Li FAN" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-10km": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/ana-marcela-cunha", + "name": "Ana Marcela CUNHA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/sharon-van-rouwendaal", + "name": "Sharon VAN ROUWENDAAL" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kareena-lee", + "name": "Kareena LEE" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/anna-olasz", + "name": "Anna OLASZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/o2o5orriknpnu2mpqdbt", + "meta_url": "https://olympics.com/en/athletes/leonie-antonia-beck", + "name": "Leonie Antonia BECK" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/haley-anderson", + "name": "Haley ANDERSON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/ashley-twichell", + "name": "Ashley TWICHELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/xin-xin", + "name": "Xin XIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/lara-grangeon", + "name": "Lara GRANGEON" + }, + "country": "France" + } + ], + "type": "single" + } + }, + "modern-pentathlon": { + "men-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mkwsltz8ck5wu4f69eyf", + "meta_url": "https://olympics.com/en/athletes/joseph-choong", + "name": "Joseph CHOONG" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/ahmed-elgendy", + "name": "Ahmed ELGENDY" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695998372/primary/sww14udoqpdnlgowpytb", + "meta_url": "https://olympics.com/en/athletes/woongtae-jun", + "name": "Woong Tae JUN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/jinhwa-jung", + "name": "Jinhwa JUNG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/martin-vlach", + "name": "Martin VLACH" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/adam-marosi", + "name": "Adam MAROSI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": null, + "name": "Valentin Prades" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/jan-kuf", + "name": "Jan KUF" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/james-cooke", + "name": "James COOKE" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/x3zqgsynahydqw9dcwbt", + "meta_url": "https://olympics.com/en/athletes/kate-french", + "name": "Kate FRENCH" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/b9bwq61o1g0aefdvflzc", + "meta_url": "https://olympics.com/en/athletes/laura-asadauskaite", + "name": "Laura ASADAUSKAITE" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/sarolta-kovacs", + "name": "Sarolta KOVACS" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alice-sotero", + "name": "Alice SOTERO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/ilke-ozyuksel", + "name": "Ilke OZYUKSEL" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/elodie-clouvel", + "name": "Elodie CLOUVEL" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png", + "meta_url": "https://olympics.com/en/athletes/gintare-venckauskaite", + "name": "Gintare VENCKAUSKAITE" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/anastasiya-prokopenko", + "name": "Anastasiya PROKOPENKO" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/uliana-batashova", + "name": "Uliana BATASHOVA" + }, + "country": "ROC" + } + ], + "type": "single" + } + }, + "rhythmic-gymnastics": { + "group-all-around": { + "participants": [ + { + "country": "Bulgaria", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "Israel", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Uzbekistan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png" + } + ], + "type": "team" + }, + "individual-all-around": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ueymj2paezywnqcwcirx", + "meta_url": "https://olympics.com/en/athletes/linoy-ashram", + "name": "Linoy ASHRAM" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/uzuvnju5wwor058jfene", + "meta_url": "https://olympics.com/en/athletes/dina-averina", + "name": "Dina AVERINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/alina-harnasko", + "name": "Alina HARNASKO" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ncuc3qanscjlggsghbn1", + "meta_url": "https://olympics.com/en/athletes/arina-averina", + "name": "Arina AVERINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/boryana-kaleyn", + "name": "Boryana KALEYN" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/milena-baldassarri", + "name": "Milena BALDASSARRI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/nicol-zelikman", + "name": "Nicol ZELIKMAN" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/anastasiia-salos", + "name": "Anastasiia SALOS" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/khrystyna-pohranychna", + "name": "Khrystyna POHRANYCHNA" + }, + "country": "Ukraine" + } + ], + "type": "single" + } + }, + "rowing": { + "lightweight-men-s-double-sculls": { + "participants": [ + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Czechia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Uruguay", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/URU.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + } + ], + "type": "team" + }, + "lightweight-women-s-double-sculls": { + "participants": [ + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + } + ], + "type": "team" + }, + "men-s-double-sculls": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + } + ], + "type": "team" + }, + "men-s-eight": { + "participants": [ + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + } + ], + "type": "team" + }, + "men-s-four": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + } + ], + "type": "team" + }, + "men-s-pair": { + "participants": [ + { + "country": "Croatia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "men-s-quadruple-sculls": { + "participants": [ + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Estonia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + } + ], + "type": "team" + }, + "men-s-single-sculls": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/stefanos-ntouskos", + "name": "Stefanos NTOUSKOS" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xk7naojcapydvkyiiuzc", + "meta_url": "https://olympics.com/en/athletes/kjetil-borch", + "name": "Kjetil BORCH" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vlqfnamqbzsl5benyyej", + "meta_url": "https://olympics.com/en/athletes/damir-martin", + "name": "Damir MARTIN" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/sverri-nielsen", + "name": "Sverri NIELSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/alexander-vyazovkin", + "name": "Alexander VYAZOVKIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hbgdmtuprqm9hrdzmv0f", + "meta_url": "https://olympics.com/en/athletes/mindaugas-griskonis", + "name": "Mindaugas GRISKONIS" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696003678/primary/t7tu0ytyncnbkgm6htbt", + "meta_url": "https://olympics.com/en/athletes/oliver-zeidler", + "name": "Oliver ZEIDLER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/gennaro-alberto-di-mauro", + "name": "Gennaro Alberto DI MAURO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/trevor-jones", + "name": "Trevor JONES" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-double-sculls": { + "participants": [ + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Lithuania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + } + ], + "type": "team" + }, + "women-s-eight": { + "participants": [ + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + } + ], + "type": "team" + }, + "women-s-four": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + } + ], + "type": "team" + }, + "women-s-pair": { + "participants": [ + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Greece", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + } + ], + "type": "team" + }, + "women-s-quadruple-sculls": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "women-s-single-sculls": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kycwffkw6dijxrkmbned", + "meta_url": "https://olympics.com/en/athletes/emma-twigg", + "name": "Emma TWIGG" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/hanna-prakatsen", + "name": "Hanna PRAKATSEN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/magdalena-lobnig", + "name": "Magdalena LOBNIG" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/victoria-thornley", + "name": "Victoria THORNLEY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/jeannine-gmelin", + "name": "Jeannine GMELIN" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yan-jiang", + "name": "Yan JIANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/sophie-souwer", + "name": "Sophie SOUWER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/carling-zeeman", + "name": "Carling ZEEMAN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kara-kohler", + "name": "Kara KOHLER" + }, + "country": "United States" + } + ], + "type": "single" + } + }, + "rugby-sevens": { + "men": { + "participants": [ + { + "country": "Fiji", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIJ.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "South Africa", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/RSA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Kenya", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Fiji", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIJ.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + } + ], + "type": "team" + } + }, + "sailing": { + "470-men": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Greece", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "470-women": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Slovenia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Israel", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + } + ], + "type": "team" + }, + "49er-fx-women": { + "participants": [ + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "49er-men": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Portugal", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png" + }, + { + "country": "Croatia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + } + ], + "type": "team" + }, + "finn-men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/giles-scott", + "name": "Giles SCOTT" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/zsombor-berecz", + "name": "Zsombor BERECZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/joan-cardona-mendez", + "name": "Joan CARDONA MENDEZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/nicholas-heiner", + "name": "Nicholas HEINER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/josh-junior", + "name": "Josh JUNIOR" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png", + "meta_url": "https://olympics.com/en/athletes/facundo-olezza-bazan", + "name": "Facundo OLEZZA BAZAN" + }, + "country": "Argentina" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/jake-lilley", + "name": "Jake LILLEY" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/alican-kaynar", + "name": "Alican KAYNAR" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/max-salminen", + "name": "Max SALMINEN" + }, + "country": "Sweden" + } + ], + "type": "single" + }, + "laser-men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1692205166/primary/d3scugjmy7mnriydh77c", + "meta_url": "https://olympics.com/en/athletes/matt-wearn", + "name": "Matt WEARN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/tonci-stipanovic", + "name": "Tonci STIPANOVIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/hermann-tomasgaard", + "name": "Hermann TOMASGAARD" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/b8bb1bl1vrx6bgbcwlbf", + "meta_url": "https://olympics.com/en/athletes/pavlos-kontides", + "name": "Pavlos KONTIDES" + }, + "country": "Cyprus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/philipp-buhl", + "name": "Philipp BUHL" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/jean-baptiste-bernaz", + "name": "Jean Baptiste BERNAZ" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/jeemin-ha", + "name": "Jeemin HA" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/robert-scheidt", + "name": "Robert SCHEIDT" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/kaarle-tapper", + "name": "Kaarle TAPPER" + }, + "country": "Finland" + } + ], + "type": "single" + }, + "laser-radial-women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/anne-marie-rindom", + "name": "Anne-Marie RINDOM" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/josefin-olsson", + "name": "Josefin OLSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/marit-bouwmeester", + "name": "Marit BOUWMEESTER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/emma-plasschaert", + "name": "Emma PLASSCHAERT" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/tuula-tenkanen", + "name": "Tuula TENKANEN" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/sarah-douglas", + "name": "Sarah DOUGLAS" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/silvia-zennaro", + "name": "Silvia ZENNARO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": null, + "name": "Line Høst" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/vasileia-karachaliou", + "name": "Vasileia KARACHALIOU" + }, + "country": "Greece" + } + ], + "type": "single" + }, + "nacra-17-mixed": { + "participants": [ + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "rs-x-men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/kiran-badloe", + "name": "Kiran BADLOE" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/thomas-goyard", + "name": "Thomas GOYARD" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/kun-bi", + "name": "Kun BI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/yoav-cohen", + "name": "Yoav COHEN" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/mattia-camboni", + "name": "Mattia CAMBONI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/piotr-myszka", + "name": "Piotr MYSZKA" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/tom-squires", + "name": "Tom SQUIRES" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/mateo-sanz-lanz", + "name": "Mateo SANZ LANZ" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/pedro-pascual", + "name": "Pedro PASCUAL" + }, + "country": "United States" + } + ], + "type": "single" + }, + "rs-x-women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yunxiu-lu", + "name": "Yunxiu LU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/charline-picon", + "name": "Charline PICON" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704279318/primary/pannsw0jdtegdyq9hgov", + "meta_url": "https://olympics.com/en/athletes/emma-wilson", + "name": "Emma WILSON" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/marta-maggetti", + "name": "Marta MAGGETTI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/lilian-de-geus", + "name": "Lilian DE GEUS" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/katy-spychakov", + "name": "Katy SPYCHAKOV" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/laerke-buhl-hansen", + "name": "Laerke BUHL-HANSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/hei-man-h-v-chan", + "name": "Hei Man H V CHAN" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/zofia-klepacka", + "name": "Zofia KLEPACKA" + }, + "country": "Poland" + } + ], + "type": "single" + } + }, + "shooting": { + "10m-air-pistol-men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/javad-foroughi", + "name": "Javad FOROUGHI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/damir-mikec", + "name": "Damir MIKEC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wei-pang", + "name": "Wei PANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/pavlo-korostylov", + "name": "Pavlo KOROSTYLOV" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/christian-reitz", + "name": "Christian REITZ" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/bowen-zhang", + "name": "Bowen ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png", + "meta_url": "https://olympics.com/en/athletes/chaudhary-saurabh", + "name": "Chaudhary SAURABH" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/mose-kim", + "name": "Mose KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PAK.png", + "meta_url": "https://olympics.com/en/athletes/gulfam-joseph", + "name": "Gulfam JOSEPH" + }, + "country": "Pakistan" + } + ], + "type": "single" + }, + "10m-air-pistol-mixed-team": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Isl Rep of Iran", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + } + ], + "type": "team" + }, + "10m-air-pistol-women": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rdaasdlzez2phewipmne", + "meta_url": "https://olympics.com/en/athletes/vitalina-batsarashkina", + "name": "Vitalina BATSARASHKINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/antoaneta-boneva", + "name": "Antoaneta BONEVA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fm2fc1swasj0tfjh5ybt", + "meta_url": "https://olympics.com/en/athletes/ranxin-jiang", + "name": "Ranxin JIANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/olena-kostevych", + "name": "Olena KOSTEVYCH" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yuemei-lin", + "name": "Yuemei LIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wzycwos9urriyqie8l3c", + "meta_url": "https://olympics.com/en/athletes/anna-korakaki", + "name": "Anna KORAKAKI" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/mathilde-lamolle", + "name": "Mathilde LAMOLLE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/celine-goberville", + "name": "Celine GOBERVILLE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/anudari-tsolmonbaatar", + "name": "Anudari TSOLMONBAATAR" + }, + "country": "Mongolia" + } + ], + "type": "single" + }, + "10m-air-rifle-men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691832232/primary/qynxsqza0cmkpzeccw2z", + "meta_url": "https://olympics.com/en/athletes/william-shaner", + "name": "William SHANER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/lihao-sheng", + "name": "Lihao SHENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/haoran-yang", + "name": "Haoran YANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/omer-akgun", + "name": "Omer AKGUN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/istvan-peni", + "name": "Istvan PENI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/lucas-kozeniesky", + "name": "Lucas KOZENIESKY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/patrik-jany", + "name": "Patrik JANY" + }, + "country": "Slovakia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/vladimir-maslennikov", + "name": "Vladimir MASLENNIKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/mahyar-sedaghat", + "name": "Mahyar SEDAGHAT" + }, + "country": "Isl Rep of Iran" + } + ], + "type": "single" + }, + "10m-air-rifle-mixed-team": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + } + ], + "type": "team" + }, + "10m-air-rifle-women": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1630403166/primary/tcphvry9jd0xzm0t0trk", + "meta_url": "https://olympics.com/en/athletes/qian-yang", + "name": "Qian YANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/anastasiia-galashina", + "name": "Anastasiia GALASHINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/nina-christen", + "name": "Nina CHRISTEN" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/jeanette-hegg-duestad", + "name": "Jeanette Hegg DUESTAD" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/oceanne-muller", + "name": "Oceanne MULLER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/mary-carolynn-tucker", + "name": "Mary Carolynn TUCKER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/eunji-kwon", + "name": "Eunji KWON" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/heemoon-park", + "name": "Heemoon PARK" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/laura-georgeta-ilie", + "name": "Laura-Georgeta ILIE" + }, + "country": "Romania" + } + ], + "type": "single" + }, + "25m-pistol-women": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rdaasdlzez2phewipmne", + "meta_url": "https://olympics.com/en/athletes/vitalina-batsarashkina", + "name": "Vitalina BATSARASHKINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/minjung-kim", + "name": "Minjung KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jiaruixuan-xiao", + "name": "Jiaruixuan XIAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/antoaneta-boneva", + "name": "Antoaneta BONEVA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chia-ying-wu", + "name": "Chia Ying WU" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wzycwos9urriyqie8l3c", + "meta_url": "https://olympics.com/en/athletes/anna-korakaki", + "name": "Anna KORAKAKI" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/doreen-vennekamp", + "name": "Doreen VENNEKAMP" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chia-chen-tien", + "name": "Chia Chen TIEN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/zorana-arunovic", + "name": "Zorana ARUNOVIC" + }, + "country": "Serbia" + } + ], + "type": "single" + }, + "25m-rapid-fire-pistol-men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691832481/primary/ve4gc6cfwqpdw6cj776o", + "meta_url": "https://olympics.com/en/athletes/jean-quiquampoix", + "name": "Jean QUIQUAMPOIX" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/leuris-pupo", + "name": "Leuris PUPO" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yuehong-li", + "name": "Yuehong LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/daeyoon-han", + "name": "Daeyoon HAN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/christian-reitz", + "name": "Christian REITZ" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/junmin-lin", + "name": "Junmin LIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/clement-bessaguet", + "name": "Clement BESSAGUET" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/dai-yoshioka", + "name": "Dai YOSHIOKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/pavlo-korostylov", + "name": "Pavlo KOROSTYLOV" + }, + "country": "Ukraine" + } + ], + "type": "single" + }, + "50m-rifle-3-positions-men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/changhong-zhang", + "name": "Changhong ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/sergey-kamenskiy", + "name": "Sergey KAMENSKIY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/milenko-sebic", + "name": "Milenko SEBIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/jon-hermann-hegg", + "name": "Jon-Hermann HEGG" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/petar-gorsa", + "name": "Petar GORSA" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/miran-maricic", + "name": "Miran MARICIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/yury-shcherbatsevich", + "name": "Yury SHCHERBATSEVICH" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/serhiy-kulish", + "name": "Serhiy KULISH" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/henrik-larsen", + "name": "Henrik LARSEN" + }, + "country": "Norway" + } + ], + "type": "single" + }, + "50m-rifle-3-positions-women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/nina-christen", + "name": "Nina CHRISTEN" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/yulia-zykova", + "name": "Yulia ZYKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/yulia-karimova", + "name": "Yulia KARIMOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/jeanette-hegg-duestad", + "name": "Jeanette Hegg DUESTAD" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/sagen-maddalena", + "name": "Sagen MADDALENA" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/jolyn-beer", + "name": "Jolyn BEER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/ziva-dvorsak", + "name": "Ziva DVORSAK" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/andrea-arsovic", + "name": "Andrea ARSOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/mengyao-shi", + "name": "Mengyao SHI" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "skeet-men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/goyvbazkldd3skgp3obm", + "meta_url": "https://olympics.com/en/athletes/vincent-hancock", + "name": "Vincent HANCOCK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/jesper-hansen", + "name": "Jesper HANSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KUW.png", + "meta_url": "https://olympics.com/en/athletes/abdullah-alrashidi-x5661", + "name": "Abdullah ALRASHIDI" + }, + "country": "Kuwait" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/eetu-kallioinen", + "name": "Eetu KALLIOINEN" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/eric-delaunay", + "name": "Eric DELAUNAY" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/tammaro-cassandro", + "name": "Tammaro CASSANDRO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/jakub-tomecek", + "name": "Jakub TOMECEK" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PER.png", + "meta_url": "https://olympics.com/en/athletes/nicolas-pacheco-espinosa", + "name": "Nicolas PACHECO ESPINOSA" + }, + "country": "Peru" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CYP.png", + "meta_url": "https://olympics.com/en/athletes/georgios-achilleos", + "name": "Georgios ACHILLEOS" + }, + "country": "Cyprus" + } + ], + "type": "single" + }, + "skeet-women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/amber-english", + "name": "Amber ENGLISH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/diana-bacosi", + "name": "Diana BACOSI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1698329207/primary/nousoqykczvrq9gwss20", + "meta_url": "https://olympics.com/en/athletes/meng-wei", + "name": "Meng WEI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/isarapa-imprasertsuk", + "name": "Isarapa IMPRASERTSUK" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/nadine-messerschmidt", + "name": "Nadine MESSERSCHMIDT" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/natalia-vinogradova", + "name": "Natalia VINOGRADOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CYP.png", + "meta_url": "https://olympics.com/en/athletes/andri-eleftheriou", + "name": "Andri ELEFTHERIOU" + }, + "country": "Cyprus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/iryna-malovichko", + "name": "Iryna MALOVICHKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/lucie-anastassiou", + "name": "Lucie ANASTASSIOU" + }, + "country": "France" + } + ], + "type": "single" + }, + "trap-men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/jiri-liptak", + "name": "Jiri LIPTAK" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/david-kostelecky", + "name": "David KOSTELECKY" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/matthew-john-coward-holley", + "name": "Matthew John COWARD HOLLEY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/jorge-martin-orozco-diaz", + "name": "Jorge Martin OROZCO DIAZ" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/haicheng-yu", + "name": "Haicheng YU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KUW.png", + "meta_url": "https://olympics.com/en/athletes/abdulrahman-al-faihan", + "name": "Abdulrahman AL FAIHAN" + }, + "country": "Kuwait" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KUW.png", + "meta_url": "https://olympics.com/en/athletes/talal-alrashidi", + "name": "Talal ALRASHIDI" + }, + "country": "Kuwait" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/alexey-alipov", + "name": "Alexey ALIPOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ksa8ekdr2k4mbrgbv2qz", + "meta_url": "https://olympics.com/en/athletes/alberto-fernandez-1", + "name": "Alberto FERNANDEZ" + }, + "country": "Spain" + } + ], + "type": "single" + }, + "trap-mixed-team": { + "participants": [ + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "San Marino", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SMR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Slovakia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Slovakia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + }, + "trap-women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/zuzana-stefecekova", + "name": "Zuzana STEFECEKOVA" + }, + "country": "Slovakia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kayle-browning", + "name": "Kayle BROWNING" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SMR.png", + "meta_url": "https://olympics.com/en/athletes/alessandra-perilli", + "name": "Alessandra PERILLI" + }, + "country": "San Marino" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/laetisha-scanlan", + "name": "Laetisha SCANLAN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/silvana-stanco", + "name": "Silvana STANCO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/penny-smith", + "name": "Penny SMITH" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/madelynn-ann-bernau", + "name": "Madelynn Ann BERNAU" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/jessica-rossi", + "name": "Jessica ROSSI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/sandra-bernal", + "name": "Sandra BERNAL" + }, + "country": "Poland" + } + ], + "type": "single" + } + }, + "skateboarding": { + "men-s-park": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/g9pkhw4i3luhjqy2uksj", + "meta_url": "https://olympics.com/en/athletes/keegan-palmer", + "name": "Keegan PALMER" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c4ybpreaouiku185amma", + "meta_url": "https://olympics.com/en/athletes/pedro-barros", + "name": "Pedro BARROS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tnkuemzct9l5rtdptql9", + "meta_url": "https://olympics.com/en/athletes/cory-juneau", + "name": "Cory JUNEAU" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/luiz-francisco", + "name": "Luiz FRANCISCO" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1684855941/primary/cnawgqkj7otvafhpuiuy", + "meta_url": "https://olympics.com/en/athletes/kieran-woolley", + "name": "Kieran WOOLLEY" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PUR.png", + "meta_url": "https://olympics.com/en/athletes/steven-piniero", + "name": "Steven PIÑEIRO" + }, + "country": "Puerto Rico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/vincent-matheron", + "name": "Vincent MATHERON" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/pedro-quintas", + "name": "Pedro QUINTAS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/danny-leon", + "name": "Danny LEON" + }, + "country": "Spain" + } + ], + "type": "single" + }, + "men-s-street": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wlfiwclru4tqgbcygxpf", + "meta_url": "https://olympics.com/en/athletes/yuto-horigome", + "name": "Yuto HORIGOME" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/l1bpmlqtahkipmp2gz3a", + "meta_url": "https://olympics.com/en/athletes/kelvin-hoefler", + "name": "Kelvin HOEFLER" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yw26cnmlu1dsp0agxi0u", + "meta_url": "https://olympics.com/en/athletes/jagger-eaton", + "name": "Jagger EATON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/vincent-milou", + "name": "Vincent MILOU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PER.png", + "meta_url": "https://olympics.com/en/athletes/angelo-caro-narvaez", + "name": "Angelo CARO NARVAEZ" + }, + "country": "Peru" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yiotbtgtusj6jchlobha", + "meta_url": "https://olympics.com/en/athletes/aurelien-giraud", + "name": "Aurélien GIRAUD" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/li01cajtepl2gohbfcqp", + "meta_url": "https://olympics.com/en/athletes/nyjah-imani-huston", + "name": "Nyjah IMANI HUSTON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/gustavo-ribeiro", + "name": "Gustavo RIBEIRO" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1710857308/primary/moztcdwrl8l9sqgdfahw", + "meta_url": "https://olympics.com/en/athletes/sora-shirai", + "name": "Sora SHIRAI" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "women-s-park": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1656409434/primary/w5dxsqcn4bxivy7xcike", + "meta_url": "https://olympics.com/en/athletes/sakura-yosozumi", + "name": "Sakura YOSOZUMI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1656409468/primary/lh1ithdpjeoavxgcihxf", + "meta_url": "https://olympics.com/en/athletes/cocona-hiraki", + "name": "Cocona HIRAKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/u2crplqzbeykukd8xf9f", + "meta_url": "https://olympics.com/en/athletes/sky-brown", + "name": "Sky BROWN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/misugu-okamoto", + "name": "Misugu OKAMOTO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1692787073/primary/vartwo8gscjcrssomqpj", + "meta_url": "https://olympics.com/en/athletes/poppy-olsen", + "name": "Poppy OLSEN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1684855585/primary/fa5pcx1qoivocebahkd3", + "meta_url": "https://olympics.com/en/athletes/bryce-wettstein", + "name": "Bryce WETTSTEIN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/dora-varella", + "name": "Dora VARELLA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/yndiara-asp", + "name": "Yndiara ASP" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lilly-stoephasius", + "name": "Lilly STOEPHASIUS" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-street": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627379481/primary/x8yhofz3vhaqrwij6pih", + "meta_url": "https://olympics.com/en/athletes/momiji-nishiya", + "name": "Momiji NISHIYA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1655996747/primary/cvkohtnfy2gchvxw2w8l", + "meta_url": "https://olympics.com/en/athletes/rayssa-leal", + "name": "Rayssa LEAL" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/g9kas7atkx2skyfedtbl", + "meta_url": "https://olympics.com/en/athletes/funa-nakayama", + "name": "Funa NAKAYAMA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/alexis-sablone", + "name": "Alexis SABLONE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694702944/primary/xakmyp61krb9a72efz4p", + "meta_url": "https://olympics.com/en/athletes/roos-zwetsloot", + "name": "Roos ZWETSLOOT" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wenhui-zeng", + "name": "Wenhui ZENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PHI.png", + "meta_url": "https://olympics.com/en/athletes/margielyn-arda-didal", + "name": "Margielyn Arda DIDAL" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624629392/primary/qk3hkef4c53ihhopge4o", + "meta_url": "https://olympics.com/en/athletes/aori-nishimura", + "name": "Aori NISHIMURA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624633700/primary/qytklksd2ap1mmccma0a", + "meta_url": "https://olympics.com/en/athletes/leticia-bufoni", + "name": "Leticia Bufoni" + }, + "country": "Brazil" + } + ], + "type": "single" + } + }, + "sport-climbing": { + "men-s-combined": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zz236eubrwk48jtbrina", + "meta_url": "https://olympics.com/en/athletes/alberto-gines-lopez", + "name": "Alberto GINES LOPEZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ehqu6rh9wh0mlxxcwqoi", + "meta_url": "https://olympics.com/en/athletes/nathaniel-coleman", + "name": "Nathaniel COLEMAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1699467797/primary/rscsouqhfs2ibvdctzud", + "meta_url": "https://olympics.com/en/athletes/jakob-schubert", + "name": "Jakob SCHUBERT" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/j4s39rxurpzn4iejgx6r", + "meta_url": "https://olympics.com/en/athletes/tomoa-narasaki", + "name": "Tomoa NARASAKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dkelqmcmaho6gybgawnw", + "meta_url": "https://olympics.com/en/athletes/mickael-mawem", + "name": "Mickael MAWEM" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707489700/primary/ryohdpaupufrjqfdbzri", + "meta_url": "https://olympics.com/en/athletes/adam-ondra", + "name": "Adam ONDRA" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/colin-duffy", + "name": "Colin DUFFY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ww1lyazemktv2iqgzrv4", + "meta_url": "https://olympics.com/en/athletes/bassa-mawem", + "name": "Bassa MAWEM" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/alexander-megos", + "name": "Alexander MEGOS" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-combined": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1566380333/primary/lawoiudriwqaixfmlfhw", + "meta_url": "https://olympics.com/en/athletes/janja-garnbret", + "name": "Janja GARNBRET" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624624712/primary/k6z35f35ek2lguii8w2k", + "meta_url": "https://olympics.com/en/athletes/miho-nonaka", + "name": "Miho NONAKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/akiyo-noguchi", + "name": "Akiyo NOGUCHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694853112/primary/gsv01pnn7lzwmxkorv48", + "meta_url": "https://olympics.com/en/athletes/aleksandra-miroslaw", + "name": "Aleksandra MIROSLAW" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/q5oxa3cebn4nwmfytfpw", + "meta_url": "https://olympics.com/en/athletes/brooke-raboutou", + "name": "Brooke RABOUTOU" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/anouck-jaubert", + "name": "Anouck JAUBERT" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/jessica-pilz", + "name": "Jessica PILZ" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cp8b4ivh9pqxkfs9sdaj", + "meta_url": "https://olympics.com/en/athletes/chaehyun-seo", + "name": "Chae-hyun SEO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/viktoriia-meshkova", + "name": "Viktoriia MESHKOVA" + }, + "country": "ROC" + } + ], + "type": "single" + } + }, + "surfing": { + "men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/p3fzz47dvwlc08clwluk", + "meta_url": "https://olympics.com/en/athletes/italo-ferreira", + "name": "Italo Ferreira" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622043023/primary/kiipx4lewwyj3owyllmf", + "meta_url": "https://olympics.com/en/athletes/kanoa-igarashi", + "name": "Kanoa IGARASHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622042345/primary/pbv9smc5szjfmpkzafc0", + "meta_url": "https://olympics.com/en/athletes/owen-wright", + "name": "Owen Wright" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707814715/primary/rfokftspfqn6yomtoisa", + "meta_url": "https://olympics.com/en/athletes/gabriel-medina", + "name": "Gabriel MEDINA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622041995/primary/xdx3xedvyahnfps7j5qx", + "meta_url": "https://olympics.com/en/athletes/kolohe-andino", + "name": "Kolohe ANDINO" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622042675/primary/zecda1iwn5qrld6k8ixq", + "meta_url": "https://olympics.com/en/athletes/michel-bourez", + "name": "Michel BOUREZ" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622039211/primary/i3r0hb58zulpkl6v4srv", + "meta_url": "https://olympics.com/en/athletes/lucca-mesinas", + "name": "Lucca None" + }, + "country": "Peru" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qny1eir5wxolelwtp03s", + "meta_url": "https://olympics.com/en/athletes/hiroto-ohhara", + "name": "Hiroto OHHARA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622043247/primary/r983ggkceixivkhd63k2", + "meta_url": "https://olympics.com/en/athletes/ramzi-boukhiam", + "name": "Ramzi Boukhiam" + }, + "country": "Morocco" + } + ], + "type": "single" + }, + "women": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ync1ytpmcucn4z4zkja1", + "meta_url": "https://olympics.com/en/athletes/carissa-moore", + "name": "Carissa MOORE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mzo87siyfigyp7grib65", + "meta_url": "https://olympics.com/en/athletes/bianca-buitendag", + "name": "Bianca BUITENDAG" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/amuro-tsuzuki", + "name": "Amuro TSUZUKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622045795/primary/qejb7mzdnn2s1bta20n3", + "meta_url": "https://olympics.com/en/athletes/caroline-marks", + "name": "Caroline MARKS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622045588/primary/ehnymzz0vurlqwthvx9g", + "meta_url": "https://olympics.com/en/athletes/sally-fitzgibbons", + "name": "Sally FITZGIBBONS" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622033321/primary/kljh4qvltqgzqmblred4", + "meta_url": "https://olympics.com/en/athletes/brisa-hennessy", + "name": "Brisa HENNESSY" + }, + "country": "Costa Rica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/yolanda-hopkins", + "name": "Yolanda HOPKINS" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622030999/primary/jdxxbqdzrzjio7vedmo3", + "meta_url": "https://olympics.com/en/athletes/silvana-lima", + "name": "Silvana LIMA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/pauline-ado", + "name": "Pauline ADO" + }, + "country": "France" + } + ], + "type": "single" + } + }, + "swimming": { + "men-s-100m-backstroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626923508/primary/apgsrzz4jblxxahpui4l", + "meta_url": "https://olympics.com/en/athletes/evgeny-rylov", + "name": "Evgeny RYLOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1616586882/primary/uqrds7ddfjpme758kmrl", + "meta_url": "https://olympics.com/en/athletes/kliment-kolesnikov", + "name": "Kliment KOLESNIKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nqlcue5y2wz0tehzisci", + "meta_url": "https://olympics.com/en/athletes/ryan-murphy", + "name": "Ryan MURPHY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zrvz4ti5idz83y1c9qv8", + "meta_url": "https://olympics.com/en/athletes/thomas-ceccon", + "name": "Thomas CECCON" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695737527/primary/rwhoi1d2bc6cy4vz3d0n", + "meta_url": "https://olympics.com/en/athletes/jiayu-xu", + "name": "Jiayu XU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xl24mkp2467hbijwkj0t", + "meta_url": "https://olympics.com/en/athletes/hugo-gonzalez-de-oliveira", + "name": "Hugo GONZALEZ DE OLIVEIRA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/mitchell-larkin", + "name": "Mitchell LARKIN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/robert-andrei-glinta", + "name": "Robert Andrei GLINTA" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rjhp61nglimx1jjjrjkf", + "meta_url": "https://olympics.com/en/athletes/ryosuke-irie", + "name": "Ryosuke IRIE" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "men-s-100m-breaststroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tghcjfehxvhigc9lyurq", + "meta_url": "https://olympics.com/en/athletes/adam-peaty", + "name": "Adam PEATY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/arno-kamminga", + "name": "Arno KAMMINGA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xn0ladehy7vwqzcwn8po", + "meta_url": "https://olympics.com/en/athletes/nicolo-martinenghi", + "name": "Nicolo MARTINENGHI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michael-andrew", + "name": "Michael ANDREW" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/james-wilby", + "name": "James WILBY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zibei-yan", + "name": "Zibei YAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/andrew-wilson-x7839", + "name": "Andrew WILSON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/ilya-shymanovich", + "name": "Ilya SHYMANOVICH" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lucas-joachim-matzerath", + "name": "Lucas Joachim MATZERATH" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-100m-butterfly": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kxv7nqrkzzwxkvysxdeo", + "meta_url": "https://olympics.com/en/athletes/caeleb-dressel", + "name": "Caeleb DRESSEL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/u3bpi1kmm0n9nptnfgon", + "meta_url": "https://olympics.com/en/athletes/kristof-milak", + "name": "Kristof Kristof Milak" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/noe-ponti", + "name": "Noe PONTI" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/andrei-minakov", + "name": "Andrei MINAKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/jakub-majerski", + "name": "Jakub MAJERSKI" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/matthew-temple", + "name": "Matthew TEMPLE" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GUA.png", + "meta_url": "https://olympics.com/en/athletes/luis-martinez-2", + "name": "Luis MARTINEZ" + }, + "country": "Guatemala" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/josif-miladinov", + "name": "Josif MILADINOV" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yxqyiy2bln7r3mwxyoyp", + "meta_url": "https://olympics.com/en/athletes/mehdy-metella", + "name": "Mehdy METELLA" + }, + "country": "France" + } + ], + "type": "single" + }, + "men-s-100m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kxv7nqrkzzwxkvysxdeo", + "meta_url": "https://olympics.com/en/athletes/caeleb-dressel", + "name": "Caeleb DRESSEL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bysqj4spu9zp1olramop", + "meta_url": "https://olympics.com/en/athletes/kyle-chalmers", + "name": "Kyle CHALMERS" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1616586882/primary/uqrds7ddfjpme758kmrl", + "meta_url": "https://olympics.com/en/athletes/kliment-kolesnikov", + "name": "Kliment KOLESNIKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696005605/primary/hm7pegqwj6yvtrmqmeyw", + "meta_url": "https://olympics.com/en/athletes/maxime-grousset", + "name": "Maxime GROUSSET" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696001418/primary/c6ckxbk9rwcbrozhux3b", + "meta_url": "https://olympics.com/en/athletes/sunwoo-hwang", + "name": "Sunwoo HWANG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alessandro-miressi", + "name": "Alessandro MIRESSI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ypdcgnuoaoazzon0bfay", + "meta_url": "https://olympics.com/en/athletes/david-popovici", + "name": "David POPOVICI" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/nandor-nemeth", + "name": "Nandor NEMETH" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/andrej-barna", + "name": "Andrej BARNA" + }, + "country": "Serbia" + } + ], + "type": "single" + }, + "men-s-1500m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/djqptajhnuf6atwbvw2a", + "meta_url": "https://olympics.com/en/athletes/robert-finke", + "name": "Robert FINKE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/mykhailo-romanchuk", + "name": "Mykhailo ROMANCHUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c7wgxy5rwtdzotjqxtzd", + "meta_url": "https://olympics.com/en/athletes/florian-wellbrock", + "name": "Florian WELLBROCK" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dyzcfehub9drzljqcrod", + "meta_url": "https://olympics.com/en/athletes/gregorio-paltrinieri", + "name": "Gregorio PALTRINIERI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/daniel-jervis", + "name": "Daniel JERVIS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/kirill-martynychev", + "name": "Kirill MARTYNYCHEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/felix-auboeck", + "name": "Felix AUBOECK" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/serhii-frolov", + "name": "Serhii FROLOV" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/domenico-acerenza", + "name": "Domenico ACERENZA" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-200m-backstroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626923508/primary/apgsrzz4jblxxahpui4l", + "meta_url": "https://olympics.com/en/athletes/evgeny-rylov", + "name": "Evgeny RYLOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nqlcue5y2wz0tehzisci", + "meta_url": "https://olympics.com/en/athletes/ryan-murphy", + "name": "Ryan MURPHY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/luke-greenbank", + "name": "Luke GREENBANK" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/bryce-mefford", + "name": "Bryce MEFFORD" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/adam-telegdy", + "name": "Adam TELEGDY" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/radoslaw-kawecki", + "name": "Radoslaw KAWECKI" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rjhp61nglimx1jjjrjkf", + "meta_url": "https://olympics.com/en/athletes/ryosuke-irie", + "name": "Ryosuke IRIE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/nicolas-garcia-saiz", + "name": "Nicolas GARCIA SAIZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/yohann-ndoye-brouard", + "name": "Yohann NDOYE-BROUARD" + }, + "country": "France" + } + ], + "type": "single" + }, + "men-s-200m-breaststroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wla04qk2xl2qggrnlgj9", + "meta_url": "https://olympics.com/en/athletes/izaac-stubblety-cook", + "name": "Izaac STUBBLETY-COOK" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/arno-kamminga", + "name": "Arno KAMMINGA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/matti-mattsson", + "name": "Matti MATTSSON" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhxgoienhcw35sdpfzkk", + "meta_url": "https://olympics.com/en/athletes/anton-chupkov", + "name": "Anton CHUPKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/a6n7o1gl9krwnu0kbvid", + "meta_url": "https://olympics.com/en/athletes/nic-fink", + "name": "Nic FINK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/james-wilby", + "name": "James WILBY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ryuya-mura", + "name": "Ryuya MURA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/erik-persson-2", + "name": "Erik PERSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/kirill-prigoda", + "name": "Kirill PRIGODA" + }, + "country": "ROC" + } + ], + "type": "single" + }, + "men-s-200m-butterfly": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/u3bpi1kmm0n9nptnfgon", + "meta_url": "https://olympics.com/en/athletes/kristof-milak", + "name": "Kristof Kristof Milak" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/q6zyjjum4ds9z77yt9rc", + "meta_url": "https://olympics.com/en/athletes/tomoru-honda", + "name": "Tomoru HONDA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/federico-burdisso", + "name": "Federico BURDISSO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/tamas-kenderesi", + "name": "Tamas KENDERESI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/at6tze4zptsihfxwz3b2", + "meta_url": "https://olympics.com/en/athletes/chad-le-clos", + "name": "Chad LE CLOS" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/leonardo-de-deus", + "name": "Leonardo DE DEUS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/gunnar-bentz", + "name": "Gunnar BENTZ" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/krzysztof-chmielewski", + "name": "Krzysztof Chmielewski" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/zach-harting", + "name": "Zach HARTING" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-200m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704282907/primary/hkj25hs0gqbjm36sj4fd", + "meta_url": "https://olympics.com/en/athletes/tom-dean", + "name": "Tom DEAN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704281776/primary/tv1h1qk16heqnrgehasd", + "meta_url": "https://olympics.com/en/athletes/duncan-scott", + "name": "Duncan SCOTT" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/fernando-scheffer", + "name": "Fernando SCHEFFER" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ypdcgnuoaoazzon0bfay", + "meta_url": "https://olympics.com/en/athletes/david-popovici", + "name": "David POPOVICI" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/martin-malyutin", + "name": "Martin MALYUTIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kieran-smith", + "name": "Kieran SMITH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696001418/primary/c6ckxbk9rwcbrozhux3b", + "meta_url": "https://olympics.com/en/athletes/sunwoo-hwang", + "name": "Sunwoo HWANG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png", + "meta_url": "https://olympics.com/en/athletes/danas-rapsys", + "name": "Danas RAPSYS" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/thomas-neill", + "name": "Thomas NEILL" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "men-s-200m-individual-medley": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695737138/primary/xqffuvagebonsniwu70y", + "meta_url": "https://olympics.com/en/athletes/shun-wang", + "name": "Shun WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704281776/primary/tv1h1qk16heqnrgehasd", + "meta_url": "https://olympics.com/en/athletes/duncan-scott", + "name": "Duncan SCOTT" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/jeremy-desplanches", + "name": "Jeremy DESPLANCHES" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gqludyvc3n4jmvxkvvcd", + "meta_url": "https://olympics.com/en/athletes/daiya-seto", + "name": "Daiya SETO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michael-andrew", + "name": "Michael ANDREW" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/znwgpz7n9wywelw06zoz", + "meta_url": "https://olympics.com/en/athletes/kosuke-hagino", + "name": "Kosuke HAGINO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/laszlo-cseh-1", + "name": "Laszlo CSEH" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/lewis-clareburt", + "name": "Lewis CLAREBURT" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alberto-razzetti", + "name": "Alberto RAZZETTI" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-4-x-100m-freestyle-relay": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + } + ], + "type": "team" + }, + "men-s-4-x-100m-medley-relay": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + } + ], + "type": "team" + }, + "men-s-4-x-200m-freestyle-relay": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + }, + "men-s-400m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1690377355/primary/orivsytqwwmqffl0nofn", + "meta_url": "https://olympics.com/en/athletes/ahmed-hafnaoui", + "name": "Ahmed HAFNAOUI" + }, + "country": "Tunisia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623667760/primary/semguevexlki2qmhcqlu", + "meta_url": "https://olympics.com/en/athletes/jack-mcloughlin", + "name": "Jack MCLOUGHLIN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kieran-smith", + "name": "Kieran SMITH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/henning-bennet-muhlleitner", + "name": "Henning Bennet MUHLLEITNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/felix-auboeck", + "name": "Felix AUBOECK" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626702084/primary/zndpbw0zmlwhunigri2d", + "meta_url": "https://olympics.com/en/athletes/gabriele-detti", + "name": "Gabriele DETTI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/axinyp6cnwsbp9mtx586", + "meta_url": "https://olympics.com/en/athletes/elijah-winnington", + "name": "Elijah WINNINGTON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/jake-mitchell", + "name": "Jake MITCHELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/antonio-djakovic", + "name": "Antonio DJAKOVIC" + }, + "country": "Switzerland" + } + ], + "type": "single" + }, + "men-s-400m-individual-medley": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/djwgtepwjlvenu8vxtjd", + "meta_url": "https://olympics.com/en/athletes/chase-kalisz", + "name": "Chase KALISZ" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/jay-litherland", + "name": "Jay LITHERLAND" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/brendon-smith", + "name": "Brendon SMITH" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/david-verraszto", + "name": "David VERRASZTO" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/max-litchfield", + "name": "Max LITCHFIELD" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/obtej1bgxqhfhskmr0tm", + "meta_url": "https://olympics.com/en/athletes/leon-marchand", + "name": "Leon MARCHAND" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/lewis-clareburt", + "name": "Lewis CLAREBURT" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alberto-razzetti", + "name": "Alberto RAZZETTI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gqludyvc3n4jmvxkvvcd", + "meta_url": "https://olympics.com/en/athletes/daiya-seto", + "name": "Daiya SETO" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "men-s-50m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kxv7nqrkzzwxkvysxdeo", + "meta_url": "https://olympics.com/en/athletes/caeleb-dressel", + "name": "Caeleb DRESSEL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qsxiw6j6cz6qtwojuoxg", + "meta_url": "https://olympics.com/en/athletes/florent-manaudou", + "name": "Florent MANAUDOU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hkgiqafyrwlzehovcwxr", + "meta_url": "https://olympics.com/en/athletes/bruno-fratus", + "name": "Bruno FRATUS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michael-andrew", + "name": "Michael ANDREW" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/ben-proud", + "name": "Ben PROUD" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/kristian-gkolomeev", + "name": "Kristian GKOLOMEEV" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/lorenzo-zazzeri", + "name": "Lorenzo ZAZZERI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/thom-de-boer", + "name": "Thom DE BOER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1616586882/primary/uqrds7ddfjpme758kmrl", + "meta_url": "https://olympics.com/en/athletes/kliment-kolesnikov", + "name": "Kliment KOLESNIKOV" + }, + "country": "ROC" + } + ], + "type": "single" + }, + "men-s-800m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/djqptajhnuf6atwbvw2a", + "meta_url": "https://olympics.com/en/athletes/robert-finke", + "name": "Robert FINKE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dyzcfehub9drzljqcrod", + "meta_url": "https://olympics.com/en/athletes/gregorio-paltrinieri", + "name": "Gregorio PALTRINIERI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/mykhailo-romanchuk", + "name": "Mykhailo ROMANCHUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c7wgxy5rwtdzotjqxtzd", + "meta_url": "https://olympics.com/en/athletes/florian-wellbrock", + "name": "Florian WELLBROCK" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623667760/primary/semguevexlki2qmhcqlu", + "meta_url": "https://olympics.com/en/athletes/jack-mcloughlin", + "name": "Jack MCLOUGHLIN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/serhii-frolov", + "name": "Serhii FROLOV" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/felix-auboeck", + "name": "Felix AUBOECK" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/guilherme-costa", + "name": "Guilherme Costa" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/henrik-christiansen", + "name": "Henrik CHRISTIANSEN" + }, + "country": "Norway" + } + ], + "type": "single" + }, + "mixed-4-x-100m-medley-relay": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Israel", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + }, + "women-s-100m-backstroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/heoopmantspbzhbwwjya", + "meta_url": "https://olympics.com/en/athletes/kaylee-mckeown", + "name": "Kaylee MCKEOWN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kylie-masse", + "name": "Kylie MASSE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/p7laycfs50zkvgr6fhfj", + "meta_url": "https://olympics.com/en/athletes/regan-smith", + "name": "Regan SMITH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/rhyan-elizabeth-white", + "name": "Rhyan Elizabeth WHITE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/y98zudebuqozaji1unok", + "meta_url": "https://olympics.com/en/athletes/emily-seebohm", + "name": "Emily SEEBOHM" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/kathleen-dawson", + "name": "Kathleen DAWSON" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/kira-toussaint", + "name": "Kira TOUSSAINT" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/anastasya-gorbenko", + "name": "Anastasya GORBENKO" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iby2niv9w6e6t562gy30", + "meta_url": "https://olympics.com/en/athletes/taylor-madison-ruck", + "name": "Taylor Madison RUCK" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-100m-breaststroke": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/lydia-jacoby", + "name": "Lydia JACOBY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1690548311/primary/kmk6zjeqjs77jhpgwldc", + "meta_url": "https://olympics.com/en/athletes/tatjana-schoenmaker", + "name": "Tatjana SCHOENMAKER" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vqffnlwprztttdxzxdsx", + "meta_url": "https://olympics.com/en/athletes/lilly-king", + "name": "Lilly KING" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/evgeniia-chikunova", + "name": "Evgeniia CHIKUNOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rdflvnsjc0cvz14sjp7p", + "meta_url": "https://olympics.com/en/athletes/yuliya-efimova", + "name": "Yuliya EFIMOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/sophie-hansson", + "name": "Sophie HANSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/martina-carraro", + "name": "Martina CARRARO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png", + "meta_url": "https://olympics.com/en/athletes/mona-mc-sharry", + "name": "Mona MC SHARRY" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/chelsea-hodges", + "name": "Chelsea HODGES" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-s-100m-butterfly": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hrkqvlfvosfsiy8tdkkj", + "meta_url": "https://olympics.com/en/athletes/margaret-macneil", + "name": "Margaret MAC NEIL" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rmprdc8zqyx4ipdm0cpu", + "meta_url": "https://olympics.com/en/athletes/yufei-zhang", + "name": "Yufei ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pa0vhgawyyqcmaotsqzv", + "meta_url": "https://olympics.com/en/athletes/emma-mckeon", + "name": "Emma MCKEON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1723020268/primary/esfzqxtjplzlboi6usc3", + "meta_url": "https://olympics.com/en/athletes/torri-huske", + "name": "Torri HUSKE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/louise-hansson", + "name": "Louise HANSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/marie-wattel", + "name": "Marie WATTEL" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ka29idoydgneqfrldilm", + "meta_url": "https://olympics.com/en/athletes/sarah-sjoestroem", + "name": "Sarah SJOESTROEM" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/anastasiya-shkurdai", + "name": "Anastasiya SHKURDAI" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/anna-ntountounaki", + "name": "Anna NTOUNTOUNAKI" + }, + "country": "Greece" + } + ], + "type": "single" + }, + "women-s-100m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pa0vhgawyyqcmaotsqzv", + "meta_url": "https://olympics.com/en/athletes/emma-mckeon", + "name": "Emma MCKEON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/siobhan-bernadette-haughey", + "name": "Siobhan Bernadette HAUGHEY" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jvaa8qbpr40bmymqrwux", + "meta_url": "https://olympics.com/en/athletes/cate-campbell", + "name": "Cate CAMPBELL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nnn68bmtzhphgmbmywec", + "meta_url": "https://olympics.com/en/athletes/penny-oleksiak", + "name": "Penny OLEKSIAK" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ka29idoydgneqfrldilm", + "meta_url": "https://olympics.com/en/athletes/sarah-sjoestroem", + "name": "Sarah SJOESTROEM" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/femke-heemskerk", + "name": "Femke HEEMSKERK" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/anna-hopkin", + "name": "Anna HOPKIN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/udksrd7gd53oe3peuzip", + "meta_url": "https://olympics.com/en/athletes/abbey-weitzeil", + "name": "Abbey WEITZEIL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695737258/primary/ty1npxr5mhah1jhv8dqr", + "meta_url": "https://olympics.com/en/athletes/junxuan-yang", + "name": "Junxuan YANG" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "women-s-1500m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695908400/primary/qrgvoximtbab3hvo67sh", + "meta_url": "https://olympics.com/en/athletes/katie-ledecky", + "name": "Katie LEDECKY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/erica-sullivan", + "name": "Erica SULLIVAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/sarah-kohler", + "name": "Sarah KOHLER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jianjiahe-wang", + "name": "Jianjiahe WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/simona-quadarella", + "name": "Simona QUADARELLA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kiah-melverton", + "name": "Kiah MELVERTON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/anastasiia-kirpichnikova", + "name": "Anastasiia KIRPICHNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/maddy-gough", + "name": "Maddy GOUGH" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/ajna-kesely", + "name": "Ajna KESELY" + }, + "country": "Hungary" + } + ], + "type": "single" + }, + "women-s-200m-backstroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/heoopmantspbzhbwwjya", + "meta_url": "https://olympics.com/en/athletes/kaylee-mckeown", + "name": "Kaylee MCKEOWN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kylie-masse", + "name": "Kylie MASSE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/y98zudebuqozaji1unok", + "meta_url": "https://olympics.com/en/athletes/emily-seebohm", + "name": "Emily SEEBOHM" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/rhyan-elizabeth-white", + "name": "Rhyan Elizabeth WHITE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/phoebe-bacon", + "name": "Phoebe BACON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iby2niv9w6e6t562gy30", + "meta_url": "https://olympics.com/en/athletes/taylor-madison-ruck", + "name": "Taylor Madison RUCK" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/xuwei-peng", + "name": "Xuwei PENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yaxin-liu", + "name": "Yaxin LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/margherita-panziera", + "name": "Margherita PANZIERA" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "women-s-200m-breaststroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1690548311/primary/kmk6zjeqjs77jhpgwldc", + "meta_url": "https://olympics.com/en/athletes/tatjana-schoenmaker", + "name": "Tatjana SCHOENMAKER" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vqffnlwprztttdxzxdsx", + "meta_url": "https://olympics.com/en/athletes/lilly-king", + "name": "Lilly KING" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/annie-lazor", + "name": "Annie LAZOR" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/evgeniia-chikunova", + "name": "Evgeniia CHIKUNOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/RSA.png", + "meta_url": "https://olympics.com/en/athletes/kaylene-corbett", + "name": "Kaylene CORBETT" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/molly-renshaw", + "name": "Molly RENSHAW" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/abbie-wood", + "name": "Abbie WOOD" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/fanny-lecluyse", + "name": "Fanny LECLUYSE" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/jenna-strauch", + "name": "Jenna STRAUCH" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-s-200m-butterfly": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rmprdc8zqyx4ipdm0cpu", + "meta_url": "https://olympics.com/en/athletes/yufei-zhang", + "name": "Yufei ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/p7laycfs50zkvgr6fhfj", + "meta_url": "https://olympics.com/en/athletes/regan-smith", + "name": "Regan SMITH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/hali-flickinger", + "name": "Hali FLICKINGER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/boglarka-kapas", + "name": "Boglarka KAPAS" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/svetlana-chimrova", + "name": "Svetlana CHIMROVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/liyan-yu", + "name": "Liyan YU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/alys-margaret-thomas", + "name": "Alys Margaret THOMAS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1617010420/primary/fmpe2fsndpjbdnrfg0b6", + "meta_url": "https://olympics.com/en/athletes/brianna-throssell", + "name": "Brianna THROSSELL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/suzuka-hasegawa", + "name": "Suzuka HASEGAWA" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "women-s-200m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623685020/primary/pc675hnxouye7qdhjjzm", + "meta_url": "https://olympics.com/en/athletes/ariarne-titmus", + "name": "Ariarne Titmus" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/siobhan-bernadette-haughey", + "name": "Siobhan Bernadette HAUGHEY" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nnn68bmtzhphgmbmywec", + "meta_url": "https://olympics.com/en/athletes/penny-oleksiak", + "name": "Penny OLEKSIAK" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695737258/primary/ty1npxr5mhah1jhv8dqr", + "meta_url": "https://olympics.com/en/athletes/junxuan-yang", + "name": "Junxuan YANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695908400/primary/qrgvoximtbab3hvo67sh", + "meta_url": "https://olympics.com/en/athletes/katie-ledecky", + "name": "Katie LEDECKY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/barbora-seemanova", + "name": "Barbora SEEMANOVA" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/enmf9h0lsictox0k4mq7", + "meta_url": "https://olympics.com/en/athletes/federica-pellegrini", + "name": "Federica PELLEGRINI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623933442/primary/luazonx4lhrdvn9ek8dw", + "meta_url": "https://olympics.com/en/athletes/madison-wilson", + "name": "Madison WILSON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/lin4rd5r0q7u4oxo38p3", + "meta_url": "https://olympics.com/en/athletes/summer-mcintosh", + "name": "Summer MCINTOSH" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-200m-individual-medley": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/toyzqtprxhex9xck8ww4", + "meta_url": "https://olympics.com/en/athletes/yui-ohashi", + "name": "Yui OHASHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/alex-walsh", + "name": "Alex WALSH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707811035/primary/enoozouf0cuuehedgaua", + "meta_url": "https://olympics.com/en/athletes/kate-douglass", + "name": "Kate DOUGLASS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/abbie-wood", + "name": "Abbie WOOD" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yiting-yu", + "name": "Yiting YU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/sydney-pickrem", + "name": "Sydney PICKREM" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vrswu1rivvqqhzsirzly", + "meta_url": "https://olympics.com/en/athletes/katinka-hosszu", + "name": "Katinka HOSSZU" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/alicia-wilson", + "name": "Alicia WILSON" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/maria-ugolkova", + "name": "Maria UGOLKOVA" + }, + "country": "Switzerland" + } + ], + "type": "single" + }, + "women-s-4-x-100m-freestyle-relay": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + }, + "women-s-4-x-100m-medley-relay": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + } + ], + "type": "team" + }, + "women-s-4-x-200m-freestyle-relay": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + }, + "women-s-400m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623685020/primary/pc675hnxouye7qdhjjzm", + "meta_url": "https://olympics.com/en/athletes/ariarne-titmus", + "name": "Ariarne Titmus" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695908400/primary/qrgvoximtbab3hvo67sh", + "meta_url": "https://olympics.com/en/athletes/katie-ledecky", + "name": "Katie LEDECKY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695737682/primary/aa9v5baxx98xykpilwf6", + "meta_url": "https://olympics.com/en/athletes/bingjie-li", + "name": "Bingjie LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/lin4rd5r0q7u4oxo38p3", + "meta_url": "https://olympics.com/en/athletes/summer-mcintosh", + "name": "Summer MCINTOSH" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/muhan-tang", + "name": "Muhan TANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/isabel-gose", + "name": "Isabel GOSE" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/paige-madden", + "name": "Paige MADDEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/erika-fairweather", + "name": "Erika FAIRWEATHER" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/tamsin-cook", + "name": "Tamsin COOK" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-s-400m-individual-medley": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/toyzqtprxhex9xck8ww4", + "meta_url": "https://olympics.com/en/athletes/yui-ohashi", + "name": "Yui OHASHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/emma-weyant", + "name": "Emma WEYANT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/hali-flickinger", + "name": "Hali FLICKINGER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/woicsnuonxqh79wpfc8u", + "meta_url": "https://olympics.com/en/athletes/mireia-belmonte", + "name": "Mireia BELMONTE" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vrswu1rivvqqhzsirzly", + "meta_url": "https://olympics.com/en/athletes/katinka-hosszu", + "name": "Katinka HOSSZU" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/viktoria-mihalyvari-farkas", + "name": "Viktoria MIHALYVARI-FARKAS" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/aimee-willmott", + "name": "Aimee WILLMOTT" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/ilaria-cusinato", + "name": "Ilaria CUSINATO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/sara-franceschi", + "name": "Sara FRANCESCHI" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "women-s-50m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pa0vhgawyyqcmaotsqzv", + "meta_url": "https://olympics.com/en/athletes/emma-mckeon", + "name": "Emma MCKEON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ka29idoydgneqfrldilm", + "meta_url": "https://olympics.com/en/athletes/sarah-sjoestroem", + "name": "Sarah SJOESTROEM" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cahpm2zrtzz3hpacot48", + "meta_url": "https://olympics.com/en/athletes/pernille-blume", + "name": "Pernille BLUME" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/ranomi-kromowidjojo", + "name": "Ranomi KROMOWIDJOJO" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/katarzyna-wasick", + "name": "Katarzyna WASICK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/qingfeng-wu", + "name": "Qingfeng WU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jvaa8qbpr40bmymqrwux", + "meta_url": "https://olympics.com/en/athletes/cate-campbell", + "name": "Cate CAMPBELL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/udksrd7gd53oe3peuzip", + "meta_url": "https://olympics.com/en/athletes/abbey-weitzeil", + "name": "Abbey WEITZEIL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rmprdc8zqyx4ipdm0cpu", + "meta_url": "https://olympics.com/en/athletes/yufei-zhang", + "name": "Yufei ZHANG" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "women-s-800m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695908400/primary/qrgvoximtbab3hvo67sh", + "meta_url": "https://olympics.com/en/athletes/katie-ledecky", + "name": "Katie LEDECKY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623685020/primary/pc675hnxouye7qdhjjzm", + "meta_url": "https://olympics.com/en/athletes/ariarne-titmus", + "name": "Ariarne Titmus" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/simona-quadarella", + "name": "Simona QUADARELLA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/katie-grimes", + "name": "Katie GRIMES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jianjiahe-wang", + "name": "Jianjiahe WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kiah-melverton", + "name": "Kiah MELVERTON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/sarah-kohler", + "name": "Sarah KOHLER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/anastasiia-kirpichnikova", + "name": "Anastasiia KIRPICHNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/isabel-gose", + "name": "Isabel GOSE" + }, + "country": "Germany" + } + ], + "type": "single" + } + }, + "table-tennis": { + "men-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fzlkiegp1vzcpvrtm1m7", + "meta_url": "https://olympics.com/en/athletes/long-ma", + "name": "Long MA" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/howuvlnhkxz56fbywbof", + "meta_url": "https://olympics.com/en/athletes/zhendong-fan", + "name": "Zhendong FAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zakjra07vstunkgfrwfl", + "meta_url": "https://olympics.com/en/athletes/dimitrij-ovtcharov", + "name": "Dimitrij OVTCHAROV" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/yun-ju-lin", + "name": "Yun Ju LIN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/omar-assar", + "name": "Omar ASSAR" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t7d0eum7ska7q2rrfbd0", + "meta_url": "https://olympics.com/en/athletes/hugo-calderano", + "name": "Hugo CALDERANO" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/youngsik-jeoung", + "name": "Youngsik JEOUNG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/darko-jorgic", + "name": "Darko JORGIC" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/erdk67agt9ow3osg2scg", + "meta_url": "https://olympics.com/en/athletes/timo-boll", + "name": "Timo BOLL" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-team": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Chinese Taipei", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + }, + "mixed-doubles": { + "participants": [ + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Chinese Taipei", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Hong Kong, China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + }, + "women-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624013812/primary/kab5dmo6rpsagv0e6uwm", + "meta_url": "https://olympics.com/en/athletes/meng-chen-x5731", + "name": "Meng CHEN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696002980/primary/m3gq4irvems4btwcmgn8", + "meta_url": "https://olympics.com/en/athletes/yingsha-sun", + "name": "Yingsha SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1607509059/primary/f5asrxt6olrymnjb99fr", + "meta_url": "https://olympics.com/en/athletes/mima-ito", + "name": "Mima ITO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SGP.png", + "meta_url": "https://olympics.com/en/athletes/mengyu-yu", + "name": "Mengyu YU" + }, + "country": "Singapore" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/hoi-kem-doo", + "name": "Hoi Kem DOO" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/ying-han", + "name": "Ying HAN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/atnb9asft1hm5inea0yl", + "meta_url": "https://olympics.com/en/athletes/kasumi-ishikawa", + "name": "Kasumi ISHIKAWA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/jihee-jeon", + "name": "Jihee JEON" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/szu-yu-chen", + "name": "Szu-Yu CHEN" + }, + "country": "Chinese Taipei" + } + ], + "type": "single" + }, + "women-s-team": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Hong Kong, China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Singapore", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SGP.png" + }, + { + "country": "Chinese Taipei", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + } + }, + "taekwondo": { + "men-58kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/vito-dell-aquila", + "name": "Vito DELL'AQUILA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/mohamed-khalil-jendoubi", + "name": "Mohamed Khalil JENDOUBI" + }, + "country": "Tunisia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/jun-jang", + "name": "Jun JANG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/mikhail-artamonov", + "name": "Mikhail ARTAMONOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png", + "meta_url": "https://olympics.com/en/athletes/lucas-guzman", + "name": "Lucas GUZMAN" + }, + "country": "Argentina" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/omar-salim", + "name": "Omar SALIM" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/solomon-demse", + "name": "Solomon DEMSE" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/ramnarong-sawekwiharee", + "name": "Ramnarong SAWEKWIHAREE" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/adrian-vicente-yunta", + "name": "Adrian VICENTE YUNTA" + }, + "country": "Spain" + } + ], + "type": "single" + }, + "men-68kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/ulugbek-rashitov", + "name": "Ulugbek RASHITOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/bradly-sinden", + "name": "Bradly SINDEN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shuai-zhao", + "name": "Shuai ZHAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/hakan-recber", + "name": "Hakan RECBER" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BIH.png", + "meta_url": "https://olympics.com/en/athletes/nedzad-husic", + "name": "Nedzad HUSIC" + }, + "country": "Bosnia & Herzegovina" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/khucboqzk91oto7jkstu", + "meta_url": "https://olympics.com/en/athletes/daehoon-lee", + "name": "Daehoon LEE" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/mirhashem-hosseini", + "name": "Mirhashem HOSSEINI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/tom-burns", + "name": "Tom BURNS" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/bernardo-pie", + "name": "Bernardo PIE" + }, + "country": "Dominican Rep" + } + ], + "type": "single" + }, + "men-80kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vvxhqo50kmvzpwkz75th", + "meta_url": "https://olympics.com/en/athletes/maksim-khramtcov", + "name": "Maksim KHRAMTCOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JOR.png", + "meta_url": "https://olympics.com/en/athletes/saleh-elsharabaty", + "name": "Saleh ELSHARABATY" + }, + "country": "Jordan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/toni-kanaet", + "name": "Toni KANAET" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/seif-eissa", + "name": "Seif EISSA" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/richard-andre-ordemann", + "name": "Richard Andre ORDEMANN" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/nikita-rafalovich", + "name": "Nikita RAFALOVICH" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUR.png", + "meta_url": "https://olympics.com/en/athletes/faysal-sawadogo", + "name": "Faysal SAWADOGO" + }, + "country": "Burkina Faso" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAR.png", + "meta_url": "https://olympics.com/en/athletes/achraf-mahboubi", + "name": "Achraf MAHBOUBI" + }, + "country": "Morocco" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/milad-beigi-harchegani", + "name": "Milad BEIGI HARCHEGANI" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-over-80kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xexdk7uxuibfwjsipb9h", + "meta_url": "https://olympics.com/en/athletes/vladislav-larin", + "name": "Vladislav LARIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MKD.png", + "meta_url": "https://olympics.com/en/athletes/dejan-georgievski", + "name": "Dejan GEORGIEVSKI" + }, + "country": "North Macedonia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/rafael-castillo", + "name": "Rafael ALBA CASTILLO" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/kyo-don-in", + "name": "Kyo Don IN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/hongyi-sun", + "name": "Hongyi SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/ivan-konrad-trajkovic", + "name": "Ivan Konrad TRAJKOVIC" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CIV.png", + "meta_url": "https://olympics.com/en/athletes/seydou-gbane", + "name": "Seydou GBANE" + }, + "country": "Côte d'Ivoire" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/a75nxyatdxqzatodqdia", + "meta_url": "https://olympics.com/en/athletes/pita-nikolas-taufatofua", + "name": "Pita Nikolas TAUFATOFUA" + }, + "country": "Tonga" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/ivan-sapina", + "name": "Ivan SAPINA" + }, + "country": "Croatia" + } + ], + "type": "single" + }, + "women-49kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tigu0xnbczmkxbxvcb1m", + "meta_url": "https://olympics.com/en/athletes/panipak-wongpattanakit", + "name": "Panipak WONGPATTANAKIT" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/butixan1eov9fplntmav", + "meta_url": "https://olympics.com/en/athletes/adriana-cerezo-iglesias", + "name": "Adriana CEREZO IGLESIAS" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/abishag-semberg", + "name": "Abishag SEMBERG" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/tijana-bogdanovic", + "name": "Tijana BOGDANOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/miyu-yamada", + "name": "Miyu YAMADA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/rukiye-yildirim", + "name": "Rukiye YILDIRIM" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jingyu-wu", + "name": "Jingyu WU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VIE.png", + "meta_url": "https://olympics.com/en/athletes/thi-kim-tuyen-truong", + "name": "Thi Kim Tuyen TRUONG" + }, + "country": "Vietnam" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/andrea-ramirez-vargas", + "name": "Andrea RAMIREZ VARGAS" + }, + "country": "Colombia" + } + ], + "type": "single" + }, + "women-57kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/anastasija-zolotic", + "name": "Anastasija ZOLOTIC" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/tatiana-kudashova", + "name": "Tatiana KUDASHOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chia-ling-lo", + "name": "Chia-Ling LO" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/hatice-kubra-ilgun", + "name": "Hatice Kubra ILGUN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/z2yb1qimb7phow00saef", + "meta_url": "https://olympics.com/en/athletes/kimia-alizadeh-zenoorin", + "name": "Kimia ALIZADEH ZENOZI" + }, + "country": "EOR" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NIG.png", + "meta_url": "https://olympics.com/en/athletes/tekiath-ben-yessouf", + "name": "Tekiath BEN YESSOUF" + }, + "country": "Niger" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/fani-tzeli", + "name": "Fani TZELI" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAR.png", + "meta_url": "https://olympics.com/en/athletes/nada-laaraj", + "name": "Nada LAARAJ" + }, + "country": "Morocco" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/skylar-park", + "name": "Skylar PARK" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-67kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/matea-jelic", + "name": "Matea JELIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/lauren-williams", + "name": "Lauren WILLIAMS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CIV.png", + "meta_url": "https://olympics.com/en/athletes/ruth-marie-christelle-gbagbi", + "name": "Ruth Marie Christelle GBAGBI" + }, + "country": "Côte d'Ivoire" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/hedaya-wahba", + "name": "Hedaya WAHBA" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/milena-titoneli", + "name": "Milena TITONELI" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/paige-mcpherson", + "name": "Paige MCPHERSON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HAI.png", + "meta_url": "https://olympics.com/en/athletes/lauren-lee", + "name": "Lauren LEE" + }, + "country": "Haiti" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TGA.png", + "meta_url": "https://olympics.com/en/athletes/malia-paseka", + "name": "Malia PASEKA" + }, + "country": "Tonga" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/mengyu-zhang", + "name": "Mengyu ZHANG" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "women-over-67kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1668858934/primary/qao3ogid8a2r8xnuipqb", + "meta_url": "https://olympics.com/en/athletes/milica-mandic", + "name": "Milica MANDIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/dabin-lee", + "name": "Dabin LEE" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/althea-laurin", + "name": "Althea LAURIN" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1668858603/primary/ziaojdttbllb3jhhgyfr", + "meta_url": "https://olympics.com/en/athletes/bianca-walkden", + "name": "Bianca WALKDEN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CIV.png", + "meta_url": "https://olympics.com/en/athletes/aminata-charlene-traore", + "name": "Aminata Charlene TRAORE" + }, + "country": "Côte d'Ivoire" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/aleksandra-kowalczuk", + "name": "Aleksandra KOWALCZUK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/katherine-julissa-rodriguez-peguero", + "name": "Katherine Julissa RODRIGUEZ PEGUERO" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/faith-ogallo", + "name": "Faith OGALLO" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shuyin-zheng", + "name": "Shuyin ZHENG" + }, + "country": "P. R. China" + } + ], + "type": "single" + } + }, + "tennis": { + "men-s-doubles": { + "participants": [ + { + "country": "Croatia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png" + }, + { + "country": "Croatia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Colombia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "men-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nuub9gaimp6bp5rwg0al", + "meta_url": "https://olympics.com/en/athletes/alexander-zverev", + "name": "Alexander ZVEREV" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zym6j49i5ptdrjykaxsq", + "meta_url": "https://olympics.com/en/athletes/karen-khachanov", + "name": "Karen KHACHANOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/pablo-carreno-busta", + "name": "Pablo CARRENO BUSTA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/e8ffrpndxqrjf6o65etj", + "meta_url": "https://olympics.com/en/athletes/novak-djokovic", + "name": "Novak DJOKOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/jeremy-chardy", + "name": "Jeremy CHARDY" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/aynssg7uby2hgobpi7nf", + "meta_url": "https://olympics.com/en/athletes/ugo-humbert", + "name": "Ugo HUMBERT" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": null, + "name": "Daniil Medvedev" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rfewqah7ow26jmwtjh9n", + "meta_url": "https://olympics.com/en/athletes/kei-nishikori", + "name": "Kei NISHIKORI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/nikoloz-basilashvili", + "name": "Nikoloz BASILASHVILI" + }, + "country": "Georgia" + } + ], + "type": "single" + }, + "mixed-doubles": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Greece", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + } + ], + "type": "team" + }, + "women-s-doubles": { + "participants": [ + { + "country": "Czechia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + } + ], + "type": "team" + }, + "women-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1628503959/primary/gpjtvp9zv5rytedjsynh", + "meta_url": "https://olympics.com/en/athletes/belinda-bencic", + "name": "Belinda BENCIC" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627378985/primary/ukb4tmrdaxajp3irtvjo", + "meta_url": "https://olympics.com/en/athletes/marketa-vondrousova", + "name": "Marketa VONDROUSOVA" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1705143803/primary/dam9nfpd086al7wiq7eb", + "meta_url": "https://olympics.com/en/athletes/elina-svitolina", + "name": "Elina SVITOLINA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1683299103/primary/bwkgmwmpx45xcwswglet", + "meta_url": "https://olympics.com/en/athletes/elena-rybakina", + "name": "Elena RYBAKINA" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wjrfunvwqrsuwgswmlhd", + "meta_url": "https://olympics.com/en/athletes/paula-badosa", + "name": "Paula BADOSA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/camila-giorgi", + "name": "Camila GIORGI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ka65ldeidu0bvhxcdjlg", + "meta_url": "https://olympics.com/en/athletes/garbine-muguruza", + "name": "Garbine MUGURUZA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/anastasia-pavlyuchenkova", + "name": "Anastasia PAVLYUCHENKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/barbora-krejcikova", + "name": "Barbora KREJCIKOVA" + }, + "country": "Czechia" + } + ], + "type": "single" + } + }, + "trampoline-gymnastics": { + "men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/ivan-litvinovich", + "name": "Ivan LITVINOVICH" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gm4tehxjkvgw7xpfx01r", + "meta_url": "https://olympics.com/en/athletes/dong-dong", + "name": "Dong DONG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/g6f5e4xzgenrnzbfunxl", + "meta_url": "https://olympics.com/en/athletes/dylan-schmidt", + "name": "Dylan SCHMIDT" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/eu145kjoasg22rnwhy7m", + "meta_url": "https://olympics.com/en/athletes/uladzislau-hancharou", + "name": "Uladzislau HANCHAROU" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/u0noarpdgdkmgkvhrbcl", + "meta_url": "https://olympics.com/en/athletes/dmitry-ushakov", + "name": "Dmitry USHAKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/andrey-yudin", + "name": "Andrey YUDIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/daiki-kishi", + "name": "Daiki KISHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1668858178/primary/n2vks7liwqegfrbubebr", + "meta_url": "https://olympics.com/en/athletes/dominic-clarke", + "name": "Dominic CLARKE" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/angel-hernandez-recalde", + "name": "Angel HERNANDEZ RECALDE" + }, + "country": "Colombia" + } + ], + "type": "single" + }, + "women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/xueying-zhu", + "name": "Xueying ZHU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/lingling-liu", + "name": "Lingling LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/w6w0a3k0zit3m2lqc9hj", + "meta_url": "https://olympics.com/en/athletes/bryony-page", + "name": "Bryony PAGE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/chx37bhay9yrysldirzf", + "meta_url": "https://olympics.com/en/athletes/rosannagh-maclennan", + "name": "Rosannagh MACLENNAN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/megu-uyama", + "name": "Megu UYAMA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/nicole-ahsinger", + "name": "Nicole AHSINGER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/susana-kochesok", + "name": "Susana KOCHESOK" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/dafne-navarro-loza", + "name": "Dafne NAVARRO LOZA" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/malak-hamza", + "name": "Malak HAMZA" + }, + "country": "Egypt" + } + ], + "type": "single" + } + }, + "triathlon": { + "men-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/kristian-blummenfelt", + "name": "Kristian BLUMMENFELT" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704279835/primary/eksxi1tk4sfvo24ie8tj", + "meta_url": "https://olympics.com/en/athletes/alex-yee", + "name": "Alex YEE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/hayden-wilde", + "name": "Hayden WILDE" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/marten-van-riel", + "name": "Marten VAN RIEL" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ue2kdzn9i5z1f04sxtop", + "meta_url": "https://olympics.com/en/athletes/jonathan-brownlee", + "name": "Jonathan BROWNLEE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kevin-mcdowell", + "name": "Kevin MCDOWELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/bence-bicsak", + "name": "Bence BICSAK" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/gustav-iden", + "name": "Gustav IDEN" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/max-studer", + "name": "Max STUDER" + }, + "country": "Switzerland" + } + ], + "type": "single" + }, + "mixed-relay": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + }, + "women-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1655913118/primary/aopkmtbyyc7fbhoh6gzz", + "meta_url": "https://olympics.com/en/athletes/flora-duffy", + "name": "Flora DUFFY" + }, + "country": "Bermuda" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1688818527/primary/tmzllevp5ss3fddmeibm", + "meta_url": "https://olympics.com/en/athletes/georgia-taylor-brown", + "name": "Georgia TAYLOR-BROWN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/katie-zaferes", + "name": "Katie ZAFERES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/rachel-klamer", + "name": "Rachel KLAMER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/leonie-periault", + "name": "Leonie PERIAULT" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xp1xljkimfu1fh8xggw7", + "meta_url": "https://olympics.com/en/athletes/nicola-spirig", + "name": "Nicola SPIRIG" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alice-betto", + "name": "Alice BETTO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/laura-lindemann", + "name": "Laura LINDEMANN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jessica-learmonth", + "name": "Jessica LEARMONTH" + }, + "country": "Great Britain" + } + ], + "type": "single" + } + }, + "volleyball": { + "men": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Isl Rep of Iran", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Türkiye", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Dominican Rep", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + } + }, + "water-polo": { + "men": { + "participants": [ + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Greece", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Croatia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Montenegro", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MNE.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + } + }, + "weightlifting": { + "men-s-109kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/akbar-djuraev", + "name": "Akbar DJURAEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/simon-martirosyan", + "name": "Simon MARTIROSYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png", + "meta_url": "https://olympics.com/en/athletes/arturs-plesnieks", + "name": "Arturs PLESNIEKS" + }, + "country": "Latvia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/timur-naniev", + "name": "Timur NANIEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/hristo-dimitrov-hristov", + "name": "Hristo Dimitrov HRISTOV" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/yunseong-jin", + "name": "Yunseong JIN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/arkadiusz-michalski", + "name": "Arkadiusz MICHALSKI" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/wesley-brian-kitts", + "name": "Wesley Brian KITTS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/aymen-bacha", + "name": "Aymen BACHA" + }, + "country": "Tunisia" + } + ], + "type": "single" + }, + "men-s-61kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707811692/primary/dis8zyebasfw8ad2iqt1", + "meta_url": "https://olympics.com/en/athletes/fabin-li", + "name": "Fabin LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png", + "meta_url": "https://olympics.com/en/athletes/eko-yuli-irawan", + "name": "Eko Yuli IRAWAN" + }, + "country": "Indonesia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/igor-son", + "name": "Igor SON" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yoichi-itokazu", + "name": "Yoichi ITOKAZU" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KSA.png", + "meta_url": "https://olympics.com/en/athletes/seraj-abdulrahim-m-alsaleem", + "name": "Seraj Abdulrahim M ALSALEEM" + }, + "country": "Saudi Arabia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/davide-ruiu", + "name": "Davide RUIU" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/shota-mishvelidze", + "name": "Shota MISHVELIDZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/luis-alberto-garcia-brito", + "name": "Luis Alberto GARCIA BRITO" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/simon-josef-brandhuber", + "name": "Simon Josef BRANDHUBER" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-67kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/lijun-chen", + "name": "Lijun CHEN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1678442424/primary/nixixez5ggrj8vxlwyqr", + "meta_url": "https://olympics.com/en/athletes/luis-javier-mosquera-lozano", + "name": "Luis Javier MOSQUERA LOZANO" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/mirko-zanni", + "name": "Mirko ZANNI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/myeongmok-han", + "name": "Myeongmok HAN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PAK.png", + "meta_url": "https://olympics.com/en/athletes/talha-talib", + "name": "Talha TALIB" + }, + "country": "Pakistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/adkhamjon-ergashev", + "name": "Adkhamjon ERGASHEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/mitsunori-konnai", + "name": "Mitsunori KONNAI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/goga-chkheidze", + "name": "Goga CHKHEIDZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png", + "meta_url": "https://olympics.com/en/athletes/deni-x0003", + "name": ". DENI" + }, + "country": "Indonesia" + } + ], + "type": "single" + }, + "men-s-73kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zhiyong-shi-1", + "name": "Zhiyong SHI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/julio-ruben-mayora-pernia", + "name": "Julio Ruben MAYORA PERNIA" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png", + "meta_url": "https://olympics.com/en/athletes/rahmat-erwin-abdullah", + "name": "Rahmat Erwin ABDULLAH" + }, + "country": "Indonesia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALB.png", + "meta_url": "https://olympics.com/en/athletes/briken-calja", + "name": "Briken CALJA" + }, + "country": "Albania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/bozhidar-dimitrov-andreev", + "name": "Bozhidar Dimitrov ANDREEV" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/karem-ben-hnia", + "name": "Karem BEN HNIA" + }, + "country": "Tunisia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/masanori-miyamoto", + "name": "Masanori MIYAMOTO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/marin-robu", + "name": "Marin ROBU" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/clarence-cummings-jr", + "name": "Clarence CUMMINGS JR" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-81kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fkd4v9ifkoauxgs0t9tp", + "meta_url": "https://olympics.com/en/athletes/xiaojun-lyu", + "name": "Xiaojun LYU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/zacarias-bonnat-michel", + "name": "Zacarias BONNAT MICHEL" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/antonino-pizzolato", + "name": "Antonino PIZZOLATO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/harrison-james-maurus", + "name": "Harrison James MAURUS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/brayan-santiago-rodallegas-carvajal", + "name": "Brayan Santiago RODALLEGAS CARVAJAL" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png", + "meta_url": "https://olympics.com/en/athletes/ritvars-suharevs", + "name": "Ritvars SUHAREVS" + }, + "country": "Latvia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/nico-mueller", + "name": "Nico MUELLER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/andres-eduardo-mata-perez", + "name": "Andres Eduardo MATA PEREZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALB.png", + "meta_url": "https://olympics.com/en/athletes/erkand-qerimaj", + "name": "Erkand QERIMAJ" + }, + "country": "Albania" + } + ], + "type": "single" + }, + "men-s-96kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/QAT.png", + "meta_url": "https://olympics.com/en/athletes/fares-ibrahim-e-h-elbakh", + "name": "Fares Ibrahim E. H. ELBAKH" + }, + "country": "Qatar" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/keydomar-giovanni-vallenilla-sanchez", + "name": "Keydomar Giovanni VALLENILLA SANCHEZ" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/anton-pliesnoi", + "name": "Anton PLIESNOI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/boady-robert-santavy", + "name": "Boady Robert SANTAVY" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/po-jen-chen", + "name": "Po-Jen CHEN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/bekdoolot-rasulbekov", + "name": "Bekdoolot RASULBEKOV" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/bartlomiej-stefan-adamus", + "name": "Bartlomiej Stefan ADAMUS" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/dongju-yu", + "name": "Dongju YU" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/olfides-saez-vera", + "name": "Olfides SAEZ VERA" + }, + "country": "Cuba" + } + ], + "type": "single" + }, + "men-s-over-109kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1668859988/primary/nd9flvqav2guoqkdjcmi", + "meta_url": "https://olympics.com/en/athletes/lasha-talakhadze", + "name": "Lasha TALAKHADZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/ali-davoudi", + "name": "Ali DAVOUDI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SYR.png", + "meta_url": "https://olympics.com/en/athletes/man-asaad", + "name": "Man ASAAD" + }, + "country": "Syria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TKM.png", + "meta_url": "https://olympics.com/en/athletes/hojamuhammet-toychyyev", + "name": "Hojamuhammet TOYCHYYEV" + }, + "country": "Turkmenistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/david-andrew-liti", + "name": "David Andrew LITI" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/enzo-kofi-kuworge", + "name": "Enzo Kofi KUWORGE" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/peter-nagy-2", + "name": "Peter NAGY" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/marcos-ruiz-i-velasco", + "name": "Marcos RUIZ I VELASCO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/caine-morgan-wilkes", + "name": "Caine Morgan WILKES" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-49kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zhihui-hou", + "name": "Zhihui HOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iqxxg1lk6qekg9nddurp", + "meta_url": "https://olympics.com/en/athletes/chanu-saikhom-mirabai", + "name": "Chanu Saikhom MIRABAI CHANU" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png", + "meta_url": "https://olympics.com/en/athletes/windy-cantika-aisah", + "name": "Windy Cantika AISAH" + }, + "country": "Indonesia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/wan-ling-fang", + "name": "Wan-Ling FANG" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/nina-sterckx", + "name": "Nina STERCKX" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/ludia-marguiela-montero-ramos", + "name": "Ludia Marguiela MONTERO RAMOS" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/anais-michel", + "name": "Anais MICHEL" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/beatriz-elizabeth-piron-candelario", + "name": "Beatriz Elizabeth PIRON CANDELARIO" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/nathasha-rosa-figueiredo", + "name": "Nathasha ROSA FIGUEIREDO" + }, + "country": "Brazil" + } + ], + "type": "single" + }, + "women-s-55kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/f1blomjcuzui0pwavuv5", + "meta_url": "https://olympics.com/en/athletes/hidilyn-diaz", + "name": "Hidilyn DIAZ" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/qiuyun-liao", + "name": "Qiuyun LIAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/zulfiya-chinshanlo", + "name": "Zulfiya CHINSHANLO" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/muattar-nabieva", + "name": "Muattar NABIEVA" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/kamila-konotop", + "name": "Kamila KONOTOP" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TKM.png", + "meta_url": "https://olympics.com/en/athletes/kristina-shermetova", + "name": "Kristina SHERMETOVA" + }, + "country": "Turkmenistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/eunji-ham", + "name": "Eunji HAM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/nouha-landoulsi", + "name": "Nouha LANDOULSI" + }, + "country": "Tunisia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/ana-gabriela-lopez-ferrer", + "name": "Ana Gabriela LOPEZ FERRER" + }, + "country": "Mexico" + } + ], + "type": "single" + }, + "women-s-59kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/hsing-chun-kuo", + "name": "Hsing-Chun KUO" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TKM.png", + "meta_url": "https://olympics.com/en/athletes/polina-guryeva", + "name": "Polina GURYEVA" + }, + "country": "Turkmenistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/mikiko-andoh", + "name": "Mikiko ANDOH" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/dora-meiriama-tchakounte", + "name": "Dora Meiriama TCHAKOUNTE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VIE.png", + "meta_url": "https://olympics.com/en/athletes/thi-duyen-hoang", + "name": "Thi Duyen HOANG" + }, + "country": "Vietnam" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/yusleidy-mariana-figueroa-roldan", + "name": "Yusleidy Mariana FIGUEROA ROLDAN" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/izabella-yaylyan", + "name": "Izabella YAYLYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/zoe-smith", + "name": "Zoe SMITH" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/tali-darsigny", + "name": "Tali DARSIGNY" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-64kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1668859337/primary/q0angw7qo6t1kbqn4wdd", + "meta_url": "https://olympics.com/en/athletes/maude-g-charron", + "name": "Maude Garon CHARRON" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/giorgia-bordignon", + "name": "Giorgia BORDIGNON" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/wen-huei-chen", + "name": "Wen-Huei CHEN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/mercedes-isabel-perez-tigrero", + "name": "Mercedes Isabel PEREZ TIGRERO" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/sarah-davies", + "name": "Sarah DAVIES" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/angie-paola-palacios-dajomes", + "name": "Angie Paola PALACIOS DAJOMES" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PHI.png", + "meta_url": "https://olympics.com/en/athletes/elreen-ann-ando", + "name": "Elreen Ann ANDO" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/marina-de-la-caridad-rodriguez-mitjan", + "name": "Marina de la Caridad RODRIGUEZ MITJAN" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/nuray-levent", + "name": "Nuray LEVENT" + }, + "country": "Türkiye" + } + ], + "type": "single" + }, + "women-s-76kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1693727846/primary/tgpqxgsmmlegtddhtt7a", + "meta_url": "https://olympics.com/en/athletes/neisi-patricia-dajomes-barrera", + "name": "Neisi Patricia DAJOMES BARRERA" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1693727646/primary/qf1oxnzutvc8vde2p0lz", + "meta_url": "https://olympics.com/en/athletes/katherine-elizabeth-nye", + "name": "Katherine Elizabeth NYE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/aremi-fuentes-zavala", + "name": "Aremi FUENTES ZAVALA" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/patricia-caroline-strenius", + "name": "Patricia Caroline STRENIUS" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/darya-naumava", + "name": "Darya NAUMAVA" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/kumushkhon-fayzullaeva", + "name": "Kumushkhon FAYZULLAEVA" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/emily-victoria-godley", + "name": "Emily Victoria GODLEY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kristel-ngarlem", + "name": "Kristel NGARLEM" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sqq2qqht8njpqag4taii", + "meta_url": "https://olympics.com/en/athletes/mahassen-hala-fattouh", + "name": "Mahassen Hala FATTOUH" + }, + "country": "Lebanon" + } + ], + "type": "single" + }, + "women-s-87kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zhouyu-wang", + "name": "Zhouyu WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/tamara-yajaira-salazar-arce", + "name": "Tamara Yajaira SALAZAR ARCE" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/cismery-dominga-santana-peguero", + "name": "Cismery Dominga SANTANA PEGUERO" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/ankhtsetseg-munkhjantsan", + "name": "Ankhtsetseg MUNKHJANTSAN" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/gaelle-verlaine-nayo-ketchanke", + "name": "Gaelle Verlaine NAYO KETCHANKE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/martha-ann-rogers", + "name": "Martha Ann ROGERS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/naryury-alexandra-perez-reveron", + "name": "Naryury Alexandra PEREZ REVERON" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/elena-cilcic", + "name": "Elena CILCIC" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/yeounhee-kang", + "name": "Yeounhee KANG" + }, + "country": "Korea" + } + ], + "type": "single" + }, + "women-s-over-87kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wenwen-li-x7301", + "name": "Wenwen LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/emily-jade-campbell", + "name": "Emily Jade CAMPBELL" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/sarah-robles", + "name": "Sarah ROBLES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/seon-mi-lee", + "name": "Seon Mi LEE" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png", + "meta_url": "https://olympics.com/en/athletes/nurul-akmal", + "name": "Nurul AKMAL" + }, + "country": "Indonesia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/charisma-amoe-tarrant", + "name": "Charisma AMOE-TARRANT" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/veronica-saladin", + "name": "Veronica SALADIN" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TGA.png", + "meta_url": "https://olympics.com/en/athletes/kuinini-juanita-mechteld-manumua", + "name": "Kuinini Juanita Mechteld MANUMUA" + }, + "country": "Tonga" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/eyurkenia-duverger-pileta", + "name": "Eyurkenia DUVERGER PILETA" + }, + "country": "Cuba" + } + ], + "type": "single" + } + }, + "wrestling": { + "men-s-freestyle-125kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694949875/primary/ldjcitaeperxlu3itd5g", + "meta_url": "https://olympics.com/en/athletes/gable-dan-steveson", + "name": "Gable Dan STEVESON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/geno-petriashvili", + "name": "Geno PETRIASHVILI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694949973/primary/xaeoqv1mpildrt0lrojf", + "meta_url": "https://olympics.com/en/athletes/amir-hossein-zare", + "name": "Amir Hossein ZARE" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jgaee0opdccu6qxevv5n", + "meta_url": "https://olympics.com/en/athletes/taha-akgul", + "name": "Taha AKGUL" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zhiwei-deng", + "name": "Zhiwei DENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/lkhagvagerel-munkhtur", + "name": "Lkhagvagerel MUNKHTUR" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOS.png", + "meta_url": "https://olympics.com/en/athletes/egzon-shala", + "name": "Egzon SHALA" + }, + "country": "Kosovo" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/gennadij-cudinovic", + "name": "Gennadij CUDINOVIC" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/dzianis-khramiankou", + "name": "Dzianis KHRAMIANKOU" + }, + "country": "Belarus" + } + ], + "type": "single" + }, + "men-s-freestyle-57kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/zavur-uguev", + "name": "Zavur UGUEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/eexyp9wgpnraadiwgsma", + "meta_url": "https://olympics.com/en/athletes/kumar-ravi", + "name": "Ravi Kumar Dahiya" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/nurislam-sanayev", + "name": "Nurislam SANAYEV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/thomas-patrick-gilman", + "name": "Thomas Patrick GILMAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/georgi-valentinov-vangelov", + "name": "Georgi Valentinov VANGELOV" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/reza-atrinagharchi", + "name": "Reza ATRINAGHARCHI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/gulomjon-abdullaev", + "name": "Gulomjon ABDULLAEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yuki-takahashi", + "name": "Yuki TAKAHASHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/bekhbayar-erdenebat", + "name": "Bekhbayar ERDENEBAT" + }, + "country": "Mongolia" + } + ], + "type": "single" + }, + "men-s-freestyle-65kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/takuto-otoguro", + "name": "Takuto OTOGURO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/haji-aliyev", + "name": "Haji ALIYEV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/gadzhimurad-rashidov", + "name": "Gadzhimurad RASHIDOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png", + "meta_url": "https://olympics.com/en/athletes/bajrang-bajrang", + "name": "Bajrang BAJRANG" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/iszmail-muszukajev", + "name": "Iszmail MUSZUKAJEV" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/daulet-niyazbekov", + "name": "Daulet NIYAZBEKOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/magomedmurad-gadzhiev", + "name": "Magomedmurad GADZHIEV" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/morteza-ghiasi-cheka", + "name": "Morteza GHIASI CHEKA" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/tulga-tumur-ochir", + "name": "Tulga TUMUR OCHIR" + }, + "country": "Mongolia" + } + ], + "type": "single" + }, + "men-s-freestyle-74kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/zaurbek-sidakov", + "name": "Zaurbek SIDAKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/mahamedkhabib-kadzimahamedau", + "name": "Mahamedkhabib KADZIMAHAMEDAU" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kyle-douglas-dake", + "name": "Kyle Douglas DAKE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/bekzod-abdurakhmonov", + "name": "Bekzod ABDURAKHMONOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xt9wzdd7yxeu9kg9hnvg", + "meta_url": "https://olympics.com/en/athletes/frank-chamizo-marquez", + "name": "Frank CHAMIZO MARQUEZ" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/daniyar-kaisanov", + "name": "Daniyar KAISANOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/amr-reda-ramadan-hussen", + "name": "Amr Reda Ramadan HUSSEN" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/turan-bayramov", + "name": "Turan BAYRAMOV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/jeandry-garzon-caballero", + "name": "Jeandry GARZON CABALLERO" + }, + "country": "Cuba" + } + ], + "type": "single" + }, + "men-s-freestyle-86kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694950107/primary/ass1qd5m3qe39sammqrz", + "meta_url": "https://olympics.com/en/athletes/david-morris-taylor-iii", + "name": "David Morris TAYLOR III" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694950278/primary/lbsye5ysa2fqcz92zln6", + "meta_url": "https://olympics.com/en/athletes/hassan-aliazam-yazdanicharati", + "name": "Hassan Aliazam YAZDANICHARATI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/artur-naifonov", + "name": "Artur NAIFONOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SMR.png", + "meta_url": "https://olympics.com/en/athletes/myles-nazem-amine", + "name": "Myles Nazem AMINE" + }, + "country": "San Marino" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/javrail-shapiev", + "name": "Javrail SHAPIEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png", + "meta_url": "https://olympics.com/en/athletes/deepak-punia", + "name": "Deepak PUNIA" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zushen-lin", + "name": "Zushen LIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/stefan-reichmuth", + "name": "Stefan REICHMUTH" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/osman-gocen", + "name": "Osman GOCEN" + }, + "country": "Türkiye" + } + ], + "type": "single" + }, + "men-s-freestyle-97kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ywspbmspj4vi1rabyib5", + "meta_url": "https://olympics.com/en/athletes/abdulrashid-sadulaev", + "name": "Abdulrashid SADULAEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626171339/primary/astb72alya1qokzygk2y", + "meta_url": "https://olympics.com/en/athletes/kyle-frederick-snyder", + "name": "Kyle Frederick SNYDER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/reineris-salas-perez", + "name": "Reineris SALAS PEREZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/abraham-de-jesus-conyedo-ruano", + "name": "Abraham de Jesus CONYEDO RUANO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/sharif-sharifov", + "name": "Sharif SHARIFOV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/suleyman-karadeniz", + "name": "Suleyman KARADENIZ" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/alisher-yergali", + "name": "Alisher YERGALI" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/elizbar-odikadze", + "name": "Elizbar ODIKADZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MKD.png", + "meta_url": "https://olympics.com/en/athletes/magomedgadji-nurov", + "name": "Magomedgadji NUROV" + }, + "country": "North Macedonia" + } + ], + "type": "single" + }, + "men-s-greco-roman-130kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kwrz0enazf5mzhope50z", + "meta_url": "https://olympics.com/en/athletes/mijain-lopez-nunez", + "name": "Mijain LOPEZ NUNEZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/iakobi-kajaia", + "name": "Iakobi KAJAIA" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/riza-kayaalp", + "name": "Riza KAYAALP" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/sergey-semenov", + "name": "Sergey SEMENOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/amin-mirzazadeh", + "name": "Amin MIRZAZADEH" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHI.png", + "meta_url": "https://olympics.com/en/athletes/yasmani-acosta-fernandez", + "name": "Yasmani ACOSTA FERNANDEZ" + }, + "country": "Chile" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/muminjon-abdullaev", + "name": "Muminjon ABDULLAEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/eduard-popp", + "name": "Eduard POPP" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/abdellatif-mohamed-ahmed-mohamed", + "name": "Abdellatif Mohamed Ahmed MOHAMED" + }, + "country": "Egypt" + } + ], + "type": "single" + }, + "men-s-greco-roman-60kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1683196094/primary/hkqmktev6iwlxkhquwa2", + "meta_url": "https://olympics.com/en/athletes/luis-alberto-orta-sanchez", + "name": "Luis Alberto ORTA SANCHEZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/kenichiro-fumita", + "name": "Kenichiro FUMITA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/sailike-walihan", + "name": "Sailike WALIHAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/sergey-emelin", + "name": "Sergey EMELIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/lenur-temirov", + "name": "Lenur TEMIROV" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/victor-ciobanu", + "name": "Victor CIOBANU" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/zholaman-sharshenbekov", + "name": "Zholaman SHARSHENBEKOV" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/armen-melikyan", + "name": "Armen MELIKYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/haithem-fahmy-mahmoud", + "name": "Haithem Fahmy MAHMOUD" + }, + "country": "Egypt" + } + ], + "type": "single" + }, + "men-s-greco-roman-67kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/h11sk6dmzsxg5oahr3cx", + "meta_url": "https://olympics.com/en/athletes/mohammadreza-geraei", + "name": "Mohammadreza GERAEI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/parviz-nasibov", + "name": "Parviz NASIBOV" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/frank-staebler", + "name": "Frank STAEBLER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/mohamed-ibrahim-elsayed-elsayed", + "name": "Mohamed Ibrahim Elsayed ELSAYED" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/ramaz-zoidze", + "name": "Ramaz ZOIDZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/artem-surkov", + "name": "Artem SURKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/hansu-ryu", + "name": "Hansu RYU" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cipulmcxtaijj5o91got", + "meta_url": "https://olympics.com/en/athletes/aker-al-obaidi", + "name": "Aker AL OBAIDI" + }, + "country": "EOR" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/karen-aslanyan", + "name": "Karen ASLANYAN" + }, + "country": "Armenia" + } + ], + "type": "single" + }, + "men-s-greco-roman-77kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/tamas-lorincz", + "name": "Tamas LORINCZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/akzhol-makhmudov", + "name": "Akzhol MAKHMUDOV" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/shohei-yabiku", + "name": "Shohei YABIKU" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/rafig-huseynov", + "name": "Rafig HUSEYNOV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/mohammadali-abdolhamid-geraei", + "name": "Mohammadali Abdolhamid GERAEI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/karapet-chalyan", + "name": "Karapet CHALYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/aleksandr-chekhirkin", + "name": "Aleksandr CHEKHIRKIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/bozo-starcevic", + "name": "Bozo STARCEVIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/demeu-zhadrayev", + "name": "Demeu ZHADRAYEV" + }, + "country": "Kazakhstan" + } + ], + "type": "single" + }, + "men-s-greco-roman-87kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/zhan-beleniuk", + "name": "Zhan BELENIUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/viktor-lorincz", + "name": "Viktor LORINCZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/denis-maksymilian-kudla", + "name": "Denis Maksymilian KUDLA" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/zurabi-datunashvili", + "name": "Zurabi DATUNASHVILI" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/mohamed-metwally", + "name": "Mohamed METWALLY" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/ivan-huklek", + "name": "Ivan HUKLEK" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALG.png", + "meta_url": "https://olympics.com/en/athletes/bachir-sid-azara", + "name": "Bachir SID AZARA" + }, + "country": "Algeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/rustam-assakalov", + "name": "Rustam ASSAKALOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/daniel-gregorich-hechavarria", + "name": "Daniel GREGORICH HECHAVARRIA" + }, + "country": "Cuba" + } + ], + "type": "single" + }, + "men-s-greco-roman-97kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mswgijidmrnjplxamvpb", + "meta_url": "https://olympics.com/en/athletes/musa-evloev", + "name": "Musa EVLOEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/artur-aleksanyan", + "name": "Artur ALEKSANYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/tadeusz-michalik", + "name": "Tadeusz MICHALIK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/mohammadhadi-saravi", + "name": "Mohammadhadi SARAVI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/alex-gergo-szoke", + "name": "Alex Gergo SZOKE" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/arvi-martin-savolainen", + "name": "Arvi Martin SAVOLAINEN" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/tracy-gangelo-hancock", + "name": "Tracy Gangelo HANCOCK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/kiril-milov", + "name": "Kiril MILOV" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/giorgi-melia", + "name": "Giorgi MELIA" + }, + "country": "Georgia" + } + ], + "type": "single" + }, + "women-s-freestyle-50kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/oa5wygcwsqxy2ks0ee3c", + "meta_url": "https://olympics.com/en/athletes/yui-susaki", + "name": "Yui SUSAKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yanan-sun", + "name": "Yanan SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/mariya-stadnik", + "name": "Mariya STADNIK" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/sarah-ann-hildebrandt", + "name": "Sarah Ann HILDEBRANDT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/namuuntsetseg-tsogt-ochir", + "name": "Namuuntsetseg TSOGT-OCHIR" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/oksana-livach", + "name": "Oksana LIVACH" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/miglena-georgieva-selishka", + "name": "Miglena Georgieva SELISHKA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/lucia-yamileth-yepez-guzman", + "name": "Lucia Yamileth YEPEZ GUZMAN" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/sarra-hamdi", + "name": "Sarra HAMDI" + }, + "country": "Tunisia" + } + ], + "type": "single" + }, + "women-s-freestyle-53kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/mayu-mukaida", + "name": "Mayu MUKAIDA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/qianyu-pang", + "name": "Qianyu PANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/vanesa-kaladzinskaya", + "name": "Vanesa KALADZINSKAYA" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/bolortuya-bat-ochir", + "name": "Bolortuya BAT OCHIR" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fdfo5swjqg9inregppec", + "meta_url": "https://olympics.com/en/athletes/jacarra-gwenisha-winchester", + "name": "Jacarra Gwenisha WINCHESTER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CMR.png", + "meta_url": "https://olympics.com/en/athletes/joseph-emilienne-essombe-tiako", + "name": "Joseph Emilienne ESSOMBE TIAKO" + }, + "country": "Cameroon" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/roksana-marta-zasina", + "name": "Roksana Marta ZASINA" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/luisa-elizabeth-valverde-melendres", + "name": "Luisa Elizabeth VALVERDE MELENDRES" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tmifhkd33rvdrfmvxo1n", + "meta_url": "https://olympics.com/en/athletes/vinesh-phogat", + "name": "Vinesh PHOGAT" + }, + "country": "India" + } + ], + "type": "single" + }, + "women-s-freestyle-57kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/j1mb3pvbpqakkndqgnnl", + "meta_url": "https://olympics.com/en/athletes/risako-kawai", + "name": "Risako KAWAI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/iryna-kurachkina", + "name": "Iryna KURACHKINA" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wyjc8mlbhbtxkbmpbt40", + "meta_url": "https://olympics.com/en/athletes/helen-louise-maroulis", + "name": "Helen Louise MAROULIS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/evelina-georgieva-nikolova", + "name": "Evelina Georgieva NIKOLOVA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/khongorzul-boldsaikhan", + "name": "Khongorzul BOLDSAIKHAN" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/valeriia-koblova-zholobova", + "name": "Valeriia KOBLOVA ZHOLOBOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/anastasia-nichita", + "name": "Anastasia NICHITA" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/tetyana-kit", + "name": "Tetyana KIT" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qczsaia0unu2mgeliock", + "meta_url": "https://olympics.com/en/athletes/anshu-anshu", + "name": "Anshu Malik" + }, + "country": "India" + } + ], + "type": "single" + }, + "women-s-freestyle-62kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yukako-kawai", + "name": "Yukako KAWAI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/aisuluu-tynybekova", + "name": "Aisuluu TYNYBEKOVA" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/iryna-koliadenko", + "name": "Iryna KOLIADENKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/taybe-mustafa-yusein", + "name": "Taybe Mustafa YUSEIN" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png", + "meta_url": "https://olympics.com/en/athletes/anastasija-grigorjeva", + "name": "Anastasija GRIGORJEVA" + }, + "country": "Latvia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/liubov-ovcharova", + "name": "Liubov OVCHAROVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/henna-johansson", + "name": "Henna JOHANSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/kriszta-tunde-incze", + "name": "Kriszta Tunde INCZE" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jia-long", + "name": "Jia LONG" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "women-s-freestyle-68kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/tamyra-mariama-mensah-stock", + "name": "Tamyra Mariama MENSAH STOCK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NGR.png", + "meta_url": "https://olympics.com/en/athletes/blessing-oborududu", + "name": "Blessing OBORUDUDU" + }, + "country": "Nigeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/alla-cherkasova", + "name": "Alla CHERKASOVA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/meerim-zhumanazarova", + "name": "Meerim ZHUMANAZAROVA" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/sara-dosho", + "name": "Sara DOSHO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/battsetseg-soronzonbold", + "name": "Battsetseg SORONZONBOLD" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/feng-zhou", + "name": "Feng ZHOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/khanum-velieva", + "name": "Khanum VELIEVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/anna-carmen-schell", + "name": "Anna Carmen SCHELL" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-freestyle-76kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/aline-focken", + "name": "Aline FOCKEN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": null, + "name": "Adeline Maria Gray" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/yasemin-adar", + "name": "Yasemin ADAR" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/qian-zhou", + "name": "Qian ZHOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/aiperi-medet-kyzy", + "name": "Aiperi MEDET KYZY" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/hiroe-minagawa", + "name": "Hiroe MINAGAWA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/natalia-vorobieva", + "name": "Natalia VOROBIEVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png", + "meta_url": "https://olympics.com/en/athletes/epp-mae", + "name": "Epp MAE" + }, + "country": "Estonia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/vasilisa-marzaliuk", + "name": "Vasilisa MARZALIUK" + }, + "country": "Belarus" + } + ], + "type": "single" + } + } +} \ No newline at end of file diff --git a/app/requirements.txt b/app/requirements.txt new file mode 100644 index 0000000..7e10602 --- /dev/null +++ b/app/requirements.txt @@ -0,0 +1 @@ +flask diff --git a/app/res/__init__.py b/app/res/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app/res/name_cc.py b/app/res/name_cc.py new file mode 100644 index 0000000..dda1659 --- /dev/null +++ b/app/res/name_cc.py @@ -0,0 +1,128 @@ +name_cc = { + "Albania" : "ALB", + "Algeria" : "ALG", + "Argentina" : "ARG", + "Armenia" : "ARM", + "Australia" : "AUS", + "Austria" : "AUT", + "Azerbaijan" : "AZE", + "Bahamas" : "BAH", + "Bahrain" : "BHR", + "Bangladesh" : "BAN", + "Barbados" : "BAR", + "Belarus" : "BLR", + "Belgium" : "BEL", + "Bermuda" : "BMU", + "Bosnia & Herzegovina": "BIH", + "Botswana" : "BOT", + "Brazil" : "BRA", + "Bulgaria" : "BUL", + "Burkina Faso" : "BUR", + "Burundi" : "BUR", + "Cameroon" : "CMR", + "Canada" : "CAN", + "Chile" : "CHI", + "Chinese Taipei" : "TPE", + "Colombia" : "COL", + "Costa Rica" : "CRC", + "Côte d'Ivoire" : "CIV", + "Croatia" : "CRO", + "Cuba" : "CUB", + "Cyprus" : "CYP", + "Czechia" : "CZE", + "Denmark" : "DEN", + "Djibouti" : "DJI", + "Dominican Rep" : "DOM", + "Ecuador" : "ECU", + "Egypt" : "EGY", + "EOR" : "EOR", + "Eritrea" : "ERI", + "Estonia" : "EST", + "Ethiopia" : "ETH", + "Fiji" : "FIJ", + "Finland" : "FIN", + "France" : "FRA", + "Georgia" : "GEO", + "Germany" : "GER", + "Ghana" : "GHA", + "Great Britain" : "GBR", + "Greece" : "GRE", + "Grenada" : "GRN", + "Guatemala" : "GUA", + "Haiti" : "HAI", + "Hong Kong China" : "HKG", + "Hungary" : "HUN", + "India" : "IND", + "Indonesia" : "INA", + "Ireland" : "IRL", + "Isl Rep of Iran" : "IRI", + "Israel" : "ISR", + "Italy" : "ITA", + "Jamaica" : "JAM", + "Japan" : "JPN", + "Jordan" : "JOR", + "Kazakhstan" : "KAZ", + "Kenya" : "KEN", + "Korea" : "KOR", + "Kosovo" : "KOS", + "Kuwait" : "KUW", + "Kyrgyzstan" : "KGZ", + "Latvia" : "LAT", + "Lebanon" : "LBN", + "Liberia" : "LBR", + "Lithuania" : "LTU", + "Malaysia" : "MAS", + "Mauritius" : "MRI", + "Mexico" : "MEX", + "Mongolia" : "MGL", + "Montenegro" : "MNE", + "Morocco" : "MAR", + "Mozambique" : "MOZ", + "Namibia" : "NAM", + "Netherlands" : "NED", + "New Zealand" : "NZL", + "Niger" : "NGR", + "Nigeria" : "NIG", + "North Macedonia" : "MKD", + "Norway" : "NOR", + "Pakistan" : "PAK", + "Panama" : "PAN", + "Peru" : "PER", + "Philippines" : "PHI", + "Poland" : "POL", + "Portugal" : "POR", + "P. R. China" : "CHN", + "Puerto Rico" : "PUR", + "Qatar" : "QAT", + "Rep of Moldova" : "MDA", + "ROC" : "ROC", + "Romania" : "ROU", + "San Marino" : "SMR", + "Saudi Arabia" : "KSA", + "Serbia" : "SRB", + "Singapore" : "SGP", + "Slovakia" : "SVK", + "Slovenia" : "SLO", + "South Africa" : "RSA", + "Spain" : "ESP", + "Suriname" : "SUR", + "Sweden" : "SWE", + "Switzerland" : "SUI", + "Syria" : "SYR", + "Tanzania" : "TAN", + "Thailand" : "THA", + "Tonga" : "TGA", + "Tri. & Tobago" : "TTO", + "Tunisia" : "TUN", + "Türkiye" : "TUR", + "Turkmenistan" : "TKM", + "Uganda" : "UGA", + "Ukraine" : "UKR", + "United States" : "USA", + "Uruguay" : "URU", + "Uzbekistan" : "UZB", + "Venezuela" : "VEN", + "Vietnam" : "VIE", + "Virgin Isl Brit" : "IVB", + "Zambia" : "ZAM", +} diff --git a/app/shell.nix b/app/shell.nix new file mode 100644 index 0000000..6d2257d --- /dev/null +++ b/app/shell.nix @@ -0,0 +1,32 @@ +{ pkgs ? import { } }: + +let + my-python = pkgs.python312; + python-with-my-packages = my-python.withPackages + (p: with p; [ + # flask + ]); + lib-path = with pkgs; lib.makeLibraryPath [ + ]; +in pkgs.mkShell { + buildInputs = [ + python-with-my-packages + ]; +shellHook = '' + SOURCE_DATE_EPOCH=$(date +%s) + export "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${lib-path}" + VENV=.venv + + if test ! -d $VENV; then + python3 -m venv $VENV + fi + source ./$VENV/bin/activate + export PYTHONPATH=`pwd`/$VENV/${python-with-my-packages.sitePackages}/ + # export PYTHONPATH=`pwd`/$VENV/${python-with-my-packages.sitePackages}/:$PYTHONPATH + pip install -r requirements.txt + ''; + + postShellHook = '' + ln -sf ${python-with-my-packages.sitePackages}/* ./.venv/lib/python3.12/site-packages + ''; +} diff --git a/app/static/style.css b/app/static/style.css new file mode 100644 index 0000000..02ba874 --- /dev/null +++ b/app/static/style.css @@ -0,0 +1,521 @@ +:root { + --gradient_hue: 69; + --gradient_hue2: 69; + --grad-trans: linear-gradient(to right, hsla(var(--gradient_hue), 100%, 50%, 0.3), hsla(var(--gradient_hue2), 100%, 60%, 0.3), hsla(var(--gradient_hue), 100%, 50%, 0.3)); + --grad: linear-gradient(to right, hsla(var(--gradient_hue), 100%, 50%, 1.0), hsla(var(--gradient_hue2), 100%, 60%, 1.0), hsla(var(--gradient_hue), 100%, 50%, 1.0)); + --grad2: linear-gradient(to right, hsla(var(--gradient_hue), 100%, 50%, 1.0), hsla(var(--gradient_hue2), 100%, 60%, 1.0), hsla(var(--gradient_hue), 100%, 50%, 1.0)); + --bgsize: 400% +} + +/* latin-ext */ +@font-face { + font-family: 'Atkinson Hyperlegible'; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45G07JIoSwQ.woff2) format('woff2'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +/* latin */ +@font-face { + font-family: 'Atkinson Hyperlegible'; + font-style: normal; + font-weight: 400; + src: url(https://fonts.gstatic.com/s/atkinsonhyperlegible/v11/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45G04pIo.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} + +/* cyrillic-ext */ +@font-face { + font-family: 'Source Code Pro'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXtMRrTEUc.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} + +/* cyrillic */ +@font-face { + font-family: 'Source Code Pro'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXtM1rTEUc.woff2) format('woff2'); + unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} + +/* greek-ext */ +@font-face { + font-family: 'Source Code Pro'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXtMVrTEUc.woff2) format('woff2'); + unicode-range: U+1F00-1FFF; +} + +/* greek */ +@font-face { + font-family: 'Source Code Pro'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXtMprTEUc.woff2) format('woff2'); + unicode-range: U+0370-03FF; +} + +/* vietnamese */ +@font-face { + font-family: 'Source Code Pro'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXtMZrTEUc.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; +} + +/* latin-ext */ +@font-face { + font-family: 'Source Code Pro'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXtMdrTEUc.woff2) format('woff2'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} + +/* latin */ +@font-face { + font-family: 'Source Code Pro'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(/SourceCodePro-nx2.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} + + + +@keyframes background-pan { + from { + background-position: 0% center; + } + + to { + background-position: -400% center; + } +} + +/* Base */ +html { + /* background-image: url("pumpkin.png"); + background-size: 7vmin 7vmin; + background-repeat: repeat; + background-position: 0% 0%; */ + background: radial-gradient(rgba(255, 255, 255, 0.8) 5%, black 5%); + background-size: 2vmin 2vmin; + height: 100%; +} + +body { + display: flex; + flex-direction: column; + color: white; + background-color: rgba(0, 0, 0, 0.8); + font-family: "Atkinson Hyperlegible", Arial, Helvetica, sans-serif; + max-width: 60rem; + margin: 1em auto 1em auto; + min-height: 97%; + border: 0.2em solid hsla(var(--gradient_hue), 100%, 50%, 1.0); + border-radius: 1em; + padding: 1em; + box-sizing: border-box; +} + +#gradient-me { + display: inherit; + flex-direction: inherit; + height: inherit; + min-height: inherit; +} + +div.inline-img { + display: flex; + flex-direction: row; +} + +div.inline-img>div { + margin-right: 1em; +} + +@media screen and (max-width: 1000px) { + body { + min-height: 100%; + border: none; + margin: 0em; + } + + html { + background-color: black; + /* background: none; */ + background-size: 5vmin 5vmin; + } + + div.inline-img { + flex-direction: column; + } + + div.inline-img>div { + margin: 0px auto; + } +} + +.MathJax_Display, +span.math.inline { + overflow: scroll; +} + +#flex-grow-div { + min-height: 2em; + flex-grow: 1; +} + +footer { + justify-self: end; +} + + +.footer-column { + display: inline-block; + margin: 0em 1em 0em 0em; + vertical-align: text-top; +} + +.footer-row>pre { + font-size: 1em; + margin: 0.3em; +} + +.footer-row { + display: flex; + flex-direction: row; +} + +.footer-row>p { + margin: 0.5em 0em; + line-height: 1em; +} + + + + +p { + line-height: 1.5em; +} + + + +hr { + width: 100%; +} + +ol { + margin: 0px; + line-height: 1.5em; +} + + +textarea { + background-color: rgb(20, 20, 20); + color: white; + width: 100%; + min-height: 28.5em; + font-family: "Atkinson Hyperlegible", Arial, Helvetica, sans-serif; + font-size: 1em; + border-radius: 1em; + padding: 1em; + box-sizing: border-box; +} + +blockquote { + animation: background-pan 12s linear infinite; + background: var(--grad-trans); + background-size: var(--bgsize); + border-width: 0.2em; + border-color: transparent transparent transparent hsl(var(--gradient_hue), 100%, 50%); + border-radius: 0.5em; + border-style: solid; + margin: 0.5em 0em; + padding: 0em 1em; +} + +input, +select { + background: black; + border-radius: 0.2em; + color: white; +} + +h2+p { + margin-top: 0px; +} + +h2, +h3, +h4, +h5, +h6 { + margin-bottom: 0.3em; +} + +li::marker { + color: hsl(var(--gradient_hue) 100% 50%); +} + +table { + border-collapse: collapse; + overflow-x: scroll; + margin: 1em 0px; + width: 100%; +} + +table td, table th { border: 0.1em solid grey; } +table tr:first-child th { border-top: 0; } +table tr:last-child td { border-bottom: 0; } +table tr td:first-child, +table tr th:first-child { border-left: 0; } +table tr td:last-child, +table tr th:last-child { border-right: 0; } + +table tr { + padding: 0.3em 0.4em; +} +table tr td { + padding: 0.1em 0.4em; + border-radius: 0.2em; +} +table tr th { + animation: background-pan 12s linear infinite; + background: var(--grad-trans); + background-size: var(--bgsize); +} + + +pre code { + font-family: "Source Code Pro"; + line-height: 1; +} + +:not(pre)>code { + font-family: "Source Code Pro"; + font-size: 0.9em; + padding: 0.1em; + background-color: #202020; + border-radius: 0.2em; +} + +.ascii { + overflow: hidden; + font-weight: bold; + display: block; + width: fit-content; + max-width: 100%; + height: fit-content; + margin: 0.1em auto 1em auto; + overflow-x: hidden; +} + +.ascii>pre { + overflow-x: hidden; + max-width: 100%; +} + +.ccode, +.sourceCode>pre { + overflow: auto; + width: 100%; + max-height: 50em; + border-radius: 1.5em; + background-color: #202020; + padding: 1em; + box-sizing: border-box; +} + +.ljk-code { + font-weight: bold; + line-height: 1.2em; + font-size: 0.9em; +} + +.ascii, +h1, +h2, +h3, +h4, +h5, +h6, +.ljk-code, +p>a:link, +li>a:link, +td>a:link, +th>a:link, +li>em>a:link, +span.fu, +strong>a:link { + animation: background-pan 12s linear infinite; + background: + var(--grad2); + -webkit-background-clip: text; + background-clip: text; + -webkit-text-fill-color: transparent; + background-size: var(--bgsize); +} + +/* Links */ +a:link { + text-decoration: none; +} + + +p>a:hover, +td>a:hover, +th>a:hover, +li>a:hover { + text-decoration: underline; + text-decoration-color: hsl(var(--gradient_hue), 100%, 75%); + animation: background-pan 12s linear infinite; + background: var(--grad); + -webkit-background-clip: text; + background-clip: text; + -webkit-text-fill-color: transparent; + background-size: var(--bgsize); +} + +a:active { + color: rgb(17, 255, 0); +} + +/* Boxes */ +/* Background Color Box */ + +div.color-box, +div.color-box-4-img, +div.color-box-4-img2, +div.color-box-img3 { + display: inline-block; + text-align: center; + animation: background-pan 12s linear infinite; + background: var(--grad); + background-size: var(--bgsize); + width: fit-content; + height: fit-content; + padding: 0.18em; + margin: 0.3em 0.2em; + border-radius: 0.9em; +} + +/* Text in the Box */ + +div.color-box>div>p { + animation: background-pan 12s linear infinite; + background: var(--grad); + -webkit-background-clip: text; + background-clip: text; + -webkit-text-fill-color: transparent; + background-size: var(--bgsize); + margin: 0px; + padding: 0px; + font-size: large; +} + +div.color-box>div:hover>p { + -webkit-text-fill-color: black; + text-decoration: none; +} + +a:hover:has(+a > div) { + text-decoration: none; +} + +/* On Top Box General */ + +div.color-box>div { + border-radius: 0.8em; + width: fit-content; + background: black; +} + +/* this is for the random p pandoc puts inbeteen div and img */ +div.color-box>p { + margin: 0px; + line-height: 0px; +} + +div.color-box>div:hover { + background: transparent; + text-decoration: none; +} + + +/* On Top Boxes Types */ + +div.color-box>div.about-box { + padding: 0.6em 1.5em; +} + +div.color-box>div.blog-box { + padding: 0.4em 1em; +} + +div.color-box>div.nav-box { + padding: 0.1em 0.8em; +} + +/* Images */ +div.color-box-4-img { + height: 95%; +} + +div.color-box-4-img>div.plain-box { + background: black; + height: 100%; + border-radius: 0.7em; +} + +div.color-box-4-img>div.plain-box>div.color-box-4-img2 { + padding: 0px; + height: 94%; + margin: 0px; + box-sizing: border-box; +} + +div.color-box-4-img>div.plain-box>div.color-box-4-img2>div.checker-box { + background: repeating-conic-gradient(rgba(0, 0, 0, 0.3) 0% 25%, rgba(0, 0, 0, 0.6) 0% 50%) 50% / 20px 20px; + border-radius: 0.7em; + height: 100%; + border: 0.3em solid black; +} + +div.color-box-4-img>div.plain-box>div.color-box-4-img2>div.checker-box>p { + height: 100%; + padding-top: 0px; + margin: 0px; + width: 100%; + box-sizing: border-box; +} + +div.color-box-4-img>div.plain-box>div.color-box-4-img2>div.checker-box>p>img { + height: 90%; + border: 0.1em solid white; + box-shadow: 0em 0em 0.5em black; + margin-top: 1em; + margin-bottom: 1em; + margin-right: 1em; + margin-left: 1em; + box-sizing: border-box; +} + +div.color-box-4-img>div.plain-box>p { + margin: 0px 0.3em; +} diff --git a/app/templates/index.html b/app/templates/index.html new file mode 100644 index 0000000..7aac84a --- /dev/null +++ b/app/templates/index.html @@ -0,0 +1,142 @@ + + + + + + Olympic Guessing Game + + + + + +

Guess the Olympic Discipline

+
+ +
+ + + + + diff --git a/data.json b/data.json new file mode 100644 index 0000000..7becaae --- /dev/null +++ b/data.json @@ -0,0 +1,22545 @@ +{ + "3x3-basketball": { + "men": { + "participants": [ + { + "country": "Latvia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Mongolia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png" + } + ], + "type": "team" + } + }, + "archery": { + "men-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dmicl5uutlj67dqzms2b", + "meta_url": "https://olympics.com/en/athletes/mete-gazoz", + "name": "Mete GAZOZ" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wqskg2yd9ivshl7fhneu", + "meta_url": "https://olympics.com/en/athletes/mauro-nespoli", + "name": "Mauro NESPOLI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/uupcbfsk6iwm3logerhl", + "meta_url": "https://olympics.com/en/athletes/takaharu-furukawa", + "name": "Takaharu FURUKAWA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chih-chun-tang", + "name": "Chih-Chun TANG" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jyyjbcgrrwv8of7pch5n", + "meta_url": "https://olympics.com/en/athletes/woojin-kim", + "name": "Woojin KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696001279/primary/al2ml66gkbd5z4qmv9j7", + "meta_url": "https://olympics.com/en/athletes/florian-unruh", + "name": "Florian UNRUH" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ryz9rzqngwr41s37gnid", + "meta_url": "https://olympics.com/en/athletes/brady-ellison", + "name": "Brady ELLISON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jialun-li", + "name": "Jialun LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/ilfat-abdullin", + "name": "Ilfat ABDULLIN" + }, + "country": "Kazakhstan" + } + ], + "type": "single" + }, + "men-s-team": { + "participants": [ + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Chinese Taipei", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + }, + "mixed-team": { + "participants": [ + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Türkiye", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + }, + { + "country": "Indonesia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Bangladesh", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BAN.png" + } + ], + "type": "team" + }, + "women-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/q8lmzclsqqynyqtku3vl", + "meta_url": "https://olympics.com/en/athletes/san-an", + "name": "San AN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/g5caifwbsdg2umdntm1v", + "meta_url": "https://olympics.com/en/athletes/elena-osipova", + "name": "Elena OSIPOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ctyrifehithawgemn73z", + "meta_url": "https://olympics.com/en/athletes/lucilla-boari", + "name": "Lucilla BOARI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/mackenzie-brown", + "name": "Mackenzie BROWN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mhchoozwe2tlvkds6nuk", + "meta_url": "https://olympics.com/en/athletes/alejandra-valencia", + "name": "Alejandra VALENCIA" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jiaxin-wu", + "name": "Jiaxin WU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/chae-young-kang", + "name": "Chae Young KANG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/duzvb4nsfjye1wxw1jij", + "meta_url": "https://olympics.com/en/athletes/deepika-kumari", + "name": "Deepika KUMARI" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/yasemin-anagoz", + "name": "Yasemin ANAGOZ" + }, + "country": "Türkiye" + } + ], + "type": "single" + }, + "women-s-team": { + "participants": [ + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + } + }, + "artistic-gymnastics": { + "men-s-all-around": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/h1y80xxxhdkyhzoqkjdh", + "meta_url": "https://olympics.com/en/athletes/daiki-hashimoto", + "name": "Daiki HASHIMOTO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ix3qylz4l5djvt0l9dp4", + "meta_url": "https://olympics.com/en/athletes/ruoteng-xiao", + "name": "Ruoteng XIAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnyucbyniaesrvxdqwb", + "meta_url": "https://olympics.com/en/athletes/nikita-nagornyy", + "name": "Nikita NAGORNYY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wei-sun-x7266", + "name": "Wei SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1616583970/primary/aedmimy6asgraeqr9kgj", + "meta_url": "https://olympics.com/en/athletes/kitazono-takeru", + "name": "Takeru Kitazono" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/d4qp4wtocuepd5ugfr2x", + "meta_url": "https://olympics.com/en/athletes/artur-dalaloyan", + "name": "Artur DALALOYAN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chia-hung-tang", + "name": "Chia-Hung TANG" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/james-hall", + "name": "James HALL" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681050594/primary/u9wupk042mzql9f74ipy", + "meta_url": "https://olympics.com/en/athletes/joe-fraser", + "name": "Joe FRASER" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "men-s-floor-exercise": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kqxvqgdes7kvttukqgda", + "meta_url": "https://olympics.com/en/athletes/artem-dolgopyat", + "name": "Artem DOLGOPYAT" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ijlc5aazgs4quuwxekyt", + "meta_url": "https://olympics.com/en/athletes/rayderley-miguel-zapata", + "name": "Rayderley Miguel ZAPATA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ix3qylz4l5djvt0l9dp4", + "meta_url": "https://olympics.com/en/athletes/ruoteng-xiao", + "name": "Ruoteng XIAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/sunghyun-ryu", + "name": "Sunghyun RYU" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/milad-karimi", + "name": "Milad KARIMI" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/yul-moldauer", + "name": "Yul MOLDAUER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnyucbyniaesrvxdqwb", + "meta_url": "https://olympics.com/en/athletes/nikita-nagornyy", + "name": "Nikita NAGORNYY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695907242/primary/j0o7zfontuytk8yqqg8t", + "meta_url": "https://olympics.com/en/athletes/hansol-kim", + "name": "Hansol KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/shane-wiskus", + "name": "Shane WISKUS" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-horizontal-bar": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/h1y80xxxhdkyhzoqkjdh", + "meta_url": "https://olympics.com/en/athletes/daiki-hashimoto", + "name": "Daiki HASHIMOTO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qfmcw9mlmkylaynnud3k", + "meta_url": "https://olympics.com/en/athletes/tin-srbic", + "name": "Tin SRBIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnyucbyniaesrvxdqwb", + "meta_url": "https://olympics.com/en/athletes/nikita-nagornyy", + "name": "Nikita NAGORNYY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ibqwz3xonr0hhcampcal", + "meta_url": "https://olympics.com/en/athletes/brody-malone", + "name": "Brody MALONE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/tyson-bull", + "name": "Tyson BULL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1616583970/primary/aedmimy6asgraeqr9kgj", + "meta_url": "https://olympics.com/en/athletes/kitazono-takeru", + "name": "Takeru Kitazono" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/bart-deurloo", + "name": "Bart DEURLOO" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/milad-karimi", + "name": "Milad KARIMI" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681051925/primary/glaj0rf9uxcf6gg78wbg", + "meta_url": "https://olympics.com/en/athletes/marios-georgiou", + "name": "Marios GEORGIOU" + }, + "country": "Cyprus" + } + ], + "type": "single" + }, + "men-s-parallel-bars": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t5nugscphnw03hsglgq9", + "meta_url": "https://olympics.com/en/athletes/jingyuan-zou", + "name": "Jingyuan ZOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624018320/primary/mhsn0g9s6qkohwbyahrs", + "meta_url": "https://olympics.com/en/athletes/lukas-dauser", + "name": "Lukas DAUSER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wyzxsl1qcd66yufs6cjd", + "meta_url": "https://olympics.com/en/athletes/ferhat-arican", + "name": "Ferhat ARICAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vwr2nomrekp5q0kwmbec", + "meta_url": "https://olympics.com/en/athletes/hao-you", + "name": "Hao YOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t4mhvpe3xyw5yrozhxjn", + "meta_url": "https://olympics.com/en/athletes/david-belyavskiy", + "name": "David BELYAVSKIY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623839635/primary/v3xlggfoed3hibfaucro", + "meta_url": "https://olympics.com/en/athletes/sam-anthony-mikulak", + "name": "Sam Mikulak" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/petro-pakhnyuk", + "name": "Petro PAKHNYUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681050594/primary/u9wupk042mzql9f74ipy", + "meta_url": "https://olympics.com/en/athletes/joe-fraser", + "name": "Joe FRASER" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ix3qylz4l5djvt0l9dp4", + "meta_url": "https://olympics.com/en/athletes/ruoteng-xiao", + "name": "Ruoteng XIAO" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "men-s-pommel-horse": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/miwa3j2scy7ccq0src7z", + "meta_url": "https://olympics.com/en/athletes/max-whitlock", + "name": "Max WHITLOCK" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cgouojmep3jwheqbbp2g", + "meta_url": "https://olympics.com/en/athletes/chih-kai-lee", + "name": "Chih Kai LEE" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rawhqusdqtyqrh4v0d0i", + "meta_url": "https://olympics.com/en/athletes/kazuma-kaya", + "name": "Kazuma KAYA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t4mhvpe3xyw5yrozhxjn", + "meta_url": "https://olympics.com/en/athletes/david-belyavskiy", + "name": "David BELYAVSKIY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/kohei-kameyama", + "name": "Kohei KAMEYAMA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/alec-yoder", + "name": "Alec YODER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1677664059/primary/huvgb3rwmu71ldr1ocwf", + "meta_url": "https://olympics.com/en/athletes/rhys-mc-clenaghan", + "name": "Rhys MC CLENAGHAN" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wei-sun-x7266", + "name": "Wei SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/h1y80xxxhdkyhzoqkjdh", + "meta_url": "https://olympics.com/en/athletes/daiki-hashimoto", + "name": "Daiki HASHIMOTO" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "men-s-rings": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/k5soi8sibrno6ovengjq", + "meta_url": "https://olympics.com/en/athletes/yang-liu", + "name": "Yang LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vwr2nomrekp5q0kwmbec", + "meta_url": "https://olympics.com/en/athletes/hao-you", + "name": "Hao YOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cmgkolispysjuvurz9iq", + "meta_url": "https://olympics.com/en/athletes/eleftherios-petrounias", + "name": "Eleftherios PETROUNIAS" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ez4tuw1ee57sx1eldghs", + "meta_url": "https://olympics.com/en/athletes/samir-ait-said", + "name": "Samir AIT SAID" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/ibrahim-colak", + "name": "Ibrahim COLAK" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnjemrs5hktkxmlul2y", + "meta_url": "https://olympics.com/en/athletes/denis-ablyazin", + "name": "Denis ABLYAZIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681051532/primary/n6g7lwy7al59vr8whyo3", + "meta_url": "https://olympics.com/en/athletes/adem-asil", + "name": "Adem ASIL" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/x0id3zooxksk1839fpyd", + "meta_url": "https://olympics.com/en/athletes/arthur-zanetti", + "name": "Arthur ZANETTI" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/marco-lodadio", + "name": "Marco LODADIO" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-team": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + } + ], + "type": "team" + }, + "men-s-vault": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/j3tz5etoz1dyzg8d1kee", + "meta_url": "https://olympics.com/en/athletes/jeahwan-shin", + "name": "Jeahwan SHIN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnjemrs5hktkxmlul2y", + "meta_url": "https://olympics.com/en/athletes/denis-ablyazin", + "name": "Denis ABLYAZIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zp9oay3wb4q8qv2zmqlg", + "meta_url": "https://olympics.com/en/athletes/artur-davtyan", + "name": "Artur DAVTYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1655913750/primary/y9zqhstrzijpteorefyi", + "meta_url": "https://olympics.com/en/athletes/carlos-edriel-yulo", + "name": "Carlos Edriel YULO" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhnyucbyniaesrvxdqwb", + "meta_url": "https://olympics.com/en/athletes/nikita-nagornyy", + "name": "Nikita NAGORNYY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681051532/primary/n6g7lwy7al59vr8whyo3", + "meta_url": "https://olympics.com/en/athletes/adem-asil", + "name": "Adem ASIL" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1681050855/primary/tspvkrn2vtwbknzhrfnx", + "meta_url": "https://olympics.com/en/athletes/ahmet-onder", + "name": "Ahmet ONDER" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/caio-souza", + "name": "Caio SOUZA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/hakseon-yang", + "name": "Hakseon YANG" + }, + "country": "Korea" + } + ], + "type": "single" + }, + "women-s-all-around": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1671609594/primary/eqeervowz90ywnikayw0", + "meta_url": "https://olympics.com/en/athletes/sunisa-lee", + "name": "Sunisa LEE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622474472/primary/fjbtpoo29bijx1vx3ewe", + "meta_url": "https://olympics.com/en/athletes/rebeca-andrade", + "name": "Rebeca ANDRADE" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/suqulhh6vbxnpjen5v1x", + "meta_url": "https://olympics.com/en/athletes/angelina-melnikova", + "name": "Angelina MELNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/vladislava-urazova", + "name": "Vladislava URAZOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626350319/primary/cln8tchdae1bmrav2ggz", + "meta_url": "https://olympics.com/en/athletes/mai-murakami", + "name": "Mai MURAKAMI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zmntgoek9pxruxu4plu4", + "meta_url": "https://olympics.com/en/athletes/nina-derwael", + "name": "Nina DERWAEL" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/b52vkkracznxkm5ucbhs", + "meta_url": "https://olympics.com/en/athletes/xijing-tang", + "name": "Xijing TANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fpc9yke117k3ryl3y69h", + "meta_url": "https://olympics.com/en/athletes/jade-carey", + "name": "Jade CAREY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624018101/primary/yje9xomdmye7afqzvrbb", + "meta_url": "https://olympics.com/en/athletes/elisabeth-seitz", + "name": "Elisabeth SEITZ" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-balance-beam": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yyur2gvcbjqutnlhpfy2", + "meta_url": "https://olympics.com/en/athletes/chenchen-guan", + "name": "Chenchen GUAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/b52vkkracznxkm5ucbhs", + "meta_url": "https://olympics.com/en/athletes/xijing-tang", + "name": "Xijing TANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627219484/primary/cts0yqdhtfm9yowtrv1j", + "meta_url": "https://olympics.com/en/athletes/simone-biles", + "name": "Simone BILES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ej0vhwqcqj1jqergmcnb", + "meta_url": "https://olympics.com/en/athletes/elsabeth-black", + "name": "Elsabeth BLACK" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1671609594/primary/eqeervowz90ywnikayw0", + "meta_url": "https://olympics.com/en/athletes/sunisa-lee", + "name": "Sunisa LEE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/urara-ashikawa", + "name": "Urara ASHIKAWA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/flavia-saraiva", + "name": "Flavia SARAIVA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/vladislava-urazova", + "name": "Vladislava URAZOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/larisa-andreea-iordache", + "name": "Larisa Andreea IORDACHE" + }, + "country": "Romania" + } + ], + "type": "single" + }, + "women-s-floor-exercise": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fpc9yke117k3ryl3y69h", + "meta_url": "https://olympics.com/en/athletes/jade-carey", + "name": "Jade CAREY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bxgkiocnmklojlnoibkf", + "meta_url": "https://olympics.com/en/athletes/vanessa-ferrari", + "name": "Vanessa FERRARI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626350319/primary/cln8tchdae1bmrav2ggz", + "meta_url": "https://olympics.com/en/athletes/mai-murakami", + "name": "Mai MURAKAMI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/suqulhh6vbxnpjen5v1x", + "meta_url": "https://olympics.com/en/athletes/angelina-melnikova", + "name": "Angelina MELNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622474472/primary/fjbtpoo29bijx1vx3ewe", + "meta_url": "https://olympics.com/en/athletes/rebeca-andrade", + "name": "Rebeca ANDRADE" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1672412877/primary/v21dz8qugr5mo3y4idip", + "meta_url": "https://olympics.com/en/athletes/jessica-gadirova", + "name": "Jessica GADIROVA" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704275215/primary/ypv2tpoo7e2a5dbdtbud", + "meta_url": "https://olympics.com/en/athletes/jennifer-gadirova", + "name": "Jennifer GADIROVA" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nkk8qmzydzzt2milmwcw", + "meta_url": "https://olympics.com/en/athletes/viktoria-listunova", + "name": "Viktoria LISTUNOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627219484/primary/cts0yqdhtfm9yowtrv1j", + "meta_url": "https://olympics.com/en/athletes/simone-biles", + "name": "Simone BILES" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-team": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + } + ], + "type": "team" + }, + "women-s-uneven-bars": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zmntgoek9pxruxu4plu4", + "meta_url": "https://olympics.com/en/athletes/nina-derwael", + "name": "Nina DERWAEL" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/we8e2qwl43xdealoeb5n", + "meta_url": "https://olympics.com/en/athletes/anastasiia-iliankova", + "name": "Anastasiia ILIANKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1671609594/primary/eqeervowz90ywnikayw0", + "meta_url": "https://olympics.com/en/athletes/sunisa-lee", + "name": "Sunisa LEE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yufei-lu", + "name": "Yufei LU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624018101/primary/yje9xomdmye7afqzvrbb", + "meta_url": "https://olympics.com/en/athletes/elisabeth-seitz", + "name": "Elisabeth SEITZ" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qv4kbzimaz8ghq2c82xp", + "meta_url": "https://olympics.com/en/athletes/melanie-de-jesus-dos-santos", + "name": "Melanie DE JESUS DOS SANTOS" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yilin-fan", + "name": "Yilin FAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/suqulhh6vbxnpjen5v1x", + "meta_url": "https://olympics.com/en/athletes/angelina-melnikova", + "name": "Angelina MELNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/vladislava-urazova", + "name": "Vladislava URAZOVA" + }, + "country": "ROC" + } + ], + "type": "single" + }, + "women-s-vault": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622474472/primary/fjbtpoo29bijx1vx3ewe", + "meta_url": "https://olympics.com/en/athletes/rebeca-andrade", + "name": "Rebeca ANDRADE" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622654233/primary/ikgd1j1wwcz2x66vlmte", + "meta_url": "https://olympics.com/en/athletes/mykayla-skinner", + "name": "Mykayla SKINNER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xnbepb9nstr6hiocdonz", + "meta_url": "https://olympics.com/en/athletes/seojeong-yeo", + "name": "Seojeong YEO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/aimsulzs34mkdjqttulb", + "meta_url": "https://olympics.com/en/athletes/alexa-moreno", + "name": "Alexa MORENO" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/suqulhh6vbxnpjen5v1x", + "meta_url": "https://olympics.com/en/athletes/angelina-melnikova", + "name": "Angelina MELNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/liliia-akhaimova", + "name": "Liliia AKHAIMOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/shallon-olsen", + "name": "Shallon OLSEN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fpc9yke117k3ryl3y69h", + "meta_url": "https://olympics.com/en/athletes/jade-carey", + "name": "Jade CAREY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627219484/primary/cts0yqdhtfm9yowtrv1j", + "meta_url": "https://olympics.com/en/athletes/simone-biles", + "name": "Simone BILES" + }, + "country": "United States" + } + ], + "type": "single" + } + }, + "artistic-swimming": { + "duet": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Austria", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + } + ], + "type": "team" + }, + "team": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + } + }, + "athletics": { + "4-x-400m-relay-mixed": { + "participants": [ + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Dominican Rep", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Jamaica", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png" + }, + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + } + ], + "type": "team" + }, + "men-s-10000m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ctscxdjq1uhxduk8mr3d", + "meta_url": "https://olympics.com/en/athletes/selemon-barega", + "name": "Selemon BAREGA" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623249161/primary/qgvdhzqza9vc5pwcwsyr", + "meta_url": "https://olympics.com/en/athletes/joshua-kiprui-cheptegei", + "name": "Joshua Kiprui CHEPTEGEI" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/briumfppawd1eeyutre5", + "meta_url": "https://olympics.com/en/athletes/jacob-kiplimo", + "name": "Jacob KIPLIMO" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694942991/primary/lq1hbu8v93gjrbsnlvut", + "meta_url": "https://olympics.com/en/athletes/berihu-aregawi", + "name": "Berihu AREGAWI" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/grant-fisher", + "name": "Grant FISHER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iv5ygphc3fqzoq0tounj", + "meta_url": "https://olympics.com/en/athletes/mohammed-ahmed", + "name": "Mohammed AHMED" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/rodgers-kwemoi", + "name": "Rodgers KWEMOI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/yomif-kejelcha", + "name": "Yomif KEJELCHA" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/rhonex-kipruto", + "name": "Rhonex KIPRUTO" + }, + "country": "Kenya" + } + ], + "type": "single" + }, + "men-s-100m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zrjbzrhlmfp2ijaldobu", + "meta_url": "https://olympics.com/en/athletes/lamont-marcell-jacobs", + "name": "Lamont Marcell JACOBS" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nzjuej6z12oq9yjsj02q", + "meta_url": "https://olympics.com/en/athletes/fred-kerley", + "name": "Fred KERLEY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ybj5xczdvb9ytm29qsuf", + "meta_url": "https://olympics.com/en/athletes/andre-de-grasse", + "name": "Andre DE GRASSE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xv8nb3tmk9ufnitbulpl", + "meta_url": "https://olympics.com/en/athletes/akani-simbine", + "name": "Akani SIMBINE" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/ronnie-baker", + "name": "Ronnie BAKER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ilewzsbwoqzyobb5yeqc", + "meta_url": "https://olympics.com/en/athletes/bingtian-su", + "name": "Bingtian SU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NGR.png", + "meta_url": "https://olympics.com/en/athletes/enoch-adegoke", + "name": "Enoch ADEGOKE" + }, + "country": "Nigeria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941987/primary/hllbqx1nut3ecoq3r3sm", + "meta_url": "https://olympics.com/en/athletes/zharnel-hughes", + "name": "Zharnel HUGHES" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694942666/primary/k8oum5ptzkxedn1l1l79", + "meta_url": "https://olympics.com/en/athletes/ferdinand-omurwa", + "name": "Ferdinand OMANYALA OMURWA" + }, + "country": "Kenya" + } + ], + "type": "single" + }, + "men-s-110m-hurdles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ujchvtxgdaxri6lhcav2", + "meta_url": "https://olympics.com/en/athletes/hansle-parchment", + "name": "Hansle PARCHMENT" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wysqfiupajmp9txttg2a", + "meta_url": "https://olympics.com/en/athletes/grant-holloway", + "name": "Grant HOLLOWAY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vzscgpehigphit89zsq5", + "meta_url": "https://olympics.com/en/athletes/ronald-levy", + "name": "Ronald LEVY" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/n5optqibiuzcysjtyqob", + "meta_url": "https://olympics.com/en/athletes/devon-allen", + "name": "Devon ALLEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/pascal-martinot-lagarde", + "name": "Pascal MARTINOT-LAGARDE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/asier-martinez", + "name": "Asier MARTINEZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/andrew-pozzi", + "name": "Andrew POZZI" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/aurel-manga", + "name": "Aurel MANGA" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/daniel-roberts", + "name": "Daniel ROBERTS" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-1500m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zydjthkswawnszt7rohh", + "meta_url": "https://olympics.com/en/athletes/jakob-ingebrigtsen", + "name": "Jakob INGEBRIGTSEN" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/osjmkrmuqi08ucqd8nw8", + "meta_url": "https://olympics.com/en/athletes/timothy-cheruiyot", + "name": "Timothy CHERUIYOT" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bqr34vtdk0mkklybqcl4", + "meta_url": "https://olympics.com/en/athletes/josh-kerr", + "name": "Josh KERR" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/abel-kipsang", + "name": "Abel KIPSANG" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/adel-mechaal", + "name": "Adel MECHAAL" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zbivwqtdmd1ghlrvs2be", + "meta_url": "https://olympics.com/en/athletes/cole-hocker", + "name": "Cole HOCKER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/stewart-mcsweyn", + "name": "Stewart MCSWEYN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/michal-rozmys", + "name": "Michal ROZMYS" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jake-heyward", + "name": "Jake HEYWARD" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "men-s-200m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ybj5xczdvb9ytm29qsuf", + "meta_url": "https://olympics.com/en/athletes/andre-de-grasse", + "name": "Andre DE GRASSE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dqclpxk5srjzbqn5lscj", + "meta_url": "https://olympics.com/en/athletes/kenneth-bednarek", + "name": "Kenneth BEDNAREK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hd31f5phuokbrypg6inp", + "meta_url": "https://olympics.com/en/athletes/noah-lyles", + "name": "Noah LYLES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xby5ri03ab7e3ecxlqxz", + "meta_url": "https://olympics.com/en/athletes/erriyon-knighton", + "name": "Erriyon KNIGHTON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LBR.png", + "meta_url": "https://olympics.com/en/athletes/joseph-fahnbulleh", + "name": "Joseph FAHNBULLEH" + }, + "country": "Liberia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/aaron-brown", + "name": "Aaron BROWN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/rasheed-dwyer", + "name": "Rasheed DWYER" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png", + "meta_url": "https://olympics.com/en/athletes/jereem-richards", + "name": "Jereem RICHARDS" + }, + "country": "Tri. & Tobago" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NGR.png", + "meta_url": "https://olympics.com/en/athletes/divine-oduduru", + "name": "Divine ODUDURU" + }, + "country": "Nigeria" + } + ], + "type": "single" + }, + "men-s-20km-race-walk": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c8n5uzosdidjgjkgyoi2", + "meta_url": "https://olympics.com/en/athletes/massimo-stano", + "name": "Massimo STANO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vge9hog0zadz82w1s8su", + "meta_url": "https://olympics.com/en/athletes/koki-ikeda", + "name": "Koki IKEDA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/prrpwebk6fey1jbs1fiv", + "meta_url": "https://olympics.com/en/athletes/toshikazu-yamanishi", + "name": "Toshikazu YAMANISHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/alvaro-martin", + "name": "Alvaro MARTIN" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/christopher-linke", + "name": "Christopher LINKE" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/diego-garcia-x7802", + "name": "Diego GARCIA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/kaihua-wang", + "name": "Kaihua WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jun-zhang-x4466", + "name": "Jun ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/perseus-karlstrom", + "name": "Perseus KARLSTROM" + }, + "country": "Sweden" + } + ], + "type": "single" + }, + "men-s-3000m-steeplechase": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qgdjjtfpxjet6gucwxs6", + "meta_url": "https://olympics.com/en/athletes/soufiane-elbakkali", + "name": "Soufiane ELBAKKALI" + }, + "country": "Morocco" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/f6zkjo5dyamcclhsutki", + "meta_url": "https://olympics.com/en/athletes/lamecha-girma", + "name": "Lamecha GIRMA" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hyrycurzotqdjjmk1c8g", + "meta_url": "https://olympics.com/en/athletes/benjamin-kigen", + "name": "Benjamin KIGEN" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/getnet-wale", + "name": "Getnet WALE" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ERI.png", + "meta_url": "https://olympics.com/en/athletes/yemane-haileselassie", + "name": "Yemane HAILESELASSIE" + }, + "country": "Eritrea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/matthew-hughes", + "name": "Matthew HUGHES" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/w0r3nbn5myaqsec4z7cf", + "meta_url": "https://olympics.com/en/athletes/ryuji-miura", + "name": "Ryuji MIURA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/topi-raitanen", + "name": "Topi RAITANEN" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/ala-zoghlami", + "name": "Ala ZOGHLAMI" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-4-x-100m-relay": { + "participants": [ + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Jamaica", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Ghana", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GHA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "men-s-4-x-400m-relay": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Botswana", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BOT.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Jamaica", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Tri. & Tobago", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + } + ], + "type": "team" + }, + "men-s-400m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/d1nsqqhmlbdzclkqdnga", + "meta_url": "https://olympics.com/en/athletes/steven-gardiner", + "name": "Steven GARDINER" + }, + "country": "Bahamas" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/akakeyw6r97xu9qwkxix", + "meta_url": "https://olympics.com/en/athletes/anthony-zambrano", + "name": "Anthony ZAMBRANO" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dfluyntdo5twiopuonvb", + "meta_url": "https://olympics.com/en/athletes/kirani-james", + "name": "Kirani JAMES" + }, + "country": "Grenada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michael-cherry", + "name": "Michael CHERRY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michael-norman", + "name": "Michael NORMAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/christopher-taylor", + "name": "Christopher TAYLOR" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BOT.png", + "meta_url": "https://olympics.com/en/athletes/isaac-makwala", + "name": "Isaac MAKWALA" + }, + "country": "Botswana" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/liemarvin-bonevacia", + "name": "Liemarvin BONEVACIA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png", + "meta_url": "https://olympics.com/en/athletes/deon-lendore", + "name": "Deon LENDORE" + }, + "country": "Tri. & Tobago" + } + ], + "type": "single" + }, + "men-s-400m-hurdles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nfevlqh0wwusuplglo2j", + "meta_url": "https://olympics.com/en/athletes/karsten-warholm", + "name": "Karsten WARHOLM" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kvdrn6bbl9qqwrybl19i", + "meta_url": "https://olympics.com/en/athletes/rai-benjamin", + "name": "Rai BENJAMIN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sn80o8axxuajeed0qsbr", + "meta_url": "https://olympics.com/en/athletes/alison-dos-santos", + "name": "Alison DOS SANTOS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IVB.png", + "meta_url": "https://olympics.com/en/athletes/kyron-mcmaster", + "name": "Kyron MCMASTER" + }, + "country": "Virgin Isl, Brit" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/skjx12oribe3bpp0vski", + "meta_url": "https://olympics.com/en/athletes/abderrahaman-samba", + "name": "Abderrahaman SAMBA" + }, + "country": "Qatar" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/n9p4al6tom03dahlaeid", + "meta_url": "https://olympics.com/en/athletes/yasmani-copello", + "name": "Yasmani COPELLO" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png", + "meta_url": "https://olympics.com/en/athletes/rasmus-magi", + "name": "Rasmus MAGI" + }, + "country": "Estonia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alessandro-sibilio", + "name": "Alessandro SIBILIO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png", + "meta_url": "https://olympics.com/en/athletes/thomas-barr", + "name": "Thomas BARR" + }, + "country": "Ireland" + } + ], + "type": "single" + }, + "men-s-5000m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623249161/primary/qgvdhzqza9vc5pwcwsyr", + "meta_url": "https://olympics.com/en/athletes/joshua-kiprui-cheptegei", + "name": "Joshua Kiprui CHEPTEGEI" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iv5ygphc3fqzoq0tounj", + "meta_url": "https://olympics.com/en/athletes/mohammed-ahmed", + "name": "Mohammed AHMED" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624889314/primary/ssrhvpctqbeczv4tdmdm", + "meta_url": "https://olympics.com/en/athletes/paul-kipkemoi-chelimo", + "name": "Paul Kipkemoi CHELIMO" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/nicholas-kipkorir-kimeli", + "name": "Nicholas Kipkorir KIMELI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/briumfppawd1eeyutre5", + "meta_url": "https://olympics.com/en/athletes/jacob-kiplimo", + "name": "Jacob KIPLIMO" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRN.png", + "meta_url": "https://olympics.com/en/athletes/birhanu-balew", + "name": "Birhanu BALEW" + }, + "country": "Bahrain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/justyn-knight", + "name": "Justyn KNIGHT" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/mohamed-katir", + "name": "Mohamed KATIR" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/grant-fisher", + "name": "Grant FISHER" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-50km-race-walk": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ezwkzakegvjxh0ydfsmb", + "meta_url": "https://olympics.com/en/athletes/dawid-tomala", + "name": "Dawid TOMALA" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qyxjtxhftbu2falwifxy", + "meta_url": "https://olympics.com/en/athletes/jonathan-hilbert", + "name": "Jonathan HILBERT" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/uro6l6s4uu6auc4keygx", + "meta_url": "https://olympics.com/en/athletes/evan-dunfee", + "name": "Evan DUNFEE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/marc-tur", + "name": "Marc TUR" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/joao-vieira", + "name": "Joao VIEIRA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/masatora-kawano", + "name": "Masatora KAWANO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/tongda-bian", + "name": "Tongda BIAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/rhydian-cowley", + "name": "Rhydian COWLEY" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/veli-matti-partanen", + "name": "Veli-Matti PARTANEN" + }, + "country": "Finland" + } + ], + "type": "single" + }, + "men-s-800m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ibhrsg5vhovyoejbgdkt", + "meta_url": "https://olympics.com/en/athletes/emmanuel-kipkurui-korir", + "name": "Emmanuel Kipkurui KORIR" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t2wqs3vkrrfosqkflq9g", + "meta_url": "https://olympics.com/en/athletes/ferguson-cheruiyot-rotich", + "name": "Ferguson Cheruiyot ROTICH" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mxiclyz5d5dbioeovdip", + "meta_url": "https://olympics.com/en/athletes/patryk-dobek", + "name": "Patryk DOBEK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/peter-bol", + "name": "Peter BOL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/adrian-ben", + "name": "Adrian BEN" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BIH.png", + "meta_url": "https://olympics.com/en/athletes/amel-tuka", + "name": "Amel TUKA" + }, + "country": "Bosnia & Herzegovina" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/gabriel-tual", + "name": "Gabriel TUAL" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tmuoorabk9urf0ysqrl2", + "meta_url": "https://olympics.com/en/athletes/nijel-amos", + "name": "Nijel AMOS" + }, + "country": "Botswana" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/clayton-murphy", + "name": "Clayton MURPHY" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-decathlon": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wnrl8b1uvvoggujivmzc", + "meta_url": "https://olympics.com/en/athletes/damian-warner", + "name": "Damian WARNER" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bhvl0vtmqorbgeezrfmo", + "meta_url": "https://olympics.com/en/athletes/kevin-mayer", + "name": "Kevin MAYER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ozgb1ruhuz9ntcbpjhyy", + "meta_url": "https://olympics.com/en/athletes/ashley-moloney", + "name": "Ashley MOLONEY" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/garrett-scantling", + "name": "Garrett SCANTLING" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/pierce-lepage", + "name": "Pierce LEPAGE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/zachery-ziemek", + "name": "Zachery ZIEMEK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRN.png", + "meta_url": "https://olympics.com/en/athletes/lindon-victor", + "name": "Lindon VICTOR" + }, + "country": "Grenada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/ilya-shkurenyov", + "name": "Ilya SHKURENYOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/jorge-urena", + "name": "Jorge URENA" + }, + "country": "Spain" + } + ], + "type": "single" + }, + "men-s-discus-throw": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/skefabjaisqlpo6w76kb", + "meta_url": "https://olympics.com/en/athletes/daniel-stahl", + "name": "Daniel STAHL" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sxrfom0xczons9cisizq", + "meta_url": "https://olympics.com/en/athletes/simon-pettersson", + "name": "Simon PETTERSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ejyxvpdyjcgzbsval091", + "meta_url": "https://olympics.com/en/athletes/lukas-weisshaidinger", + "name": "Lukas WEISSHAIDINGER" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/matthew-denny", + "name": "Matthew DENNY" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/kristjan-ceh", + "name": "Kristjan CEH" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png", + "meta_url": "https://olympics.com/en/athletes/andrius-gudzius", + "name": "Andrius GUDZIUS" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/mauricio-ortega", + "name": "Mauricio ORTEGA" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/sam-mattis", + "name": "Sam MATTIS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/chad-wright", + "name": "Chad WRIGHT" + }, + "country": "Jamaica" + } + ], + "type": "single" + }, + "men-s-hammer-throw": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/q9l94yfl4aqhsnlvaubj", + "meta_url": "https://olympics.com/en/athletes/wojciech-nowicki", + "name": "Wojciech NOWICKI" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/v4d4w4znilovwaadlvjx", + "meta_url": "https://olympics.com/en/athletes/eivind-henriksen", + "name": "Eivind HENRIKSEN" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/egat0vum3fs6sh2ey4rx", + "meta_url": "https://olympics.com/en/athletes/pawel-fajdek", + "name": "Pawel FAJDEK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/mykhaylo-kokhan", + "name": "Mykhaylo KOKHAN" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/quentin-bigot", + "name": "Quentin BIGOT" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/nick-miller", + "name": "Nick MILLER" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/rudy-winkler-x1704", + "name": "Rudy WINKLER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/valeriy-pronkin", + "name": "Valeriy PRONKIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/esref-apak", + "name": "Esref APAK" + }, + "country": "Türkiye" + } + ], + "type": "single" + }, + "men-s-high-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ydrta9gsy9l95h7uwttn", + "meta_url": "https://olympics.com/en/athletes/mutaz-essa-barshim", + "name": "Mutaz Essa BARSHIM" + }, + "country": "Qatar" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/usrjx6xglbqdbdcuumgb", + "meta_url": "https://olympics.com/en/athletes/gianmarco-tamberi", + "name": "Gianmarco TAMBERI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dguozqawamb4dtpi3dwu", + "meta_url": "https://olympics.com/en/athletes/maksim-nedasekau", + "name": "Maksim NEDASEKAU" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941191/primary/ptyn23wykmekwdmqrrva", + "meta_url": "https://olympics.com/en/athletes/sanghyeok-woo", + "name": "Sanghyeok WOO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/o1ozr8eo1ije6jyrbtgo", + "meta_url": "https://olympics.com/en/athletes/brandon-starc", + "name": "Brandon STARC" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/mikhail-akimenko", + "name": "Mikhail AKIMENKO" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941364/primary/z1sig3xkinoclovo0jmr", + "meta_url": "https://olympics.com/en/athletes/juvaughn-harrison", + "name": "Juvaughn HARRISON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/django-lovett", + "name": "Django LOVETT" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/ilya-ivanyuk", + "name": "Ilya IVANYUK" + }, + "country": "ROC" + } + ], + "type": "single" + }, + "men-s-javelin-throw": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/o7jvipsa0kfv8uv9hzbm", + "meta_url": "https://olympics.com/en/athletes/neeraj-chopra", + "name": "Neeraj CHOPRA" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/k8qdtmqq3vqspzwagksw", + "meta_url": "https://olympics.com/en/athletes/jakub-vadlejch", + "name": "Jakub VADLEJCH" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/f3ck4xwyft6rkv3gpnzz", + "meta_url": "https://olympics.com/en/athletes/vitezslav-vesely", + "name": "Vitezslav VESELY" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/julian-weber", + "name": "Julian WEBER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/v3r8wc1p361yb0yl8k0y", + "meta_url": "https://olympics.com/en/athletes/arshad-nadeem", + "name": "Arshad NADEEM" + }, + "country": "Pakistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/aliaksei-katkavets", + "name": "Aliaksei KATKAVETS" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/andrian-mardare", + "name": "Andrian MARDARE" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/lassi-etelatalo", + "name": "Lassi ETELATALO" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624888218/primary/qv6gpqmzffm1xn5v2gd0", + "meta_url": "https://olympics.com/en/athletes/johannes-vetter", + "name": "Johannes VETTER" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-long-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ucvgayqwfhsaqs6cnjzl", + "meta_url": "https://olympics.com/en/athletes/miltiadis-tentoglou", + "name": "Miltiadis TENTOGLOU" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/x4jegpbukshlgaxwxotj", + "meta_url": "https://olympics.com/en/athletes/juan-miguel-echevarria", + "name": "Juan Miguel ECHEVARRIA" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/umvl0qzzlx7enwocrssm", + "meta_url": "https://olympics.com/en/athletes/maykel-masso", + "name": "Maykel MASSO" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/eusebio-caceres", + "name": "Eusebio CACERES" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941364/primary/z1sig3xkinoclovo0jmr", + "meta_url": "https://olympics.com/en/athletes/juvaughn-harrison", + "name": "Juvaughn HARRISON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yuki-hashioka", + "name": "Yuki HASHIOKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/thobias-montler", + "name": "Thobias MONTLER" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/filippo-randazzo", + "name": "Filippo RANDAZZO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/kristian-pulli", + "name": "Kristian PULLI" + }, + "country": "Finland" + } + ], + "type": "single" + }, + "men-s-marathon": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sofaf1eebviulpdlbw9y", + "meta_url": "https://olympics.com/en/athletes/eliud-kipchoge", + "name": "Eliud KIPCHOGE" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mnaknwhomqkjnc9z5qin", + "meta_url": "https://olympics.com/en/athletes/abdi-nageeye", + "name": "Abdi NAGEEYE" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dqupmn20qp8zzneeroa7", + "meta_url": "https://olympics.com/en/athletes/bashir-abdi", + "name": "Bashir ABDI" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/lawrence-cherono", + "name": "Lawrence CHERONO" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/ayad-lamdassem", + "name": "Ayad LAMDASSEM" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c3e2slvgwuwieuglei2a", + "meta_url": "https://olympics.com/en/athletes/suguru-osako", + "name": "Suguru OSAKO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TAN.png", + "meta_url": "https://olympics.com/en/athletes/alphonce-felix-simbu", + "name": "Alphonce Felix SIMBU" + }, + "country": "Tanzania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/galen-rupp", + "name": "Galen RUPP" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAR.png", + "meta_url": "https://olympics.com/en/athletes/othmane-el-goumri", + "name": "Othmane EL GOUMRI" + }, + "country": "Morocco" + } + ], + "type": "single" + }, + "men-s-pole-vault": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/adzmrximqjxi6qiggikf", + "meta_url": "https://olympics.com/en/athletes/armand-duplantis", + "name": "Armand DUPLANTIS" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ygwxskcvudufvsxlyohf", + "meta_url": "https://olympics.com/en/athletes/christopher-nilsen", + "name": "Christopher NILSEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/a0audss8cuv1kqby7s9j", + "meta_url": "https://olympics.com/en/athletes/thiago-braz", + "name": "Thiago BRAZ" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/emmanouil-karalis", + "name": "Emmanouil KARALIS" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kc-lightfoot", + "name": "Kc LIGHTFOOT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/piotr-lisek", + "name": "Piotr LISEK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/harry-coppell", + "name": "Harry COPPELL" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/renaud-lavillenie", + "name": "Renaud LAVILLENIE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/oleg-zernikel", + "name": "Oleg ZERNIKEL" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-shot-put": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624015873/primary/kt4oghphagqwmygoykze", + "meta_url": "https://olympics.com/en/athletes/ryan-crouser", + "name": "Ryan CROUSER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wzzx5u6mmopaxnry2r4u", + "meta_url": "https://olympics.com/en/athletes/joe-kovacs", + "name": "Joe KOVACS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sgvf5k8sjratpbwffy0x", + "meta_url": "https://olympics.com/en/athletes/tomas-walsh", + "name": "Tomas WALSH" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/darlan-romani", + "name": "Darlan ROMANI" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/zane-weir", + "name": "Zane WEIR" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/RSA.png", + "meta_url": "https://olympics.com/en/athletes/kyle-blignaut", + "name": "Kyle BLIGNAUT" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/armin-sinancevic", + "name": "Armin SINANCEVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/mostafa-amr-hassan", + "name": "Mostafa Amr HASSAN" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/jacko-gill", + "name": "Jacko GILL" + }, + "country": "New Zealand" + } + ], + "type": "single" + }, + "men-s-triple-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qbnxs7u6guwcwv8ohotn", + "meta_url": "https://olympics.com/en/athletes/pedro-p-pichardo", + "name": "Pedro P. PICHARDO" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sscotjleq5kpqqnbgl2k", + "meta_url": "https://olympics.com/en/athletes/yaming-zhu", + "name": "Yaming ZHU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1674067509/primary/c40gqpt135lwjupwelye", + "meta_url": "https://olympics.com/en/athletes/fabrice-zango-hugues", + "name": "Fabrice ZANGO HUGUES" + }, + "country": "Burkina Faso" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/will-claye", + "name": "Will CLAYE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALG.png", + "meta_url": "https://olympics.com/en/athletes/yasser-triki", + "name": "Yasser TRIKI" + }, + "country": "Algeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/necati-er", + "name": "Necati ER" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941621/primary/rtk4slcntrv96r8cvnkl", + "meta_url": "https://olympics.com/en/athletes/donald-scott-x9655", + "name": "Donald SCOTT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yaoqing-fang", + "name": "Yaoqing FANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/andrea-dallavalle", + "name": "Andrea DALLAVALLE" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "women-s-10000m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623249190/primary/ysm4nynmaeklp0ufe93i", + "meta_url": "https://olympics.com/en/athletes/sifan-hassan", + "name": "Sifan HASSAN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gbscutwrletxpsbdgrdb", + "meta_url": "https://olympics.com/en/athletes/kalkidan-gezahegne", + "name": "Kalkidan GEZAHEGNE" + }, + "country": "Bahrain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/adfxnnoe5gxcamvufn7h", + "meta_url": "https://olympics.com/en/athletes/letesenbet-gidey", + "name": "Letesenbet GIDEY" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hgvy7ymf68ljve8kk9cm", + "meta_url": "https://olympics.com/en/athletes/hellen-onsando-obiri", + "name": "Hellen Onsando OBIRI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/oo7vl11zk9yalpfgjomq", + "meta_url": "https://olympics.com/en/athletes/francine-niyonsaba", + "name": "Francine NIYONSABA" + }, + "country": "Burundi" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/irene-chepet-cheptai", + "name": "Irene Chepet CHEPTAI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ririka-hironaka", + "name": "Ririka HIRONAKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/konstanze-klosterhalfen", + "name": "Konstanze KLOSTERHALFEN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/eilish-mccolgan", + "name": "Eilish MCCOLGAN" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-100m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1565166356/primary/qzpojeoixvotrbfvaecz", + "meta_url": "https://olympics.com/en/athletes/elaine-thompson", + "name": "Elaine THOMPSON-HERAH" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hgotdozfbffr1w9jbbj6", + "meta_url": "https://olympics.com/en/athletes/shelly-ann-fraser-pryce", + "name": "Shelly-Ann FRASER-PRYCE" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fzzzuvcxij4endutbtby", + "meta_url": "https://olympics.com/en/athletes/shericka-jackson", + "name": "Shericka JACKSON" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xx8tf35zjmahnplrashb", + "meta_url": "https://olympics.com/en/athletes/marie-josee-ta-lou", + "name": "Marie-Josee TA LOU" + }, + "country": "Côte d'Ivoire" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/ajla-del-ponte", + "name": "Ajla DEL PONTE" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/mujinga-kambundji", + "name": "Mujinga KAMBUNDJI" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/teahna-daniels", + "name": "Teahna DANIELS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gl1kk1iwkmojvi4aqfoe", + "meta_url": "https://olympics.com/en/athletes/daryll-neita", + "name": "Daryll NEITA" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png", + "meta_url": "https://olympics.com/en/athletes/michelle-lee-ahye", + "name": "Michelle-Lee AHYE" + }, + "country": "Tri. & Tobago" + } + ], + "type": "single" + }, + "women-s-100m-hurdles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rutyrximxxjrixmekdde", + "meta_url": "https://olympics.com/en/athletes/jasmine-camacho-quinn", + "name": "Jasmine CAMACHO-QUINN" + }, + "country": "Puerto Rico" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fca5tphhrz0pkcsrauff", + "meta_url": "https://olympics.com/en/athletes/kendra-harrison", + "name": "Kendra HARRISON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cgi2wxhucuddllsuxre4", + "meta_url": "https://olympics.com/en/athletes/megan-tapper", + "name": "Megan TAPPER" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/e9jjcflzr1pzyldqjsnq", + "meta_url": "https://olympics.com/en/athletes/oluwatobiloba-amusan", + "name": "Oluwatobiloba AMUSAN" + }, + "country": "Nigeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/nadine-visser", + "name": "Nadine VISSER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BAH.png", + "meta_url": "https://olympics.com/en/athletes/devynne-charlton", + "name": "Devynne CHARLTON" + }, + "country": "Bahamas" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/gabriele-cunningham", + "name": "Gabriele CUNNINGHAM" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/britany-anderson", + "name": "Britany ANDERSON" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRC.png", + "meta_url": "https://olympics.com/en/athletes/andrea-carolina-vargas", + "name": "Andrea Carolina VARGAS" + }, + "country": "Costa Rica" + } + ], + "type": "single" + }, + "women-s-1500m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623925461/primary/id7wtmqchnjah1sxb177", + "meta_url": "https://olympics.com/en/athletes/faith-chepngetich-kipyegon", + "name": "Faith Chepngetich KIPYEGON" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pgvqgv7jfrshn5z1tiqs", + "meta_url": "https://olympics.com/en/athletes/laura-muir", + "name": "Laura MUIR" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623249190/primary/ysm4nynmaeklp0ufe93i", + "meta_url": "https://olympics.com/en/athletes/sifan-hassan", + "name": "Sifan HASSAN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/freweyni-gebreezibeher", + "name": "Freweyni GEBREEZIBEHER" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/gabriela-stafford", + "name": "Gabriela STAFFORD" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/linden-hall", + "name": "Linden HALL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UGA.png", + "meta_url": "https://olympics.com/en/athletes/winnie-nanyondo", + "name": "Winnie NANYONDO" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/nozomi-tanaka", + "name": "Nozomi TANAKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/marta-perez", + "name": "Marta PEREZ" + }, + "country": "Spain" + } + ], + "type": "single" + }, + "women-s-200m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1565166356/primary/qzpojeoixvotrbfvaecz", + "meta_url": "https://olympics.com/en/athletes/elaine-thompson", + "name": "Elaine THOMPSON-HERAH" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ezmw14pr49etb5pbr2p2", + "meta_url": "https://olympics.com/en/athletes/christine-mboma", + "name": "Christine MBOMA" + }, + "country": "Namibia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/foazuth2u6szn9lzd004", + "meta_url": "https://olympics.com/en/athletes/gabrielle-thomas", + "name": "Gabrielle THOMAS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hgotdozfbffr1w9jbbj6", + "meta_url": "https://olympics.com/en/athletes/shelly-ann-fraser-pryce", + "name": "Shelly-Ann FRASER-PRYCE" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xx8tf35zjmahnplrashb", + "meta_url": "https://olympics.com/en/athletes/marie-josee-ta-lou", + "name": "Marie-Josee TA LOU" + }, + "country": "Côte d'Ivoire" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NAM.png", + "meta_url": "https://olympics.com/en/athletes/beatrice-masilingi", + "name": "Beatrice MASILINGI" + }, + "country": "Namibia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/mujinga-kambundji", + "name": "Mujinga KAMBUNDJI" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kvwffmvxbuupfgrgmani", + "meta_url": "https://olympics.com/en/athletes/shaunae-miller", + "name": "Shaunae MILLER-UIBO" + }, + "country": "Bahamas" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NGR.png", + "meta_url": "https://olympics.com/en/athletes/nzubechi-grace-nwokocha", + "name": "Nzubechi Grace NWOKOCHA" + }, + "country": "Nigeria" + } + ], + "type": "single" + }, + "women-s-20km-race-walk": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/antonella-palmisano", + "name": "Antonella PALMISANO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/sandra-arenas", + "name": "Sandra ARENAS" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/hong-liu", + "name": "Hong LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691575535/primary/mtbbrzou38yufhyqo5zy", + "meta_url": "https://olympics.com/en/athletes/maria-perez-x7722", + "name": "Maria PEREZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/alegna-gonzalez", + "name": "Alegna GONZALEZ" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/jemima-montag", + "name": "Jemima MONTAG" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shijie-qieyang", + "name": "Shijie QIEYANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/antigoni-drisbioti", + "name": "Antigoni DRISBIOTI" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/paola-perez-1", + "name": "Paola PEREZ" + }, + "country": "Ecuador" + } + ], + "type": "single" + }, + "women-s-3000m-steeplechase": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UGA.png", + "meta_url": "https://olympics.com/en/athletes/peruth-chemutai", + "name": "Peruth CHEMUTAI" + }, + "country": "Uganda" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/courtney-frerichs", + "name": "Courtney FRERICHS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/hyvin-kiyeng", + "name": "Hyvin KIYENG" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/mekides-abebe", + "name": "Mekides ABEBE" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/gesa-felicitas-krause", + "name": "Gesa Felicitas KRAUSE" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/marusa-mismas", + "name": "Marusa MISMAS" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/k40trknpsdf6krdfjpym", + "meta_url": "https://olympics.com/en/athletes/beatrice-chepkoech", + "name": "Beatrice CHEPKOECH" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/zerfe-wondemagegn", + "name": "Zerfe WONDEMAGEGN" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/elizabeth-bird", + "name": "Elizabeth BIRD" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-4-x-100m-relay": { + "participants": [ + { + "country": "Jamaica", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + } + ], + "type": "team" + }, + "women-s-4-x-400m-relay": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Jamaica", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Cuba", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + } + ], + "type": "team" + }, + "women-s-400m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kvwffmvxbuupfgrgmani", + "meta_url": "https://olympics.com/en/athletes/shaunae-miller", + "name": "Shaunae MILLER-UIBO" + }, + "country": "Bahamas" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691572945/primary/brlhr485x4syureoy4pm", + "meta_url": "https://olympics.com/en/athletes/marileidy-paulino", + "name": "Marileidy PAULINO" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zzgcd2x8zo6orqp4brwr", + "meta_url": "https://olympics.com/en/athletes/allyson-felix", + "name": "Allyson FELIX" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/stephenie-ann-mcpherson", + "name": "Stephenie Ann MCPHERSON" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/candice-mcleod", + "name": "Candice MCLEOD" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jodie-williams", + "name": "Jodie WILLIAMS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/quanera-hayes", + "name": "Quanera HAYES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/roxana-gomez", + "name": "Roxana GOMEZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BAR.png", + "meta_url": "https://olympics.com/en/athletes/sada-williams", + "name": "Sada WILLIAMS" + }, + "country": "Barbados" + } + ], + "type": "single" + }, + "women-s-400m-hurdles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/muhgclgwjtsm0t0grfdg", + "meta_url": "https://olympics.com/en/athletes/sydney-mclaughlin", + "name": "Sydney MCLAUGHLIN-LEVRONE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/lnuznccafbicrtm0n8uu", + "meta_url": "https://olympics.com/en/athletes/dalilah-muhammad", + "name": "Dalilah MUHAMMAD" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694943270/primary/qaok4dvmstfzzzne32il", + "meta_url": "https://olympics.com/en/athletes/femke-bol", + "name": "Femke BOL" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/janieve-russell", + "name": "Janieve RUSSELL" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/anna-ryzhykova", + "name": "Anna RYZHYKOVA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/viktoriya-tkachuk", + "name": "Viktoriya TKACHUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PAN.png", + "meta_url": "https://olympics.com/en/athletes/gianna-woodruff", + "name": "Gianna WOODRUFF" + }, + "country": "Panama" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/anna-cockrell", + "name": "Anna COCKRELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/paulien-couckuyt", + "name": "Paulien COUCKUYT" + }, + "country": "Belgium" + } + ], + "type": "single" + }, + "women-s-5000m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623249190/primary/ysm4nynmaeklp0ufe93i", + "meta_url": "https://olympics.com/en/athletes/sifan-hassan", + "name": "Sifan HASSAN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hgvy7ymf68ljve8kk9cm", + "meta_url": "https://olympics.com/en/athletes/hellen-onsando-obiri", + "name": "Hellen Onsando OBIRI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694943410/primary/qxkpjr1ucspcq7zvjrsd", + "meta_url": "https://olympics.com/en/athletes/gudaf-tsegay", + "name": "Gudaf TSEGAY" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/agnes-jebet-tirop", + "name": "Agnes Jebet TIROP" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/ejgayehu-taye", + "name": "Ejgayehu TAYE" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/senbere-teferi", + "name": "Senbere TEFERI" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/nadia-battocletti", + "name": "Nadia BATTOCLETTI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/yasemin-can", + "name": "Yasemin CAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ririka-hironaka", + "name": "Ririka HIRONAKA" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "women-s-800m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xmxoxuqqdrjhpyd6un5d", + "meta_url": "https://olympics.com/en/athletes/athing-mu", + "name": "Athing MU" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gw0wl0i1inx1qbrulvw7", + "meta_url": "https://olympics.com/en/athletes/keely-hodgkinson", + "name": "Keely HODGKINSON" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/raevyn-rogers", + "name": "Raevyn ROGERS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jemma-reekie", + "name": "Jemma REEKIE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/chunyu-wang", + "name": "Chunyu WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/habitam-alemu", + "name": "Habitam ALEMU" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/alexandra-bell", + "name": "Alexandra BELL" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/natoya-goule", + "name": "Natoya GOULE" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/lore-hoffmann", + "name": "Lore HOFFMANN" + }, + "country": "Switzerland" + } + ], + "type": "single" + }, + "women-s-discus-throw": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/odle238dupbzbvcvcmei", + "meta_url": "https://olympics.com/en/athletes/valarie-allman", + "name": "Valarie ALLMAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/kristin-pudenz", + "name": "Kristin PUDENZ" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/yaime-perez", + "name": "Yaime PEREZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mpcs7kwarzdmk83vh0b9", + "meta_url": "https://olympics.com/en/athletes/sandra-perkovic", + "name": "Sandra PERKOVIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/liliana-ca", + "name": "Liliana CA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png", + "meta_url": "https://olympics.com/en/athletes/kamalpreet-kaur", + "name": "Kamalpreet KAUR" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/shadae-lawrence", + "name": "Shadae LAWRENCE" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/marike-steinacker", + "name": "Marike STEINACKER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/claudine-vita", + "name": "Claudine VITA" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-hammer-throw": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yjb9c7ngp5hghw6whezz", + "meta_url": "https://olympics.com/en/athletes/anita-wlodarczyk", + "name": "Anita WLODARCZYK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zheng-wang-1", + "name": "Zheng WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/malwina-kopron", + "name": "Malwina KOPRON" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/alexandra-tavernier", + "name": "Alexandra TAVERNIER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1723041276/primary/eq2oulqqokjmzhrdh5eb", + "meta_url": "https://olympics.com/en/athletes/camryn-rogers", + "name": "Camryn ROGERS" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/bianca-florentina-ghelber", + "name": "Bianca Florentina GHELBER" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/joanna-fiodorow", + "name": "Joanna FIODOROW" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/deanna-price", + "name": "Deanna PRICE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/julia-ratcliffe", + "name": "Julia RATCLIFFE" + }, + "country": "New Zealand" + } + ], + "type": "single" + }, + "women-s-heptathlon": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sudl4kxf9x11u46zfb3z", + "meta_url": "https://olympics.com/en/athletes/nafissatou-thiam", + "name": "Nafissatou THIAM" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/anouk-vetter", + "name": "Anouk VETTER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/emma-oosterwegel", + "name": "Emma OOSTERWEGEL" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/noor-vidts", + "name": "Noor VIDTS" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kendell-williams", + "name": "Kendell WILLIAMS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/annie-kunz", + "name": "Annie KUNZ" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/carolin-schafer", + "name": "Carolin SCHAFER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/ivona-dadic", + "name": "Ivona DADIC" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/erica-bougard", + "name": "Erica BOUGARD" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-high-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626767277/primary/rv0tfbio1cc1jdjb3iqm", + "meta_url": "https://olympics.com/en/athletes/mariya-lasitskene", + "name": "Mariya LASITSKENE" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/nicola-mcdermott", + "name": "Nicola MCDERMOTT" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1655913355/primary/szu1u2wdvntueanxls63", + "meta_url": "https://olympics.com/en/athletes/yaroslava-mahuchikh", + "name": "Yaroslava MAHUCHIKH" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/iryna-gerashchenko", + "name": "Iryna GERASHCHENKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1693667898/primary/v9orhup1argkndj9l55e", + "meta_url": "https://olympics.com/en/athletes/eleanor-patterson", + "name": "Eleanor PATTERSON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/vashti-cunningham", + "name": "Vashti CUNNINGHAM" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/safina-sadullayeva", + "name": "Safina SADULLAYEVA" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/yuliia-levchenko", + "name": "Yuliia LEVCHENKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MNE.png", + "meta_url": "https://olympics.com/en/athletes/marija-vukovic", + "name": "Marija VUKOVIC" + }, + "country": "Montenegro" + } + ], + "type": "single" + }, + "women-s-javelin-throw": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shiying-liu", + "name": "Shiying LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/maria-andrejczyk", + "name": "Maria ANDREJCZYK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kelsey-lee-roberts", + "name": "Kelsey-Lee ROBERTS" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/eda-tugsuz", + "name": "Eda TUGSUZ" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": null, + "name": "Huihui Lyu" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kathryn-mitchell", + "name": "Kathryn MITCHELL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png", + "meta_url": "https://olympics.com/en/athletes/liveta-jasiunaite", + "name": "Liveta JASIUNAITE" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694941496/primary/hrp44lbtvbyf05yhdhby", + "meta_url": "https://olympics.com/en/athletes/mackenzie-little", + "name": "Mackenzie LITTLE" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/christin-hussong", + "name": "Christin HUSSONG" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-long-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/h6ffmja1qkjfxunnkawa", + "meta_url": "https://olympics.com/en/athletes/malaika-mihambo", + "name": "Malaika MIHAMBO" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kydp2iuasb8e8pftmeby", + "meta_url": "https://olympics.com/en/athletes/brittney-reese", + "name": "Brittney REESE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NGR.png", + "meta_url": "https://olympics.com/en/athletes/ese-brume", + "name": "Ese BRUME" + }, + "country": "Nigeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/ivana-spanovic", + "name": "Ivana SPANOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/maryna-bekh", + "name": "Maryna BEKH-ROMANCHUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/tara-davis", + "name": "Tara DAVIS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/brooke-stratton", + "name": "Brooke STRATTON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624891303/primary/qhbtqm5ovm57s3t2s4vt", + "meta_url": "https://olympics.com/en/athletes/jazmin-sawyers", + "name": "Jazmin SAWYERS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/khaddi-sagnia", + "name": "Khaddi SAGNIA" + }, + "country": "Sweden" + } + ], + "type": "single" + }, + "women-s-marathon": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gljkyw6nukpyftayljdu", + "meta_url": "https://olympics.com/en/athletes/peres-jepchirchir", + "name": "Peres JEPCHIRCHIR" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/brigid-kosgei", + "name": "Brigid KOSGEI" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/molly-seidel", + "name": "Molly SEIDEL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/roza-dereje", + "name": "Roza DEREJE" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/volha-mazuronak", + "name": "Volha MAZURONAK" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/melat-yisak-kejeta", + "name": "Melat Yisak KEJETA" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRN.png", + "meta_url": "https://olympics.com/en/athletes/eunice-chebichii-chumba", + "name": "Eunice Chebichii CHUMBA" + }, + "country": "Bahrain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/znpnuao75qrkjy3n9ucz", + "meta_url": "https://olympics.com/en/athletes/mao-ichiyama", + "name": "Mao ICHIYAMA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/malindi-elmore", + "name": "Malindi ELMORE" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-pole-vault": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1692859033/primary/guuggazvmpwlj0i2dhhu", + "meta_url": "https://olympics.com/en/athletes/katie-nageotte", + "name": "Katie MOON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sdzyfc8ucv3ifd4omvqk", + "meta_url": "https://olympics.com/en/athletes/anzhelika-sidorova", + "name": "Anzhelika SIDOROVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/holly-bradshaw", + "name": "Holly BLEASDALE-BRADSHAW" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/whlk559nat8bhiswdm7g", + "meta_url": "https://olympics.com/en/athletes/ekaterini-stefanidi", + "name": "Katerina STEFANIDI" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/maryna-kylypko", + "name": "Maryna KYLYPKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/wilma-murto", + "name": "Wilma MURTO" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694940970/primary/pez5pngcssldpscworqo", + "meta_url": "https://olympics.com/en/athletes/tina-sutej", + "name": "Tina SUTEJ" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/nikoleta-kyriakopoulou", + "name": "Nikoleta KYRIAKOPOULOU" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/robeilys-peinado", + "name": "Robeilys PEINADO" + }, + "country": "Venezuela" + } + ], + "type": "single" + }, + "women-s-shot-put": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696001614/primary/hhimhugh1prkeb7jtcnz", + "meta_url": "https://olympics.com/en/athletes/lijiao-gong", + "name": "Lijiao GONG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/raven-saunders", + "name": "Raven SAUNDERS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hjewsbfwexzo9lsfekqz", + "meta_url": "https://olympics.com/en/athletes/valerie-adams", + "name": "Valerie ADAMS" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694940688/primary/ly4cv90e0khec9ljkkib", + "meta_url": "https://olympics.com/en/athletes/auriole-dongmo", + "name": "Auriole DONGMO" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jiayuan-song", + "name": "Jiayuan SONG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/maddison-lee-wesche", + "name": "Maddison-Lee WESCHE" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/fanny-roos", + "name": "Fanny ROOS" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/sara-gambetta", + "name": "Sara GAMBETTA" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/aliona-dubitskaya", + "name": "Aliona DUBITSKAYA" + }, + "country": "Belarus" + } + ], + "type": "single" + }, + "women-s-triple-jump": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/q8t8ckpnchmgk4mczt3j", + "meta_url": "https://olympics.com/en/athletes/yulimar-rojas", + "name": "Yulimar ROJAS" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/patricia-mamona", + "name": "Patricia MAMONA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1678183776/primary/wwpnmwhsew4lyqz9sj6k", + "meta_url": "https://olympics.com/en/athletes/ana-peleteiro", + "name": "Ana PELETEIRO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694940773/primary/guxlppkqwrluoei0m9ze", + "meta_url": "https://olympics.com/en/athletes/shanieka-thomas", + "name": "Shanieka THOMAS" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/liadagmis-povea", + "name": "Liadagmis POVEA" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/hanna-knyazyeva-minenko", + "name": "Hanna KNYAZYEVA-MINENKO" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/keturah-orji", + "name": "Keturah ORJI" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JAM.png", + "meta_url": "https://olympics.com/en/athletes/kimberly-williams", + "name": "Kimberly WILLIAMS" + }, + "country": "Jamaica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/rouguy-diallo", + "name": "Rouguy DIALLO" + }, + "country": "France" + } + ], + "type": "single" + } + }, + "badminton": { + "men-s-doubles": { + "participants": [ + { + "country": "Chinese Taipei", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Malaysia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAS.png" + }, + { + "country": "Indonesia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Indonesia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "men-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ustehnnnyhrydzpnng8s", + "meta_url": "https://olympics.com/en/athletes/viktor-axelsen", + "name": "Viktor AXELSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yvowdbsxbjyxd9lbfueg", + "meta_url": "https://olympics.com/en/athletes/long-chen", + "name": "Long CHEN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zwgxasfg51sxkwxfj0kw", + "meta_url": "https://olympics.com/en/athletes/anthony-sinisuka-ginting", + "name": "Anthony Sinisuka GINTING" + }, + "country": "Indonesia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GUA.png", + "meta_url": "https://olympics.com/en/athletes/kevin-cordon", + "name": "Kevin CORDON" + }, + "country": "Guatemala" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1690015393/primary/oexb6kpdexleggmjhiy1", + "meta_url": "https://olympics.com/en/athletes/anders-antonsen", + "name": "Anders ANTONSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fkkl6wykugo0xx2e8bhd", + "meta_url": "https://olympics.com/en/athletes/tien-chen-chou", + "name": "Tien Chen CHOU" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/kwanghee-heo", + "name": "Kwanghee HEO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gdhnlmtianruxykgjgmk", + "meta_url": "https://olympics.com/en/athletes/yuqi-shi", + "name": "Yuqi SHI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/mark-caljouw", + "name": "Mark CALJOUW" + }, + "country": "Netherlands" + } + ], + "type": "single" + }, + "mixed-doubles": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Hong Kong, China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Indonesia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png" + }, + { + "country": "Thailand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Malaysia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAS.png" + } + ], + "type": "team" + }, + "women-s-doubles": { + "participants": [ + { + "country": "Indonesia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + } + ], + "type": "team" + }, + "women-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/a1ae80dxj0voyv1kqwaf", + "meta_url": "https://olympics.com/en/athletes/yu-fei-chen", + "name": "Yu Fei CHEN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tkizcxnbmvngixobcgts", + "meta_url": "https://olympics.com/en/athletes/tzu-ying-tai", + "name": "Tzu Ying TAI" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gsfzbbjmgyi8atet8iot", + "meta_url": "https://olympics.com/en/athletes/v-sindhu-pusarla", + "name": "Pusarla Venkata SINDHU" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/bingjiao-he", + "name": "Bingjiao HE" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rcozed7mjlnmr3aksq2b", + "meta_url": "https://olympics.com/en/athletes/seyoung-an", + "name": "Se-young AN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/ratchanok-intanon", + "name": "Ratchanok INTANON" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622544939/primary/tpsyl1jo67ppni1obizw", + "meta_url": "https://olympics.com/en/athletes/nozomi-okuhara", + "name": "Nozomi OKUHARA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/j8hqan0s6ifgsacmobhg", + "meta_url": "https://olympics.com/en/athletes/akane-yamaguchi", + "name": "Akane YAMAGUCHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/mia-blichfeldt", + "name": "Mia BLICHFELDT" + }, + "country": "Denmark" + } + ], + "type": "single" + } + }, + "baseball-softball": { + "baseball": { + "participants": [ + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Dominican Rep", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Israel", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + } + ], + "type": "team" + }, + "softball": { + "participants": [ + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + } + ], + "type": "team" + } + }, + "basketball": { + "men": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Slovenia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Czechia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + } + ], + "type": "team" + } + }, + "beach-volleyball": { + "men": { + "participants": [ + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Qatar", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/QAT.png" + }, + { + "country": "Latvia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Latvia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + } + ], + "type": "team" + } + }, + "boxing": { + "men-s-feather-52-57kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/albert-batyrgaziev", + "name": "Albert BATYRGAZIEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/duke-ragan", + "name": "Duke RAGAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/lazaro-alvarez-estrada", + "name": "Lazaro ALVAREZ ESTRADA" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694174487/primary/cx8bnl8f8ihy7dlpawvs", + "meta_url": "https://olympics.com/en/athletes/samuel-takyi", + "name": "Samuel TAKYI" + }, + "country": "Ghana" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/tsendbaatar-erdenebat", + "name": "Tsendbaatar ERDENEBAT" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png", + "meta_url": "https://olympics.com/en/athletes/kurt-anthony-walker", + "name": "Kurt Anthony WALKER" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/chatchai-butdee", + "name": "Chatchai BUTDEE" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/ceiber-avila-segura", + "name": "Ceiber David ÁVILA SEGURA" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/alexy-miguel-de-la-cruz-baez", + "name": "Alexy Miguel DE LA CRUZ BAEZ" + }, + "country": "Dominican Rep" + } + ], + "type": "single" + }, + "men-s-fly-48-52kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/galal-yafai", + "name": "Galal YAFAI" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PHI.png", + "meta_url": "https://olympics.com/en/athletes/carlo-paalam", + "name": "Carlo PAALAM" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/saken-bibossinov", + "name": "Saken BIBOSSINOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ryomei-tanaka", + "name": "Ryomei TANAKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/yosbany-veitia-soto", + "name": "Yosbany VEITIA SOTO" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/shakhobidin-zoirov", + "name": "Shakhobidin ZOIROV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/gabriel-escobar-mascunano", + "name": "Gabriel ESCOBAR MASCUNANO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/yuberjen-herney-martinez-rivas", + "name": "Yuberjen Herney MARTINEZ RIVAS" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kpric8te85lbpntwhz9s", + "meta_url": "https://olympics.com/en/athletes/patrick-chinyemba", + "name": "Patrick CHINYEMBA" + }, + "country": "Zambia" + } + ], + "type": "single" + }, + "men-s-heavy-81-91kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": null, + "name": "Julio la Cruz" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/muslim-gadzhimagomedov", + "name": "Muslim GADZHIMAGOMEDOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/abner-teixeira", + "name": "Abner TEIXEIRA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/david-nyika", + "name": "David NYIKA" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1709576717/primary/saseuqyxqctdypqkx7o2", + "meta_url": "https://olympics.com/en/athletes/enmanuel-reyes-pla", + "name": "Enmanuel REYES PLA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/ammar-riad-abduljabbar", + "name": "Ammar Riad ABDULJABBAR" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JOR.png", + "meta_url": "https://olympics.com/en/athletes/hussein-iashaish", + "name": "Hussein IASHAISH" + }, + "country": "Jordan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/uladzislau-smiahlikau", + "name": "Uladzislau SMIAHLIKAU" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/elly-ajowi-ochola", + "name": "Elly Ajowi OCHOLA" + }, + "country": "Kenya" + } + ], + "type": "single" + }, + "men-s-light-57-63kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/andy-cruz", + "name": "Andy CRUZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/keyshawn-davis", + "name": "Keyshawn DAVIS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/harrison-garside", + "name": "Harrison GARSIDE" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/hovhannes-bachkov", + "name": "Hovhannes BACHKOV" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/wanderson-de-oliveira", + "name": "Wanderson DE OLIVEIRA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/gabil-mamedov", + "name": "Gabil MAMEDOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/zakir-safiullin", + "name": "Zakir SAFIULLIN" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/elnur-abduraimov", + "name": "Elnur ABDURAIMOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/luke-mccormack", + "name": "Luke MCCORMACK" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "men-s-light-heavy-75-81kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/w1y6rtdntitmswdqm1sw", + "meta_url": "https://olympics.com/en/athletes/arlen-lopez", + "name": "Arlen LOPEZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/benjamin-whittaker", + "name": "Benjamin WHITTAKER" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/loren-berto-alfonso-dominguez", + "name": "Loren Berto ALFONSO DOMINGUEZ" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/imam-khataev", + "name": "Imam KHATAEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/rogelio-romero-torres", + "name": "Rogelio ROMERO TORRES" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/keno-machado", + "name": "Keno MACHADO" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/bayram-malkan", + "name": "Bayram MALKAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/gazimagomed-schamilovich-jalidov-gafurova", + "name": "Gazimagomed Schamilovich JALIDOV GAFUROVA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALG.png", + "meta_url": "https://olympics.com/en/athletes/mohammed-houmri", + "name": "Mohammed HOUMRI" + }, + "country": "Algeria" + } + ], + "type": "single" + }, + "men-s-middle-69-75kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/hebert-sousa", + "name": "Hebert SOUSA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/oleksandr-khyzhniak", + "name": "Oleksandr KHYZHNIAK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/gleb-bakshi", + "name": "Gleb BAKSHI" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PHI.png", + "meta_url": "https://olympics.com/en/athletes/eumir-marcial", + "name": "Eumir MARCIAL" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/abilkhan-amankul", + "name": "Abilkhan AMANKUL" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/euri-cedeno-martinez", + "name": "Euri CEDENO MARTINEZ" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HAI.png", + "meta_url": "https://olympics.com/en/athletes/darrelle-valsaint-jr", + "name": "Darrelle VALSAINT JR" + }, + "country": "Haiti" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/arman-darchinyan", + "name": "Arman DARCHINYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/erbieke-tuoheta", + "name": "Erbieke TUOHETA" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "men-s-super-heavy-over-91kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/un9ozv1vz393vwhzegbc", + "meta_url": "https://olympics.com/en/athletes/bakhodir-jalolov", + "name": "Bakhodir JALOLOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/richard-torrez-jr", + "name": "Richard TORREZ JR" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/frazer-clarke", + "name": "Frazer CLARKE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/kamshybek-kunkabayev", + "name": "Kamshybek KUNKABAYEV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png", + "meta_url": "https://olympics.com/en/athletes/satish-kumar", + "name": "Satish KUMAR" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/dainier-pero", + "name": "Dainier PERO" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/ivan-veriasov", + "name": "Ivan VERIASOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/mourad-aliev", + "name": "Mourad ALIEV" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/mahammad-abdullayev", + "name": "Mahammad ABDULLAYEV" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-s-welter-63-69kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tgcai0aycxm7vtuhtsv0", + "meta_url": "https://olympics.com/en/athletes/roniel-iglesias", + "name": "Roniel IGLESIAS" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623674591/primary/xnv3keigaevnz07txc5c", + "meta_url": "https://olympics.com/en/athletes/pat-mccormack", + "name": "Pat MCCORMACK" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/andrei-zamkovoi", + "name": "Andrei ZAMKOVOI" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png", + "meta_url": "https://olympics.com/en/athletes/aidan-walsh", + "name": "Aidan WALSH" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/delante-johnson", + "name": "Delante JOHNSON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/bobo-usmon-baturov", + "name": "Bobo-Usmon BATUROV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/eskerkhan-madiev", + "name": "Eskerkhan MADIEV" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MRI.png", + "meta_url": "https://olympics.com/en/athletes/merven-clair", + "name": "Merven CLAIR" + }, + "country": "Mauritius" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/sewonrets-quincy-mensah-okazawa", + "name": "Sewonrets Quincy Mensah OKAZAWA" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "women-s-feather-54-57kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/sena-irie", + "name": "Sena IRIE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695907591/primary/k5apawvkldy6iymarajr", + "meta_url": "https://olympics.com/en/athletes/nesthy-petecio", + "name": "Nesthy PETECIO" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/karriss-artingstall", + "name": "Karriss ARTINGSTALL" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622805821/primary/xemcupaawseitdxinchj", + "meta_url": "https://olympics.com/en/athletes/irma-testa", + "name": "Irma TESTA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/maria-claudia-nechita", + "name": "Maria Claudia NECHITA" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/yeni-marcela-arias-castaneda", + "name": "Yeni Marcela ARIAS CASTANEDA" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/skye-nicolson", + "name": "Skye NICOLSON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/caroline-veyre", + "name": "Caroline VEYRE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/khouloud-hlimi", + "name": "Khouloud HLIMI" + }, + "country": "Tunisia" + } + ], + "type": "single" + }, + "women-s-fly-48-51kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/stoyka-zhelyazkova-krasteva", + "name": "Stoyka Zhelyazkova KRASTEVA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/buse-naz-cakiroglu", + "name": "Buse Naz CAKIROGLU" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/tsukimi-namiki", + "name": "Tsukimi NAMIKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/hsiao-wen-huang", + "name": "Hsiao-Wen HUANG" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yuan-chang", + "name": "Yuan CHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/jutamas-jitpong", + "name": "Jutamas JITPONG" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/ingrit-valencia-victoria", + "name": "Ingrit VALENCIA VICTORIA" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/nina-radovanovic", + "name": "Nina RADOVANOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/virginia-fuchs", + "name": "Virginia FUCHS" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-light-57-60kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1723039476/primary/lrn1cfakhyaublp1jznp", + "meta_url": "https://olympics.com/en/athletes/kellie-anne-harrington", + "name": "Kellie Anne HARRINGTON" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/beatriz-ferreira", + "name": "Beatriz FERREIRA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/sudaporn-seesondee", + "name": "Sudaporn SEESONDEE" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/mira-potkonen", + "name": "Mira POTKONEN" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALG.png", + "meta_url": "https://olympics.com/en/athletes/imane-khelif", + "name": "Imane KHELIF" + }, + "country": "Algeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/raykhona-kodirova", + "name": "Raykhona KODIROVA" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/caroline-dubois", + "name": "Caroline DUBOIS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/esra-yildiz", + "name": "Esra YILDIZ" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/rebecca-nicoli", + "name": "Rebecca NICOLI" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "women-s-middle-69-75kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/lauren-price", + "name": "Lauren PRICE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/qian-li-2", + "name": "Qian LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/nouchka-fontijn", + "name": "Nouchka FONTIJN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/zenfira-magomedalieva", + "name": "Zenfira MAGOMEDALIEVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PAN.png", + "meta_url": "https://olympics.com/en/athletes/atheyna-bylon", + "name": "Atheyna BYLON" + }, + "country": "Panama" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/axi3yv3k5bzcxwsfzqz2", + "meta_url": "https://olympics.com/en/athletes/pooja-rani", + "name": "Pooja RANI" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/tammara-thibeault", + "name": "Tammara THIBEAULT" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694172935/primary/dugmby9y7cmlhtlndiks", + "meta_url": "https://olympics.com/en/athletes/rady-gramane", + "name": "Rady GRAMANE" + }, + "country": "Mozambique" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/myagmarjargal-munkhbat", + "name": "Myagmarjargal MUNKHBAT" + }, + "country": "Mongolia" + } + ], + "type": "single" + }, + "women-s-welter-64-69kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/busenaz-surmeneli", + "name": "Busenaz SURMENELI" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/hong-gu", + "name": "Hong GU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/p8pbcqq68mmel8jlloia", + "meta_url": "https://olympics.com/en/athletes/lovlina-borgohain", + "name": "Lovlina BORGOHAIN" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/oshae-jones", + "name": "Oshae JONES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/anna-lysenko", + "name": "Anna LYSENKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MOZ.png", + "meta_url": "https://olympics.com/en/athletes/alcinda-helena-panguana", + "name": "Alcinda Helena PANGUANA" + }, + "country": "Mozambique" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/nien-chin-chen", + "name": "Nien-Chin CHEN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/maria-altagracia-moronta-hernandez", + "name": "Maria Altagracia MORONTA HERNANDEZ" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/karolina-koszewska", + "name": "Karolina KOSZEWSKA" + }, + "country": "Poland" + } + ], + "type": "single" + } + }, + "canoe-slalom": { + "men-s-canoe": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t6yvjrfcbsnohcozzzaf", + "meta_url": "https://olympics.com/en/athletes/benjamin-savsek", + "name": "Benjamin SAVSEK" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/lukas-rohan", + "name": "Lukas ROHAN" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/whzflboclq1barmgx90x", + "meta_url": "https://olympics.com/en/athletes/sideris-tasiadis", + "name": "Sideris TASIADIS" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/adam-burgess", + "name": "Adam BURGESS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/martin-thomas", + "name": "Martin THOMAS" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/matej-benus", + "name": "Matej BENUS" + }, + "country": "Slovakia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/zachary-lokken", + "name": "Zachary LOKKEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/ander-elosegi", + "name": "Ander ELOSEGI" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/daniel-watkins", + "name": "Daniel WATKINS" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "men-s-kayak": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wkioplimppwi6zqcqien", + "meta_url": "https://olympics.com/en/athletes/jiri-prskavec", + "name": "Jiri PRSKAVEC" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/jakub-grigar", + "name": "Jakub GRIGAR" + }, + "country": "Slovakia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/hannes-aigner", + "name": "Hannes AIGNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/felix-oschmautz", + "name": "Felix OSCHMAUTZ" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michal-smolen", + "name": "Michal SMOLEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/bradley-forbes-cryans", + "name": "Bradley FORBES-CRYANS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/boris-neveu", + "name": "Boris NEVEU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/lucien-delfour", + "name": "Lucien DELFOUR" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/erik-holmer", + "name": "Erik HOLMER" + }, + "country": "Sweden" + } + ], + "type": "single" + }, + "women-s-canoe": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1620817982/primary/flolyx0evszciu8ysirq", + "meta_url": "https://olympics.com/en/athletes/jessica-fox", + "name": "Jessica FOX" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704279651/primary/smetnqu5ad2zulrigkr1", + "meta_url": "https://olympics.com/en/athletes/mallory-franklin", + "name": "Mallory FRANKLIN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/andrea-herzog", + "name": "Andrea HERZOG" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/marjorie-delassus", + "name": "Marjorie DELASSUS" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/nadine-weratschnig", + "name": "Nadine WERATSCHNIG" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/tereza-fiserova", + "name": "Tereza FISEROVA" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/viktoriia-us", + "name": "Viktoriia US" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/nuria-vilarrubla", + "name": "Nuria VILARRUBLA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/monika-skachova", + "name": "Monika SKACHOVA" + }, + "country": "Slovakia" + } + ], + "type": "single" + }, + "women-s-kayak": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/ricarda-funk", + "name": "Ricarda FUNK" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jdboaiynbldveloipdde", + "meta_url": "https://olympics.com/en/athletes/maialen-chourraut", + "name": "Maialen CHOURRAUT" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1620817982/primary/flolyx0evszciu8ysirq", + "meta_url": "https://olympics.com/en/athletes/jessica-fox", + "name": "Jessica FOX" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/stefanie-horn", + "name": "Stefanie HORN" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/klaudia-kinga-zwolinska", + "name": "Klaudia Kinga ZWOLINSKA" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/luuka-jones", + "name": "Luuka JONES" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/martina-wegman", + "name": "Martina WEGMAN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/viktoriia-us", + "name": "Viktoriia US" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/eliska-mintalova", + "name": "Eliska MINTALOVA" + }, + "country": "Slovakia" + } + ], + "type": "single" + } + }, + "canoe-sprint": { + "men-s-canoe-double-1000m": { + "participants": [ + { + "country": "Cuba", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + } + ], + "type": "team" + }, + "men-s-canoe-single-1000m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1660836169/primary/ovsxg6udj1jrhfwyg5bb", + "meta_url": "https://olympics.com/en/athletes/isaquias-queiroz-dos-santos", + "name": "Isaquias QUEIROZ DOS SANTOS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/hao-liu-x6188", + "name": "Hao LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/serghei-tarnovschi", + "name": "Serghei TARNOVSCHI" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/adrien-bart", + "name": "Adrien BART" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/martin-fuksa", + "name": "Martin FUKSA" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/conrad-robin-scheibner", + "name": "Conrad-Robin SCHEIBNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cexcty1jmtjawpbjsfun", + "meta_url": "https://olympics.com/en/athletes/fernando-dayan-jorge", + "name": "Fernando Dayan JORGE ENRIQUEZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/pengfei-zheng", + "name": "Pengfei ZHENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/jose-ramon-pelier-cordova", + "name": "Jose Ramon PELIER CORDOVA" + }, + "country": "Cuba" + } + ], + "type": "single" + }, + "men-s-kayak-double-1000m": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Czechia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + } + ], + "type": "team" + }, + "men-s-kayak-four-500m": { + "participants": [ + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Slovakia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Portugal", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + }, + "men-s-kayak-single-1000m": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/balint-kopasz", + "name": "Balint KOPASZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/adam-varga-x2538", + "name": "Adam VARGA" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kgeyx3hn1uylkc2ijwio", + "meta_url": "https://olympics.com/en/athletes/fernando-pimenta", + "name": "Fernando PIMENTA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/jacob-schopf", + "name": "Jacob SCHOPF" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/josef-dostal", + "name": "Josef DOSTAL" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/dong-zhang", + "name": "Dong ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dq9qli2eqvl8mbxsshwm", + "meta_url": "https://olympics.com/en/athletes/thomas-green", + "name": "Thomas GREEN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png", + "meta_url": "https://olympics.com/en/athletes/agustin-vernice", + "name": "Agustin VERNICE" + }, + "country": "Argentina" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/samuele-burgo", + "name": "Samuele BURGO" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-kayak-single-200m": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/sandor-totka", + "name": "Sandor TOTKA" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/manfredi-rizza", + "name": "Manfredi RIZZA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/liam-heath", + "name": "Liam HEATH" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/kolos-csizmadia", + "name": "Kolos CSIZMADIA" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/carlos-arevalo-lopez", + "name": "Carlos AREVALO LOPEZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/petter-menning", + "name": "Petter MENNING" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cpqltp0kptywwaqag1wv", + "meta_url": "https://olympics.com/en/athletes/saul-craviotto", + "name": "Saul CRAVIOTTO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png", + "meta_url": "https://olympics.com/en/athletes/roberts-akmens", + "name": "Roberts AKMENS" + }, + "country": "Latvia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/d39l8xdxrbk30csoavud", + "meta_url": "https://olympics.com/en/athletes/maxime-beaumont", + "name": "Maxime BEAUMONT" + }, + "country": "France" + } + ], + "type": "single" + }, + "women-s-canoe-double-500m": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Cuba", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png" + }, + { + "country": "Rep of Moldova", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Chile", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHI.png" + } + ], + "type": "team" + }, + "women-s-canoe-single-200m": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/nevin-harrison", + "name": "Nevin HARRISON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/laurence-vincent-lapointe", + "name": "Laurence VINCENT-LAPOINTE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/liudmyla-luzan", + "name": "Liudmyla LUZAN" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/dorota-borowska", + "name": "Dorota BOROWSKA" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/antia-jacome", + "name": "Antia JACOME" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wenjun-lin", + "name": "Wenjun LIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/olesia-romasenko", + "name": "Olesia ROMASENKO" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/katie-vincent", + "name": "Katie VINCENT" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/virag-balla", + "name": "Virag BALLA" + }, + "country": "Hungary" + } + ], + "type": "single" + }, + "women-s-kayak-double-500m": { + "participants": [ + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + } + ], + "type": "team" + }, + "women-s-kayak-four-500m": { + "participants": [ + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "women-s-kayak-single-200m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/o428zmlorhnfao6ojy8m", + "meta_url": "https://olympics.com/en/athletes/lisa-carrington", + "name": "Lisa CARRINGTON" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pcbbuhtkfwj1mgsaazws", + "meta_url": "https://olympics.com/en/athletes/teresa-portela", + "name": "Teresa PORTELA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ubflika6iwbdb7rvbvte", + "meta_url": "https://olympics.com/en/athletes/emma-jorgensen", + "name": "Emma JORGENSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/marta-walczykiewicz", + "name": "Marta WALCZYKIEWICZ" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/linnea-stensils", + "name": "Linnea STENSILS" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/dora-lucz", + "name": "Dora LUCZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/francesca-genzo", + "name": "Francesca GENZO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/deborah-kerr", + "name": "Deborah KERR" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/andreanne-langlois", + "name": "Andreanne LANGLOIS" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-kayak-single-500m": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/o428zmlorhnfao6ojy8m", + "meta_url": "https://olympics.com/en/athletes/lisa-carrington", + "name": "Lisa CARRINGTON" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/tamara-csipes", + "name": "Tamara CSIPES" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ubflika6iwbdb7rvbvte", + "meta_url": "https://olympics.com/en/athletes/emma-jorgensen", + "name": "Emma JORGENSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ecq8oftdqtwqub3pr3jh", + "meta_url": "https://olympics.com/en/athletes/danuta-kozak", + "name": "Danuta KOZAK" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/linnea-stensils", + "name": "Linnea STENSILS" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/hermien-peters", + "name": "Hermien PETERS" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624965244/primary/x36uyvpeezzpp3norv18", + "meta_url": "https://olympics.com/en/athletes/teresa-portela-1", + "name": "Teresa PORTELA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/alyce-burnett", + "name": "Alyce BURNETT" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/caitlin-ryan", + "name": "Caitlin RYAN" + }, + "country": "New Zealand" + } + ], + "type": "single" + } + }, + "cycling-bmx-freestyle": { + "men-s-park": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1690107475/primary/tff381d8bnudpta8sbb5", + "meta_url": "https://olympics.com/en/athletes/logan-martin", + "name": "Logan MARTIN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1672308882/primary/uefqdiizxyktg19khi9p", + "meta_url": "https://olympics.com/en/athletes/daniel-dhers", + "name": "Daniel DHERS" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/declan-brooks", + "name": "Declan BROOKS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRC.png", + "meta_url": "https://olympics.com/en/athletes/kenneth-fabian-tencio-esquivel", + "name": "Kenneth Fabian TENCIO ESQUIVEL" + }, + "country": "Costa Rica" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695988041/primary/ynpfcgydyhbduzprjffh", + "meta_url": "https://olympics.com/en/athletes/rimu-nakamura", + "name": "Rim NAKAMURA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/irek-rizaev", + "name": "Irek RIZAEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707482629/primary/w5sidq2kbp8ft3hwy4vg", + "meta_url": "https://olympics.com/en/athletes/anthony-jeanjean", + "name": "Anthony JEANJEAN" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/justin-dowell", + "name": "Justin DOWELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/nick-bruce", + "name": "Nick BRUCE" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-park": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694852507/primary/pj06aekpr0ajrymgmyra", + "meta_url": "https://olympics.com/en/athletes/charlotte-worthington", + "name": "Charlotte WORTHINGTON" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691050747/primary/zog4f74yxhnnvjcfqvnt", + "meta_url": "https://olympics.com/en/athletes/hannah-roberts", + "name": "Hannah ROBERTS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/nikita-ducarroz", + "name": "Nikita DUCARROZ" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/perris-benegas", + "name": "Perris BENEGAS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/natalya-diehm", + "name": "Natalya DIEHM" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lara-marie-lessmann", + "name": "Lara Marie LESSMANN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/minato-oike", + "name": "Minato OIKE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHI.png", + "meta_url": "https://olympics.com/en/athletes/macarena-perez-grasset", + "name": "Macarena PEREZ GRASSET" + }, + "country": "Chile" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/elizaveta-posadskikh", + "name": "Elizaveta POSADSKIKH" + }, + "country": "ROC" + } + ], + "type": "single" + } + }, + "cycling-bmx-racing": { + "men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/p4rckfuhjfxec9d8nqx1", + "meta_url": "https://olympics.com/en/athletes/niek-kimmann", + "name": "Niek KIMMANN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/kye-whyte", + "name": "Kye WHYTE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/carlos-alberto-ramirez-yepes", + "name": "Carlos Alberto RAMIREZ YEPES" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/sylvain-andre", + "name": "Sylvain ANDRE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/alfredo-campo", + "name": "Alfredo CAMPO" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/romain-mahieu", + "name": "Romain MAHIEU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1723039365/primary/ozrnkyvm3wrwqri19rv7", + "meta_url": "https://olympics.com/en/athletes/joris-daudet", + "name": "Joris DAUDET" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wp437rabpdjgitloeskx", + "meta_url": "https://olympics.com/en/athletes/connor-fields", + "name": "Connor FIELDS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png", + "meta_url": "https://olympics.com/en/athletes/nicolas-exequiel-torres", + "name": "Nicolas Exequiel TORRES" + }, + "country": "Argentina" + } + ], + "type": "single" + }, + "women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/bethany-shriever", + "name": "Bethany SHRIEVER" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xtxtalj2soh3tg1sqh7i", + "meta_url": "https://olympics.com/en/athletes/mariana-pajon", + "name": "Mariana PAJÓN" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/merel-smulders", + "name": "Merel SMULDERS" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/felicia-stancil", + "name": "Felicia STANCIL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/lauren-reynolds", + "name": "Lauren REYNOLDS" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/simone-christensen", + "name": "Simone CHRISTENSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/axelle-etienne", + "name": "Axelle ETIENNE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/drew-mechielsen", + "name": "Drew MECHIELSEN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/saya-sakakibara", + "name": "Saya SAKAKIBARA" + }, + "country": "Australia" + } + ], + "type": "single" + } + }, + "cycling-mountain-bike": { + "men-s-cross-country": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ahx23rdmu0bbu0eedp6r", + "meta_url": "https://olympics.com/en/athletes/thomas-pidcock", + "name": "Thomas PIDCOCK" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/l6u7z3wvlr1wgshfv8ry", + "meta_url": "https://olympics.com/en/athletes/mathias-flueckiger", + "name": "Mathias FLUECKIGER" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iaitrcz1pn7kdb58easo", + "meta_url": "https://olympics.com/en/athletes/david-valero-serrano", + "name": "David VALERO SERRANO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ejofdxu9bevcw8p5dczc", + "meta_url": "https://olympics.com/en/athletes/nino-schurter", + "name": "Nino SCHURTER" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qhp832d1jssoy0tyl0bp", + "meta_url": "https://olympics.com/en/athletes/victor-koretzky", + "name": "Victor KORETZKY" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/anton-cooper", + "name": "Anton COOPER" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/vlad-dascalu", + "name": "Vlad DASCALU" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/RSA.png", + "meta_url": "https://olympics.com/en/athletes/alan-hatherly", + "name": "Alan HATHERLY" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/jordan-sarrou", + "name": "Jordan SARROU" + }, + "country": "France" + } + ], + "type": "single" + }, + "women-s-cross-country": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/azkbwbsjemxqj6yhjlrz", + "meta_url": "https://olympics.com/en/athletes/jolanda-neff", + "name": "Jolanda NEFF" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xnttqzhwsdquw7genlks", + "meta_url": "https://olympics.com/en/athletes/sina-frei", + "name": "Sina FREI" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/oyjbpejscg8lsjixdkvt", + "meta_url": "https://olympics.com/en/athletes/linda-indergand", + "name": "Linda INDERGAND" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/kata-blanka-vas", + "name": "Kata Blanka VAS" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/anne-terpstra", + "name": "Anne TERPSTRA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bgekwevytquepy5nnqev", + "meta_url": "https://olympics.com/en/athletes/loana-lecomte", + "name": "Loana LECOMTE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/peg6eihu3xtpyddlgr2k", + "meta_url": "https://olympics.com/en/athletes/evie-richards", + "name": "Evie RICHARDS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/yana-belomoyna", + "name": "Yana BELOMOYNA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/haley-batten", + "name": "Haley BATTEN" + }, + "country": "United States" + } + ], + "type": "single" + } + }, + "cycling-road": { + "men-s-individual-time-trial": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qqyfmj4clnyvwzts9jrj", + "meta_url": "https://olympics.com/en/athletes/primoz-roglic", + "name": "Primoz ROGLIC" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/tom-dumoulin", + "name": "Tom DUMOULIN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/rohan-dennis", + "name": "Rohan DENNIS" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/stefan-kueng", + "name": "Stefan KUENG" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/filippo-ganna", + "name": "Filippo GANNA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1596904905/primary/hlimkyhbned3ttgvopf7", + "meta_url": "https://olympics.com/en/athletes/wout-van-aert", + "name": "Wout VAN AERT" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/kasper-asgreen", + "name": "Kasper ASGREEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/rigoberto-uran", + "name": "Rigoberto URAN" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vynbryblopoxjkp9gpjm", + "meta_url": "https://olympics.com/en/athletes/remco-evenepoel", + "name": "Remco EVENEPOEL" + }, + "country": "Belgium" + } + ], + "type": "single" + }, + "men-s-road-race": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/acmzgsrs1jgjnrcs52fo", + "meta_url": "https://olympics.com/en/athletes/richard-carapaz", + "name": "Richard CARAPAZ" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1596904905/primary/hlimkyhbned3ttgvopf7", + "meta_url": "https://olympics.com/en/athletes/wout-van-aert", + "name": "Wout VAN AERT" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wz7lh2qegawi5fjpkh80", + "meta_url": "https://olympics.com/en/athletes/tadej-pogacar", + "name": "Tadej POGACAR" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/bauke-mollema", + "name": "Bauke MOLLEMA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/michael-woods-1", + "name": "Michael WOODS" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/brandon-mcnulty", + "name": "Brandon MCNULTY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/david-gaudu", + "name": "David GAUDU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/rigoberto-uran", + "name": "Rigoberto URAN" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/adam-yates", + "name": "Adam YATES" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-individual-time-trial": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1683299255/primary/giwsdhgcznejsdhgkubv", + "meta_url": "https://olympics.com/en/athletes/annemiek-van-vleuten", + "name": "Annemiek VAN VLEUTEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/marlen-reusser", + "name": "Marlen REUSSER" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/s3jobb2xspripzbkche4", + "meta_url": "https://olympics.com/en/athletes/anna-van-der-breggen", + "name": "Anna VAN DER BREGGEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/grace-brown", + "name": "Grace BROWN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/amber-neben", + "name": "Amber NEBEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lisa-brennauer", + "name": "Lisa BRENNAUER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/r6z1r9vjjr1g202jlm78", + "meta_url": "https://olympics.com/en/athletes/chloe-dygert", + "name": "Chloe DYGERT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1677940110/primary/mf5rk9tv3lrmwzp6pl8x", + "meta_url": "https://olympics.com/en/athletes/ashleigh-moolman-pasio", + "name": "Ashleigh MOOLMAN-PASIO" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/juliette-labous", + "name": "Juliette LABOUS" + }, + "country": "France" + } + ], + "type": "single" + }, + "women-s-road-race": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/anna-kiesenhofer", + "name": "Anna KIESENHOFER" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1683299255/primary/giwsdhgcznejsdhgkubv", + "meta_url": "https://olympics.com/en/athletes/annemiek-van-vleuten", + "name": "Annemiek VAN VLEUTEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/elisa-longo-borghini", + "name": "Elisa LONGO BORGHINI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/lotte-kopecky", + "name": "Lotte KOPECKY" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1618913514/primary/umgnjwhyopzfzx2ubogy", + "meta_url": "https://olympics.com/en/athletes/marianne-vos", + "name": "Marianne VOS" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lisa-brennauer", + "name": "Lisa BRENNAUER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/coryn-rivera", + "name": "Coryn RIVERA" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/marta-cavalli", + "name": "Marta Cavalli" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/olga-zabelinskaya", + "name": "Olga ZABELINSKAYA" + }, + "country": "Uzbekistan" + } + ], + "type": "single" + } + }, + "cycling-track": { + "men-s-keirin": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wzb31wkjeycsaggufrop", + "meta_url": "https://olympics.com/en/athletes/jason-kenny", + "name": "Jason KENNY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAS.png", + "meta_url": "https://olympics.com/en/athletes/azizulhasni-awang", + "name": "Azizulhasni AWANG" + }, + "country": "Malaysia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691050660/primary/klokzmnedruaztitectn", + "meta_url": "https://olympics.com/en/athletes/harrie-lavreysen", + "name": "Harrie LAVREYSEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUR.png", + "meta_url": "https://olympics.com/en/athletes/jair-tjon-en-fa", + "name": "Jair TJON EN FA" + }, + "country": "Suriname" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/matthew-glaetzer", + "name": "Matthew GLAETZER" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/maximilian-levy", + "name": "Maximilian LEVY" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yuta-wakimoto", + "name": "Yuta WAKIMOTO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jack-carlin", + "name": "Jack CARLIN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png", + "meta_url": "https://olympics.com/en/athletes/kwesi-browne", + "name": "Kwesi BROWNE" + }, + "country": "Tri. & Tobago" + } + ], + "type": "single" + }, + "men-s-madison": { + "participants": [ + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + } + ], + "type": "team" + }, + "men-s-omnium": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/matthew-walls", + "name": "Matthew WALLS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/campbell-stewart", + "name": "Campbell STEWART" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/elia-viviani", + "name": "Elia VIVIANI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/benjamin-thomas", + "name": "Benjamin THOMAS" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/niklas-larsen", + "name": "Niklas LARSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/jan-willem-van-schip", + "name": "Jan-Willem VAN SCHIP" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/thery-schir", + "name": "Thery SCHIR" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/gavin-hoover", + "name": "Gavin HOOVER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/roger-kluge", + "name": "Roger KLUGE" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-sprint": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691050660/primary/klokzmnedruaztitectn", + "meta_url": "https://olympics.com/en/athletes/harrie-lavreysen", + "name": "Harrie LAVREYSEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/jeffrey-hoogland", + "name": "Jeffrey HOOGLAND" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jack-carlin", + "name": "Jack CARLIN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/denis-dmitriev", + "name": "Denis DMITRIEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/maximilian-levy", + "name": "Maximilian LEVY" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TTO.png", + "meta_url": "https://olympics.com/en/athletes/nicholas-paul", + "name": "Nicholas PAUL" + }, + "country": "Tri. & Tobago" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/sebastien-vigier", + "name": "Sebastien VIGIER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wzb31wkjeycsaggufrop", + "meta_url": "https://olympics.com/en/athletes/jason-kenny", + "name": "Jason KENNY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yuta-wakimoto", + "name": "Yuta WAKIMOTO" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "men-s-team-pursuit": { + "participants": [ + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + } + ], + "type": "team" + }, + "men-s-team-sprint": { + "participants": [ + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + } + ], + "type": "team" + }, + "women-s-keirin": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/shanne-braspennincx", + "name": "Shanne BRASPENNINCX" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/ellesse-andrews", + "name": "Ellesse ANDREWS" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/lauriane-genest", + "name": "Lauriane GENEST" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/olena-starikova", + "name": "Olena STARIKOVA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kelsey-mitchell", + "name": "Kelsey MITCHELL" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/liubov-basova", + "name": "Liubov BASOVA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/emma-hinze", + "name": "Emma HINZE" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/wai-sze-lee", + "name": "Wai Sze LEE" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kaarle-mcculloch", + "name": "Kaarle MCCULLOCH" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-s-madison": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "women-s-omnium": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/jennifer-valente", + "name": "Jennifer VALENTE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yumi-kajihara", + "name": "Yumi KAJIHARA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/kirsten-wild", + "name": "Kirsten WILD" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/amalie-dideriksen", + "name": "Amalie DIDERIKSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/anita-yvonne-stenberg", + "name": "Anita Yvonne STENBERG" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624265206/primary/hk0g7viorpmkiiq2ybsf", + "meta_url": "https://olympics.com/en/athletes/laura-kenny", + "name": "Laura KENNY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/maria-martins-x4749", + "name": "Maria MARTINS" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/clara-copponi", + "name": "Clara COPPONI" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/allison-beveridge", + "name": "Allison BEVERIDGE" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-sprint": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kelsey-mitchell", + "name": "Kelsey MITCHELL" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/olena-starikova", + "name": "Olena STARIKOVA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/wai-sze-lee", + "name": "Wai Sze LEE" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/emma-hinze", + "name": "Emma HINZE" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lea-sophie-friedrich", + "name": "Lea Sophie FRIEDRICH" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/katy-marchant", + "name": "Katy MARCHANT" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/shanne-braspennincx", + "name": "Shanne BRASPENNINCX" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/lauriane-genest", + "name": "Lauriane GENEST" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/mathilde-gros", + "name": "Mathilde GROS" + }, + "country": "France" + } + ], + "type": "single" + }, + "women-s-team-pursuit": { + "participants": [ + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + } + ], + "type": "team" + }, + "women-s-team-sprint": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Lithuania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + } + ], + "type": "team" + } + }, + "diving": { + "men-s-10m-platform": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/klg5vovnaouj5vqqhqyp", + "meta_url": "https://olympics.com/en/athletes/yuan-cao", + "name": "Yuan CAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jian-yang-x3822", + "name": "Jian YANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yhx2nabtwcbzfbin2kxx", + "meta_url": "https://olympics.com/en/athletes/thomas-daley", + "name": "Thomas DALEY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/aleksandr-bondar", + "name": "Aleksandr BONDAR" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/viktor-minibaev", + "name": "Viktor MINIBAEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/oleksii-sereda", + "name": "Oleksii SEREDA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/rikuto-tamai", + "name": "Rikuto TAMAI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/cassiel-rousseau", + "name": "Cassiel ROUSSEAU" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/jordan-windle", + "name": "Jordan WINDLE" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-3m-springboard": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/siyi-xie", + "name": "Siyi XIE" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1689412286/primary/msqbp2rwa4ynvh9cw2np", + "meta_url": "https://olympics.com/en/athletes/zongyuan-wang", + "name": "Zongyuan WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nrcgkccsyhjkr28dwhts", + "meta_url": "https://olympics.com/en/athletes/jack-laugher", + "name": "Jack LAUGHER" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/haram-woo", + "name": "Haram WOO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/evgenii-kuznetsov", + "name": "Evgenii KUZNETSOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/rommel-pacheco", + "name": "Rommel PACHECO" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/martin-wolfram", + "name": "Martin WOLFRAM" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/anton-down-jenkins", + "name": "Anton DOWN-JENKINS" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/james-heatly", + "name": "James HEATLY" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "men-s-synchronised-10m-platform": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + }, + "men-s-synchronised-3m-springboard": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + } + ], + "type": "team" + }, + "women-s-10m-platform": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696003493/primary/ekuattnnf4cx3pfbuyrw", + "meta_url": "https://olympics.com/en/athletes/hongchan-quan", + "name": "Hongchan QUAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yuxi-chen", + "name": "Yuxi CHEN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623138126/primary/bugcwsf1qrbte3b83xfn", + "meta_url": "https://olympics.com/en/athletes/melissa-wu", + "name": "Melissa WU" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xoba8hvqbxpataimlbaq", + "meta_url": "https://olympics.com/en/athletes/gabriela-belem-agundez-garcia", + "name": "Gabriela Belem AGÚNDEZ GARCIA" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/delaney-schnell", + "name": "Delaney SCHNELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xjjo8svznwom1j16dvml", + "meta_url": "https://olympics.com/en/athletes/alejandra-orozco", + "name": "Alejandra OROZCO" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pcdwthydnixy6hnicsbk", + "meta_url": "https://olympics.com/en/athletes/andrea-spendolini-sirieix", + "name": "Andrea SPENDOLINI SIRIEIX" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/elena-wassen-x8110", + "name": "Elena WASSEN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/lois-toulson", + "name": "Lois TOULSON" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-3m-springboard": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/l6r8l9iargl28rntaulv", + "meta_url": "https://olympics.com/en/athletes/tingmao-shi", + "name": "Tingmao SHI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/han-wang", + "name": "Han WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/krysta-palmer", + "name": "Krysta PALMER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAS.png", + "meta_url": "https://olympics.com/en/athletes/nur-dhabitah-sabri", + "name": "Nur Dhabitah SABRI" + }, + "country": "Malaysia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/inge-jansen", + "name": "Inge JANSEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/aranza-vazquez-montano", + "name": "Aranza VAZQUEZ MONTANO" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/tina-punzel", + "name": "Tina PUNZEL" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qfe8kztpmpdi5a21hbkm", + "meta_url": "https://olympics.com/en/athletes/jennifer-abel", + "name": "Jennifer ABEL" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/hailey-hernandez", + "name": "Hailey HERNANDEZ" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-synchronised-10m-platform": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Malaysia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAS.png" + } + ], + "type": "team" + }, + "women-s-synchronised-3m-springboard": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + } + }, + "equestrian": { + "dressage-individual": { + "participants": [ + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + } + ], + "type": "team" + }, + "dressage-team": { + "participants": [ + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Portugal", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "eventing-individual": { + "participants": [ + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + } + ], + "type": "team" + }, + "eventing-team": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + }, + "jumping-individual": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + } + ], + "type": "team" + }, + "jumping-team": { + "participants": [ + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + } + ], + "type": "team" + } + }, + "fencing": { + "men-s-epee-individual": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/romain-cannone", + "name": "Romain CANNONE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/gergely-siklosi", + "name": "Gergely SIKLOSI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/igor-reizlin", + "name": "Igor REIZLIN" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/andrea-santarelli", + "name": "Andrea SANTARELLI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/sergey-bida", + "name": "Sergey BIDA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/masaru-yamada", + "name": "Masaru YAMADA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/sangyoung-park", + "name": "Sangyoung PARK" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/mohamed-elsayed-x6068", + "name": "Mohamed ELSAYED" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/bas-verwijlen", + "name": "Bas VERWIJLEN" + }, + "country": "Netherlands" + } + ], + "type": "single" + }, + "men-s-epee-team": { + "participants": [ + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "men-s-foil-individual": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/ka-long-cheung", + "name": "Ka Long CHEUNG" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ulqnhsl1qfrzv7se135n", + "meta_url": "https://olympics.com/en/athletes/daniele-garozzo", + "name": "Daniele GAROZZO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/alexander-choupenitch", + "name": "Alexander CHOUPENITCH" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/takahiro-shikine", + "name": "Takahiro SHIKINE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wiwcavhdveskxuxy5b4z", + "meta_url": "https://olympics.com/en/athletes/enzo-lefort", + "name": "Enzo LEFORT" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/alaaeldin-abouelkassem", + "name": "Alaaeldin ABOUELKASSEM" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707393930/primary/dwodc4ok6cscf5gkb2dv", + "meta_url": "https://olympics.com/en/athletes/mohamed-hamza", + "name": "Mohamed HAMZA" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/kirill-borodachev", + "name": "Kirill BORODACHEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alessio-foconi", + "name": "Alessio FOCONI" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-foil-team": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Hong Kong, China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + } + ], + "type": "team" + }, + "men-s-sabre-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fiprzlzmlaym1ocpnfee", + "meta_url": "https://olympics.com/en/athletes/aron-szilagyi", + "name": "Aron SZILAGYI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/luigi-samele", + "name": "Luigi SAMELE" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/junghwan-kim", + "name": "Junghwan KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ldopekbykgupmz9vvrrk", + "meta_url": "https://olympics.com/en/athletes/sandro-bazadze", + "name": "Sandro BAZADZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696001032/primary/mtcx9e4b8qbb9efwktqb", + "meta_url": "https://olympics.com/en/athletes/sanguk-oh", + "name": "Sanguk OH" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/kamil-ibragimov", + "name": "Kamil IBRAGIMOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/enrico-berre", + "name": "Enrico BERRE'" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/ali-pakdaman", + "name": "Ali PAKDAMAN" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/eli-dershwitz", + "name": "Eli DERSHWITZ" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-sabre-team": { + "participants": [ + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + }, + { + "country": "Isl Rep of Iran", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + }, + "women-s-epee-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/i9hlzgv7wd7afgrrmb3d", + "meta_url": "https://olympics.com/en/athletes/yiwen-sun", + "name": "Yiwen SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bk3iea0avrr3bwgwhpab", + "meta_url": "https://olympics.com/en/athletes/ana-maria-popescu", + "name": "Ana Maria POPESCU" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png", + "meta_url": "https://olympics.com/en/athletes/katrina-lehis", + "name": "Katrina LEHIS" + }, + "country": "Estonia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/aizanat-murtazaeva", + "name": "Aizanat MURTAZAEVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624616753/primary/syyyxthldlyieisgmcfe", + "meta_url": "https://olympics.com/en/athletes/man-wai-vivian-kong", + "name": "Man Wai Vivian KONG" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/federica-isola", + "name": "Federica ISOLA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png", + "meta_url": "https://olympics.com/en/athletes/julia-beljajeva", + "name": "Julia BELJAJEVA" + }, + "country": "Estonia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hfk242rgar5phxfk4eku", + "meta_url": "https://olympics.com/en/athletes/rossella-fiamingo", + "name": "Rossella FIAMINGO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/sheng-lin", + "name": "Sheng LIN" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "women-s-epee-team": { + "participants": [ + { + "country": "Estonia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Hong Kong, China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + } + ], + "type": "team" + }, + "women-s-foil-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pwmllxz4hg97xmdmshsi", + "meta_url": "https://olympics.com/en/athletes/lee-kiefer", + "name": "Lee KIEFER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jsfl4di65rdmgybb4rgb", + "meta_url": "https://olympics.com/en/athletes/inna-deriglazova", + "name": "Inna DERIGLAZOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bzujsbglg98ft5etqbhp", + "meta_url": "https://olympics.com/en/athletes/larisa-korobeynikova", + "name": "Larisa KOROBEYNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707393825/primary/rlnbu7j5a1reu6xlhpoz", + "meta_url": "https://olympics.com/en/athletes/alice-volpi", + "name": "Alice VOLPI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/arianna-errigo", + "name": "Arianna ERRIGO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yuka-ueno", + "name": "Yuka UENO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/hee-sook-jeon", + "name": "Hee Sook JEON" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kelleigh-ryan", + "name": "Kelleigh RYAN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1678349418/primary/pzdizxvauvfozudivs0p", + "meta_url": "https://olympics.com/en/athletes/ysaora-thibus", + "name": "Ysaora THIBUS" + }, + "country": "France" + } + ], + "type": "single" + }, + "women-s-foil-team": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + } + ], + "type": "team" + }, + "women-s-sabre-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vz8gfnc8ftiapitd7vcx", + "meta_url": "https://olympics.com/en/athletes/sofia-pozdniakova", + "name": "Sofia POZDNIAKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/znx2uug90up6pqp3b0qe", + "meta_url": "https://olympics.com/en/athletes/sofiya-velikaya", + "name": "Sofiya VELIKAYA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cvc4bbklqrzk1gjepple", + "meta_url": "https://olympics.com/en/athletes/manon-brunet", + "name": "Manon BRUNET" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/anna-marton", + "name": "Anna MARTON" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/mariel-zagunis", + "name": "Mariel ZAGUNIS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jiarui-qian", + "name": "Jiarui QIAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/olga-nikitina", + "name": "Olga NIKITINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/zaynab-dayibekova", + "name": "Zaynab DAYIBEKOVA" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/liza-pusztai", + "name": "Liza PUSZTAI" + }, + "country": "Hungary" + } + ], + "type": "single" + }, + "women-s-sabre-team": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Tunisia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png" + } + ], + "type": "team" + } + }, + "football": { + "men": { + "participants": [ + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Mexico", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Côte d'Ivoire", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CIV.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Zambia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ZAM.png" + } + ], + "type": "team" + } + }, + "golf": { + "men-s-individual-stroke-play": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/xander-schauffele", + "name": "Xander SCHAUFFELE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/rory-sabbatini", + "name": "Rory SABBATINI" + }, + "country": "Slovakia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/c-t-pan", + "name": "C.T. PAN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/collin-morikawa", + "name": "Collin MORIKAWA" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHI.png", + "meta_url": "https://olympics.com/en/athletes/mito-pereira", + "name": "Mito PEREIRA" + }, + "country": "Chile" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tquomy4k4zi5soknpm7a", + "meta_url": "https://olympics.com/en/athletes/rory-mcilroy", + "name": "Rory MCILROY" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/juan-sebastian-munoz-amaya", + "name": "Juan Sebastian MUNOZ AMAYA" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/hideki-matsuyama", + "name": "Hideki MATSUYAMA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/paul-casey", + "name": "Paul CASEY" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-individual-stroke-play": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/chrj1laubabvs0jlwbnf", + "meta_url": "https://olympics.com/en/athletes/nelly-korda", + "name": "Nelly KORDA" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/mone-inami", + "name": "Mone INAMI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/re6z5tfrwftozmtkwjzn", + "meta_url": "https://olympics.com/en/athletes/lydia-ko", + "name": "Lydia KO" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kxcj19wxt8vznur2l73j", + "meta_url": "https://olympics.com/en/athletes/aditi-ashok", + "name": "Aditi ASHOK" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/hannah-green", + "name": "Hannah GREEN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/emily-kristine-pedersen", + "name": "Emily Kristine PEDERSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png", + "meta_url": "https://olympics.com/en/athletes/stephanie-meadow", + "name": "Stephanie MEADOW" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shanshan-feng", + "name": "Shanshan FENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PHI.png", + "meta_url": "https://olympics.com/en/athletes/yuka-saso", + "name": "Yuka SASO" + }, + "country": "Philippines" + } + ], + "type": "single" + } + }, + "handball": { + "men": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Egypt", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + }, + { + "country": "Bahrain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRN.png" + }, + { + "country": "Portugal", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Montenegro", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MNE.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + } + ], + "type": "team" + } + }, + "hockey": { + "men": { + "participants": [ + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + } + }, + "judo": { + "men-100-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/imrbxjdtpyf41vwojpzo", + "meta_url": "https://olympics.com/en/athletes/aaron-wolf", + "name": "Aaron WOLF" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/guham-cho", + "name": "Guham CHO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/jorge-fonseca", + "name": "Jorge FONSECA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/niiaz-iliasov", + "name": "Niiaz ILIASOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/shady-elnahas", + "name": "Shady ELNAHAS" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/varlam-liparteliani", + "name": "Varlam LIPARTELIANI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/peter-paltchik", + "name": "Peter PALTCHIK" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/karl-richard-frey", + "name": "Karl-Richard FREY" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/zelym-kotsoiev", + "name": "Zelym KOTSOIEV" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-60-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rrqeccgsevadwrmtanpc", + "meta_url": "https://olympics.com/en/athletes/naohisa-takato", + "name": "Naohisa TAKATO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/yung-wei-yang", + "name": "Yung Wei YANG" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dabfhlpsrlanwjlitczj", + "meta_url": "https://olympics.com/en/athletes/yeldos-smetov", + "name": "Yeldos SMETOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wgkthp7emlvodqhvo25w", + "meta_url": "https://olympics.com/en/athletes/luka-mkheidze", + "name": "Luka MKHEIDZE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/tornike-tsjakadoea", + "name": "Tornike TSJAKADOEA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/won-jin-kim", + "name": "Won Jin KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/artem-lesiuk", + "name": "Artem LESIUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/lukhumi-chkhvimiani", + "name": "Lukhumi CHKHVIMIANI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/karamat-huseynov", + "name": "Karamat HUSEYNOV" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-66-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/drcr0rjlajt1tr32ckdy", + "meta_url": "https://olympics.com/en/athletes/hifumi-abe", + "name": "Hifumi ABE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/vazha-margvelashvili", + "name": "Vazha MARGVELASHVILI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/baul-an", + "name": "Baul AN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/daniel-cargnin", + "name": "Daniel CARGNIN" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/manuel-lombardo", + "name": "Manuel LOMBARDO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/baruch-shmailov", + "name": "Baruch SHMAILOV" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/baskhuu-yondonperenlei", + "name": "Baskhuu YONDONPERENLEI" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/adrian-gomboc", + "name": "Adrian GOMBOC" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/nathan-katz", + "name": "Nathan KATZ" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "men-73-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627297505/primary/pssil06nd1fvfo7ybvqx", + "meta_url": "https://olympics.com/en/athletes/shohei-ono", + "name": "Shohei ONO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/lasha-shavdatuashvili", + "name": "Lasha SHAVDATUASHVILI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/changrim-an", + "name": "Changrim AN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/tsogtbaatar-tsend-ochir", + "name": "Tsogtbaatar TSEND-OCHIR" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/rustam-orujov", + "name": "Rustam ORUJOV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/arthur-margelidon", + "name": "Arthur MARGELIDON" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOS.png", + "meta_url": "https://olympics.com/en/athletes/akil-gjakova", + "name": "Akil GJAKOVA" + }, + "country": "Kosovo" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/tohar-butbul", + "name": "Tohar BUTBUL" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DJI.png", + "meta_url": "https://olympics.com/en/athletes/aden-alexandre-houssein", + "name": "Aden-Alexandre HOUSSEIN" + }, + "country": "Djibouti" + } + ], + "type": "single" + }, + "men-81-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/lm2bzyulros3u2444fop", + "meta_url": "https://olympics.com/en/athletes/takanori-nagase", + "name": "Takanori NAGASE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/saeid-mollaei", + "name": "Saeid MOLLAEI" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/shamil-borchashvili", + "name": "Shamil BORCHASHVILI" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/matthias-casse", + "name": "Matthias CASSE" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/dominic-ressel", + "name": "Dominic RESSEL" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/tato-grigalashvili", + "name": "Tato GRIGALASHVILI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/alan-khubetsov", + "name": "Alan KHUBETSOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/sharofiddin-boltaboev", + "name": "Sharofiddin BOLTABOEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/murad-fatiyev", + "name": "Murad FATIYEV" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-90-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/lasha-bekauri", + "name": "Lasha BEKAURI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/eduard-trippel", + "name": "Eduard TRIPPEL" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/davlat-bobonov", + "name": "Davlat BOBONOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/krisztian-toth", + "name": "Krisztian TOTH" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/mihael-zgank", + "name": "Mihael ZGANK" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/mikhail-igolnikov", + "name": "Mikhail IGOLNIKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/nikoloz-sherazadishvili", + "name": "Nikoloz SHERAZADISHVILI" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/noel-van-t-end", + "name": "Noel VAN T END" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/mammadali-mehdiyev", + "name": "Mammadali MEHDIYEV" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-over-100-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/lukas-krpalek", + "name": "Lukas KRPALEK" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/guram-tushishvili", + "name": "Guram TUSHISHVILI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gp3dx2mhfrojf7q88a09", + "meta_url": "https://olympics.com/en/athletes/teddy-riner", + "name": "Teddy RINER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/tamerlan-bashaev", + "name": "Tamerlan BASHAEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/hisayoshi-harasawa", + "name": "Hisayoshi HARASAWA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/iakiv-khammo", + "name": "Iakiv KHAMMO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/rafael-silva", + "name": "Rafael SILVA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/bekmurod-oltiboev", + "name": "Bekmurod OLTIBOEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/ushangi-kokauri", + "name": "Ushangi KOKAURI" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "mixed-team": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Israel", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Mongolia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "None", + "img": null + } + ], + "type": "team" + }, + "women-48-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOS.png", + "meta_url": "https://olympics.com/en/athletes/distria-krasniqi", + "name": "Distria KRASNIQI" + }, + "country": "Kosovo" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/funa-tonaki", + "name": "Funa TONAKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/daria-bilodid", + "name": "Daria BILODID" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/urantsetseg-munkhbat", + "name": "Urantsetseg MUNKHBAT" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/shira-rishony", + "name": "Shira RISHONY" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/catarina-costa", + "name": "Catarina COSTA" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chen-hao-lin", + "name": "Chen-Hao LIN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/u3ilc7hcordv7miks9mj", + "meta_url": "https://olympics.com/en/athletes/paula-pareto", + "name": "Paula PARETO" + }, + "country": "Argentina" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/gabriela-chibana", + "name": "Gabriela CHIBANA" + }, + "country": "Brazil" + } + ], + "type": "single" + }, + "women-52-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1628855524/primary/t4jca7xvi7xwfhmwhurj", + "meta_url": "https://olympics.com/en/athletes/uta-abe", + "name": "Uta ABE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ypwqbtxuwvntsitsk0up", + "meta_url": "https://olympics.com/en/athletes/amandine-buchard", + "name": "Amandine BUCHARD" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/odette-giuffrida", + "name": "Odette GIUFFRIDA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/chelsie-giles", + "name": "Chelsie GILES" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/reka-pupp", + "name": "Reka PUPP" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/fabienne-kocher", + "name": "Fabienne KOCHER" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/da-sol-park", + "name": "Da-Sol PARK" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/charline-van-snick", + "name": "Charline VAN SNICK" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/larissa-pimenta", + "name": "Larissa PIMENTA" + }, + "country": "Brazil" + } + ], + "type": "single" + }, + "women-57-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOS.png", + "meta_url": "https://olympics.com/en/athletes/nora-gjakova", + "name": "Nora GJAKOVA" + }, + "country": "Kosovo" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ep59fjvrnsz6knggfbql", + "meta_url": "https://olympics.com/en/athletes/sarah-leonie-cysique", + "name": "Sarah Leonie CYSIQUE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/tsukasa-yoshida", + "name": "Tsukasa YOSHIDA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/jessica-klimkait", + "name": "Jessica KLIMKAIT" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/eteri-liparteliani", + "name": "Eteri LIPARTELIANI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/kaja-kajzer", + "name": "Kaja KAJZER" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/julia-kowalczyk", + "name": "Julia KOWALCZYK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/timna-nelson-levy", + "name": "Timna NELSON LEVY" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/ivelina-ilieva", + "name": "Ivelina ILIEVA" + }, + "country": "Bulgaria" + } + ], + "type": "single" + }, + "women-63-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ikxxsjneqdkrnmlxigsi", + "meta_url": "https://olympics.com/en/athletes/clarisse-agbegnenou", + "name": "Clarisse AGBEGNENOU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jtgla1ritmt0dtkufh6k", + "meta_url": "https://olympics.com/en/athletes/tina-trstenjak", + "name": "Tina TRSTENJAK" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/maria-centracchio", + "name": "Maria CENTRACCHIO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/catherine-beauchemin-pinard", + "name": "Catherine BEAUCHEMIN-PINARD" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/juul-franssen", + "name": "Juul FRANSSEN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/anriquelis-barrios", + "name": "Anriquelis BARRIOS" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/ketleyn-quadros", + "name": "Ketleyn QUADROS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/agata-ozdoba-blach", + "name": "Agata OZDOBA-BLACH" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/katharina-haecker", + "name": "Katharina HAECKER" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-70-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/chizuru-arai", + "name": "Chizuru ARAI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/michaela-polleres", + "name": "Michaela POLLERES" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/madina-taimazova", + "name": "Madina TAIMAZOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/sanne-van-dijke", + "name": "Sanne VAN DIJKE" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/barbara-matic", + "name": "Barbara MATIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/giovanna-scoccimarro", + "name": "Giovanna SCOCCIMARRO" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alice-bellandi", + "name": "Alice BELLANDI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/elisavet-teltsidou", + "name": "Elisavet TELTSIDOU" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/aoife-coughlan", + "name": "Aoife COUGHLAN" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-78-kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/shori-hamada", + "name": "Shori HAMADA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/madeleine-malonga", + "name": "Madeleine MALONGA" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/anna-maria-wagner", + "name": "Anna-Maria WAGNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/mayra-aguiar", + "name": "Mayra AGUIAR" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/kaliema-antomarchi", + "name": "Kaliema ANTOMARCHI" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/hyunji-yoon", + "name": "Hyunji YOON" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/guusje-steenhuis", + "name": "Guusje STEENHUIS" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/aleksandra-babintseva", + "name": "Aleksandra BABINTSEVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/bernadette-graf", + "name": "Bernadette GRAF" + }, + "country": "Austria" + } + ], + "type": "single" + }, + "women-over-78-kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fbdnrd8xdgmapgiuqudk", + "meta_url": "https://olympics.com/en/athletes/akira-sone", + "name": "Akira SONE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/thuxjc9zznvls7vultmn", + "meta_url": "https://olympics.com/en/athletes/idalys-ortiz", + "name": "Idalys ORTIZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/iryna-kindzerska", + "name": "Iryna KINDZERSKA" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/op1zd4t3e5hy1y88jms0", + "meta_url": "https://olympics.com/en/athletes/romane-dicko", + "name": "Romane DICKO" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shiyan-xu", + "name": "Shiyan XU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/kayra-sayit", + "name": "Kayra SAYIT" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704285594/primary/fbmlonrlddquenndzuf5", + "meta_url": "https://olympics.com/en/athletes/maria-suelen-altheman", + "name": "Maria Suelen ALTHEMAN" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/mijin-han", + "name": "Mijin HAN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BIH.png", + "meta_url": "https://olympics.com/en/athletes/larisa-ceric", + "name": "Larisa CERIC" + }, + "country": "Bosnia & Herzegovina" + } + ], + "type": "single" + } + }, + "karate": { + "men-s-kata": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ryo-kiyuna", + "name": "Ryo KIYUNA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/damian-quintero", + "name": "Damian QUINTERO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/ali-sofuoglu", + "name": "Ali SOFUOGLU" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/ariel-torres-gutierrez", + "name": "Ariel TORRES GUTIERREZ" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/antonio-jose-diaz-fernandez", + "name": "Antonio Jose DIAZ FERNANDEZ" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/heejun-park", + "name": "Heejun PARK" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/mattia-busato", + "name": "Mattia BUSATO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/ilja-smorguner", + "name": "Ilja SMORGUNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/yi-ta-wang", + "name": "Yi-Ta WANG" + }, + "country": "Chinese Taipei" + } + ], + "type": "single" + }, + "men-s-kumite-67kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/steven-da-costa", + "name": "Steven DA COSTA" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/eray-samdan", + "name": "Eray SAMDAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/darkhan-assadilov", + "name": "Darkhan ASSADILOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JOR.png", + "meta_url": "https://olympics.com/en/athletes/abdel-rahman-almasatfa", + "name": "Abdel Rahman ALMASATFA" + }, + "country": "Jordan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623064792/primary/so94a5zkbfy1g6ejs1af", + "meta_url": "https://olympics.com/en/athletes/hamoon-derafshipour", + "name": "Hamoon DERAFSHIPOUR" + }, + "country": "EOR" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/ali-elsawy", + "name": "Ali ELSAWY" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png", + "meta_url": "https://olympics.com/en/athletes/kalvis-kalnins", + "name": "Kalvis KALNINS" + }, + "country": "Latvia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/naoto-sago", + "name": "Naoto SAGO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/andres-eduardo-madera-delgado", + "name": "Andres Eduardo MADERA DELGADO" + }, + "country": "Venezuela" + } + ], + "type": "single" + }, + "men-s-kumite-75kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/luigi-busa", + "name": "Luigi BUSA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/rafael-aghayev", + "name": "Rafael AGHAYEV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/stanislav-horuna", + "name": "Stanislav HORUNA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/karoly-gabor-harspataki", + "name": "Karoly Gabor HARSPATAKI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/noah-bitsch", + "name": "Noah BITSCH" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ken-nishimura", + "name": "Ken NISHIMURA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/nurkanat-azhikanov", + "name": "Nurkanat AZHIKANOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/thomas-scott-x4423", + "name": "Thomas SCOTT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/tsuneari-yahiro", + "name": "Tsuneari YAHIRO" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "men-s-kumite-over-75kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/sajad-ganjzadeh", + "name": "Sajad GANJZADEH" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KSA.png", + "meta_url": "https://olympics.com/en/athletes/tareg-hamedi", + "name": "Tareg HAMEDI" + }, + "country": "Saudi Arabia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/ugur-aktas", + "name": "Ugur AKTAS" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ryutaro-araga", + "name": "Ryutaro ARAGA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/ivan-kvesic", + "name": "Ivan KVESIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/gogita-arkania", + "name": "Gogita ARKANIA" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/daniel-gaysinsky", + "name": "Daniel GAYSINSKY" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/daniyar-yuldashev", + "name": "Daniyar YULDASHEV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/brian-irr", + "name": "Brian IRR" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-kata": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/sandra-sanchez-jaime", + "name": "Sandra SANCHEZ JAIME" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/kiyou-shimizu", + "name": "Kiyou SHIMIZU" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/mo-sheung-grace-lau", + "name": "Mo Sheung Grace LAU" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/viviana-bottaro", + "name": "Viviana BOTTARO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/dilara-bozan", + "name": "Dilara BOZAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/sakura-kokumai", + "name": "Sakura KOKUMAI" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/alexandra-feracci", + "name": "Alexandra FERACCI" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/jasmin-juettner", + "name": "Jasmin JUETTNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MKD.png", + "meta_url": "https://olympics.com/en/athletes/puliksenija-jovanoska", + "name": "Puliksenija JOVANOSKA" + }, + "country": "North Macedonia" + } + ], + "type": "single" + }, + "women-s-kumite-55kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/ivet-goranova", + "name": "Ivet GORANOVA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/anzhelika-terliuga", + "name": "Anzhelika TERLIUGA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/bettina-plank", + "name": "Bettina PLANK" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/tzuyun-wen", + "name": "Tzuyun WEN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/sara-bahmanyar", + "name": "Sara BAHMANYAR" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/miho-miyahara", + "name": "Miho MIYAHARA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/serap-ozcelik-arapoglu", + "name": "Serap OZCELIK ARAPOGLU" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/moldir-zhangbyrbay", + "name": "Moldir ZHANGBYRBAY" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/radwa-sayed", + "name": "Radwa SAYED" + }, + "country": "Egypt" + } + ], + "type": "single" + }, + "women-s-kumite-61kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/jovana-prekovic", + "name": "Jovana PREKOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/xiaoyan-yin", + "name": "Xiaoyan YIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/merve-coban", + "name": "Merve COBAN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/giana-lotfy", + "name": "Giana LOTFY" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/anita-serogina", + "name": "Anita SEROGINA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/claudymar-garces-sequera", + "name": "Claudymar GARCES SEQUERA" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PER.png", + "meta_url": "https://olympics.com/en/athletes/alexandra-vanessa-grande-risco", + "name": "Alexandra Vanessa GRANDE RISCO" + }, + "country": "Peru" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/mayumi-someya", + "name": "Mayumi SOMEYA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAR.png", + "meta_url": "https://olympics.com/en/athletes/btissam-sadini", + "name": "Btissam SADINI" + }, + "country": "Morocco" + } + ], + "type": "single" + }, + "women-s-kumite-over-61kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/feryal-abdelaziz", + "name": "Feryal ABDELAZIZ" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/iryna-zaretska", + "name": "Iryna ZARETSKA" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/sofya-berultseva", + "name": "Sofya BERULTSEVA" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/li-gong-x1108", + "name": "Li GONG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/elena-quirici", + "name": "Elena QUIRICI" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/silvia-semeraro", + "name": "Silvia SEMERARO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/hamideh-abbasali", + "name": "Hamideh ABBASALI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ayumi-uekusa", + "name": "Ayumi UEKUSA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALG.png", + "meta_url": "https://olympics.com/en/athletes/lamya-matoub", + "name": "Lamya MATOUB" + }, + "country": "Algeria" + } + ], + "type": "single" + } + }, + "marathon-swimming": { + "men-s-10km": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c7wgxy5rwtdzotjqxtzd", + "meta_url": "https://olympics.com/en/athletes/florian-wellbrock", + "name": "Florian WELLBROCK" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/kristof-rasovszky", + "name": "Kristof RASOVSZKY" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dyzcfehub9drzljqcrod", + "meta_url": "https://olympics.com/en/athletes/gregorio-paltrinieri", + "name": "Gregorio PALTRINIERI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/matan-roditi", + "name": "Matan RODITI" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/athanasios-kynigakis", + "name": "Athanasios KYNIGAKIS" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/marc-antoine-olivier", + "name": "Marc-Antoine OLIVIER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/ferry-weertman", + "name": "Ferry WEERTMAN" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/RSA.png", + "meta_url": "https://olympics.com/en/athletes/michael-mcglynn", + "name": "Michael MCGLYNN" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/hau-li-fan", + "name": "Hau-Li FAN" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-10km": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/ana-marcela-cunha", + "name": "Ana Marcela CUNHA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/sharon-van-rouwendaal", + "name": "Sharon VAN ROUWENDAAL" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kareena-lee", + "name": "Kareena LEE" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/anna-olasz", + "name": "Anna OLASZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/o2o5orriknpnu2mpqdbt", + "meta_url": "https://olympics.com/en/athletes/leonie-antonia-beck", + "name": "Leonie Antonia BECK" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/haley-anderson", + "name": "Haley ANDERSON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/ashley-twichell", + "name": "Ashley TWICHELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/xin-xin", + "name": "Xin XIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/lara-grangeon", + "name": "Lara GRANGEON" + }, + "country": "France" + } + ], + "type": "single" + } + }, + "modern-pentathlon": { + "men-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mkwsltz8ck5wu4f69eyf", + "meta_url": "https://olympics.com/en/athletes/joseph-choong", + "name": "Joseph CHOONG" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/ahmed-elgendy", + "name": "Ahmed ELGENDY" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695998372/primary/sww14udoqpdnlgowpytb", + "meta_url": "https://olympics.com/en/athletes/woongtae-jun", + "name": "Woong Tae JUN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/jinhwa-jung", + "name": "Jinhwa JUNG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/martin-vlach", + "name": "Martin VLACH" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/adam-marosi", + "name": "Adam MAROSI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": null, + "name": "Valentin Prades" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/jan-kuf", + "name": "Jan KUF" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/james-cooke", + "name": "James COOKE" + }, + "country": "Great Britain" + } + ], + "type": "single" + }, + "women-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/x3zqgsynahydqw9dcwbt", + "meta_url": "https://olympics.com/en/athletes/kate-french", + "name": "Kate FRENCH" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/b9bwq61o1g0aefdvflzc", + "meta_url": "https://olympics.com/en/athletes/laura-asadauskaite", + "name": "Laura ASADAUSKAITE" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/sarolta-kovacs", + "name": "Sarolta KOVACS" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alice-sotero", + "name": "Alice SOTERO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/ilke-ozyuksel", + "name": "Ilke OZYUKSEL" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/elodie-clouvel", + "name": "Elodie CLOUVEL" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png", + "meta_url": "https://olympics.com/en/athletes/gintare-venckauskaite", + "name": "Gintare VENCKAUSKAITE" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/anastasiya-prokopenko", + "name": "Anastasiya PROKOPENKO" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/uliana-batashova", + "name": "Uliana BATASHOVA" + }, + "country": "ROC" + } + ], + "type": "single" + } + }, + "rhythmic-gymnastics": { + "group-all-around": { + "participants": [ + { + "country": "Bulgaria", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "Israel", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Uzbekistan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png" + } + ], + "type": "team" + }, + "individual-all-around": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ueymj2paezywnqcwcirx", + "meta_url": "https://olympics.com/en/athletes/linoy-ashram", + "name": "Linoy ASHRAM" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/uzuvnju5wwor058jfene", + "meta_url": "https://olympics.com/en/athletes/dina-averina", + "name": "Dina AVERINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/alina-harnasko", + "name": "Alina HARNASKO" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ncuc3qanscjlggsghbn1", + "meta_url": "https://olympics.com/en/athletes/arina-averina", + "name": "Arina AVERINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/boryana-kaleyn", + "name": "Boryana KALEYN" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/milena-baldassarri", + "name": "Milena BALDASSARRI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/nicol-zelikman", + "name": "Nicol ZELIKMAN" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/anastasiia-salos", + "name": "Anastasiia SALOS" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/khrystyna-pohranychna", + "name": "Khrystyna POHRANYCHNA" + }, + "country": "Ukraine" + } + ], + "type": "single" + } + }, + "rowing": { + "lightweight-men-s-double-sculls": { + "participants": [ + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Czechia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Uruguay", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/URU.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + } + ], + "type": "team" + }, + "lightweight-women-s-double-sculls": { + "participants": [ + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + } + ], + "type": "team" + }, + "men-s-double-sculls": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + } + ], + "type": "team" + }, + "men-s-eight": { + "participants": [ + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + } + ], + "type": "team" + }, + "men-s-four": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + } + ], + "type": "team" + }, + "men-s-pair": { + "participants": [ + { + "country": "Croatia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Belarus", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "men-s-quadruple-sculls": { + "participants": [ + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Estonia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + } + ], + "type": "team" + }, + "men-s-single-sculls": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/stefanos-ntouskos", + "name": "Stefanos NTOUSKOS" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xk7naojcapydvkyiiuzc", + "meta_url": "https://olympics.com/en/athletes/kjetil-borch", + "name": "Kjetil BORCH" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vlqfnamqbzsl5benyyej", + "meta_url": "https://olympics.com/en/athletes/damir-martin", + "name": "Damir MARTIN" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/sverri-nielsen", + "name": "Sverri NIELSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/alexander-vyazovkin", + "name": "Alexander VYAZOVKIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hbgdmtuprqm9hrdzmv0f", + "meta_url": "https://olympics.com/en/athletes/mindaugas-griskonis", + "name": "Mindaugas GRISKONIS" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696003678/primary/t7tu0ytyncnbkgm6htbt", + "meta_url": "https://olympics.com/en/athletes/oliver-zeidler", + "name": "Oliver ZEIDLER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/gennaro-alberto-di-mauro", + "name": "Gennaro Alberto DI MAURO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/trevor-jones", + "name": "Trevor JONES" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-double-sculls": { + "participants": [ + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Lithuania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + } + ], + "type": "team" + }, + "women-s-eight": { + "participants": [ + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + } + ], + "type": "team" + }, + "women-s-four": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Ireland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + } + ], + "type": "team" + }, + "women-s-pair": { + "participants": [ + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Greece", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + } + ], + "type": "team" + }, + "women-s-quadruple-sculls": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "women-s-single-sculls": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kycwffkw6dijxrkmbned", + "meta_url": "https://olympics.com/en/athletes/emma-twigg", + "name": "Emma TWIGG" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/hanna-prakatsen", + "name": "Hanna PRAKATSEN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/magdalena-lobnig", + "name": "Magdalena LOBNIG" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/victoria-thornley", + "name": "Victoria THORNLEY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/jeannine-gmelin", + "name": "Jeannine GMELIN" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yan-jiang", + "name": "Yan JIANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/sophie-souwer", + "name": "Sophie SOUWER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/carling-zeeman", + "name": "Carling ZEEMAN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kara-kohler", + "name": "Kara KOHLER" + }, + "country": "United States" + } + ], + "type": "single" + } + }, + "rugby-sevens": { + "men": { + "participants": [ + { + "country": "Fiji", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIJ.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "South Africa", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/RSA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Kenya", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Fiji", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIJ.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + } + ], + "type": "team" + } + }, + "sailing": { + "470-men": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Greece", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "470-women": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Slovenia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Israel", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + } + ], + "type": "team" + }, + "49er-fx-women": { + "participants": [ + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "49er-men": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Portugal", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png" + }, + { + "country": "Croatia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + } + ], + "type": "team" + }, + "finn-men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/giles-scott", + "name": "Giles SCOTT" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/zsombor-berecz", + "name": "Zsombor BERECZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/joan-cardona-mendez", + "name": "Joan CARDONA MENDEZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/nicholas-heiner", + "name": "Nicholas HEINER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/josh-junior", + "name": "Josh JUNIOR" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png", + "meta_url": "https://olympics.com/en/athletes/facundo-olezza-bazan", + "name": "Facundo OLEZZA BAZAN" + }, + "country": "Argentina" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/jake-lilley", + "name": "Jake LILLEY" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/alican-kaynar", + "name": "Alican KAYNAR" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/max-salminen", + "name": "Max SALMINEN" + }, + "country": "Sweden" + } + ], + "type": "single" + }, + "laser-men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1692205166/primary/d3scugjmy7mnriydh77c", + "meta_url": "https://olympics.com/en/athletes/matt-wearn", + "name": "Matt WEARN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/tonci-stipanovic", + "name": "Tonci STIPANOVIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/hermann-tomasgaard", + "name": "Hermann TOMASGAARD" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/b8bb1bl1vrx6bgbcwlbf", + "meta_url": "https://olympics.com/en/athletes/pavlos-kontides", + "name": "Pavlos KONTIDES" + }, + "country": "Cyprus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/philipp-buhl", + "name": "Philipp BUHL" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/jean-baptiste-bernaz", + "name": "Jean Baptiste BERNAZ" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/jeemin-ha", + "name": "Jeemin HA" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/robert-scheidt", + "name": "Robert SCHEIDT" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/kaarle-tapper", + "name": "Kaarle TAPPER" + }, + "country": "Finland" + } + ], + "type": "single" + }, + "laser-radial-women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/anne-marie-rindom", + "name": "Anne-Marie RINDOM" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/josefin-olsson", + "name": "Josefin OLSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/marit-bouwmeester", + "name": "Marit BOUWMEESTER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/emma-plasschaert", + "name": "Emma PLASSCHAERT" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/tuula-tenkanen", + "name": "Tuula TENKANEN" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/sarah-douglas", + "name": "Sarah DOUGLAS" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/silvia-zennaro", + "name": "Silvia ZENNARO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": null, + "name": "Line Høst" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/vasileia-karachaliou", + "name": "Vasileia KARACHALIOU" + }, + "country": "Greece" + } + ], + "type": "single" + }, + "nacra-17-mixed": { + "participants": [ + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + } + ], + "type": "team" + }, + "rs-x-men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/kiran-badloe", + "name": "Kiran BADLOE" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/thomas-goyard", + "name": "Thomas GOYARD" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/kun-bi", + "name": "Kun BI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/yoav-cohen", + "name": "Yoav COHEN" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/mattia-camboni", + "name": "Mattia CAMBONI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/piotr-myszka", + "name": "Piotr MYSZKA" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/tom-squires", + "name": "Tom SQUIRES" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/mateo-sanz-lanz", + "name": "Mateo SANZ LANZ" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/pedro-pascual", + "name": "Pedro PASCUAL" + }, + "country": "United States" + } + ], + "type": "single" + }, + "rs-x-women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yunxiu-lu", + "name": "Yunxiu LU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/charline-picon", + "name": "Charline PICON" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704279318/primary/pannsw0jdtegdyq9hgov", + "meta_url": "https://olympics.com/en/athletes/emma-wilson", + "name": "Emma WILSON" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/marta-maggetti", + "name": "Marta MAGGETTI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/lilian-de-geus", + "name": "Lilian DE GEUS" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/katy-spychakov", + "name": "Katy SPYCHAKOV" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/laerke-buhl-hansen", + "name": "Laerke BUHL-HANSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/hei-man-h-v-chan", + "name": "Hei Man H V CHAN" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/zofia-klepacka", + "name": "Zofia KLEPACKA" + }, + "country": "Poland" + } + ], + "type": "single" + } + }, + "shooting": { + "10m-air-pistol-men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/javad-foroughi", + "name": "Javad FOROUGHI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/damir-mikec", + "name": "Damir MIKEC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wei-pang", + "name": "Wei PANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/pavlo-korostylov", + "name": "Pavlo KOROSTYLOV" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/christian-reitz", + "name": "Christian REITZ" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/bowen-zhang", + "name": "Bowen ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png", + "meta_url": "https://olympics.com/en/athletes/chaudhary-saurabh", + "name": "Chaudhary SAURABH" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/mose-kim", + "name": "Mose KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PAK.png", + "meta_url": "https://olympics.com/en/athletes/gulfam-joseph", + "name": "Gulfam JOSEPH" + }, + "country": "Pakistan" + } + ], + "type": "single" + }, + "10m-air-pistol-mixed-team": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Isl Rep of Iran", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "India", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + } + ], + "type": "team" + }, + "10m-air-pistol-women": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rdaasdlzez2phewipmne", + "meta_url": "https://olympics.com/en/athletes/vitalina-batsarashkina", + "name": "Vitalina BATSARASHKINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/antoaneta-boneva", + "name": "Antoaneta BONEVA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fm2fc1swasj0tfjh5ybt", + "meta_url": "https://olympics.com/en/athletes/ranxin-jiang", + "name": "Ranxin JIANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/olena-kostevych", + "name": "Olena KOSTEVYCH" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yuemei-lin", + "name": "Yuemei LIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wzycwos9urriyqie8l3c", + "meta_url": "https://olympics.com/en/athletes/anna-korakaki", + "name": "Anna KORAKAKI" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/mathilde-lamolle", + "name": "Mathilde LAMOLLE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/celine-goberville", + "name": "Celine GOBERVILLE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/anudari-tsolmonbaatar", + "name": "Anudari TSOLMONBAATAR" + }, + "country": "Mongolia" + } + ], + "type": "single" + }, + "10m-air-rifle-men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691832232/primary/qynxsqza0cmkpzeccw2z", + "meta_url": "https://olympics.com/en/athletes/william-shaner", + "name": "William SHANER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/lihao-sheng", + "name": "Lihao SHENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/haoran-yang", + "name": "Haoran YANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/omer-akgun", + "name": "Omer AKGUN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/istvan-peni", + "name": "Istvan PENI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/lucas-kozeniesky", + "name": "Lucas KOZENIESKY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/patrik-jany", + "name": "Patrik JANY" + }, + "country": "Slovakia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/vladimir-maslennikov", + "name": "Vladimir MASLENNIKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/mahyar-sedaghat", + "name": "Mahyar SEDAGHAT" + }, + "country": "Isl Rep of Iran" + } + ], + "type": "single" + }, + "10m-air-rifle-mixed-team": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Norway", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png" + } + ], + "type": "team" + }, + "10m-air-rifle-women": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1630403166/primary/tcphvry9jd0xzm0t0trk", + "meta_url": "https://olympics.com/en/athletes/qian-yang", + "name": "Qian YANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/anastasiia-galashina", + "name": "Anastasiia GALASHINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/nina-christen", + "name": "Nina CHRISTEN" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/jeanette-hegg-duestad", + "name": "Jeanette Hegg DUESTAD" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/oceanne-muller", + "name": "Oceanne MULLER" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/mary-carolynn-tucker", + "name": "Mary Carolynn TUCKER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/eunji-kwon", + "name": "Eunji KWON" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/heemoon-park", + "name": "Heemoon PARK" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/laura-georgeta-ilie", + "name": "Laura-Georgeta ILIE" + }, + "country": "Romania" + } + ], + "type": "single" + }, + "25m-pistol-women": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rdaasdlzez2phewipmne", + "meta_url": "https://olympics.com/en/athletes/vitalina-batsarashkina", + "name": "Vitalina BATSARASHKINA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/minjung-kim", + "name": "Minjung KIM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jiaruixuan-xiao", + "name": "Jiaruixuan XIAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/antoaneta-boneva", + "name": "Antoaneta BONEVA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chia-ying-wu", + "name": "Chia Ying WU" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wzycwos9urriyqie8l3c", + "meta_url": "https://olympics.com/en/athletes/anna-korakaki", + "name": "Anna KORAKAKI" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/doreen-vennekamp", + "name": "Doreen VENNEKAMP" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chia-chen-tien", + "name": "Chia Chen TIEN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/zorana-arunovic", + "name": "Zorana ARUNOVIC" + }, + "country": "Serbia" + } + ], + "type": "single" + }, + "25m-rapid-fire-pistol-men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1691832481/primary/ve4gc6cfwqpdw6cj776o", + "meta_url": "https://olympics.com/en/athletes/jean-quiquampoix", + "name": "Jean QUIQUAMPOIX" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/leuris-pupo", + "name": "Leuris PUPO" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yuehong-li", + "name": "Yuehong LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/daeyoon-han", + "name": "Daeyoon HAN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/christian-reitz", + "name": "Christian REITZ" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/junmin-lin", + "name": "Junmin LIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/clement-bessaguet", + "name": "Clement BESSAGUET" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/dai-yoshioka", + "name": "Dai YOSHIOKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/pavlo-korostylov", + "name": "Pavlo KOROSTYLOV" + }, + "country": "Ukraine" + } + ], + "type": "single" + }, + "50m-rifle-3-positions-men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/changhong-zhang", + "name": "Changhong ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/sergey-kamenskiy", + "name": "Sergey KAMENSKIY" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/milenko-sebic", + "name": "Milenko SEBIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/jon-hermann-hegg", + "name": "Jon-Hermann HEGG" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/petar-gorsa", + "name": "Petar GORSA" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/miran-maricic", + "name": "Miran MARICIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/yury-shcherbatsevich", + "name": "Yury SHCHERBATSEVICH" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/serhiy-kulish", + "name": "Serhiy KULISH" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/henrik-larsen", + "name": "Henrik LARSEN" + }, + "country": "Norway" + } + ], + "type": "single" + }, + "50m-rifle-3-positions-women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/nina-christen", + "name": "Nina CHRISTEN" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/yulia-zykova", + "name": "Yulia ZYKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/yulia-karimova", + "name": "Yulia KARIMOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/jeanette-hegg-duestad", + "name": "Jeanette Hegg DUESTAD" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/sagen-maddalena", + "name": "Sagen MADDALENA" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/jolyn-beer", + "name": "Jolyn BEER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/ziva-dvorsak", + "name": "Ziva DVORSAK" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/andrea-arsovic", + "name": "Andrea ARSOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/mengyao-shi", + "name": "Mengyao SHI" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "skeet-men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/goyvbazkldd3skgp3obm", + "meta_url": "https://olympics.com/en/athletes/vincent-hancock", + "name": "Vincent HANCOCK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png", + "meta_url": "https://olympics.com/en/athletes/jesper-hansen", + "name": "Jesper HANSEN" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KUW.png", + "meta_url": "https://olympics.com/en/athletes/abdullah-alrashidi-x5661", + "name": "Abdullah ALRASHIDI" + }, + "country": "Kuwait" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/eetu-kallioinen", + "name": "Eetu KALLIOINEN" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/eric-delaunay", + "name": "Eric DELAUNAY" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/tammaro-cassandro", + "name": "Tammaro CASSANDRO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/jakub-tomecek", + "name": "Jakub TOMECEK" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PER.png", + "meta_url": "https://olympics.com/en/athletes/nicolas-pacheco-espinosa", + "name": "Nicolas PACHECO ESPINOSA" + }, + "country": "Peru" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CYP.png", + "meta_url": "https://olympics.com/en/athletes/georgios-achilleos", + "name": "Georgios ACHILLEOS" + }, + "country": "Cyprus" + } + ], + "type": "single" + }, + "skeet-women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/amber-english", + "name": "Amber ENGLISH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/diana-bacosi", + "name": "Diana BACOSI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1698329207/primary/nousoqykczvrq9gwss20", + "meta_url": "https://olympics.com/en/athletes/meng-wei", + "name": "Meng WEI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/isarapa-imprasertsuk", + "name": "Isarapa IMPRASERTSUK" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/nadine-messerschmidt", + "name": "Nadine MESSERSCHMIDT" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/natalia-vinogradova", + "name": "Natalia VINOGRADOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CYP.png", + "meta_url": "https://olympics.com/en/athletes/andri-eleftheriou", + "name": "Andri ELEFTHERIOU" + }, + "country": "Cyprus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/iryna-malovichko", + "name": "Iryna MALOVICHKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/lucie-anastassiou", + "name": "Lucie ANASTASSIOU" + }, + "country": "France" + } + ], + "type": "single" + }, + "trap-men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/jiri-liptak", + "name": "Jiri LIPTAK" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/david-kostelecky", + "name": "David KOSTELECKY" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/matthew-john-coward-holley", + "name": "Matthew John COWARD HOLLEY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/jorge-martin-orozco-diaz", + "name": "Jorge Martin OROZCO DIAZ" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/haicheng-yu", + "name": "Haicheng YU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KUW.png", + "meta_url": "https://olympics.com/en/athletes/abdulrahman-al-faihan", + "name": "Abdulrahman AL FAIHAN" + }, + "country": "Kuwait" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KUW.png", + "meta_url": "https://olympics.com/en/athletes/talal-alrashidi", + "name": "Talal ALRASHIDI" + }, + "country": "Kuwait" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/alexey-alipov", + "name": "Alexey ALIPOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ksa8ekdr2k4mbrgbv2qz", + "meta_url": "https://olympics.com/en/athletes/alberto-fernandez-1", + "name": "Alberto FERNANDEZ" + }, + "country": "Spain" + } + ], + "type": "single" + }, + "trap-mixed-team": { + "participants": [ + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "San Marino", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SMR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Slovakia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Slovakia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + }, + "trap-women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SVK.png", + "meta_url": "https://olympics.com/en/athletes/zuzana-stefecekova", + "name": "Zuzana STEFECEKOVA" + }, + "country": "Slovakia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kayle-browning", + "name": "Kayle BROWNING" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SMR.png", + "meta_url": "https://olympics.com/en/athletes/alessandra-perilli", + "name": "Alessandra PERILLI" + }, + "country": "San Marino" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/laetisha-scanlan", + "name": "Laetisha SCANLAN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/silvana-stanco", + "name": "Silvana STANCO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/penny-smith", + "name": "Penny SMITH" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/madelynn-ann-bernau", + "name": "Madelynn Ann BERNAU" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/jessica-rossi", + "name": "Jessica ROSSI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/sandra-bernal", + "name": "Sandra BERNAL" + }, + "country": "Poland" + } + ], + "type": "single" + } + }, + "skateboarding": { + "men-s-park": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/g9pkhw4i3luhjqy2uksj", + "meta_url": "https://olympics.com/en/athletes/keegan-palmer", + "name": "Keegan PALMER" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c4ybpreaouiku185amma", + "meta_url": "https://olympics.com/en/athletes/pedro-barros", + "name": "Pedro BARROS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tnkuemzct9l5rtdptql9", + "meta_url": "https://olympics.com/en/athletes/cory-juneau", + "name": "Cory JUNEAU" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/luiz-francisco", + "name": "Luiz FRANCISCO" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1684855941/primary/cnawgqkj7otvafhpuiuy", + "meta_url": "https://olympics.com/en/athletes/kieran-woolley", + "name": "Kieran WOOLLEY" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PUR.png", + "meta_url": "https://olympics.com/en/athletes/steven-piniero", + "name": "Steven PIÑEIRO" + }, + "country": "Puerto Rico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/vincent-matheron", + "name": "Vincent MATHERON" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/pedro-quintas", + "name": "Pedro QUINTAS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/danny-leon", + "name": "Danny LEON" + }, + "country": "Spain" + } + ], + "type": "single" + }, + "men-s-street": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wlfiwclru4tqgbcygxpf", + "meta_url": "https://olympics.com/en/athletes/yuto-horigome", + "name": "Yuto HORIGOME" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/l1bpmlqtahkipmp2gz3a", + "meta_url": "https://olympics.com/en/athletes/kelvin-hoefler", + "name": "Kelvin HOEFLER" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yw26cnmlu1dsp0agxi0u", + "meta_url": "https://olympics.com/en/athletes/jagger-eaton", + "name": "Jagger EATON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/vincent-milou", + "name": "Vincent MILOU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PER.png", + "meta_url": "https://olympics.com/en/athletes/angelo-caro-narvaez", + "name": "Angelo CARO NARVAEZ" + }, + "country": "Peru" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yiotbtgtusj6jchlobha", + "meta_url": "https://olympics.com/en/athletes/aurelien-giraud", + "name": "Aurélien GIRAUD" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/li01cajtepl2gohbfcqp", + "meta_url": "https://olympics.com/en/athletes/nyjah-imani-huston", + "name": "Nyjah IMANI HUSTON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/gustavo-ribeiro", + "name": "Gustavo RIBEIRO" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1710857308/primary/moztcdwrl8l9sqgdfahw", + "meta_url": "https://olympics.com/en/athletes/sora-shirai", + "name": "Sora SHIRAI" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "women-s-park": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1656409434/primary/w5dxsqcn4bxivy7xcike", + "meta_url": "https://olympics.com/en/athletes/sakura-yosozumi", + "name": "Sakura YOSOZUMI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1656409468/primary/lh1ithdpjeoavxgcihxf", + "meta_url": "https://olympics.com/en/athletes/cocona-hiraki", + "name": "Cocona HIRAKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/u2crplqzbeykukd8xf9f", + "meta_url": "https://olympics.com/en/athletes/sky-brown", + "name": "Sky BROWN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/misugu-okamoto", + "name": "Misugu OKAMOTO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1692787073/primary/vartwo8gscjcrssomqpj", + "meta_url": "https://olympics.com/en/athletes/poppy-olsen", + "name": "Poppy OLSEN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1684855585/primary/fa5pcx1qoivocebahkd3", + "meta_url": "https://olympics.com/en/athletes/bryce-wettstein", + "name": "Bryce WETTSTEIN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/dora-varella", + "name": "Dora VARELLA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/yndiara-asp", + "name": "Yndiara ASP" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lilly-stoephasius", + "name": "Lilly STOEPHASIUS" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-street": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627379481/primary/x8yhofz3vhaqrwij6pih", + "meta_url": "https://olympics.com/en/athletes/momiji-nishiya", + "name": "Momiji NISHIYA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1655996747/primary/cvkohtnfy2gchvxw2w8l", + "meta_url": "https://olympics.com/en/athletes/rayssa-leal", + "name": "Rayssa LEAL" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/g9kas7atkx2skyfedtbl", + "meta_url": "https://olympics.com/en/athletes/funa-nakayama", + "name": "Funa NAKAYAMA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/alexis-sablone", + "name": "Alexis SABLONE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694702944/primary/xakmyp61krb9a72efz4p", + "meta_url": "https://olympics.com/en/athletes/roos-zwetsloot", + "name": "Roos ZWETSLOOT" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wenhui-zeng", + "name": "Wenhui ZENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PHI.png", + "meta_url": "https://olympics.com/en/athletes/margielyn-arda-didal", + "name": "Margielyn Arda DIDAL" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624629392/primary/qk3hkef4c53ihhopge4o", + "meta_url": "https://olympics.com/en/athletes/aori-nishimura", + "name": "Aori NISHIMURA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624633700/primary/qytklksd2ap1mmccma0a", + "meta_url": "https://olympics.com/en/athletes/leticia-bufoni", + "name": "Leticia Bufoni" + }, + "country": "Brazil" + } + ], + "type": "single" + } + }, + "sport-climbing": { + "men-s-combined": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zz236eubrwk48jtbrina", + "meta_url": "https://olympics.com/en/athletes/alberto-gines-lopez", + "name": "Alberto GINES LOPEZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ehqu6rh9wh0mlxxcwqoi", + "meta_url": "https://olympics.com/en/athletes/nathaniel-coleman", + "name": "Nathaniel COLEMAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1699467797/primary/rscsouqhfs2ibvdctzud", + "meta_url": "https://olympics.com/en/athletes/jakob-schubert", + "name": "Jakob SCHUBERT" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/j4s39rxurpzn4iejgx6r", + "meta_url": "https://olympics.com/en/athletes/tomoa-narasaki", + "name": "Tomoa NARASAKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dkelqmcmaho6gybgawnw", + "meta_url": "https://olympics.com/en/athletes/mickael-mawem", + "name": "Mickael MAWEM" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707489700/primary/ryohdpaupufrjqfdbzri", + "meta_url": "https://olympics.com/en/athletes/adam-ondra", + "name": "Adam ONDRA" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/colin-duffy", + "name": "Colin DUFFY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ww1lyazemktv2iqgzrv4", + "meta_url": "https://olympics.com/en/athletes/bassa-mawem", + "name": "Bassa MAWEM" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/alexander-megos", + "name": "Alexander MEGOS" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-combined": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1566380333/primary/lawoiudriwqaixfmlfhw", + "meta_url": "https://olympics.com/en/athletes/janja-garnbret", + "name": "Janja GARNBRET" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624624712/primary/k6z35f35ek2lguii8w2k", + "meta_url": "https://olympics.com/en/athletes/miho-nonaka", + "name": "Miho NONAKA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/akiyo-noguchi", + "name": "Akiyo NOGUCHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694853112/primary/gsv01pnn7lzwmxkorv48", + "meta_url": "https://olympics.com/en/athletes/aleksandra-miroslaw", + "name": "Aleksandra MIROSLAW" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/q5oxa3cebn4nwmfytfpw", + "meta_url": "https://olympics.com/en/athletes/brooke-raboutou", + "name": "Brooke RABOUTOU" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/anouck-jaubert", + "name": "Anouck JAUBERT" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/jessica-pilz", + "name": "Jessica PILZ" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cp8b4ivh9pqxkfs9sdaj", + "meta_url": "https://olympics.com/en/athletes/chaehyun-seo", + "name": "Chae-hyun SEO" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/viktoriia-meshkova", + "name": "Viktoriia MESHKOVA" + }, + "country": "ROC" + } + ], + "type": "single" + } + }, + "surfing": { + "men": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/p3fzz47dvwlc08clwluk", + "meta_url": "https://olympics.com/en/athletes/italo-ferreira", + "name": "Italo Ferreira" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622043023/primary/kiipx4lewwyj3owyllmf", + "meta_url": "https://olympics.com/en/athletes/kanoa-igarashi", + "name": "Kanoa IGARASHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622042345/primary/pbv9smc5szjfmpkzafc0", + "meta_url": "https://olympics.com/en/athletes/owen-wright", + "name": "Owen Wright" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707814715/primary/rfokftspfqn6yomtoisa", + "meta_url": "https://olympics.com/en/athletes/gabriel-medina", + "name": "Gabriel MEDINA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622041995/primary/xdx3xedvyahnfps7j5qx", + "meta_url": "https://olympics.com/en/athletes/kolohe-andino", + "name": "Kolohe ANDINO" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622042675/primary/zecda1iwn5qrld6k8ixq", + "meta_url": "https://olympics.com/en/athletes/michel-bourez", + "name": "Michel BOUREZ" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622039211/primary/i3r0hb58zulpkl6v4srv", + "meta_url": "https://olympics.com/en/athletes/lucca-mesinas", + "name": "Lucca None" + }, + "country": "Peru" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qny1eir5wxolelwtp03s", + "meta_url": "https://olympics.com/en/athletes/hiroto-ohhara", + "name": "Hiroto OHHARA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622043247/primary/r983ggkceixivkhd63k2", + "meta_url": "https://olympics.com/en/athletes/ramzi-boukhiam", + "name": "Ramzi Boukhiam" + }, + "country": "Morocco" + } + ], + "type": "single" + }, + "women": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ync1ytpmcucn4z4zkja1", + "meta_url": "https://olympics.com/en/athletes/carissa-moore", + "name": "Carissa MOORE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mzo87siyfigyp7grib65", + "meta_url": "https://olympics.com/en/athletes/bianca-buitendag", + "name": "Bianca BUITENDAG" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/amuro-tsuzuki", + "name": "Amuro TSUZUKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622045795/primary/qejb7mzdnn2s1bta20n3", + "meta_url": "https://olympics.com/en/athletes/caroline-marks", + "name": "Caroline MARKS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622045588/primary/ehnymzz0vurlqwthvx9g", + "meta_url": "https://olympics.com/en/athletes/sally-fitzgibbons", + "name": "Sally FITZGIBBONS" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622033321/primary/kljh4qvltqgzqmblred4", + "meta_url": "https://olympics.com/en/athletes/brisa-hennessy", + "name": "Brisa HENNESSY" + }, + "country": "Costa Rica" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POR.png", + "meta_url": "https://olympics.com/en/athletes/yolanda-hopkins", + "name": "Yolanda HOPKINS" + }, + "country": "Portugal" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1622030999/primary/jdxxbqdzrzjio7vedmo3", + "meta_url": "https://olympics.com/en/athletes/silvana-lima", + "name": "Silvana LIMA" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/pauline-ado", + "name": "Pauline ADO" + }, + "country": "France" + } + ], + "type": "single" + } + }, + "swimming": { + "men-s-100m-backstroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626923508/primary/apgsrzz4jblxxahpui4l", + "meta_url": "https://olympics.com/en/athletes/evgeny-rylov", + "name": "Evgeny RYLOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1616586882/primary/uqrds7ddfjpme758kmrl", + "meta_url": "https://olympics.com/en/athletes/kliment-kolesnikov", + "name": "Kliment KOLESNIKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nqlcue5y2wz0tehzisci", + "meta_url": "https://olympics.com/en/athletes/ryan-murphy", + "name": "Ryan MURPHY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zrvz4ti5idz83y1c9qv8", + "meta_url": "https://olympics.com/en/athletes/thomas-ceccon", + "name": "Thomas CECCON" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695737527/primary/rwhoi1d2bc6cy4vz3d0n", + "meta_url": "https://olympics.com/en/athletes/jiayu-xu", + "name": "Jiayu XU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xl24mkp2467hbijwkj0t", + "meta_url": "https://olympics.com/en/athletes/hugo-gonzalez-de-oliveira", + "name": "Hugo GONZALEZ DE OLIVEIRA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/mitchell-larkin", + "name": "Mitchell LARKIN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/robert-andrei-glinta", + "name": "Robert Andrei GLINTA" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rjhp61nglimx1jjjrjkf", + "meta_url": "https://olympics.com/en/athletes/ryosuke-irie", + "name": "Ryosuke IRIE" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "men-s-100m-breaststroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tghcjfehxvhigc9lyurq", + "meta_url": "https://olympics.com/en/athletes/adam-peaty", + "name": "Adam PEATY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/arno-kamminga", + "name": "Arno KAMMINGA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xn0ladehy7vwqzcwn8po", + "meta_url": "https://olympics.com/en/athletes/nicolo-martinenghi", + "name": "Nicolo MARTINENGHI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michael-andrew", + "name": "Michael ANDREW" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/james-wilby", + "name": "James WILBY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zibei-yan", + "name": "Zibei YAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/andrew-wilson-x7839", + "name": "Andrew WILSON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/ilya-shymanovich", + "name": "Ilya SHYMANOVICH" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/lucas-joachim-matzerath", + "name": "Lucas Joachim MATZERATH" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-100m-butterfly": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kxv7nqrkzzwxkvysxdeo", + "meta_url": "https://olympics.com/en/athletes/caeleb-dressel", + "name": "Caeleb DRESSEL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/u3bpi1kmm0n9nptnfgon", + "meta_url": "https://olympics.com/en/athletes/kristof-milak", + "name": "Kristof Kristof Milak" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/noe-ponti", + "name": "Noe PONTI" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/andrei-minakov", + "name": "Andrei MINAKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/jakub-majerski", + "name": "Jakub MAJERSKI" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/matthew-temple", + "name": "Matthew TEMPLE" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GUA.png", + "meta_url": "https://olympics.com/en/athletes/luis-martinez-2", + "name": "Luis MARTINEZ" + }, + "country": "Guatemala" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/josif-miladinov", + "name": "Josif MILADINOV" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/yxqyiy2bln7r3mwxyoyp", + "meta_url": "https://olympics.com/en/athletes/mehdy-metella", + "name": "Mehdy METELLA" + }, + "country": "France" + } + ], + "type": "single" + }, + "men-s-100m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kxv7nqrkzzwxkvysxdeo", + "meta_url": "https://olympics.com/en/athletes/caeleb-dressel", + "name": "Caeleb DRESSEL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/bysqj4spu9zp1olramop", + "meta_url": "https://olympics.com/en/athletes/kyle-chalmers", + "name": "Kyle CHALMERS" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1616586882/primary/uqrds7ddfjpme758kmrl", + "meta_url": "https://olympics.com/en/athletes/kliment-kolesnikov", + "name": "Kliment KOLESNIKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696005605/primary/hm7pegqwj6yvtrmqmeyw", + "meta_url": "https://olympics.com/en/athletes/maxime-grousset", + "name": "Maxime GROUSSET" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696001418/primary/c6ckxbk9rwcbrozhux3b", + "meta_url": "https://olympics.com/en/athletes/sunwoo-hwang", + "name": "Sunwoo HWANG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alessandro-miressi", + "name": "Alessandro MIRESSI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ypdcgnuoaoazzon0bfay", + "meta_url": "https://olympics.com/en/athletes/david-popovici", + "name": "David POPOVICI" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/nandor-nemeth", + "name": "Nandor NEMETH" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/andrej-barna", + "name": "Andrej BARNA" + }, + "country": "Serbia" + } + ], + "type": "single" + }, + "men-s-1500m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/djqptajhnuf6atwbvw2a", + "meta_url": "https://olympics.com/en/athletes/robert-finke", + "name": "Robert FINKE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/mykhailo-romanchuk", + "name": "Mykhailo ROMANCHUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c7wgxy5rwtdzotjqxtzd", + "meta_url": "https://olympics.com/en/athletes/florian-wellbrock", + "name": "Florian WELLBROCK" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dyzcfehub9drzljqcrod", + "meta_url": "https://olympics.com/en/athletes/gregorio-paltrinieri", + "name": "Gregorio PALTRINIERI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/daniel-jervis", + "name": "Daniel JERVIS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/kirill-martynychev", + "name": "Kirill MARTYNYCHEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/felix-auboeck", + "name": "Felix AUBOECK" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/serhii-frolov", + "name": "Serhii FROLOV" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/domenico-acerenza", + "name": "Domenico ACERENZA" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-200m-backstroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626923508/primary/apgsrzz4jblxxahpui4l", + "meta_url": "https://olympics.com/en/athletes/evgeny-rylov", + "name": "Evgeny RYLOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nqlcue5y2wz0tehzisci", + "meta_url": "https://olympics.com/en/athletes/ryan-murphy", + "name": "Ryan MURPHY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/luke-greenbank", + "name": "Luke GREENBANK" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/bryce-mefford", + "name": "Bryce MEFFORD" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/adam-telegdy", + "name": "Adam TELEGDY" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/radoslaw-kawecki", + "name": "Radoslaw KAWECKI" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rjhp61nglimx1jjjrjkf", + "meta_url": "https://olympics.com/en/athletes/ryosuke-irie", + "name": "Ryosuke IRIE" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/nicolas-garcia-saiz", + "name": "Nicolas GARCIA SAIZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/yohann-ndoye-brouard", + "name": "Yohann NDOYE-BROUARD" + }, + "country": "France" + } + ], + "type": "single" + }, + "men-s-200m-breaststroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wla04qk2xl2qggrnlgj9", + "meta_url": "https://olympics.com/en/athletes/izaac-stubblety-cook", + "name": "Izaac STUBBLETY-COOK" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/arno-kamminga", + "name": "Arno KAMMINGA" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/matti-mattsson", + "name": "Matti MATTSSON" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vhxgoienhcw35sdpfzkk", + "meta_url": "https://olympics.com/en/athletes/anton-chupkov", + "name": "Anton CHUPKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/a6n7o1gl9krwnu0kbvid", + "meta_url": "https://olympics.com/en/athletes/nic-fink", + "name": "Nic FINK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/james-wilby", + "name": "James WILBY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/ryuya-mura", + "name": "Ryuya MURA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/erik-persson-2", + "name": "Erik PERSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/kirill-prigoda", + "name": "Kirill PRIGODA" + }, + "country": "ROC" + } + ], + "type": "single" + }, + "men-s-200m-butterfly": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/u3bpi1kmm0n9nptnfgon", + "meta_url": "https://olympics.com/en/athletes/kristof-milak", + "name": "Kristof Kristof Milak" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/q6zyjjum4ds9z77yt9rc", + "meta_url": "https://olympics.com/en/athletes/tomoru-honda", + "name": "Tomoru HONDA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/federico-burdisso", + "name": "Federico BURDISSO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/tamas-kenderesi", + "name": "Tamas KENDERESI" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/at6tze4zptsihfxwz3b2", + "meta_url": "https://olympics.com/en/athletes/chad-le-clos", + "name": "Chad LE CLOS" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/leonardo-de-deus", + "name": "Leonardo DE DEUS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/gunnar-bentz", + "name": "Gunnar BENTZ" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/krzysztof-chmielewski", + "name": "Krzysztof Chmielewski" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/zach-harting", + "name": "Zach HARTING" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-200m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704282907/primary/hkj25hs0gqbjm36sj4fd", + "meta_url": "https://olympics.com/en/athletes/tom-dean", + "name": "Tom DEAN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704281776/primary/tv1h1qk16heqnrgehasd", + "meta_url": "https://olympics.com/en/athletes/duncan-scott", + "name": "Duncan SCOTT" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/fernando-scheffer", + "name": "Fernando SCHEFFER" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ypdcgnuoaoazzon0bfay", + "meta_url": "https://olympics.com/en/athletes/david-popovici", + "name": "David POPOVICI" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/martin-malyutin", + "name": "Martin MALYUTIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kieran-smith", + "name": "Kieran SMITH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696001418/primary/c6ckxbk9rwcbrozhux3b", + "meta_url": "https://olympics.com/en/athletes/sunwoo-hwang", + "name": "Sunwoo HWANG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LTU.png", + "meta_url": "https://olympics.com/en/athletes/danas-rapsys", + "name": "Danas RAPSYS" + }, + "country": "Lithuania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/thomas-neill", + "name": "Thomas NEILL" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "men-s-200m-individual-medley": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695737138/primary/xqffuvagebonsniwu70y", + "meta_url": "https://olympics.com/en/athletes/shun-wang", + "name": "Shun WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704281776/primary/tv1h1qk16heqnrgehasd", + "meta_url": "https://olympics.com/en/athletes/duncan-scott", + "name": "Duncan SCOTT" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/jeremy-desplanches", + "name": "Jeremy DESPLANCHES" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gqludyvc3n4jmvxkvvcd", + "meta_url": "https://olympics.com/en/athletes/daiya-seto", + "name": "Daiya SETO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michael-andrew", + "name": "Michael ANDREW" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/znwgpz7n9wywelw06zoz", + "meta_url": "https://olympics.com/en/athletes/kosuke-hagino", + "name": "Kosuke HAGINO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/laszlo-cseh-1", + "name": "Laszlo CSEH" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/lewis-clareburt", + "name": "Lewis CLAREBURT" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alberto-razzetti", + "name": "Alberto RAZZETTI" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "men-s-4-x-100m-freestyle-relay": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + } + ], + "type": "team" + }, + "men-s-4-x-100m-medley-relay": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + } + ], + "type": "team" + }, + "men-s-4-x-200m-freestyle-relay": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + }, + "men-s-400m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1690377355/primary/orivsytqwwmqffl0nofn", + "meta_url": "https://olympics.com/en/athletes/ahmed-hafnaoui", + "name": "Ahmed HAFNAOUI" + }, + "country": "Tunisia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623667760/primary/semguevexlki2qmhcqlu", + "meta_url": "https://olympics.com/en/athletes/jack-mcloughlin", + "name": "Jack MCLOUGHLIN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kieran-smith", + "name": "Kieran SMITH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/henning-bennet-muhlleitner", + "name": "Henning Bennet MUHLLEITNER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/felix-auboeck", + "name": "Felix AUBOECK" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626702084/primary/zndpbw0zmlwhunigri2d", + "meta_url": "https://olympics.com/en/athletes/gabriele-detti", + "name": "Gabriele DETTI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/axinyp6cnwsbp9mtx586", + "meta_url": "https://olympics.com/en/athletes/elijah-winnington", + "name": "Elijah WINNINGTON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/jake-mitchell", + "name": "Jake MITCHELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/antonio-djakovic", + "name": "Antonio DJAKOVIC" + }, + "country": "Switzerland" + } + ], + "type": "single" + }, + "men-s-400m-individual-medley": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/djwgtepwjlvenu8vxtjd", + "meta_url": "https://olympics.com/en/athletes/chase-kalisz", + "name": "Chase KALISZ" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/jay-litherland", + "name": "Jay LITHERLAND" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/brendon-smith", + "name": "Brendon SMITH" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/david-verraszto", + "name": "David VERRASZTO" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/max-litchfield", + "name": "Max LITCHFIELD" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/obtej1bgxqhfhskmr0tm", + "meta_url": "https://olympics.com/en/athletes/leon-marchand", + "name": "Leon MARCHAND" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/lewis-clareburt", + "name": "Lewis CLAREBURT" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alberto-razzetti", + "name": "Alberto RAZZETTI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gqludyvc3n4jmvxkvvcd", + "meta_url": "https://olympics.com/en/athletes/daiya-seto", + "name": "Daiya SETO" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "men-s-50m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kxv7nqrkzzwxkvysxdeo", + "meta_url": "https://olympics.com/en/athletes/caeleb-dressel", + "name": "Caeleb DRESSEL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qsxiw6j6cz6qtwojuoxg", + "meta_url": "https://olympics.com/en/athletes/florent-manaudou", + "name": "Florent MANAUDOU" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hkgiqafyrwlzehovcwxr", + "meta_url": "https://olympics.com/en/athletes/bruno-fratus", + "name": "Bruno FRATUS" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/michael-andrew", + "name": "Michael ANDREW" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/ben-proud", + "name": "Ben PROUD" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/kristian-gkolomeev", + "name": "Kristian GKOLOMEEV" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/lorenzo-zazzeri", + "name": "Lorenzo ZAZZERI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/thom-de-boer", + "name": "Thom DE BOER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1616586882/primary/uqrds7ddfjpme758kmrl", + "meta_url": "https://olympics.com/en/athletes/kliment-kolesnikov", + "name": "Kliment KOLESNIKOV" + }, + "country": "ROC" + } + ], + "type": "single" + }, + "men-s-800m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/djqptajhnuf6atwbvw2a", + "meta_url": "https://olympics.com/en/athletes/robert-finke", + "name": "Robert FINKE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/dyzcfehub9drzljqcrod", + "meta_url": "https://olympics.com/en/athletes/gregorio-paltrinieri", + "name": "Gregorio PALTRINIERI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/mykhailo-romanchuk", + "name": "Mykhailo ROMANCHUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/c7wgxy5rwtdzotjqxtzd", + "meta_url": "https://olympics.com/en/athletes/florian-wellbrock", + "name": "Florian WELLBROCK" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623667760/primary/semguevexlki2qmhcqlu", + "meta_url": "https://olympics.com/en/athletes/jack-mcloughlin", + "name": "Jack MCLOUGHLIN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/serhii-frolov", + "name": "Serhii FROLOV" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUT.png", + "meta_url": "https://olympics.com/en/athletes/felix-auboeck", + "name": "Felix AUBOECK" + }, + "country": "Austria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/guilherme-costa", + "name": "Guilherme Costa" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/henrik-christiansen", + "name": "Henrik CHRISTIANSEN" + }, + "country": "Norway" + } + ], + "type": "single" + }, + "mixed-4-x-100m-medley-relay": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Israel", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + }, + "women-s-100m-backstroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/heoopmantspbzhbwwjya", + "meta_url": "https://olympics.com/en/athletes/kaylee-mckeown", + "name": "Kaylee MCKEOWN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kylie-masse", + "name": "Kylie MASSE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/p7laycfs50zkvgr6fhfj", + "meta_url": "https://olympics.com/en/athletes/regan-smith", + "name": "Regan SMITH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/rhyan-elizabeth-white", + "name": "Rhyan Elizabeth WHITE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/y98zudebuqozaji1unok", + "meta_url": "https://olympics.com/en/athletes/emily-seebohm", + "name": "Emily SEEBOHM" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/kathleen-dawson", + "name": "Kathleen DAWSON" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/kira-toussaint", + "name": "Kira TOUSSAINT" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/anastasya-gorbenko", + "name": "Anastasya GORBENKO" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iby2niv9w6e6t562gy30", + "meta_url": "https://olympics.com/en/athletes/taylor-madison-ruck", + "name": "Taylor Madison RUCK" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-100m-breaststroke": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/lydia-jacoby", + "name": "Lydia JACOBY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1690548311/primary/kmk6zjeqjs77jhpgwldc", + "meta_url": "https://olympics.com/en/athletes/tatjana-schoenmaker", + "name": "Tatjana SCHOENMAKER" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vqffnlwprztttdxzxdsx", + "meta_url": "https://olympics.com/en/athletes/lilly-king", + "name": "Lilly KING" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/evgeniia-chikunova", + "name": "Evgeniia CHIKUNOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rdflvnsjc0cvz14sjp7p", + "meta_url": "https://olympics.com/en/athletes/yuliya-efimova", + "name": "Yuliya EFIMOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/sophie-hansson", + "name": "Sophie HANSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/martina-carraro", + "name": "Martina CARRARO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRL.png", + "meta_url": "https://olympics.com/en/athletes/mona-mc-sharry", + "name": "Mona MC SHARRY" + }, + "country": "Ireland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/chelsea-hodges", + "name": "Chelsea HODGES" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-s-100m-butterfly": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/hrkqvlfvosfsiy8tdkkj", + "meta_url": "https://olympics.com/en/athletes/margaret-macneil", + "name": "Margaret MAC NEIL" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rmprdc8zqyx4ipdm0cpu", + "meta_url": "https://olympics.com/en/athletes/yufei-zhang", + "name": "Yufei ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pa0vhgawyyqcmaotsqzv", + "meta_url": "https://olympics.com/en/athletes/emma-mckeon", + "name": "Emma MCKEON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1723020268/primary/esfzqxtjplzlboi6usc3", + "meta_url": "https://olympics.com/en/athletes/torri-huske", + "name": "Torri HUSKE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/louise-hansson", + "name": "Louise HANSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/marie-wattel", + "name": "Marie WATTEL" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ka29idoydgneqfrldilm", + "meta_url": "https://olympics.com/en/athletes/sarah-sjoestroem", + "name": "Sarah SJOESTROEM" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/anastasiya-shkurdai", + "name": "Anastasiya SHKURDAI" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/anna-ntountounaki", + "name": "Anna NTOUNTOUNAKI" + }, + "country": "Greece" + } + ], + "type": "single" + }, + "women-s-100m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pa0vhgawyyqcmaotsqzv", + "meta_url": "https://olympics.com/en/athletes/emma-mckeon", + "name": "Emma MCKEON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/siobhan-bernadette-haughey", + "name": "Siobhan Bernadette HAUGHEY" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jvaa8qbpr40bmymqrwux", + "meta_url": "https://olympics.com/en/athletes/cate-campbell", + "name": "Cate CAMPBELL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nnn68bmtzhphgmbmywec", + "meta_url": "https://olympics.com/en/athletes/penny-oleksiak", + "name": "Penny OLEKSIAK" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ka29idoydgneqfrldilm", + "meta_url": "https://olympics.com/en/athletes/sarah-sjoestroem", + "name": "Sarah SJOESTROEM" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/femke-heemskerk", + "name": "Femke HEEMSKERK" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/anna-hopkin", + "name": "Anna HOPKIN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/udksrd7gd53oe3peuzip", + "meta_url": "https://olympics.com/en/athletes/abbey-weitzeil", + "name": "Abbey WEITZEIL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695737258/primary/ty1npxr5mhah1jhv8dqr", + "meta_url": "https://olympics.com/en/athletes/junxuan-yang", + "name": "Junxuan YANG" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "women-s-1500m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695908400/primary/qrgvoximtbab3hvo67sh", + "meta_url": "https://olympics.com/en/athletes/katie-ledecky", + "name": "Katie LEDECKY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/erica-sullivan", + "name": "Erica SULLIVAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/sarah-kohler", + "name": "Sarah KOHLER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jianjiahe-wang", + "name": "Jianjiahe WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/simona-quadarella", + "name": "Simona QUADARELLA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kiah-melverton", + "name": "Kiah MELVERTON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/anastasiia-kirpichnikova", + "name": "Anastasiia KIRPICHNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/maddy-gough", + "name": "Maddy GOUGH" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/ajna-kesely", + "name": "Ajna KESELY" + }, + "country": "Hungary" + } + ], + "type": "single" + }, + "women-s-200m-backstroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/heoopmantspbzhbwwjya", + "meta_url": "https://olympics.com/en/athletes/kaylee-mckeown", + "name": "Kaylee MCKEOWN" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kylie-masse", + "name": "Kylie MASSE" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/y98zudebuqozaji1unok", + "meta_url": "https://olympics.com/en/athletes/emily-seebohm", + "name": "Emily SEEBOHM" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/rhyan-elizabeth-white", + "name": "Rhyan Elizabeth WHITE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/phoebe-bacon", + "name": "Phoebe BACON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iby2niv9w6e6t562gy30", + "meta_url": "https://olympics.com/en/athletes/taylor-madison-ruck", + "name": "Taylor Madison RUCK" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/xuwei-peng", + "name": "Xuwei PENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yaxin-liu", + "name": "Yaxin LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/margherita-panziera", + "name": "Margherita PANZIERA" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "women-s-200m-breaststroke": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1690548311/primary/kmk6zjeqjs77jhpgwldc", + "meta_url": "https://olympics.com/en/athletes/tatjana-schoenmaker", + "name": "Tatjana SCHOENMAKER" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vqffnlwprztttdxzxdsx", + "meta_url": "https://olympics.com/en/athletes/lilly-king", + "name": "Lilly KING" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/annie-lazor", + "name": "Annie LAZOR" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/evgeniia-chikunova", + "name": "Evgeniia CHIKUNOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/RSA.png", + "meta_url": "https://olympics.com/en/athletes/kaylene-corbett", + "name": "Kaylene CORBETT" + }, + "country": "South Africa" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/molly-renshaw", + "name": "Molly RENSHAW" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/abbie-wood", + "name": "Abbie WOOD" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/fanny-lecluyse", + "name": "Fanny LECLUYSE" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/jenna-strauch", + "name": "Jenna STRAUCH" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-s-200m-butterfly": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rmprdc8zqyx4ipdm0cpu", + "meta_url": "https://olympics.com/en/athletes/yufei-zhang", + "name": "Yufei ZHANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/p7laycfs50zkvgr6fhfj", + "meta_url": "https://olympics.com/en/athletes/regan-smith", + "name": "Regan SMITH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/hali-flickinger", + "name": "Hali FLICKINGER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/boglarka-kapas", + "name": "Boglarka KAPAS" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/svetlana-chimrova", + "name": "Svetlana CHIMROVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/liyan-yu", + "name": "Liyan YU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/alys-margaret-thomas", + "name": "Alys Margaret THOMAS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1617010420/primary/fmpe2fsndpjbdnrfg0b6", + "meta_url": "https://olympics.com/en/athletes/brianna-throssell", + "name": "Brianna THROSSELL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/suzuka-hasegawa", + "name": "Suzuka HASEGAWA" + }, + "country": "Japan" + } + ], + "type": "single" + }, + "women-s-200m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623685020/primary/pc675hnxouye7qdhjjzm", + "meta_url": "https://olympics.com/en/athletes/ariarne-titmus", + "name": "Ariarne Titmus" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/siobhan-bernadette-haughey", + "name": "Siobhan Bernadette HAUGHEY" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nnn68bmtzhphgmbmywec", + "meta_url": "https://olympics.com/en/athletes/penny-oleksiak", + "name": "Penny OLEKSIAK" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695737258/primary/ty1npxr5mhah1jhv8dqr", + "meta_url": "https://olympics.com/en/athletes/junxuan-yang", + "name": "Junxuan YANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695908400/primary/qrgvoximtbab3hvo67sh", + "meta_url": "https://olympics.com/en/athletes/katie-ledecky", + "name": "Katie LEDECKY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/barbora-seemanova", + "name": "Barbora SEEMANOVA" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/enmf9h0lsictox0k4mq7", + "meta_url": "https://olympics.com/en/athletes/federica-pellegrini", + "name": "Federica PELLEGRINI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623933442/primary/luazonx4lhrdvn9ek8dw", + "meta_url": "https://olympics.com/en/athletes/madison-wilson", + "name": "Madison WILSON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/lin4rd5r0q7u4oxo38p3", + "meta_url": "https://olympics.com/en/athletes/summer-mcintosh", + "name": "Summer MCINTOSH" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-200m-individual-medley": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/toyzqtprxhex9xck8ww4", + "meta_url": "https://olympics.com/en/athletes/yui-ohashi", + "name": "Yui OHASHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/alex-walsh", + "name": "Alex WALSH" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707811035/primary/enoozouf0cuuehedgaua", + "meta_url": "https://olympics.com/en/athletes/kate-douglass", + "name": "Kate DOUGLASS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/abbie-wood", + "name": "Abbie WOOD" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yiting-yu", + "name": "Yiting YU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/sydney-pickrem", + "name": "Sydney PICKREM" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vrswu1rivvqqhzsirzly", + "meta_url": "https://olympics.com/en/athletes/katinka-hosszu", + "name": "Katinka HOSSZU" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/alicia-wilson", + "name": "Alicia WILSON" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/maria-ugolkova", + "name": "Maria UGOLKOVA" + }, + "country": "Switzerland" + } + ], + "type": "single" + }, + "women-s-4-x-100m-freestyle-relay": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Denmark", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DEN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + }, + "women-s-4-x-100m-medley-relay": { + "participants": [ + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + } + ], + "type": "team" + }, + "women-s-4-x-200m-freestyle-relay": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + }, + "women-s-400m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623685020/primary/pc675hnxouye7qdhjjzm", + "meta_url": "https://olympics.com/en/athletes/ariarne-titmus", + "name": "Ariarne Titmus" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695908400/primary/qrgvoximtbab3hvo67sh", + "meta_url": "https://olympics.com/en/athletes/katie-ledecky", + "name": "Katie LEDECKY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695737682/primary/aa9v5baxx98xykpilwf6", + "meta_url": "https://olympics.com/en/athletes/bingjie-li", + "name": "Bingjie LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/lin4rd5r0q7u4oxo38p3", + "meta_url": "https://olympics.com/en/athletes/summer-mcintosh", + "name": "Summer MCINTOSH" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/muhan-tang", + "name": "Muhan TANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/isabel-gose", + "name": "Isabel GOSE" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/paige-madden", + "name": "Paige MADDEN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/erika-fairweather", + "name": "Erika FAIRWEATHER" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/tamsin-cook", + "name": "Tamsin COOK" + }, + "country": "Australia" + } + ], + "type": "single" + }, + "women-s-400m-individual-medley": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/toyzqtprxhex9xck8ww4", + "meta_url": "https://olympics.com/en/athletes/yui-ohashi", + "name": "Yui OHASHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/emma-weyant", + "name": "Emma WEYANT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/hali-flickinger", + "name": "Hali FLICKINGER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/woicsnuonxqh79wpfc8u", + "meta_url": "https://olympics.com/en/athletes/mireia-belmonte", + "name": "Mireia BELMONTE" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vrswu1rivvqqhzsirzly", + "meta_url": "https://olympics.com/en/athletes/katinka-hosszu", + "name": "Katinka HOSSZU" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/viktoria-mihalyvari-farkas", + "name": "Viktoria MIHALYVARI-FARKAS" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/aimee-willmott", + "name": "Aimee WILLMOTT" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/ilaria-cusinato", + "name": "Ilaria CUSINATO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/sara-franceschi", + "name": "Sara FRANCESCHI" + }, + "country": "Italy" + } + ], + "type": "single" + }, + "women-s-50m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/pa0vhgawyyqcmaotsqzv", + "meta_url": "https://olympics.com/en/athletes/emma-mckeon", + "name": "Emma MCKEON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ka29idoydgneqfrldilm", + "meta_url": "https://olympics.com/en/athletes/sarah-sjoestroem", + "name": "Sarah SJOESTROEM" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cahpm2zrtzz3hpacot48", + "meta_url": "https://olympics.com/en/athletes/pernille-blume", + "name": "Pernille BLUME" + }, + "country": "Denmark" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/ranomi-kromowidjojo", + "name": "Ranomi KROMOWIDJOJO" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/katarzyna-wasick", + "name": "Katarzyna WASICK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/qingfeng-wu", + "name": "Qingfeng WU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jvaa8qbpr40bmymqrwux", + "meta_url": "https://olympics.com/en/athletes/cate-campbell", + "name": "Cate CAMPBELL" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/udksrd7gd53oe3peuzip", + "meta_url": "https://olympics.com/en/athletes/abbey-weitzeil", + "name": "Abbey WEITZEIL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rmprdc8zqyx4ipdm0cpu", + "meta_url": "https://olympics.com/en/athletes/yufei-zhang", + "name": "Yufei ZHANG" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "women-s-800m-freestyle": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1695908400/primary/qrgvoximtbab3hvo67sh", + "meta_url": "https://olympics.com/en/athletes/katie-ledecky", + "name": "Katie LEDECKY" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1623685020/primary/pc675hnxouye7qdhjjzm", + "meta_url": "https://olympics.com/en/athletes/ariarne-titmus", + "name": "Ariarne Titmus" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/simona-quadarella", + "name": "Simona QUADARELLA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/katie-grimes", + "name": "Katie GRIMES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jianjiahe-wang", + "name": "Jianjiahe WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/kiah-melverton", + "name": "Kiah MELVERTON" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/sarah-kohler", + "name": "Sarah KOHLER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/anastasiia-kirpichnikova", + "name": "Anastasiia KIRPICHNIKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/isabel-gose", + "name": "Isabel GOSE" + }, + "country": "Germany" + } + ], + "type": "single" + } + }, + "table-tennis": { + "men-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fzlkiegp1vzcpvrtm1m7", + "meta_url": "https://olympics.com/en/athletes/long-ma", + "name": "Long MA" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/howuvlnhkxz56fbywbof", + "meta_url": "https://olympics.com/en/athletes/zhendong-fan", + "name": "Zhendong FAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zakjra07vstunkgfrwfl", + "meta_url": "https://olympics.com/en/athletes/dimitrij-ovtcharov", + "name": "Dimitrij OVTCHAROV" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/yun-ju-lin", + "name": "Yun Ju LIN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/omar-assar", + "name": "Omar ASSAR" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/t7d0eum7ska7q2rrfbd0", + "meta_url": "https://olympics.com/en/athletes/hugo-calderano", + "name": "Hugo CALDERANO" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/youngsik-jeoung", + "name": "Youngsik JEOUNG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/darko-jorgic", + "name": "Darko JORGIC" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/erdk67agt9ow3osg2scg", + "meta_url": "https://olympics.com/en/athletes/timo-boll", + "name": "Timo BOLL" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-team": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Sweden", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png" + }, + { + "country": "Chinese Taipei", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + }, + "mixed-doubles": { + "participants": [ + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Chinese Taipei", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Hong Kong, China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + }, + "women-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1624013812/primary/kab5dmo6rpsagv0e6uwm", + "meta_url": "https://olympics.com/en/athletes/meng-chen-x5731", + "name": "Meng CHEN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1696002980/primary/m3gq4irvems4btwcmgn8", + "meta_url": "https://olympics.com/en/athletes/yingsha-sun", + "name": "Yingsha SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1607509059/primary/f5asrxt6olrymnjb99fr", + "meta_url": "https://olympics.com/en/athletes/mima-ito", + "name": "Mima ITO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SGP.png", + "meta_url": "https://olympics.com/en/athletes/mengyu-yu", + "name": "Mengyu YU" + }, + "country": "Singapore" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png", + "meta_url": "https://olympics.com/en/athletes/hoi-kem-doo", + "name": "Hoi Kem DOO" + }, + "country": "Hong Kong, China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/ying-han", + "name": "Ying HAN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/atnb9asft1hm5inea0yl", + "meta_url": "https://olympics.com/en/athletes/kasumi-ishikawa", + "name": "Kasumi ISHIKAWA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/jihee-jeon", + "name": "Jihee JEON" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/szu-yu-chen", + "name": "Szu-Yu CHEN" + }, + "country": "Chinese Taipei" + } + ], + "type": "single" + }, + "women-s-team": { + "participants": [ + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Hong Kong, China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HKG.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Romania", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png" + }, + { + "country": "Singapore", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SGP.png" + }, + { + "country": "Chinese Taipei", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + } + }, + "taekwondo": { + "men-58kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/vito-dell-aquila", + "name": "Vito DELL'AQUILA" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/mohamed-khalil-jendoubi", + "name": "Mohamed Khalil JENDOUBI" + }, + "country": "Tunisia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/jun-jang", + "name": "Jun JANG" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/mikhail-artamonov", + "name": "Mikhail ARTAMONOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png", + "meta_url": "https://olympics.com/en/athletes/lucas-guzman", + "name": "Lucas GUZMAN" + }, + "country": "Argentina" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/omar-salim", + "name": "Omar SALIM" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ETH.png", + "meta_url": "https://olympics.com/en/athletes/solomon-demse", + "name": "Solomon DEMSE" + }, + "country": "Ethiopia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/THA.png", + "meta_url": "https://olympics.com/en/athletes/ramnarong-sawekwiharee", + "name": "Ramnarong SAWEKWIHAREE" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/adrian-vicente-yunta", + "name": "Adrian VICENTE YUNTA" + }, + "country": "Spain" + } + ], + "type": "single" + }, + "men-68kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/ulugbek-rashitov", + "name": "Ulugbek RASHITOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/bradly-sinden", + "name": "Bradly SINDEN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shuai-zhao", + "name": "Shuai ZHAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/hakan-recber", + "name": "Hakan RECBER" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BIH.png", + "meta_url": "https://olympics.com/en/athletes/nedzad-husic", + "name": "Nedzad HUSIC" + }, + "country": "Bosnia & Herzegovina" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/khucboqzk91oto7jkstu", + "meta_url": "https://olympics.com/en/athletes/daehoon-lee", + "name": "Daehoon LEE" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/mirhashem-hosseini", + "name": "Mirhashem HOSSEINI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/tom-burns", + "name": "Tom BURNS" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/bernardo-pie", + "name": "Bernardo PIE" + }, + "country": "Dominican Rep" + } + ], + "type": "single" + }, + "men-80kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/vvxhqo50kmvzpwkz75th", + "meta_url": "https://olympics.com/en/athletes/maksim-khramtcov", + "name": "Maksim KHRAMTCOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JOR.png", + "meta_url": "https://olympics.com/en/athletes/saleh-elsharabaty", + "name": "Saleh ELSHARABATY" + }, + "country": "Jordan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/toni-kanaet", + "name": "Toni KANAET" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/seif-eissa", + "name": "Seif EISSA" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/richard-andre-ordemann", + "name": "Richard Andre ORDEMANN" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/nikita-rafalovich", + "name": "Nikita RAFALOVICH" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUR.png", + "meta_url": "https://olympics.com/en/athletes/faysal-sawadogo", + "name": "Faysal SAWADOGO" + }, + "country": "Burkina Faso" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAR.png", + "meta_url": "https://olympics.com/en/athletes/achraf-mahboubi", + "name": "Achraf MAHBOUBI" + }, + "country": "Morocco" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/milad-beigi-harchegani", + "name": "Milad BEIGI HARCHEGANI" + }, + "country": "Azerbaijan" + } + ], + "type": "single" + }, + "men-over-80kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xexdk7uxuibfwjsipb9h", + "meta_url": "https://olympics.com/en/athletes/vladislav-larin", + "name": "Vladislav LARIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MKD.png", + "meta_url": "https://olympics.com/en/athletes/dejan-georgievski", + "name": "Dejan GEORGIEVSKI" + }, + "country": "North Macedonia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/rafael-castillo", + "name": "Rafael ALBA CASTILLO" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/kyo-don-in", + "name": "Kyo Don IN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/hongyi-sun", + "name": "Hongyi SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SLO.png", + "meta_url": "https://olympics.com/en/athletes/ivan-konrad-trajkovic", + "name": "Ivan Konrad TRAJKOVIC" + }, + "country": "Slovenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CIV.png", + "meta_url": "https://olympics.com/en/athletes/seydou-gbane", + "name": "Seydou GBANE" + }, + "country": "Côte d'Ivoire" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/a75nxyatdxqzatodqdia", + "meta_url": "https://olympics.com/en/athletes/pita-nikolas-taufatofua", + "name": "Pita Nikolas TAUFATOFUA" + }, + "country": "Tonga" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/ivan-sapina", + "name": "Ivan SAPINA" + }, + "country": "Croatia" + } + ], + "type": "single" + }, + "women-49kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tigu0xnbczmkxbxvcb1m", + "meta_url": "https://olympics.com/en/athletes/panipak-wongpattanakit", + "name": "Panipak WONGPATTANAKIT" + }, + "country": "Thailand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/butixan1eov9fplntmav", + "meta_url": "https://olympics.com/en/athletes/adriana-cerezo-iglesias", + "name": "Adriana CEREZO IGLESIAS" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ISR.png", + "meta_url": "https://olympics.com/en/athletes/abishag-semberg", + "name": "Abishag SEMBERG" + }, + "country": "Israel" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/tijana-bogdanovic", + "name": "Tijana BOGDANOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/miyu-yamada", + "name": "Miyu YAMADA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/rukiye-yildirim", + "name": "Rukiye YILDIRIM" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jingyu-wu", + "name": "Jingyu WU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VIE.png", + "meta_url": "https://olympics.com/en/athletes/thi-kim-tuyen-truong", + "name": "Thi Kim Tuyen TRUONG" + }, + "country": "Vietnam" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/andrea-ramirez-vargas", + "name": "Andrea RAMIREZ VARGAS" + }, + "country": "Colombia" + } + ], + "type": "single" + }, + "women-57kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/anastasija-zolotic", + "name": "Anastasija ZOLOTIC" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/tatiana-kudashova", + "name": "Tatiana KUDASHOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/chia-ling-lo", + "name": "Chia-Ling LO" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/hatice-kubra-ilgun", + "name": "Hatice Kubra ILGUN" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/z2yb1qimb7phow00saef", + "meta_url": "https://olympics.com/en/athletes/kimia-alizadeh-zenoorin", + "name": "Kimia ALIZADEH ZENOZI" + }, + "country": "EOR" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NIG.png", + "meta_url": "https://olympics.com/en/athletes/tekiath-ben-yessouf", + "name": "Tekiath BEN YESSOUF" + }, + "country": "Niger" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png", + "meta_url": "https://olympics.com/en/athletes/fani-tzeli", + "name": "Fani TZELI" + }, + "country": "Greece" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MAR.png", + "meta_url": "https://olympics.com/en/athletes/nada-laaraj", + "name": "Nada LAARAJ" + }, + "country": "Morocco" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/skylar-park", + "name": "Skylar PARK" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-67kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/matea-jelic", + "name": "Matea JELIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/lauren-williams", + "name": "Lauren WILLIAMS" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CIV.png", + "meta_url": "https://olympics.com/en/athletes/ruth-marie-christelle-gbagbi", + "name": "Ruth Marie Christelle GBAGBI" + }, + "country": "Côte d'Ivoire" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/hedaya-wahba", + "name": "Hedaya WAHBA" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/milena-titoneli", + "name": "Milena TITONELI" + }, + "country": "Brazil" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/paige-mcpherson", + "name": "Paige MCPHERSON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HAI.png", + "meta_url": "https://olympics.com/en/athletes/lauren-lee", + "name": "Lauren LEE" + }, + "country": "Haiti" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TGA.png", + "meta_url": "https://olympics.com/en/athletes/malia-paseka", + "name": "Malia PASEKA" + }, + "country": "Tonga" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/mengyu-zhang", + "name": "Mengyu ZHANG" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "women-over-67kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1668858934/primary/qao3ogid8a2r8xnuipqb", + "meta_url": "https://olympics.com/en/athletes/milica-mandic", + "name": "Milica MANDIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/dabin-lee", + "name": "Dabin LEE" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/althea-laurin", + "name": "Althea LAURIN" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1668858603/primary/ziaojdttbllb3jhhgyfr", + "meta_url": "https://olympics.com/en/athletes/bianca-walkden", + "name": "Bianca WALKDEN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CIV.png", + "meta_url": "https://olympics.com/en/athletes/aminata-charlene-traore", + "name": "Aminata Charlene TRAORE" + }, + "country": "Côte d'Ivoire" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/aleksandra-kowalczuk", + "name": "Aleksandra KOWALCZUK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/katherine-julissa-rodriguez-peguero", + "name": "Katherine Julissa RODRIGUEZ PEGUERO" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KEN.png", + "meta_url": "https://olympics.com/en/athletes/faith-ogallo", + "name": "Faith OGALLO" + }, + "country": "Kenya" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/shuyin-zheng", + "name": "Shuyin ZHENG" + }, + "country": "P. R. China" + } + ], + "type": "single" + } + }, + "tennis": { + "men-s-doubles": { + "participants": [ + { + "country": "Croatia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png" + }, + { + "country": "Croatia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png" + }, + { + "country": "New Zealand", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Colombia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png" + }, + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + } + ], + "type": "team" + }, + "men-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/nuub9gaimp6bp5rwg0al", + "meta_url": "https://olympics.com/en/athletes/alexander-zverev", + "name": "Alexander ZVEREV" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/zym6j49i5ptdrjykaxsq", + "meta_url": "https://olympics.com/en/athletes/karen-khachanov", + "name": "Karen KHACHANOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/pablo-carreno-busta", + "name": "Pablo CARRENO BUSTA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/e8ffrpndxqrjf6o65etj", + "meta_url": "https://olympics.com/en/athletes/novak-djokovic", + "name": "Novak DJOKOVIC" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/jeremy-chardy", + "name": "Jeremy CHARDY" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/aynssg7uby2hgobpi7nf", + "meta_url": "https://olympics.com/en/athletes/ugo-humbert", + "name": "Ugo HUMBERT" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": null, + "name": "Daniil Medvedev" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/rfewqah7ow26jmwtjh9n", + "meta_url": "https://olympics.com/en/athletes/kei-nishikori", + "name": "Kei NISHIKORI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/nikoloz-basilashvili", + "name": "Nikoloz BASILASHVILI" + }, + "country": "Georgia" + } + ], + "type": "single" + }, + "mixed-doubles": { + "participants": [ + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Greece", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + } + ], + "type": "team" + }, + "women-s-doubles": { + "participants": [ + { + "country": "Czechia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Ukraine", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + } + ], + "type": "team" + }, + "women-s-singles": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1628503959/primary/gpjtvp9zv5rytedjsynh", + "meta_url": "https://olympics.com/en/athletes/belinda-bencic", + "name": "Belinda BENCIC" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1627378985/primary/ukb4tmrdaxajp3irtvjo", + "meta_url": "https://olympics.com/en/athletes/marketa-vondrousova", + "name": "Marketa VONDROUSOVA" + }, + "country": "Czechia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1705143803/primary/dam9nfpd086al7wiq7eb", + "meta_url": "https://olympics.com/en/athletes/elina-svitolina", + "name": "Elina SVITOLINA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1683299103/primary/bwkgmwmpx45xcwswglet", + "meta_url": "https://olympics.com/en/athletes/elena-rybakina", + "name": "Elena RYBAKINA" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wjrfunvwqrsuwgswmlhd", + "meta_url": "https://olympics.com/en/athletes/paula-badosa", + "name": "Paula BADOSA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/camila-giorgi", + "name": "Camila GIORGI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ka65ldeidu0bvhxcdjlg", + "meta_url": "https://olympics.com/en/athletes/garbine-muguruza", + "name": "Garbine MUGURUZA" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/anastasia-pavlyuchenkova", + "name": "Anastasia PAVLYUCHENKOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CZE.png", + "meta_url": "https://olympics.com/en/athletes/barbora-krejcikova", + "name": "Barbora KREJCIKOVA" + }, + "country": "Czechia" + } + ], + "type": "single" + } + }, + "trampoline-gymnastics": { + "men": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/ivan-litvinovich", + "name": "Ivan LITVINOVICH" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/gm4tehxjkvgw7xpfx01r", + "meta_url": "https://olympics.com/en/athletes/dong-dong", + "name": "Dong DONG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/g6f5e4xzgenrnzbfunxl", + "meta_url": "https://olympics.com/en/athletes/dylan-schmidt", + "name": "Dylan SCHMIDT" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/eu145kjoasg22rnwhy7m", + "meta_url": "https://olympics.com/en/athletes/uladzislau-hancharou", + "name": "Uladzislau HANCHAROU" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/u0noarpdgdkmgkvhrbcl", + "meta_url": "https://olympics.com/en/athletes/dmitry-ushakov", + "name": "Dmitry USHAKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/andrey-yudin", + "name": "Andrey YUDIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/daiki-kishi", + "name": "Daiki KISHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1668858178/primary/n2vks7liwqegfrbubebr", + "meta_url": "https://olympics.com/en/athletes/dominic-clarke", + "name": "Dominic CLARKE" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/angel-hernandez-recalde", + "name": "Angel HERNANDEZ RECALDE" + }, + "country": "Colombia" + } + ], + "type": "single" + }, + "women": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/xueying-zhu", + "name": "Xueying ZHU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/lingling-liu", + "name": "Lingling LIU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/w6w0a3k0zit3m2lqc9hj", + "meta_url": "https://olympics.com/en/athletes/bryony-page", + "name": "Bryony PAGE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/chx37bhay9yrysldirzf", + "meta_url": "https://olympics.com/en/athletes/rosannagh-maclennan", + "name": "Rosannagh MACLENNAN" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/megu-uyama", + "name": "Megu UYAMA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/nicole-ahsinger", + "name": "Nicole AHSINGER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/susana-kochesok", + "name": "Susana KOCHESOK" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/dafne-navarro-loza", + "name": "Dafne NAVARRO LOZA" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/malak-hamza", + "name": "Malak HAMZA" + }, + "country": "Egypt" + } + ], + "type": "single" + } + }, + "triathlon": { + "men-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/kristian-blummenfelt", + "name": "Kristian BLUMMENFELT" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1704279835/primary/eksxi1tk4sfvo24ie8tj", + "meta_url": "https://olympics.com/en/athletes/alex-yee", + "name": "Alex YEE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/hayden-wilde", + "name": "Hayden WILDE" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/marten-van-riel", + "name": "Marten VAN RIEL" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ue2kdzn9i5z1f04sxtop", + "meta_url": "https://olympics.com/en/athletes/jonathan-brownlee", + "name": "Jonathan BROWNLEE" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kevin-mcdowell", + "name": "Kevin MCDOWELL" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/bence-bicsak", + "name": "Bence BICSAK" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NOR.png", + "meta_url": "https://olympics.com/en/athletes/gustav-iden", + "name": "Gustav IDEN" + }, + "country": "Norway" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/max-studer", + "name": "Max STUDER" + }, + "country": "Switzerland" + } + ], + "type": "single" + }, + "mixed-relay": { + "participants": [ + { + "country": "Great Britain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Belgium", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png" + }, + { + "country": "Germany", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png" + }, + { + "country": "Switzerland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + }, + "women-s-individual": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1655913118/primary/aopkmtbyyc7fbhoh6gzz", + "meta_url": "https://olympics.com/en/athletes/flora-duffy", + "name": "Flora DUFFY" + }, + "country": "Bermuda" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1688818527/primary/tmzllevp5ss3fddmeibm", + "meta_url": "https://olympics.com/en/athletes/georgia-taylor-brown", + "name": "Georgia TAYLOR-BROWN" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/katie-zaferes", + "name": "Katie ZAFERES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/rachel-klamer", + "name": "Rachel KLAMER" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/leonie-periault", + "name": "Leonie PERIAULT" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xp1xljkimfu1fh8xggw7", + "meta_url": "https://olympics.com/en/athletes/nicola-spirig", + "name": "Nicola SPIRIG" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/alice-betto", + "name": "Alice BETTO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/laura-lindemann", + "name": "Laura LINDEMANN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/jessica-learmonth", + "name": "Jessica LEARMONTH" + }, + "country": "Great Britain" + } + ], + "type": "single" + } + }, + "volleyball": { + "men": { + "participants": [ + { + "country": "France", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Argentina", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARG.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Poland", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "Isl Rep of Iran", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Brazil", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png" + }, + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Korea", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png" + }, + { + "country": "Türkiye", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Dominican Rep", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + } + ], + "type": "team" + } + }, + "water-polo": { + "men": { + "participants": [ + { + "country": "Serbia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png" + }, + { + "country": "Greece", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GRE.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Croatia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png" + }, + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Italy", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png" + }, + { + "country": "Montenegro", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MNE.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + } + ], + "type": "team" + }, + "women": { + "participants": [ + { + "country": "United States", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png" + }, + { + "country": "Spain", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png" + }, + { + "country": "Hungary", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png" + }, + { + "country": "ROC", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png" + }, + { + "country": "Australia", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png" + }, + { + "country": "Netherlands", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png" + }, + { + "country": "Canada", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png" + }, + { + "country": "P. R. China", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png" + }, + { + "country": "Japan", + "img": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png" + } + ], + "type": "team" + } + }, + "weightlifting": { + "men-s-109kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/akbar-djuraev", + "name": "Akbar DJURAEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/simon-martirosyan", + "name": "Simon MARTIROSYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png", + "meta_url": "https://olympics.com/en/athletes/arturs-plesnieks", + "name": "Arturs PLESNIEKS" + }, + "country": "Latvia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/timur-naniev", + "name": "Timur NANIEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/hristo-dimitrov-hristov", + "name": "Hristo Dimitrov HRISTOV" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/yunseong-jin", + "name": "Yunseong JIN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/arkadiusz-michalski", + "name": "Arkadiusz MICHALSKI" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/wesley-brian-kitts", + "name": "Wesley Brian KITTS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/aymen-bacha", + "name": "Aymen BACHA" + }, + "country": "Tunisia" + } + ], + "type": "single" + }, + "men-s-61kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1707811692/primary/dis8zyebasfw8ad2iqt1", + "meta_url": "https://olympics.com/en/athletes/fabin-li", + "name": "Fabin LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png", + "meta_url": "https://olympics.com/en/athletes/eko-yuli-irawan", + "name": "Eko Yuli IRAWAN" + }, + "country": "Indonesia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/igor-son", + "name": "Igor SON" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yoichi-itokazu", + "name": "Yoichi ITOKAZU" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KSA.png", + "meta_url": "https://olympics.com/en/athletes/seraj-abdulrahim-m-alsaleem", + "name": "Seraj Abdulrahim M ALSALEEM" + }, + "country": "Saudi Arabia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/davide-ruiu", + "name": "Davide RUIU" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/shota-mishvelidze", + "name": "Shota MISHVELIDZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/luis-alberto-garcia-brito", + "name": "Luis Alberto GARCIA BRITO" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/simon-josef-brandhuber", + "name": "Simon Josef BRANDHUBER" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "men-s-67kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/lijun-chen", + "name": "Lijun CHEN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1678442424/primary/nixixez5ggrj8vxlwyqr", + "meta_url": "https://olympics.com/en/athletes/luis-javier-mosquera-lozano", + "name": "Luis Javier MOSQUERA LOZANO" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/mirko-zanni", + "name": "Mirko ZANNI" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/myeongmok-han", + "name": "Myeongmok HAN" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PAK.png", + "meta_url": "https://olympics.com/en/athletes/talha-talib", + "name": "Talha TALIB" + }, + "country": "Pakistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/adkhamjon-ergashev", + "name": "Adkhamjon ERGASHEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/mitsunori-konnai", + "name": "Mitsunori KONNAI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/goga-chkheidze", + "name": "Goga CHKHEIDZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png", + "meta_url": "https://olympics.com/en/athletes/deni-x0003", + "name": ". DENI" + }, + "country": "Indonesia" + } + ], + "type": "single" + }, + "men-s-73kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zhiyong-shi-1", + "name": "Zhiyong SHI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/julio-ruben-mayora-pernia", + "name": "Julio Ruben MAYORA PERNIA" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png", + "meta_url": "https://olympics.com/en/athletes/rahmat-erwin-abdullah", + "name": "Rahmat Erwin ABDULLAH" + }, + "country": "Indonesia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALB.png", + "meta_url": "https://olympics.com/en/athletes/briken-calja", + "name": "Briken CALJA" + }, + "country": "Albania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/bozhidar-dimitrov-andreev", + "name": "Bozhidar Dimitrov ANDREEV" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/karem-ben-hnia", + "name": "Karem BEN HNIA" + }, + "country": "Tunisia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/masanori-miyamoto", + "name": "Masanori MIYAMOTO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/marin-robu", + "name": "Marin ROBU" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/clarence-cummings-jr", + "name": "Clarence CUMMINGS JR" + }, + "country": "United States" + } + ], + "type": "single" + }, + "men-s-81kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fkd4v9ifkoauxgs0t9tp", + "meta_url": "https://olympics.com/en/athletes/xiaojun-lyu", + "name": "Xiaojun LYU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/zacarias-bonnat-michel", + "name": "Zacarias BONNAT MICHEL" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/antonino-pizzolato", + "name": "Antonino PIZZOLATO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/harrison-james-maurus", + "name": "Harrison James MAURUS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/brayan-santiago-rodallegas-carvajal", + "name": "Brayan Santiago RODALLEGAS CARVAJAL" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png", + "meta_url": "https://olympics.com/en/athletes/ritvars-suharevs", + "name": "Ritvars SUHAREVS" + }, + "country": "Latvia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/nico-mueller", + "name": "Nico MUELLER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/andres-eduardo-mata-perez", + "name": "Andres Eduardo MATA PEREZ" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALB.png", + "meta_url": "https://olympics.com/en/athletes/erkand-qerimaj", + "name": "Erkand QERIMAJ" + }, + "country": "Albania" + } + ], + "type": "single" + }, + "men-s-96kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/QAT.png", + "meta_url": "https://olympics.com/en/athletes/fares-ibrahim-e-h-elbakh", + "name": "Fares Ibrahim E. H. ELBAKH" + }, + "country": "Qatar" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/keydomar-giovanni-vallenilla-sanchez", + "name": "Keydomar Giovanni VALLENILLA SANCHEZ" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/anton-pliesnoi", + "name": "Anton PLIESNOI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/boady-robert-santavy", + "name": "Boady Robert SANTAVY" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/po-jen-chen", + "name": "Po-Jen CHEN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/bekdoolot-rasulbekov", + "name": "Bekdoolot RASULBEKOV" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/bartlomiej-stefan-adamus", + "name": "Bartlomiej Stefan ADAMUS" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/dongju-yu", + "name": "Dongju YU" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/olfides-saez-vera", + "name": "Olfides SAEZ VERA" + }, + "country": "Cuba" + } + ], + "type": "single" + }, + "men-s-over-109kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1668859988/primary/nd9flvqav2guoqkdjcmi", + "meta_url": "https://olympics.com/en/athletes/lasha-talakhadze", + "name": "Lasha TALAKHADZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/ali-davoudi", + "name": "Ali DAVOUDI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SYR.png", + "meta_url": "https://olympics.com/en/athletes/man-asaad", + "name": "Man ASAAD" + }, + "country": "Syria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TKM.png", + "meta_url": "https://olympics.com/en/athletes/hojamuhammet-toychyyev", + "name": "Hojamuhammet TOYCHYYEV" + }, + "country": "Turkmenistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NZL.png", + "meta_url": "https://olympics.com/en/athletes/david-andrew-liti", + "name": "David Andrew LITI" + }, + "country": "New Zealand" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NED.png", + "meta_url": "https://olympics.com/en/athletes/enzo-kofi-kuworge", + "name": "Enzo Kofi KUWORGE" + }, + "country": "Netherlands" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/peter-nagy-2", + "name": "Peter NAGY" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ESP.png", + "meta_url": "https://olympics.com/en/athletes/marcos-ruiz-i-velasco", + "name": "Marcos RUIZ I VELASCO" + }, + "country": "Spain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/caine-morgan-wilkes", + "name": "Caine Morgan WILKES" + }, + "country": "United States" + } + ], + "type": "single" + }, + "women-s-49kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zhihui-hou", + "name": "Zhihui HOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/iqxxg1lk6qekg9nddurp", + "meta_url": "https://olympics.com/en/athletes/chanu-saikhom-mirabai", + "name": "Chanu Saikhom MIRABAI CHANU" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png", + "meta_url": "https://olympics.com/en/athletes/windy-cantika-aisah", + "name": "Windy Cantika AISAH" + }, + "country": "Indonesia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/wan-ling-fang", + "name": "Wan-Ling FANG" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BEL.png", + "meta_url": "https://olympics.com/en/athletes/nina-sterckx", + "name": "Nina STERCKX" + }, + "country": "Belgium" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/ludia-marguiela-montero-ramos", + "name": "Ludia Marguiela MONTERO RAMOS" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/anais-michel", + "name": "Anais MICHEL" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/beatriz-elizabeth-piron-candelario", + "name": "Beatriz Elizabeth PIRON CANDELARIO" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BRA.png", + "meta_url": "https://olympics.com/en/athletes/nathasha-rosa-figueiredo", + "name": "Nathasha ROSA FIGUEIREDO" + }, + "country": "Brazil" + } + ], + "type": "single" + }, + "women-s-55kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/f1blomjcuzui0pwavuv5", + "meta_url": "https://olympics.com/en/athletes/hidilyn-diaz", + "name": "Hidilyn DIAZ" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/qiuyun-liao", + "name": "Qiuyun LIAO" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/zulfiya-chinshanlo", + "name": "Zulfiya CHINSHANLO" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/muattar-nabieva", + "name": "Muattar NABIEVA" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/kamila-konotop", + "name": "Kamila KONOTOP" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TKM.png", + "meta_url": "https://olympics.com/en/athletes/kristina-shermetova", + "name": "Kristina SHERMETOVA" + }, + "country": "Turkmenistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/eunji-ham", + "name": "Eunji HAM" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/nouha-landoulsi", + "name": "Nouha LANDOULSI" + }, + "country": "Tunisia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/ana-gabriela-lopez-ferrer", + "name": "Ana Gabriela LOPEZ FERRER" + }, + "country": "Mexico" + } + ], + "type": "single" + }, + "women-s-59kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/hsing-chun-kuo", + "name": "Hsing-Chun KUO" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TKM.png", + "meta_url": "https://olympics.com/en/athletes/polina-guryeva", + "name": "Polina GURYEVA" + }, + "country": "Turkmenistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/mikiko-andoh", + "name": "Mikiko ANDOH" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/dora-meiriama-tchakounte", + "name": "Dora Meiriama TCHAKOUNTE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VIE.png", + "meta_url": "https://olympics.com/en/athletes/thi-duyen-hoang", + "name": "Thi Duyen HOANG" + }, + "country": "Vietnam" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/yusleidy-mariana-figueroa-roldan", + "name": "Yusleidy Mariana FIGUEROA ROLDAN" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/izabella-yaylyan", + "name": "Izabella YAYLYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/zoe-smith", + "name": "Zoe SMITH" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/tali-darsigny", + "name": "Tali DARSIGNY" + }, + "country": "Canada" + } + ], + "type": "single" + }, + "women-s-64kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1668859337/primary/q0angw7qo6t1kbqn4wdd", + "meta_url": "https://olympics.com/en/athletes/maude-g-charron", + "name": "Maude Garon CHARRON" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/giorgia-bordignon", + "name": "Giorgia BORDIGNON" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TPE.png", + "meta_url": "https://olympics.com/en/athletes/wen-huei-chen", + "name": "Wen-Huei CHEN" + }, + "country": "Chinese Taipei" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/COL.png", + "meta_url": "https://olympics.com/en/athletes/mercedes-isabel-perez-tigrero", + "name": "Mercedes Isabel PEREZ TIGRERO" + }, + "country": "Colombia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/sarah-davies", + "name": "Sarah DAVIES" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/angie-paola-palacios-dajomes", + "name": "Angie Paola PALACIOS DAJOMES" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/PHI.png", + "meta_url": "https://olympics.com/en/athletes/elreen-ann-ando", + "name": "Elreen Ann ANDO" + }, + "country": "Philippines" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/marina-de-la-caridad-rodriguez-mitjan", + "name": "Marina de la Caridad RODRIGUEZ MITJAN" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/nuray-levent", + "name": "Nuray LEVENT" + }, + "country": "Türkiye" + } + ], + "type": "single" + }, + "women-s-76kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1693727846/primary/tgpqxgsmmlegtddhtt7a", + "meta_url": "https://olympics.com/en/athletes/neisi-patricia-dajomes-barrera", + "name": "Neisi Patricia DAJOMES BARRERA" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1693727646/primary/qf1oxnzutvc8vde2p0lz", + "meta_url": "https://olympics.com/en/athletes/katherine-elizabeth-nye", + "name": "Katherine Elizabeth NYE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MEX.png", + "meta_url": "https://olympics.com/en/athletes/aremi-fuentes-zavala", + "name": "Aremi FUENTES ZAVALA" + }, + "country": "Mexico" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/patricia-caroline-strenius", + "name": "Patricia Caroline STRENIUS" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/darya-naumava", + "name": "Darya NAUMAVA" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/kumushkhon-fayzullaeva", + "name": "Kumushkhon FAYZULLAEVA" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/emily-victoria-godley", + "name": "Emily Victoria GODLEY" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CAN.png", + "meta_url": "https://olympics.com/en/athletes/kristel-ngarlem", + "name": "Kristel NGARLEM" + }, + "country": "Canada" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/sqq2qqht8njpqag4taii", + "meta_url": "https://olympics.com/en/athletes/mahassen-hala-fattouh", + "name": "Mahassen Hala FATTOUH" + }, + "country": "Lebanon" + } + ], + "type": "single" + }, + "women-s-87kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zhouyu-wang", + "name": "Zhouyu WANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/tamara-yajaira-salazar-arce", + "name": "Tamara Yajaira SALAZAR ARCE" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/cismery-dominga-santana-peguero", + "name": "Cismery Dominga SANTANA PEGUERO" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/ankhtsetseg-munkhjantsan", + "name": "Ankhtsetseg MUNKHJANTSAN" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FRA.png", + "meta_url": "https://olympics.com/en/athletes/gaelle-verlaine-nayo-ketchanke", + "name": "Gaelle Verlaine NAYO KETCHANKE" + }, + "country": "France" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/martha-ann-rogers", + "name": "Martha Ann ROGERS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/VEN.png", + "meta_url": "https://olympics.com/en/athletes/naryury-alexandra-perez-reveron", + "name": "Naryury Alexandra PEREZ REVERON" + }, + "country": "Venezuela" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/elena-cilcic", + "name": "Elena CILCIC" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/yeounhee-kang", + "name": "Yeounhee KANG" + }, + "country": "Korea" + } + ], + "type": "single" + }, + "women-s-over-87kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/wenwen-li-x7301", + "name": "Wenwen LI" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GBR.png", + "meta_url": "https://olympics.com/en/athletes/emily-jade-campbell", + "name": "Emily Jade CAMPBELL" + }, + "country": "Great Britain" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/sarah-robles", + "name": "Sarah ROBLES" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/seon-mi-lee", + "name": "Seon Mi LEE" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/INA.png", + "meta_url": "https://olympics.com/en/athletes/nurul-akmal", + "name": "Nurul AKMAL" + }, + "country": "Indonesia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AUS.png", + "meta_url": "https://olympics.com/en/athletes/charisma-amoe-tarrant", + "name": "Charisma AMOE-TARRANT" + }, + "country": "Australia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/DOM.png", + "meta_url": "https://olympics.com/en/athletes/veronica-saladin", + "name": "Veronica SALADIN" + }, + "country": "Dominican Rep" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TGA.png", + "meta_url": "https://olympics.com/en/athletes/kuinini-juanita-mechteld-manumua", + "name": "Kuinini Juanita Mechteld MANUMUA" + }, + "country": "Tonga" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/eyurkenia-duverger-pileta", + "name": "Eyurkenia DUVERGER PILETA" + }, + "country": "Cuba" + } + ], + "type": "single" + } + }, + "wrestling": { + "men-s-freestyle-125kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694949875/primary/ldjcitaeperxlu3itd5g", + "meta_url": "https://olympics.com/en/athletes/gable-dan-steveson", + "name": "Gable Dan STEVESON" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/geno-petriashvili", + "name": "Geno PETRIASHVILI" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694949973/primary/xaeoqv1mpildrt0lrojf", + "meta_url": "https://olympics.com/en/athletes/amir-hossein-zare", + "name": "Amir Hossein ZARE" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/jgaee0opdccu6qxevv5n", + "meta_url": "https://olympics.com/en/athletes/taha-akgul", + "name": "Taha AKGUL" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zhiwei-deng", + "name": "Zhiwei DENG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/lkhagvagerel-munkhtur", + "name": "Lkhagvagerel MUNKHTUR" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOS.png", + "meta_url": "https://olympics.com/en/athletes/egzon-shala", + "name": "Egzon SHALA" + }, + "country": "Kosovo" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/gennadij-cudinovic", + "name": "Gennadij CUDINOVIC" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/dzianis-khramiankou", + "name": "Dzianis KHRAMIANKOU" + }, + "country": "Belarus" + } + ], + "type": "single" + }, + "men-s-freestyle-57kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/zavur-uguev", + "name": "Zavur UGUEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/eexyp9wgpnraadiwgsma", + "meta_url": "https://olympics.com/en/athletes/kumar-ravi", + "name": "Ravi Kumar Dahiya" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/nurislam-sanayev", + "name": "Nurislam SANAYEV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/thomas-patrick-gilman", + "name": "Thomas Patrick GILMAN" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/georgi-valentinov-vangelov", + "name": "Georgi Valentinov VANGELOV" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/reza-atrinagharchi", + "name": "Reza ATRINAGHARCHI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/gulomjon-abdullaev", + "name": "Gulomjon ABDULLAEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yuki-takahashi", + "name": "Yuki TAKAHASHI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/bekhbayar-erdenebat", + "name": "Bekhbayar ERDENEBAT" + }, + "country": "Mongolia" + } + ], + "type": "single" + }, + "men-s-freestyle-65kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/takuto-otoguro", + "name": "Takuto OTOGURO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/haji-aliyev", + "name": "Haji ALIYEV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/gadzhimurad-rashidov", + "name": "Gadzhimurad RASHIDOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png", + "meta_url": "https://olympics.com/en/athletes/bajrang-bajrang", + "name": "Bajrang BAJRANG" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/iszmail-muszukajev", + "name": "Iszmail MUSZUKAJEV" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/daulet-niyazbekov", + "name": "Daulet NIYAZBEKOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/magomedmurad-gadzhiev", + "name": "Magomedmurad GADZHIEV" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/morteza-ghiasi-cheka", + "name": "Morteza GHIASI CHEKA" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/tulga-tumur-ochir", + "name": "Tulga TUMUR OCHIR" + }, + "country": "Mongolia" + } + ], + "type": "single" + }, + "men-s-freestyle-74kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/zaurbek-sidakov", + "name": "Zaurbek SIDAKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/mahamedkhabib-kadzimahamedau", + "name": "Mahamedkhabib KADZIMAHAMEDAU" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/kyle-douglas-dake", + "name": "Kyle Douglas DAKE" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/bekzod-abdurakhmonov", + "name": "Bekzod ABDURAKHMONOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/xt9wzdd7yxeu9kg9hnvg", + "meta_url": "https://olympics.com/en/athletes/frank-chamizo-marquez", + "name": "Frank CHAMIZO MARQUEZ" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/daniyar-kaisanov", + "name": "Daniyar KAISANOV" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/amr-reda-ramadan-hussen", + "name": "Amr Reda Ramadan HUSSEN" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/turan-bayramov", + "name": "Turan BAYRAMOV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/jeandry-garzon-caballero", + "name": "Jeandry GARZON CABALLERO" + }, + "country": "Cuba" + } + ], + "type": "single" + }, + "men-s-freestyle-86kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694950107/primary/ass1qd5m3qe39sammqrz", + "meta_url": "https://olympics.com/en/athletes/david-morris-taylor-iii", + "name": "David Morris TAYLOR III" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1694950278/primary/lbsye5ysa2fqcz92zln6", + "meta_url": "https://olympics.com/en/athletes/hassan-aliazam-yazdanicharati", + "name": "Hassan Aliazam YAZDANICHARATI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/artur-naifonov", + "name": "Artur NAIFONOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SMR.png", + "meta_url": "https://olympics.com/en/athletes/myles-nazem-amine", + "name": "Myles Nazem AMINE" + }, + "country": "San Marino" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/javrail-shapiev", + "name": "Javrail SHAPIEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IND.png", + "meta_url": "https://olympics.com/en/athletes/deepak-punia", + "name": "Deepak PUNIA" + }, + "country": "India" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/zushen-lin", + "name": "Zushen LIN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SUI.png", + "meta_url": "https://olympics.com/en/athletes/stefan-reichmuth", + "name": "Stefan REICHMUTH" + }, + "country": "Switzerland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/osman-gocen", + "name": "Osman GOCEN" + }, + "country": "Türkiye" + } + ], + "type": "single" + }, + "men-s-freestyle-97kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/ywspbmspj4vi1rabyib5", + "meta_url": "https://olympics.com/en/athletes/abdulrashid-sadulaev", + "name": "Abdulrashid SADULAEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1626171339/primary/astb72alya1qokzygk2y", + "meta_url": "https://olympics.com/en/athletes/kyle-frederick-snyder", + "name": "Kyle Frederick SNYDER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/reineris-salas-perez", + "name": "Reineris SALAS PEREZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ITA.png", + "meta_url": "https://olympics.com/en/athletes/abraham-de-jesus-conyedo-ruano", + "name": "Abraham de Jesus CONYEDO RUANO" + }, + "country": "Italy" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/sharif-sharifov", + "name": "Sharif SHARIFOV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/suleyman-karadeniz", + "name": "Suleyman KARADENIZ" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/alisher-yergali", + "name": "Alisher YERGALI" + }, + "country": "Kazakhstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/elizbar-odikadze", + "name": "Elizbar ODIKADZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MKD.png", + "meta_url": "https://olympics.com/en/athletes/magomedgadji-nurov", + "name": "Magomedgadji NUROV" + }, + "country": "North Macedonia" + } + ], + "type": "single" + }, + "men-s-greco-roman-130kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/kwrz0enazf5mzhope50z", + "meta_url": "https://olympics.com/en/athletes/mijain-lopez-nunez", + "name": "Mijain LOPEZ NUNEZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/iakobi-kajaia", + "name": "Iakobi KAJAIA" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/riza-kayaalp", + "name": "Riza KAYAALP" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/sergey-semenov", + "name": "Sergey SEMENOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/amin-mirzazadeh", + "name": "Amin MIRZAZADEH" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHI.png", + "meta_url": "https://olympics.com/en/athletes/yasmani-acosta-fernandez", + "name": "Yasmani ACOSTA FERNANDEZ" + }, + "country": "Chile" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/muminjon-abdullaev", + "name": "Muminjon ABDULLAEV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/eduard-popp", + "name": "Eduard POPP" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/abdellatif-mohamed-ahmed-mohamed", + "name": "Abdellatif Mohamed Ahmed MOHAMED" + }, + "country": "Egypt" + } + ], + "type": "single" + }, + "men-s-greco-roman-60kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/v1683196094/primary/hkqmktev6iwlxkhquwa2", + "meta_url": "https://olympics.com/en/athletes/luis-alberto-orta-sanchez", + "name": "Luis Alberto ORTA SANCHEZ" + }, + "country": "Cuba" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/kenichiro-fumita", + "name": "Kenichiro FUMITA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/sailike-walihan", + "name": "Sailike WALIHAN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/sergey-emelin", + "name": "Sergey EMELIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/lenur-temirov", + "name": "Lenur TEMIROV" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/victor-ciobanu", + "name": "Victor CIOBANU" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/zholaman-sharshenbekov", + "name": "Zholaman SHARSHENBEKOV" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/armen-melikyan", + "name": "Armen MELIKYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/haithem-fahmy-mahmoud", + "name": "Haithem Fahmy MAHMOUD" + }, + "country": "Egypt" + } + ], + "type": "single" + }, + "men-s-greco-roman-67kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/h11sk6dmzsxg5oahr3cx", + "meta_url": "https://olympics.com/en/athletes/mohammadreza-geraei", + "name": "Mohammadreza GERAEI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/parviz-nasibov", + "name": "Parviz NASIBOV" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/frank-staebler", + "name": "Frank STAEBLER" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/mohamed-ibrahim-elsayed-elsayed", + "name": "Mohamed Ibrahim Elsayed ELSAYED" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/ramaz-zoidze", + "name": "Ramaz ZOIDZE" + }, + "country": "Georgia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/artem-surkov", + "name": "Artem SURKOV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KOR.png", + "meta_url": "https://olympics.com/en/athletes/hansu-ryu", + "name": "Hansu RYU" + }, + "country": "Korea" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/cipulmcxtaijj5o91got", + "meta_url": "https://olympics.com/en/athletes/aker-al-obaidi", + "name": "Aker AL OBAIDI" + }, + "country": "EOR" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/karen-aslanyan", + "name": "Karen ASLANYAN" + }, + "country": "Armenia" + } + ], + "type": "single" + }, + "men-s-greco-roman-77kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/tamas-lorincz", + "name": "Tamas LORINCZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/akzhol-makhmudov", + "name": "Akzhol MAKHMUDOV" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/shohei-yabiku", + "name": "Shohei YABIKU" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/rafig-huseynov", + "name": "Rafig HUSEYNOV" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/mohammadali-abdolhamid-geraei", + "name": "Mohammadali Abdolhamid GERAEI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/karapet-chalyan", + "name": "Karapet CHALYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/aleksandr-chekhirkin", + "name": "Aleksandr CHEKHIRKIN" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/bozo-starcevic", + "name": "Bozo STARCEVIC" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KAZ.png", + "meta_url": "https://olympics.com/en/athletes/demeu-zhadrayev", + "name": "Demeu ZHADRAYEV" + }, + "country": "Kazakhstan" + } + ], + "type": "single" + }, + "men-s-greco-roman-87kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/zhan-beleniuk", + "name": "Zhan BELENIUK" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/viktor-lorincz", + "name": "Viktor LORINCZ" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/denis-maksymilian-kudla", + "name": "Denis Maksymilian KUDLA" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SRB.png", + "meta_url": "https://olympics.com/en/athletes/zurabi-datunashvili", + "name": "Zurabi DATUNASHVILI" + }, + "country": "Serbia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EGY.png", + "meta_url": "https://olympics.com/en/athletes/mohamed-metwally", + "name": "Mohamed METWALLY" + }, + "country": "Egypt" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CRO.png", + "meta_url": "https://olympics.com/en/athletes/ivan-huklek", + "name": "Ivan HUKLEK" + }, + "country": "Croatia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ALG.png", + "meta_url": "https://olympics.com/en/athletes/bachir-sid-azara", + "name": "Bachir SID AZARA" + }, + "country": "Algeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UZB.png", + "meta_url": "https://olympics.com/en/athletes/rustam-assakalov", + "name": "Rustam ASSAKALOV" + }, + "country": "Uzbekistan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CUB.png", + "meta_url": "https://olympics.com/en/athletes/daniel-gregorich-hechavarria", + "name": "Daniel GREGORICH HECHAVARRIA" + }, + "country": "Cuba" + } + ], + "type": "single" + }, + "men-s-greco-roman-97kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/mswgijidmrnjplxamvpb", + "meta_url": "https://olympics.com/en/athletes/musa-evloev", + "name": "Musa EVLOEV" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ARM.png", + "meta_url": "https://olympics.com/en/athletes/artur-aleksanyan", + "name": "Artur ALEKSANYAN" + }, + "country": "Armenia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/tadeusz-michalik", + "name": "Tadeusz MICHALIK" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/IRI.png", + "meta_url": "https://olympics.com/en/athletes/mohammadhadi-saravi", + "name": "Mohammadhadi SARAVI" + }, + "country": "Isl Rep of Iran" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/HUN.png", + "meta_url": "https://olympics.com/en/athletes/alex-gergo-szoke", + "name": "Alex Gergo SZOKE" + }, + "country": "Hungary" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/FIN.png", + "meta_url": "https://olympics.com/en/athletes/arvi-martin-savolainen", + "name": "Arvi Martin SAVOLAINEN" + }, + "country": "Finland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/tracy-gangelo-hancock", + "name": "Tracy Gangelo HANCOCK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/kiril-milov", + "name": "Kiril MILOV" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GEO.png", + "meta_url": "https://olympics.com/en/athletes/giorgi-melia", + "name": "Giorgi MELIA" + }, + "country": "Georgia" + } + ], + "type": "single" + }, + "women-s-freestyle-50kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/oa5wygcwsqxy2ks0ee3c", + "meta_url": "https://olympics.com/en/athletes/yui-susaki", + "name": "Yui SUSAKI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/yanan-sun", + "name": "Yanan SUN" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/AZE.png", + "meta_url": "https://olympics.com/en/athletes/mariya-stadnik", + "name": "Mariya STADNIK" + }, + "country": "Azerbaijan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/sarah-ann-hildebrandt", + "name": "Sarah Ann HILDEBRANDT" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/namuuntsetseg-tsogt-ochir", + "name": "Namuuntsetseg TSOGT-OCHIR" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/oksana-livach", + "name": "Oksana LIVACH" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/miglena-georgieva-selishka", + "name": "Miglena Georgieva SELISHKA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/lucia-yamileth-yepez-guzman", + "name": "Lucia Yamileth YEPEZ GUZMAN" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUN.png", + "meta_url": "https://olympics.com/en/athletes/sarra-hamdi", + "name": "Sarra HAMDI" + }, + "country": "Tunisia" + } + ], + "type": "single" + }, + "women-s-freestyle-53kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/mayu-mukaida", + "name": "Mayu MUKAIDA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/qianyu-pang", + "name": "Qianyu PANG" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/vanesa-kaladzinskaya", + "name": "Vanesa KALADZINSKAYA" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/bolortuya-bat-ochir", + "name": "Bolortuya BAT OCHIR" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/fdfo5swjqg9inregppec", + "meta_url": "https://olympics.com/en/athletes/jacarra-gwenisha-winchester", + "name": "Jacarra Gwenisha WINCHESTER" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CMR.png", + "meta_url": "https://olympics.com/en/athletes/joseph-emilienne-essombe-tiako", + "name": "Joseph Emilienne ESSOMBE TIAKO" + }, + "country": "Cameroon" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/POL.png", + "meta_url": "https://olympics.com/en/athletes/roksana-marta-zasina", + "name": "Roksana Marta ZASINA" + }, + "country": "Poland" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ECU.png", + "meta_url": "https://olympics.com/en/athletes/luisa-elizabeth-valverde-melendres", + "name": "Luisa Elizabeth VALVERDE MELENDRES" + }, + "country": "Ecuador" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/tmifhkd33rvdrfmvxo1n", + "meta_url": "https://olympics.com/en/athletes/vinesh-phogat", + "name": "Vinesh PHOGAT" + }, + "country": "India" + } + ], + "type": "single" + }, + "women-s-freestyle-57kg": { + "participants": [ + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/j1mb3pvbpqakkndqgnnl", + "meta_url": "https://olympics.com/en/athletes/risako-kawai", + "name": "Risako KAWAI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/iryna-kurachkina", + "name": "Iryna KURACHKINA" + }, + "country": "Belarus" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/wyjc8mlbhbtxkbmpbt40", + "meta_url": "https://olympics.com/en/athletes/helen-louise-maroulis", + "name": "Helen Louise MAROULIS" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/evelina-georgieva-nikolova", + "name": "Evelina Georgieva NIKOLOVA" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/khongorzul-boldsaikhan", + "name": "Khongorzul BOLDSAIKHAN" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/valeriia-koblova-zholobova", + "name": "Valeriia KOBLOVA ZHOLOBOVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MDA.png", + "meta_url": "https://olympics.com/en/athletes/anastasia-nichita", + "name": "Anastasia NICHITA" + }, + "country": "Rep of Moldova" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/tetyana-kit", + "name": "Tetyana KIT" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://img.olympics.com/images/image/private/t_1-1_300/f_auto/primary/qczsaia0unu2mgeliock", + "meta_url": "https://olympics.com/en/athletes/anshu-anshu", + "name": "Anshu Malik" + }, + "country": "India" + } + ], + "type": "single" + }, + "women-s-freestyle-62kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/yukako-kawai", + "name": "Yukako KAWAI" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/aisuluu-tynybekova", + "name": "Aisuluu TYNYBEKOVA" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/iryna-koliadenko", + "name": "Iryna KOLIADENKO" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BUL.png", + "meta_url": "https://olympics.com/en/athletes/taybe-mustafa-yusein", + "name": "Taybe Mustafa YUSEIN" + }, + "country": "Bulgaria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/LAT.png", + "meta_url": "https://olympics.com/en/athletes/anastasija-grigorjeva", + "name": "Anastasija GRIGORJEVA" + }, + "country": "Latvia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/liubov-ovcharova", + "name": "Liubov OVCHAROVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/SWE.png", + "meta_url": "https://olympics.com/en/athletes/henna-johansson", + "name": "Henna JOHANSSON" + }, + "country": "Sweden" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROU.png", + "meta_url": "https://olympics.com/en/athletes/kriszta-tunde-incze", + "name": "Kriszta Tunde INCZE" + }, + "country": "Romania" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/jia-long", + "name": "Jia LONG" + }, + "country": "P. R. China" + } + ], + "type": "single" + }, + "women-s-freestyle-68kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": "https://olympics.com/en/athletes/tamyra-mariama-mensah-stock", + "name": "Tamyra Mariama MENSAH STOCK" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/NGR.png", + "meta_url": "https://olympics.com/en/athletes/blessing-oborududu", + "name": "Blessing OBORUDUDU" + }, + "country": "Nigeria" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/UKR.png", + "meta_url": "https://olympics.com/en/athletes/alla-cherkasova", + "name": "Alla CHERKASOVA" + }, + "country": "Ukraine" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/meerim-zhumanazarova", + "name": "Meerim ZHUMANAZAROVA" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/sara-dosho", + "name": "Sara DOSHO" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/MGL.png", + "meta_url": "https://olympics.com/en/athletes/battsetseg-soronzonbold", + "name": "Battsetseg SORONZONBOLD" + }, + "country": "Mongolia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/feng-zhou", + "name": "Feng ZHOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/khanum-velieva", + "name": "Khanum VELIEVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/anna-carmen-schell", + "name": "Anna Carmen SCHELL" + }, + "country": "Germany" + } + ], + "type": "single" + }, + "women-s-freestyle-76kg": { + "participants": [ + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/GER.png", + "meta_url": "https://olympics.com/en/athletes/aline-focken", + "name": "Aline FOCKEN" + }, + "country": "Germany" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/USA.png", + "meta_url": null, + "name": "Adeline Maria Gray" + }, + "country": "United States" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/TUR.png", + "meta_url": "https://olympics.com/en/athletes/yasemin-adar", + "name": "Yasemin ADAR" + }, + "country": "Türkiye" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/CHN.png", + "meta_url": "https://olympics.com/en/athletes/qian-zhou", + "name": "Qian ZHOU" + }, + "country": "P. R. China" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/KGZ.png", + "meta_url": "https://olympics.com/en/athletes/aiperi-medet-kyzy", + "name": "Aiperi MEDET KYZY" + }, + "country": "Kyrgyzstan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/JPN.png", + "meta_url": "https://olympics.com/en/athletes/hiroe-minagawa", + "name": "Hiroe MINAGAWA" + }, + "country": "Japan" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/ROC.png", + "meta_url": "https://olympics.com/en/athletes/natalia-vorobieva", + "name": "Natalia VOROBIEVA" + }, + "country": "ROC" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/EST.png", + "meta_url": "https://olympics.com/en/athletes/epp-mae", + "name": "Epp MAE" + }, + "country": "Estonia" + }, + { + "athlete": { + "image": "https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/BLR.png", + "meta_url": "https://olympics.com/en/athletes/vasilisa-marzaliuk", + "name": "Vasilisa MARZALIUK" + }, + "country": "Belarus" + } + ], + "type": "single" + } + } +} \ No newline at end of file diff --git a/events.json b/events.json new file mode 100644 index 0000000..f6db319 --- /dev/null +++ b/events.json @@ -0,0 +1,433 @@ +{ + "3x3-basketball": [ + "women", + "men" + ], + "archery": [ + "mixed-team", + "women-s-individual", + "men-s-team", + "women-s-team", + "men-s-individual" + ], + "artistic-gymnastics": [ + "women-s-balance-beam", + "men-s-all-around", + "women-s-all-around", + "men-s-pommel-horse", + "men-s-horizontal-bar", + "men-s-parallel-bars", + "women-s-floor-exercise", + "women-s-vault", + "men-s-team", + "women-s-team", + "men-s-vault", + "women-s-uneven-bars", + "men-s-rings", + "men-s-floor-exercise" + ], + "artistic-swimming": [ + "duet", + "team" + ], + "athletics": [ + "men-s-marathon", + "men-s-110m-hurdles", + "women-s-heptathlon", + "women-s-4-x-400m-relay", + "men-s-3000m-steeplechase", + "women-s-shot-put", + "women-s-10000m", + "women-s-200m", + "women-s-800m", + "women-s-20km-race-walk", + "men-s-400m-hurdles", + "women-s-1500m", + "men-s-800m", + "men-s-200m", + "men-s-10000m", + "women-s-discus-throw", + "women-s-400m", + "men-s-decathlon", + "men-s-high-jump", + "women-s-marathon", + "men-s-4-x-100m-relay", + "women-s-triple-jump", + "men-s-100m", + "women-s-hammer-throw", + "women-s-400m-hurdles", + "men-s-400m", + "men-s-4-x-400m-relay", + "men-s-discus-throw", + "4-x-400m-relay-mixed", + "men-s-triple-jump", + "women-s-4-x-100m-relay", + "men-s-shot-put", + "women-s-3000m-steeplechase", + "women-s-long-jump", + "women-s-5000m", + "women-s-javelin-throw", + "men-s-long-jump", + "men-s-javelin-throw", + "men-s-50km-race-walk", + "women-s-pole-vault", + "women-s-100m", + "women-s-100m-hurdles", + "men-s-hammer-throw", + "men-s-5000m", + "men-s-pole-vault", + "women-s-high-jump", + "men-s-20km-race-walk", + "men-s-1500m" + ], + "badminton": [ + "women-s-singles", + "mixed-doubles", + "men-s-doubles", + "women-s-doubles", + "men-s-singles" + ], + "baseball-softball": [ + "softball", + "baseball" + ], + "basketball": [ + "women", + "men" + ], + "beach-volleyball": [ + "women", + "men" + ], + "boxing": [ + "women-s-middle-69-75kg", + "men-s-fly-48-52kg", + "women-s-welter-64-69kg", + "men-s-light-heavy-75-81kg", + "men-s-middle-69-75kg", + "men-s-heavy-81-91kg", + "men-s-feather-52-57kg", + "men-s-super-heavy-over-91kg", + "men-s-light-57-63kg", + "men-s-welter-63-69kg", + "women-s-feather-54-57kg", + "women-s-fly-48-51kg", + "women-s-light-57-60kg" + ], + "canoe-slalom": [ + "women-s-kayak", + "men-s-kayak", + "men-s-canoe", + "women-s-canoe" + ], + "canoe-sprint": [ + "women-s-canoe-single-200m", + "men-s-canoe-double-1000m", + "men-s-kayak-single-200m", + "men-s-kayak-single-1000m", + "women-s-canoe-double-500m", + "women-s-kayak-four-500m", + "men-s-kayak-double-1000m", + "women-s-kayak-single-500m", + "women-s-kayak-single-200m", + "men-s-canoe-single-1000m", + "men-s-kayak-four-500m", + "women-s-kayak-double-500m" + ], + "cycling-bmx-freestyle": [ + "women-s-park", + "men-s-park" + ], + "cycling-bmx-racing": [ + "men", + "women" + ], + "cycling-mountain-bike": [ + "women-s-cross-country", + "men-s-cross-country" + ], + "cycling-road": [ + "women-s-road-race", + "men-s-individual-time-trial", + "men-s-road-race", + "women-s-individual-time-trial" + ], + "cycling-track": [ + "women-s-sprint", + "women-s-omnium", + "women-s-keirin", + "men-s-team-sprint", + "men-s-omnium", + "men-s-team-pursuit", + "women-s-madison", + "men-s-keirin", + "women-s-team-pursuit", + "women-s-team-sprint", + "men-s-madison", + "men-s-sprint" + ], + "diving": [ + "women-s-3m-springboard", + "men-s-synchronised-10m-platform", + "women-s-10m-platform", + "men-s-3m-springboard", + "women-s-synchronised-10m-platform", + "men-s-synchronised-3m-springboard", + "women-s-synchronised-3m-springboard", + "men-s-10m-platform" + ], + "equestrian": [ + "dressage-individual", + "dressage-team", + "eventing-individual", + "jumping-team", + "jumping-individual", + "eventing-team" + ], + "fencing": [ + "women-s-foil-team", + "men-s-epee-individual", + "women-s-epee-team", + "men-s-sabre-individual", + "women-s-sabre-individual", + "men-s-sabre-team", + "men-s-foil-individual", + "women-s-foil-individual", + "men-s-foil-team", + "men-s-epee-team", + "women-s-epee-individual", + "women-s-sabre-team" + ], + "football": [ + "men", + "women" + ], + "golf": [ + "women-s-individual-stroke-play", + "men-s-individual-stroke-play" + ], + "handball": [ + "men", + "women" + ], + "hockey": [ + "women", + "men" + ], + "judo": [ + "women-63-kg", + "women-70-kg", + "women-78-kg", + "women-48-kg", + "men-over-100-kg", + "men-81-kg", + "men-66-kg", + "women-57-kg", + "men-100-kg", + "mixed-team", + "women-over-78-kg", + "men-90-kg", + "men-60-kg", + "women-52-kg", + "men-73-kg" + ], + "karate": [ + "women-s-kumite-over-61kg", + "women-s-kumite-55kg", + "men-s-kata", + "men-s-kumite-67kg", + "men-s-kumite-over-75kg", + "men-s-kumite-75kg", + "women-s-kumite-61kg", + "women-s-kata" + ], + "marathon-swimming": [ + "men-s-10km", + "women-s-10km" + ], + "modern-pentathlon": [ + "women-s-individual", + "men-s-individual" + ], + "rhythmic-gymnastics": [ + "group-all-around", + "individual-all-around" + ], + "rowing": [ + "men-s-double-sculls", + "women-s-four", + "men-s-quadruple-sculls", + "women-s-single-sculls", + "men-s-eight", + "women-s-quadruple-sculls", + "men-s-single-sculls", + "women-s-pair", + "lightweight-men-s-double-sculls", + "men-s-pair", + "lightweight-women-s-double-sculls", + "women-s-eight", + "women-s-double-sculls", + "men-s-four" + ], + "rugby-sevens": [ + "women", + "men" + ], + "sailing": [ + "laser-radial-women", + "laser-men", + "rs-x-men", + "rs-x-women", + "49er-fx-women", + "470-women", + "470-men", + "finn-men", + "nacra-17-mixed", + "49er-men" + ], + "shooting": [ + "trap-men", + "10m-air-rifle-mixed-team", + "10m-air-pistol-men", + "skeet-men", + "trap-women", + "10m-air-pistol-mixed-team", + "10m-air-rifle-women", + "25m-pistol-women", + "trap-mixed-team", + "50m-rifle-3-positions-women", + "50m-rifle-3-positions-men", + "25m-rapid-fire-pistol-men", + "10m-air-rifle-men", + "skeet-women", + "10m-air-pistol-women" + ], + "skateboarding": [ + "women-s-park", + "men-s-park", + "women-s-street", + "men-s-street" + ], + "sport-climbing": [ + "women-s-combined", + "men-s-combined" + ], + "surfing": [ + "women", + "men" + ], + "swimming": [ + "men-s-4-x-200m-freestyle-relay", + "women-s-400m-individual-medley", + "men-s-200m-freestyle", + "women-s-200m-breaststroke", + "men-s-400m-freestyle", + "women-s-1500m-freestyle", + "women-s-200m-freestyle", + "women-s-800m-freestyle", + "men-s-100m-breaststroke", + "men-s-100m-freestyle", + "men-s-1500m-freestyle", + "women-s-100m-backstroke", + "mixed-4-x-100m-medley-relay", + "men-s-100m-butterfly", + "women-s-100m-butterfly", + "women-s-100m-freestyle", + "women-s-400m-freestyle", + "men-s-200m-backstroke", + "men-s-800m-freestyle", + "men-s-50m-freestyle", + "men-s-400m-individual-medley", + "men-s-200m-individual-medley", + "women-s-100m-breaststroke", + "men-s-200m-breaststroke", + "women-s-200m-butterfly", + "women-s-50m-freestyle", + "women-s-200m-backstroke", + "men-s-200m-butterfly", + "men-s-4-x-100m-medley-relay", + "men-s-100m-backstroke", + "women-s-4-x-100m-freestyle-relay", + "women-s-200m-individual-medley", + "women-s-4-x-200m-freestyle-relay", + "men-s-4-x-100m-freestyle-relay", + "women-s-4-x-100m-medley-relay" + ], + "table-tennis": [ + "mixed-doubles", + "women-s-team", + "men-s-singles", + "men-s-team", + "women-s-singles" + ], + "taekwondo": [ + "men-58kg", + "men-over-80kg", + "men-80kg", + "women-67kg", + "men-68kg", + "women-over-67kg", + "women-49kg", + "women-57kg" + ], + "tennis": [ + "women-s-doubles", + "mixed-doubles", + "men-s-singles", + "men-s-doubles", + "women-s-singles" + ], + "trampoline-gymnastics": [ + "women", + "men" + ], + "triathlon": [ + "mixed-relay", + "women-s-individual", + "men-s-individual" + ], + "volleyball": [ + "men", + "women" + ], + "water-polo": [ + "women", + "men" + ], + "weightlifting": [ + "men-s-over-109kg", + "women-s-49kg", + "men-s-109kg", + "men-s-67kg", + "men-s-81kg", + "men-s-61kg", + "women-s-55kg", + "women-s-over-87kg", + "men-s-96kg", + "women-s-87kg", + "women-s-59kg", + "women-s-64kg", + "men-s-73kg", + "women-s-76kg" + ], + "wrestling": [ + "men-s-greco-roman-60kg", + "men-s-greco-roman-67kg", + "women-s-freestyle-68kg", + "men-s-freestyle-97kg", + "men-s-freestyle-57kg", + "men-s-freestyle-125kg", + "men-s-greco-roman-130kg", + "men-s-freestyle-74kg", + "men-s-freestyle-65kg", + "men-s-greco-roman-77kg", + "women-s-freestyle-76kg", + "men-s-freestyle-86kg", + "men-s-greco-roman-87kg", + "women-s-freestyle-62kg", + "women-s-freestyle-50kg", + "women-s-freestyle-57kg", + "men-s-greco-roman-97kg", + "women-s-freestyle-53kg" + ] +} \ No newline at end of file diff --git a/get_data/clean-results.py b/get_data/clean-results.py new file mode 100644 index 0000000..4dcbd12 --- /dev/null +++ b/get_data/clean-results.py @@ -0,0 +1,44 @@ +import subprocess +import json + +with open("./results.json", "r") as f: + sports = json.load(f) + +ret = {} +for sport in sports: + ret[sport] = {} + for event in sports[sport]: + ret[sport][event] = {} + ret[sport][event]["type"] = "team" if sports[sport][event][0]["participant"]["__typename"] == "GameTeam" else "single" + ret[sport][event]["participants"] = [] + print(f"{sport} >> {event} ".ljust(50), end="") + for i in range(len(sports[sport][event])): + ret[sport][event]["participants"].append({}) + try: + ret[sport][event]["participants"][i]["country"] = sports[sport][event][i]["noc"]["name"] + except: + try: + ret[sport][event]["participants"][i]["country"] = sports[sport][event][i]["participant"]["countryObject"]["name"] + except: + ret[sport][event]["participants"][i]["country"] = "None" + if ret[sport][event]["type"] == "single": + ret[sport][event]["participants"][i]["athlete"] = {} + ret[sport][event]["participants"][i]["athlete"]["meta_url"] = sports[sport][event][i]["participant"]["meta"]["url"] + ret[sport][event]["participants"][i]["athlete"]["name"] = f'{sports[sport][event][i]["participant"]["name"]} {sports[sport][event][i]["participant"]["surname"]}' + try: + template = sports[sport][event][i]["participant"]["thumbnail"]["urlTemplate"] + img = f'https://img.olympics.com/images/image/private/t_1-1_300/f_auto{template[template.index("}")+1:]}' + except: + img = f'https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/{sports[sport][event][i]["participant"]["countryObject"]["triLetterCode"]}.png' + ret[sport][event]["participants"][i]["athlete"]["image"] = img + else: + try: + ret[sport][event]["participants"][i]["img"] = f'https://gstatic.olympics.com/s1/f_auto/static/light/flag/paris-2024/olympic/3x2/{sports[sport][event][i]["noc"]["code"]}.png' + except: + ret[sport][event]["participants"][i]["img"] = None + print("o", end="") + print() + +with open("./data.json", "w") as f: + json.dump(ret, f, ensure_ascii=False, indent=4, sort_keys=True) + diff --git a/get_data/get-events.py b/get_data/get-events.py new file mode 100644 index 0000000..1b1484b --- /dev/null +++ b/get_data/get-events.py @@ -0,0 +1,15 @@ +import subprocess +import json + +with open("./sports.json", "r") as f: + sports = json.load(f) + +ret = {} +for sport in sports: + stdout = subprocess.check_output(f'./get-events.sh {sport}', shell=True) + events = json.loads(stdout) + ret[sport] = events + +with open("./events.json", "w") as f: + json.dump(ret, f, indent=4, ensure_ascii=False, sort_keys=True) + diff --git a/get_data/get-events.sh b/get_data/get-events.sh new file mode 100755 index 0000000..cc54cb8 --- /dev/null +++ b/get_data/get-events.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +args=("$@") + +curl -s -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" https://olympics.com/en/olympic-games/tokyo-2020/results/${args[0]} |\ +sed -E 's->->\n-g' |\ +rg -A 9999999999999999 '