{"info":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","description":"<html><head></head><body><p>The ABC Core API underpins the platform’s key tools, delivering structured, efficient endpoints for sports data and bet-related insights. Built to be modular and reusable, it provides read-only, pre-processed stats and market data through clean, purpose-driven routes.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"33931524","collectionId":"01dac223-22a7-4d39-b770-dce8697e6a18","publishedId":"2sB3Wjx3K4","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-10-31T15:56:13.000Z"},"item":[{"name":"bet-builder-nfl-fixtures","item":[],"id":"ee94be82-20af-4234-aac2-aec44035f376","_postman_id":"ee94be82-20af-4234-aac2-aec44035f376","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}}},{"name":"acca-selection-form-stats","event":[{"listen":"prerequest","script":{"id":"e89b99ec-aff1-48be-b121-57e41ce6856a","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","const url = baseUrl + \"/acca-stats?timezone=Europe/London\";","","pm.environment.unset(\"selectionId\");","","const fetchSelectionId = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: url,","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, response) {","        if (err) {","            console.error(\"Error fetching acca-stats:\", err);","            return reject(err);","        }","","        const jsonData = response.json();","        console.log(\"acca-stats status:\", response.code);","        console.log(\"acca-stats response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData.data && jsonData.data.length > 0) {","            const selectionId = jsonData.data[0].selection_id;","","            pm.environment.set(\"selectionId\", selectionId);","","            pm.request.url.variables.each(function(variable) {","                if (variable.key === \"selectionId\") {","                    variable.value = selectionId;","                }","            });","","            console.log(\"Set selectionId to:\", selectionId);","            resolve(selectionId);","        } else {","            const msg = \"No data found in acca-stats response\";","            console.error(msg);","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(msg));","        }","    });","});","","await fetchSelectionId();"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"30517b7d-c1a5-4138-813c-8dea4185b16f","exec":["// 1. Status Code Test","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Test","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","// 3. JSON Schema Validation Test","pm.test(\"Response matches expected JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\"],","        properties: {","            data: {","                type: \"object\",","                required: [","                    \"selection_id\", \"fixture_id\", \"home_team\", \"away_team\", \"kick_off\",","                    \"selection\", \"market_key\", \"stat_type\", \"competition_type\",","                    \"home_team_competition\", \"away_team_competition\", \"home_team_season\",","                    \"away_team_season\", \"home_team_logo\", \"away_team_logo\",","                    \"home_team_country_flag\", \"away_team_country_flag\", \"stats\"","                ],","                properties: {","                    selection_id: { type: \"string\" },","                    fixture_id: { type: \"string\" },","                    home_team: { type: \"string\" },","                    away_team: { type: \"string\" },","                    kick_off: { type: \"string\" },","                    selection: { type: \"string\" },","                    market_key: { type: \"string\" },","                    stat_type: { type: \"string\" },","                    competition_type: { type: \"string\" },","                    home_team_competition: { type: \"string\" },","                    away_team_competition: { type: \"string\" },","                    home_team_season: { type: \"string\" },","                    away_team_season: { type: \"string\" },","                    home_team_logo: { type: \"string\" },","                    away_team_logo: { type: \"string\" },","                    home_team_country_flag: { type: \"string\" },","                    away_team_country_flag: { type: \"string\" },","                    stats: {","                        type: \"object\",","                        required: [\"last_5\", \"season\"],","                        properties: {","                            last_5: {","                                type: \"object\",","                                required: [\"home\", \"away\"],","                                properties: {","                                    home: {","                                        type: \"object\",","                                        required: [\"played\", \"won\", \"drawn\", \"lost\", \"results\"],","                                        properties: {","                                            played: { type: \"number\" },","                                            won: { type: \"number\" },","                                            drawn: { type: \"number\" },","                                            lost: { type: \"number\" },","                                            results: { type: \"string\" }","                                        }","                                    },","                                    away: {","                                        type: \"object\",","                                        required: [\"played\", \"won\", \"drawn\", \"lost\", \"results\"],","                                        properties: {","                                            played: { type: \"number\" },","                                            won: { type: \"number\" },","                                            drawn: { type: \"number\" },","                                            lost: { type: \"number\" },","                                            results: { type: \"string\" }","                                        }","                                    }","                                }","                            },","                            season: {","                                type: \"object\",","                                required: [\"home\", \"away\"],","                                properties: {","                                    home: {","                                        type: \"object\",","                                        required: [\"played\", \"won\", \"drawn\", \"lost\", \"results\"],","                                        properties: {","                                            played: { type: \"number\" },","                                            won: { type: \"number\" },","                                            drawn: { type: \"number\" },","                                            lost: { type: \"number\" },","                                            results: { type: \"string\" }","                                        }","                                    },","                                    away: {","                                        type: \"object\",","                                        required: [\"played\", \"won\", \"drawn\", \"lost\", \"results\"],","                                        properties: {","                                            played: { type: \"number\" },","                                            won: { type: \"number\" },","                                            drawn: { type: \"number\" },","                                            lost: { type: \"number\" },","                                            results: { type: \"string\" }","                                        }","                                    }","                                }","                            }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"70c01268-bd4e-4be3-88ac-85009fcf8730","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/acca-selection-form-stats/:selectionId","description":"<h3 id=\"get-acca-selection-form-stats\">Get ACCA Selection Form Stats</h3>\n<p>This endpoint retrieves the statistics for a specific selection form by providing the selection ID in the endpoint URL.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>This is a GET request and does not require a request body.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<ul>\n<li><p><code>data</code> (object)</p>\n<ul>\n<li><p><code>selection_id</code> (string)</p>\n</li>\n<li><p><code>fixture_id</code> (string)</p>\n</li>\n<li><p><code>home_team</code> (string)</p>\n</li>\n<li><p><code>away_team</code> (string)</p>\n</li>\n<li><p><code>kick_off</code> (string)</p>\n</li>\n<li><p><code>selection</code> (string)</p>\n</li>\n<li><p><code>market_key</code> (string)</p>\n</li>\n<li><p><code>stat_type</code> (string)</p>\n</li>\n<li><p><code>competition_type</code> (string)</p>\n</li>\n<li><p><code>home_team_competition</code> (string)</p>\n</li>\n<li><p><code>away_team_competition</code> (string)</p>\n</li>\n<li><p><code>home_team_season</code> (string)</p>\n</li>\n<li><p><code>away_team_season</code> (string)</p>\n</li>\n<li><p><code>home_team_logo</code> (string)</p>\n</li>\n<li><p><code>away_team_logo</code> (string)</p>\n</li>\n<li><p><code>home_team_country_flag</code> (string)</p>\n</li>\n<li><p><code>away_team_country_flag</code> (string)</p>\n</li>\n<li><p><code>stats</code> (object)</p>\n<ul>\n<li><p><code>last_5</code> (object)</p>\n<ul>\n<li><p><code>home</code> (object)</p>\n<ul>\n<li><p><code>played</code> (number)</p>\n</li>\n<li><p><code>won</code> (number)</p>\n</li>\n<li><p><code>drawn</code> (number)</p>\n</li>\n<li><p><code>lost</code> (number)</p>\n</li>\n<li><p><code>results</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>away</code> (object)</p>\n<ul>\n<li><p><code>played</code> (number)</p>\n</li>\n<li><p><code>won</code> (number)</p>\n</li>\n<li><p><code>drawn</code> (number)</p>\n</li>\n<li><p><code>lost</code> (number)</p>\n</li>\n<li><p><code>results</code> (string)</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>season</code> (object)</p>\n<ul>\n<li><p><code>home</code> (object)</p>\n<ul>\n<li><p><code>played</code> (number)</p>\n</li>\n<li><p><code>won</code> (number)</p>\n</li>\n<li><p><code>drawn</code> (number)</p>\n</li>\n<li><p><code>lost</code> (number)</p>\n</li>\n<li><p><code>results</code> (string)</p>\n</li>\n</ul>\n</li>\n<li><p><code>away</code> (object)</p>\n<ul>\n<li><p><code>played</code> (number)</p>\n</li>\n<li><p><code>won</code> (number)</p>\n</li>\n<li><p><code>drawn</code> (number)</p>\n</li>\n<li><p><code>lost</code> (number)</p>\n</li>\n<li><p><code>results</code> (string)</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p>The response contains detailed statistics related to the specified selection form.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["acca-selection-form-stats",":selectionId"],"host":[""],"query":[],"variable":[{"type":"any","value":"","key":"selectionId"}]}},"response":[{"id":"63f0497f-9fe0-4dab-9a13-59ab9ba26b9b","name":"acca-selection-form-stats","originalRequest":{"method":"GET","header":[],"url":{"raw":"/acca-selection-form-stats/:selectionId","host":[""],"path":["acca-selection-form-stats",":selectionId"],"variable":[{"key":"selectionId","value":"019a079e-85da-7022-aafc-0ab9f8a0b341"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Thu, 23 Oct 2025 10:23:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"988"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"0af0d4b2-077c-4bb6-8ebe-7053e0ff76da"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S5VEaHVfjoEEsQA="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fa021b-5bca1969144f6ddc247a9f2f;Parent=418518216b7e6ba0;Sampled=0;Lineage=1:f2c74609:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"selection_id\": \"019a079e-85da-7022-aafc-0ab9f8a0b341\",\n        \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n        \"home_team\": \"Exeter\",\n        \"away_team\": \"Plymouth\",\n        \"kick_off\": \"2025-10-23 19:00:00\",\n        \"selection\": \"Exeter Win\",\n        \"market_key\": \"MATCH_ODDS\",\n        \"stat_type\": \"Form\",\n        \"competition_type\": \"Club\",\n        \"home_team_competition\": \"League One\",\n        \"away_team_competition\": \"League One\",\n        \"home_team_season\": \"25/26\",\n        \"away_team_season\": \"25/26\",\n        \"home_team_logo\": \"sr-competitor-86.png\",\n        \"away_team_logo\": \"sr-competitor-71.png\",\n        \"home_team_country_flag\": \"ENG.png\",\n        \"away_team_country_flag\": \"ENG.png\",\n        \"stats\": {\n            \"last_5\": {\n                \"home\": {\n                    \"played\": 5,\n                    \"won\": 1,\n                    \"drawn\": 1,\n                    \"lost\": 3,\n                    \"results\": \"l,d,w,l,l\"\n                },\n                \"away\": {\n                    \"played\": 5,\n                    \"won\": 2,\n                    \"drawn\": 1,\n                    \"lost\": 2,\n                    \"results\": \"l,d,w,l,w\"\n                }\n            },\n            \"season\": {\n                \"home\": {\n                    \"played\": 13,\n                    \"won\": 4,\n                    \"drawn\": 1,\n                    \"lost\": 8,\n                    \"results\": \"l,d,w,l,l,l,l,w,l,w,l,w,l\"\n                },\n                \"away\": {\n                    \"played\": 12,\n                    \"won\": 4,\n                    \"drawn\": 1,\n                    \"lost\": 7,\n                    \"results\": \"l,d,w,l,w,w,l,w,l,l,l,l\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"70c01268-bd4e-4be3-88ac-85009fcf8730"},{"name":"acca-selection-match-stats","event":[{"listen":"prerequest","script":{"id":"56795f7e-b457-42a5-81d6-750ace14d32a","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","const url = baseUrl + \"/acca-stats?timezone=Europe/London\";","","pm.environment.unset(\"selectionId\");","","const fetchSelectionId = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: url,","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, response) {","        if (err) {","            console.error(\"Error fetching acca-stats:\", err);","            return reject(err);","        }","","        const jsonData = response.json();","        console.log(\"acca-stats status:\", response.code);","        console.log(\"acca-stats response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData.data && jsonData.data.length > 0) {","            const selectionId = jsonData.data[0].selection_id;","","            pm.environment.set(\"selectionId\", selectionId);","","            pm.request.url.variables.each(function(variable) {","                if (variable.key === \"selectionId\") {","                    variable.value = selectionId;","                }","            });","","            console.log(\"Set selectionId to:\", selectionId);","            resolve(selectionId);","        } else {","            const msg = \"No data found in acca-stats response\";","            console.error(msg);","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(msg));","        }","    });","});","","await fetchSelectionId();"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"365a6ce0-e8a6-4f18-a768-975fb14da2a0","exec":["// 1. Status Code Test","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Test","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","// 3. JSON Schema Validation Test","pm.test(\"Response matches expected JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\"],","        properties: {","            data: {","                type: \"object\",","                properties: {","                    selection_id: { type: \"string\" },","                    fixture_id: { type: \"string\" },","                    home_team: { type: \"string\" },","                    away_team: { type: \"string\" },","                    kick_off: { type: \"string\" },","                    selection: { type: \"string\" },","                    market_key: { type: \"string\" },","                    stat_type: { type: \"string\" },","                    competition_type: { type: \"string\" },","                    home_team_competition: { type: \"string\" },","                    away_team_competition: { type: \"string\" },","                    home_team_season: { type: \"string\" },","                    away_team_season: { type: \"string\" },","                    home_team_logo: { type: \"string\" },","                    away_team_logo: { type: \"string\" },","                    home_team_country_flag: { type: \"string\" },","                    away_team_country_flag: { type: \"string\" },","                    stats: {","                        type: \"object\",","                        properties: {","                            last_5: {","                                type: \"object\",","                                properties: {","                                    home: {","                                        type: \"object\",","                                        properties: {","                                            played: { type: \"number\" },","                                            hit_rate: { type: \"number\" },","                                            for: { type: \"number\" },","                                            against: { type: \"number\" },","                                            total: { type: \"number\" },","                                            average: { type: \"number\" }","                                        }","                                    },","                                    away: {","                                        type: \"object\",","                                        properties: {","                                            played: { type: \"number\" },","                                            hit_rate: { type: \"number\" },","                                            for: { type: \"number\" },","                                            against: { type: \"number\" },","                                            total: { type: \"number\" },","                                            average: { type: \"number\" }","                                        }","                                    }","                                }","                            },","                            season: {","                                type: \"object\",","                                properties: {","                                    home: {","                                        type: \"object\",","                                        properties: {","                                            played: { type: \"number\" },","                                            hit_rate: { type: \"number\" },","                                            for: { type: \"number\" },","                                            against: { type: \"number\" },","                                            total: { type: \"number\" },","                                            average: { type: \"number\" }","                                        }","                                    },","                                    away: {","                                        type: \"object\",","                                        properties: {","                                            played: { type: \"number\" },","                                            hit_rate: { type: \"number\" },","                                            for: { type: \"number\" },","                                            against: { type: \"number\" },","                                            total: { type: \"number\" },","                                            average: { type: \"number\" }","                                        }","                                    }","                                }","                            }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"dcd35ae3-e752-45ad-838a-9d995ed55f14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/acca-selection-match-stats/:selectionId","description":"<h3 id=\"get-acca-selection-match-statsselectionid\">GET /acca-selection-match-stats/:selectionId</h3>\n<p>This endpoint retrieves match statistics for a specific selection.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Path Parameters</p>\n<ul>\n<li><code>selectionId</code> (string, required): The ID of the selection for which match statistics are to be retrieved.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will be a JSON object with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"object\",\n    \"properties\": {\n        \"data\": {\n            \"type\": \"object\",\n            \"properties\": {\n                \"selection_id\": {\"type\": \"string\"},\n                \"fixture_id\": {\"type\": \"string\"},\n                \"home_team\": {\"type\": \"string\"},\n                \"away_team\": {\"type\": \"string\"},\n                \"kick_off\": {\"type\": \"string\"},\n                \"selection\": {\"type\": \"string\"},\n                \"market_key\": {\"type\": \"string\"},\n                \"stat_type\": {\"type\": \"string\"},\n                \"competition_type\": {\"type\": \"string\"},\n                \"home_team_competition\": {\"type\": \"string\"},\n                \"away_team_competition\": {\"type\": \"string\"},\n                \"home_team_season\": {\"type\": \"string\"},\n                \"away_team_season\": {\"type\": \"string\"},\n                \"home_team_logo\": {\"type\": \"string\"},\n                \"away_team_logo\": {\"type\": \"string\"},\n                \"home_team_country_flag\": {\"type\": \"string\"},\n                \"away_team_country_flag\": {\"type\": \"string\"},\n                \"stats\": {\n                    \"type\": \"object\",\n                    \"properties\": {\n                        \"last_5\": {\n                            \"type\": \"object\",\n                            \"properties\": {\n                                \"home\": {\n                                    \"type\": \"object\",\n                                    \"properties\": {\n                                        \"played\": {\"type\": \"integer\"},\n                                        \"hit_rate\": {\"type\": \"integer\"},\n                                        \"for\": {\"type\": \"integer\"},\n                                        \"against\": {\"type\": \"integer\"},\n                                        \"total\": {\"type\": \"integer\"},\n                                        \"average\": {\"type\": \"integer\"}\n                                    }\n                                },\n                                \"away\": {\n                                    \"type\": \"object\",\n                                    \"properties\": {\n                                        \"played\": {\"type\": \"integer\"},\n                                        \"hit_rate\": {\"type\": \"integer\"},\n                                        \"for\": {\"type\": \"integer\"},\n                                        \"against\": {\"type\": \"integer\"},\n                                        \"total\": {\"type\": \"integer\"},\n                                        \"average\": {\"type\": \"integer\"}\n                                    }\n                                }\n                            }\n                        },\n                        \"season\": {\n                            \"type\": \"object\",\n                            \"properties\": {\n                                \"home\": {\n                                    \"type\": \"object\",\n                                    \"properties\": {\n                                        \"played\": {\"type\": \"integer\"},\n                                        \"hit_rate\": {\"type\": \"integer\"},\n                                        \"for\": {\"type\": \"integer\"},\n                                        \"against\": {\"type\": \"integer\"},\n                                        \"total\": {\"type\": \"integer\"},\n                                        \"average\": {\"type\": \"integer\"}\n                                    }\n                                },\n                                \"away\": {\n                                    \"type\": \"object\",\n                                    \"properties\": {\n                                        \"played\": {\"type\": \"integer\"},\n                                        \"hit_rate\": {\"type\": \"integer\"},\n                                        \"for\": {\"type\": \"integer\"},\n                                        \"against\": {\"type\": \"integer\"},\n                                        \"total\": {\"type\": \"integer\"},\n                                        \"average\": {\"type\": \"integer\"}\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["acca-selection-match-stats",":selectionId"],"host":[""],"query":[],"variable":[{"type":"any","value":"","key":"selectionId"}]}},"response":[{"id":"2cb01f1c-9840-4157-a474-dede9cfde459","name":"acca-selection-match-stats","originalRequest":{"method":"GET","header":[],"url":{"raw":"/acca-selection-match-stats/:selectionId","host":[""],"path":["acca-selection-match-stats",":selectionId"],"variable":[{"key":"selectionId","value":"019a079e-6cf4-73ac-a868-a98b7d0c5d16"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Thu, 23 Oct 2025 10:26:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1034"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"35d43d2c-dbc9-4440-bdb5-27eba48f4ccd"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S5Ve1HpVjoEEBEQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fa02c4-24369b9b3aafec5a1743e133;Parent=6074521b7ac7a733;Sampled=0;Lineage=1:9220d9f0:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"selection_id\": \"019a079e-6cf4-73ac-a868-a98b7d0c5d16\",\n        \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n        \"home_team\": \"Roma\",\n        \"away_team\": \"Plzen\",\n        \"kick_off\": \"2025-10-23 19:00:00\",\n        \"selection\": \"Over 1.5 Goals\",\n        \"market_key\": \"OVER_UNDER_15\",\n        \"stat_type\": \"Goals\",\n        \"competition_type\": \"Club\",\n        \"home_team_competition\": \"Serie A\",\n        \"away_team_competition\": \"1. Liga\",\n        \"home_team_season\": \"25/26\",\n        \"away_team_season\": \"25/26\",\n        \"home_team_logo\": \"sr-competitor-2702.png\",\n        \"away_team_logo\": \"sr-competitor-4502.png\",\n        \"home_team_country_flag\": \"ITA.png\",\n        \"away_team_country_flag\": \"CZE.png\",\n        \"stats\": {\n            \"last_5\": {\n                \"home\": {\n                    \"played\": 5,\n                    \"hit_rate\": 40,\n                    \"for\": 1,\n                    \"against\": 0.6,\n                    \"total\": 8,\n                    \"average\": 1.6\n                },\n                \"away\": {\n                    \"played\": 5,\n                    \"hit_rate\": 40,\n                    \"for\": 1.2,\n                    \"against\": 1.2,\n                    \"total\": 12,\n                    \"average\": 2.4\n                }\n            },\n            \"season\": {\n                \"home\": {\n                    \"played\": 7,\n                    \"hit_rate\": 28,\n                    \"for\": 1,\n                    \"against\": 0.43,\n                    \"total\": 10,\n                    \"average\": 1.43\n                },\n                \"away\": {\n                    \"played\": 12,\n                    \"hit_rate\": 75,\n                    \"for\": 1.75,\n                    \"against\": 1.09,\n                    \"total\": 34,\n                    \"average\": 2.84\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"dcd35ae3-e752-45ad-838a-9d995ed55f14"},{"name":"acca-selection-team-stats","event":[{"listen":"prerequest","script":{"id":"7de38112-81f7-43a1-ae64-bc0c789a631e","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","const url = baseUrl + \"/acca-stats?timezone=Europe/London\";","","pm.environment.unset(\"selectionId\");","","const fetchSelectionId = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: url,","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, response) {","        if (err) {","            console.error(\"Error fetching acca-stats:\", err);","            return reject(err);","        }","","        const jsonData = response.json();","        console.log(\"acca-stats status:\", response.code);","        console.log(\"acca-stats response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData.data && jsonData.data.length > 0) {","            const selectionId = jsonData.data[0].selection_id;","","            pm.environment.set(\"selectionId\", selectionId);","","            pm.request.url.variables.each(function(variable) {","                if (variable.key === \"selectionId\") {","                    variable.value = selectionId;","                }","            });","","            console.log(\"Set selectionId to:\", selectionId);","            resolve(selectionId);","        } else {","            const msg = \"No data found in acca-stats response\";","            console.error(msg);","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(msg));","        }","    });","});","","await fetchSelectionId();"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"be514d52-3400-425b-b70e-07b33198651f","exec":["// 1. Status Code Test","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Test","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","// 3. JSON Schema Validation Test","pm.test(\"Response matches expected JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\"],","        properties: {","            data: {","                type: \"object\",","                required: [","                    \"selection_id\", \"fixture_id\", \"home_team\", \"away_team\", \"kick_off\",","                    \"selection\", \"market_key\", \"stat_type\", \"competition_type\",","                    \"home_team_competition\", \"away_team_competition\", \"home_team_season\",","                    \"away_team_season\", \"home_team_logo\", \"away_team_logo\",","                    \"home_team_country_flag\", \"away_team_country_flag\", \"stats\"","                ],","                properties: {","                    selection_id: { type: \"string\" },","                    fixture_id: { type: \"string\" },","                    home_team: { type: \"string\" },","                    away_team: { type: \"string\" },","                    kick_off: { type: \"string\" },","                    selection: { type: \"string\" },","                    market_key: { type: \"string\" },","                    stat_type: { type: \"string\" },","                    competition_type: { type: \"string\" },","                    home_team_competition: { type: \"string\" },","                    away_team_competition: { type: \"string\" },","                    home_team_season: { type: \"string\" },","                    away_team_season: { type: \"string\" },","                    home_team_logo: { type: \"string\" },","                    away_team_logo: { type: \"string\" },","                    home_team_country_flag: { type: \"string\" },","                    away_team_country_flag: { type: \"string\" },","                    stats: {","                        type: \"object\",","                        required: [\"last_5\", \"season\"],","                        properties: {","                            last_5: {","                                type: \"object\",","                                properties: {","                                    home: {","                                        type: \"object\",","                                        properties: {","                                            played: { type: \"number\" },","                                            against_hit_rate: { type: \"number\" },","                                            average_against: { type: \"number\" }","                                        }","                                    },","                                    away: {","                                        type: \"object\",","                                        properties: {","                                            played: { type: \"number\" },","                                            for_hit_rate: { type: \"number\" },","                                            average_for: { type: \"number\" }","                                        }","                                    }","                                }","                            },","                            season: {","                                type: \"object\",","                                properties: {","                                    home: {","                                        type: \"object\",","                                        properties: {","                                            played: { type: \"number\" },","                                            against_hit_rate: { type: \"number\" },","                                            average_against: { type: \"number\" }","                                        }","                                    },","                                    away: {","                                        type: \"object\",","                                        properties: {","                                            played: { type: \"number\" },","                                            for_hit_rate: { type: \"number\" },","                                            average_for: { type: \"number\" }","                                        }","                                    }","                                }","                            }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"42bb3af1-3da0-4bce-8595-25c2206ba8a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/acca-selection-team-stats/:selectionId","description":"<h3 id=\"get-acca-selection-team-statsid\">GET /acca-selection-team-stats/:id</h3>\n<p>This endpoint retrieves team statistics for a specific selection.</p>\n<h4 id=\"request\">Request</h4>\n<p>No request body is required for this request.</p>\n<ul>\n<li><code>:id</code> (path parameter) - The ID of the selection for which the team statistics are to be retrieved.</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will be a JSON object with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"data\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"selection_id\": {\"type\": \"string\"},\n        \"fixture_id\": {\"type\": \"string\"},\n        \"home_team\": {\"type\": \"string\"},\n        \"away_team\": {\"type\": \"string\"},\n        \"kick_off\": {\"type\": \"string\"},\n        \"selection\": {\"type\": \"string\"},\n        \"market_key\": {\"type\": \"string\"},\n        \"stat_type\": {\"type\": \"string\"},\n        \"competition_type\": {\"type\": \"string\"},\n        \"home_team_competition\": {\"type\": \"string\"},\n        \"away_team_competition\": {\"type\": \"string\"},\n        \"home_team_season\": {\"type\": \"string\"},\n        \"away_team_season\": {\"type\": \"string\"},\n        \"home_team_logo\": {\"type\": \"string\"},\n        \"away_team_logo\": {\"type\": \"string\"},\n        \"home_team_country_flag\": {\"type\": \"string\"},\n        \"away_team_country_flag\": {\"type\": \"string\"},\n        \"stats\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"last_5\": {\n              \"type\": \"object\",\n              \"properties\": {\n                \"away\": {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"played\": {\"type\": \"integer\"},\n                    \"for_hit_rate\": {\"type\": \"integer\"},\n                    \"average_for\": {\"type\": \"integer\"}\n                  }\n                },\n                \"home\": {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"played\": {\"type\": \"integer\"},\n                    \"against_hit_rate\": {\"type\": \"integer\"},\n                    \"average_against\": {\"type\": \"integer\"}\n                  }\n                }\n              }\n            },\n            \"season\": {\n              \"type\": \"object\",\n              \"properties\": {\n                \"away\": {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"played\": {\"type\": \"integer\"},\n                    \"for_hit_rate\": {\"type\": \"integer\"},\n                    \"average_for\": {\"type\": \"integer\"}\n                  }\n                },\n                \"home\": {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"played\": {\"type\": \"integer\"},\n                    \"against_hit_rate\": {\"type\": \"integer\"},\n                    \"average_against\": {\"type\": \"integer\"}\n                  }\n                }\n              }\n            }\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["acca-selection-team-stats",":selectionId"],"host":[""],"query":[],"variable":[{"type":"any","value":"","key":"selectionId"}]}},"response":[{"id":"09eb1537-4c6f-4c2f-8d05-5d0c8af1be2b","name":"acca-selection-team-stats","originalRequest":{"method":"GET","header":[],"url":{"raw":"/acca-selection-team-stats/:id","host":[""],"path":["acca-selection-team-stats",":id"],"variable":[{"key":"id","value":"019a079e-4bcd-70f2-ba79-d5a5c3337f10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Thu, 23 Oct 2025 10:21:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"931"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"8f403806-c1c1-462f-9ed7-28cdb3cfaeb4"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S5U2xH1KjoEEUng="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fa01c4-6b585e377bee298a4d369b86;Parent=180adca6073c3ec6;Sampled=0;Lineage=1:8edd2d7c:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"selection_id\": \"019a079e-4bcd-70f2-ba79-d5a5c3337f10\",\n        \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n        \"home_team\": \"Lyon\",\n        \"away_team\": \"Basel\",\n        \"kick_off\": \"2025-10-23 16:45:00\",\n        \"selection\": \"Over 0.5 Goals\",\n        \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n        \"stat_type\": \"Goals\",\n        \"competition_type\": \"Club\",\n        \"home_team_competition\": \"Ligue 1\",\n        \"away_team_competition\": \"Super League\",\n        \"home_team_season\": \"25/26\",\n        \"away_team_season\": \"25/26\",\n        \"home_team_logo\": \"sr-competitor-1649.png\",\n        \"away_team_logo\": \"sr-competitor-2501.png\",\n        \"home_team_country_flag\": \"FRA.png\",\n        \"away_team_country_flag\": \"CHE.png\",\n        \"stats\": {\n            \"last_5\": {\n                \"home\": {\n                    \"played\": 5,\n                    \"for_hit_rate\": 100,\n                    \"average_for\": 1.2\n                },\n                \"away\": {\n                    \"played\": 5,\n                    \"against_hit_rate\": 40,\n                    \"average_against\": 0.6\n                }\n            },\n            \"season\": {\n                \"home\": {\n                    \"played\": 8,\n                    \"for_hit_rate\": 100,\n                    \"average_for\": 1.38\n                },\n                \"away\": {\n                    \"played\": 8,\n                    \"against_hit_rate\": 66,\n                    \"average_against\": 1.12\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"42bb3af1-3da0-4bce-8595-25c2206ba8a2"},{"name":"acca-stats","event":[{"listen":"test","script":{"id":"15d2013f-7b9e-49a5-85d2-e8be65d722a0","exec":["// 1. Status Code Test","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Test","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","// 3. JSON Schema Validation Test","pm.test(\"Response body matches JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [","                        \"selection_id\",","                        \"fixture_id\",","                        \"season_id\",","                        \"competition_id\",","                        \"competition\",","                        \"competition_groups\",","                        \"home_team\",","                        \"away_team\",","                        \"kick_off\",","                        \"selection_name\",","                        \"market_key\",","                        \"hit_rate\",","                        \"odds\"","                    ],","                    properties: {","                        selection_id: { type: \"string\" },","                        fixture_id: { type: \"string\" },","                        season_id: { type: \"string\" },","                        competition_id: { type: \"string\" },","                        competition: { type: \"string\" },","                        competition_groups: {","                            type: \"array\",","                            items: { type: \"string\" }","                        },","                        home_team: { type: \"string\" },","                        away_team: { type: \"string\" },","                        kick_off: { type: \"string\" },","                        selection_name: { type: \"string\" },","                        market_key: { type: \"string\" },","                        hit_rate: { type: \"number\" },","                        odds: {","                            type: \"object\",","                            required: [\"decimal\", \"numerator\", \"denominator\"],","                            properties: {","                                decimal: { type: \"number\" },","                                numerator: { type: \"number\" },","                                denominator: { type: \"number\" }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"total_results\", \"timezone\", \"filtering\"],","                properties: {","                    results: { type: \"number\" },","                    total_results: { type: \"number\" },","                    timezone: { type: \"string\" },","                    filtering: {","                        type: \"object\",","                        required: [\"day\", \"utc_dates\", \"start_of_day_utc\", \"end_of_day_utc\"],","                        properties: {","                            day: { type: \"number\" },","                            utc_dates: {","                                type: \"array\",","                                items: { type: \"string\" }","                            },","                            start_of_day_utc: { type: \"string\" },","                            end_of_day_utc: { type: \"string\" }","                        }","                    }","                }","            }","        }","    };","","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e8dc33df-a767-41d5-bfd9-b1c2b7571f9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/acca-stats?timezone=Europe/London","description":"<h3 id=\"get-acca-stats\">Get ACCA Stats</h3>\n<p>The endpoint retrieves selections for ACCA (accumulator) bets, based on the specified timezone.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>/acca-stats</code></p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li>timezone: Europe/London</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response returns a JSON object with two main keys: \"data\" and \"meta\".</p>\n<p><strong>Response Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"data\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"selection_id\": { \"type\": \"string\" },\n          \"fixture_id\": { \"type\": \"string\" },\n          \"season_id\": { \"type\": \"string\" },\n          \"competition_id\": { \"type\": \"string\" },\n          \"competition\": { \"type\": \"string\" },\n          \"competition_groups\": { \"type\": \"array\", \"items\": { \"type\": \"string\" } },\n          \"home_team\": { \"type\": \"string\" },\n          \"away_team\": { \"type\": \"string\" },\n          \"kick_off\": { \"type\": \"string\" },\n          \"selection_name\": { \"type\": \"string\" },\n          \"market_key\": { \"type\": \"string\" },\n          \"hit_rate\": { \"type\": \"number\" },\n          \"odds\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"decimal\": { \"type\": \"number\" },\n              \"numerator\": { \"type\": \"number\" },\n              \"denominator\": { \"type\": \"number\" }\n            }\n          }\n        }\n      }\n    },\n    \"meta\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"results\": { \"type\": \"number\" },\n        \"total_results\": { \"type\": \"number\" },\n        \"timezone\": { \"type\": \"string\" },\n        \"filtering\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"day\": { \"type\": \"number\" },\n            \"utc_dates\": { \"type\": \"array\", \"items\": { \"type\": \"string\" } },\n            \"start_of_day_utc\": { \"type\": \"string\" },\n            \"end_of_day_utc\": { \"type\": \"string\" }\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["acca-stats"],"host":[""],"query":[{"key":"timezone","value":"Europe/London"}],"variable":[]}},"response":[{"id":"f1058f3b-35f1-4a3c-94ca-1e972bb6740f","name":"acca-stats","originalRequest":{"method":"GET","header":[],"url":{"raw":"/acca-stats?timezone=Europe/London","host":[""],"path":["acca-stats"],"query":[{"key":"timezone","value":"Europe/London"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Thu, 23 Oct 2025 10:15:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"483158"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"02351407-9d27-4dac-8588-2eaa928c6eb4"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S5T9LGN8DoEEZVA="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fa0053-2ae2e3901424276d66624873;Parent=42c0ad5573c08e4e;Sampled=0;Lineage=1:676ba1b8:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"selection_id\": \"019a079e-3aee-72d0-b450-1f5e761a9383\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.03,\n                \"numerator\": 1,\n                \"denominator\": 33\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6946-72c2-aa54-c0718ca3f15c\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-660e-70e9-b94b-6e06d47a0bd2\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nice Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5a9b-73f4-8829-2a45da084f8c\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Draw or Al Ahli Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-cd52-72fa-b394-22b40514b952\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"PAOK Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-63f3-7164-8d21-baaba9737ba6\",\n            \"fixture_id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lincoln Red Imps\",\n            \"away_team\": \"Lech Poznan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lech Poznan Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-79fa-7155-8a78-917ffdc164f8\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Alkmaar Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-40ac-7050-bdeb-7fbc04ff3526\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5df2-7342-9143-0991e2321c01\",\n            \"fixture_id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lincoln Red Imps\",\n            \"away_team\": \"Lech Poznan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or Lech Poznan Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-e7be-7077-825a-8d102ab42199\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Porto Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3889-71c8-ae15-badbdf9f64dd\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-6d40-72f2-9a34-b71e4fd98c58\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sturm Graz Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-c86a-73d1-9845-388215e78334\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Dinamo Zagreb Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6790-717a-b370-b4d6846a54be\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-e6eb-7060-86bc-6d08ef66887e\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nottm Forest Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-343e-71b1-b2ac-cb19909f54d7\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Strasbourg Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7ec6-71f8-89ec-5e221483e082\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4b5c-733f-9c27-b5a4d5e7edb6\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Aston Villa Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-d35a-70fa-a3f6-abb70d33d322\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-776b-727e-805b-1b7bd9a383db\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4bcd-70f2-ba79-d5a5c3337f10\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-8ca5-70ae-a020-ccf963843c14\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-e0c9-7142-841b-7d0924567615\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3cd8-70b9-8cd5-6ddcdc8f0e54\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-33c5-705f-b554-b7b7472bb593\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-bfc2-715b-8c4d-230d2fd8b88b\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3f4d-7039-b2ab-205d6d502e14\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4f22-7209-93e9-4c2386c50d60\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Real Betis Over 2.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3291-73b5-b4e0-c0f11e81fa3d\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Hvidovre Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4367-728f-b199-589e89166ad0\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-65ef-73c0-83e4-203f487289fd\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Malmo Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4c26-73f3-8091-2608db49529f\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Genk Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8ac3-70bf-8aac-a4e9af835efa\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-68ac-7138-858f-301879ef1647\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8d2b-730b-9289-80fdc903c2ba\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Porto Over 2.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-44be-73a8-8dad-69a21309dc08\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4748-7028-9c69-eba450f4c5b9\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Breidablik Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-48d7-73d9-b06d-c46f4ea91c9a\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Real Betis Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6299-7092-a212-e8a67250d39a\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celta Vigo Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-7280-720d-a768-a2baad05d06c\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-32db-73dc-8126-223b8d4af0ea\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4015-7344-96e2-81b9262860d9\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4d3d-7029-b3d2-337d9ac34130\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-43a7-7140-aa4c-593a07505289\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Omonia Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2e10-71da-b804-39a869f6048f\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Hvidovre Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4478-73a9-a200-1b73fe46c0cc\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Win or FC Basel Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2f4b-70c2-86e2-d5593a3b0c5b\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shkendija Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-44c9-70b4-b47c-18d308c0a018\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Stuttgart Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-77b0-72a2-9c49-e3f10e9f41c0\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or NK Celje Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6e9f-715a-8749-cac97ebdf03c\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Samsunspor Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2897-7112-bc19-0620cc427e60\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4ba2-7153-8dd1-9bb3acb30d2a\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Kuopion Palloseura Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4bdd-73bd-9f6c-767b127a607f\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Ferencvarosi Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3b0f-73f5-afcd-c55bb1b656bb\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6987-7209-adbd-bb622f40b6af\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Dinamo Zagreb Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2beb-73e1-9a50-0d6fa359bcc1\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Al Riyadh SC Win or Al-Kholood Club Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3d1c-70ef-823c-2c3066565c96\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"FCSB Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-731a-71b8-b663-9bcbc585dfe2\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Utrecht Over 2.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-677d-72a2-8991-4ab1db8f9cb1\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 7.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3e79-72b5-a17b-382500a25e41\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Basel Over 2.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4036-7160-a296-ba8b66b7a0cb\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Betis Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-50cd-707d-9679-45776c0f5f91\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Genk Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-6b9b-7116-96fd-c545a5d0a1a8\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sturm Graz Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4564-707b-bb55-e7a55fed4608\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6642-7035-bfc0-3f272c2a852b\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nice Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4c69-70d9-8de2-0021179ea108\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Basel Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7673-72ea-a917-8e54347f85bf\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Dynamo Kyiv Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3069-70ca-bde6-18205a58aff2\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shelbourne Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-72a5-73be-8132-a345903fc3f8\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or Porto Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-6227-7347-be96-07cc3526d64f\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Express Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-88e5-7255-85fb-a97a7cd31614\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Draw or Lanus Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4e3b-7369-ab9d-c6b4581bfd49\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Panathinaikos Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-6941-7389-9fc8-4819634cc880\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4a70-704f-a953-7201ad674dc5\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"GA Eagles Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5a40-72dc-ac35-54946901a6c5\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 8.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3b95-72f6-8059-92be8d134590\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4163-73bb-a156-76fa253d97c8\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"FCSB Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4846-73f6-9dbd-8408c0ef4708\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or KuPS Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7c3d-736f-b07f-36773a68eea9\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Slovan Bratislava Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-50f8-72bd-b2e4-70c5b62fc3e0\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Ferencvaros Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3f76-7344-8028-2157502875a9\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"FCSB Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6f09-7101-be14-ee42cf1bd5e4\",\n            \"fixture_id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lincoln Red Imps\",\n            \"away_team\": \"Lech Poznan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lincoln Red Imps Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3dd0-708e-92b3-167148f80063\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Real Betis Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6eea-734d-9ed3-c57c9d658988\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or Dynamo Kiev Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7c8b-7217-a0a2-2462e729ade4\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or FC Noah Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-9196-7176-9532-9a3ab6c97017\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or Ludogorets Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7382-7385-881c-9222b5bab827\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or PAOK Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-33d8-7181-a2c0-49ce6a73d399\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Jagiellonia Bialystock Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-88ef-72e1-abb2-3b5fc8729e49\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Slovan Bratislava Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 100,\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6111-7339-bde2-5fb020b60684\",\n            \"fixture_id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lincoln Red Imps\",\n            \"away_team\": \"Lech Poznan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4c99-71c0-8d0a-de52dbc3020f\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-67f5-700b-9e33-b85d4a2ae2a9\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Win or Plzen Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-c5a6-7102-bd1d-687bd865a507\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-955d-70af-968d-c48e39035a48\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3cef-7073-bbac-0100eb93b93f\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-7ea0-705d-a907-da53160d38b4\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6796-7345-8052-0654f0f202f9\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3805-7269-95de-37054640eefd\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4fb3-7144-a8b9-d622ed2998e2\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 7.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4c9d-739b-9744-cdc56802f0d3\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 7.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-43e8-70b8-8a34-c0b82b9027a2\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"KF Drita Win or Omonia Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-36dc-7356-ba3a-1fe0a0e829f1\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 7.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-68eb-7223-a70b-6cbbd9405b9d\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6d7f-7069-b14e-4f3cca39f692\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Malmo FF Win or Dinamo Zagreb Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3ffe-7353-a5b9-3087a005fd3f\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 7.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6901-700c-b99d-d33f744207f3\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3139-72d3-b857-ef648574c347\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 8.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7249-73c9-a2cf-db04108d6861\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-42b2-72aa-b16b-20b44782df24\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 9.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"hit_rate\": 90,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-f1ec-7060-b3bf-9451a080418c\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 50\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-687d-725b-b336-7bc9875b3fe4\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Plzen Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 50\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-856b-7356-a0a6-56efe9a938fd\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Basel Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.03,\n                \"numerator\": 1,\n                \"denominator\": 33\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-d427-71dc-a619-36413808b08c\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Stuttgart Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.03,\n                \"numerator\": 1,\n                \"denominator\": 33\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7578-7185-8137-99c0b43eed9c\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Crystal Palace Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.03,\n                \"numerator\": 1,\n                \"denominator\": 33\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5929-70df-be97-6ada145c9dee\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Al Ahli Saudi Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.03,\n                \"numerator\": 1,\n                \"denominator\": 33\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-70d8-7298-a5ca-039b53cb4b11\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Crystal Palace Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-795a-737c-84de-edd4ec9c3a8b\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rangers Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-7718-734d-8902-cf544ef5af86\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Panathinaikos Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-ee0c-7359-a4e9-9e39936636b8\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Ferencvarosi Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-88a3-707a-9414-87020b39da85\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Az Alkmaar Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3605-736d-b01e-1253d1427471\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"AEK Athens Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-430e-72c5-a49c-22e200fe9077\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aston Villa Over 2.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-525b-72ef-929c-3299736b1ad0\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aston Villa Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 16\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3807-71a8-a91c-43240c8c5230\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"AEK Athens Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 18\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-df78-7108-b5bb-e20785f4eda1\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Bologna Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-8fa3-7228-80ba-e42374e1c862\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Real Betis Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-8f08-7360-b9ad-6e07a6a3863e\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Genk Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-e9b0-7337-a607-9dc9de6a8edf\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Ludogorets Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-42ed-733d-aabb-796eb2f4b46a\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Bologna Over 2.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-e47f-71e8-a100-a2a808770558\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-75ff-7327-86b1-ba5670789698\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Crystal Palace Win or AEK Larnaca Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-eb15-729a-854a-8b7405d08aca\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3395-71ee-90a6-c65af3a39cc1\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Strasbourg Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-e4f1-7048-b91b-62999cdd8645\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"GA Eagles Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-78d0-715d-913a-7273ab9be3e2\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Mainz Win or Zrinjski Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-689e-739e-b4d2-c4c598221b84\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celta Vigo Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-89ac-72b8-bb4f-cc7dc7d173dd\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-7890-7103-9e11-cd32728f73ce\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-70e4-72ea-94ca-d49242d06280\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lausanne-Sport Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-76de-72b0-9f40-b0b77d8accc2\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-f589-70e7-863b-a0ec2baf7044\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Salzburg Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6a07-70f0-aaf6-231c88c053ea\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celtic Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6c63-702d-88fa-b9090d4183cb\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nottm Forest Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3686-726b-8256-e8b7d91f6cf6\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"AEK Athens Win or Aberdeen Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6cac-7340-ad4e-37a4c45fa70b\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-423f-7224-938e-c683cd838e6c\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Bologna Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-e524-73a3-b4e4-d63561fa30d1\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-375f-722b-8bba-4234429f3f2b\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rayo Vallecano Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6fd6-7211-b30f-418c90f86c44\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or Lausanne Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0902-c923-7114-9fe3-3eecf67ec984\",\n            \"fixture_id\": \"9fa7a424-6f36-4dab-9a04-2ac697cc37c2\",\n            \"season_id\": \"9f2f553d-82c5-4809-ac63-4c1ef96117b2\",\n            \"competition_id\": \"9a94aa6b-ba67-44ab-b0f0-d4c8b539a179\",\n            \"competition\": \"AFC Champions League Two\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Persib Bandung\",\n            \"away_team\": \"Selangor FC\",\n            \"kick_off\": \"2025-10-23 13:15:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2fa5-7366-90b7-57ef2f8b5ada\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shakhtar Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4823-7217-ab8f-a3f317d7801c\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Omonia Nicosia Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5281-70c1-94d9-2a9bdf7192cb\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Salzburg Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-e7d4-7171-aa03-946c05b49d23\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aston Villa Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4f63-71ad-9985-9b553b00c38e\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Bologna Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8c46-700b-b0fb-be0aa7014ce8\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4eca-705e-8a68-f2cc1426a7b8\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3fe0-7290-895b-342485613fc0\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3d16-7019-a874-787070d0485a\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-650b-737f-a771-74b1bd0f395f\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"NK Celje Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-7199-73df-bc1b-659620123fb3\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6185-720d-b9e1-a8d1037f9d34\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celta Vigo Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3a8f-71ff-bf26-20a5c13d13a4\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4f80-711e-9d6b-141aa8b5e497\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fiorentina Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3b2e-7169-b266-d32f687610cd\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-edac-7329-abdc-e3ffa3cc43c9\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6a7c-7054-bcd3-93491fcd6bd5\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celtic Win or Sturm Graz Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3acf-70f7-aee8-b6f3a1b7ad9c\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-41b1-736b-ac00-b60048e53e3d\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3754-702a-9c0e-778c3e3b03f3\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-43ea-738d-a7c6-0c24dea2550d\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shakhtar Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-88bd-716c-9776-4e23177c78be\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Plymouth Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4781-7157-b845-5976cb32674c\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7a69-72da-852a-2c96e48d70cd\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-7001-72eb-a8df-3f81c0e945f5\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celtic Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-68bb-735a-8e66-e54f0d357509\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-420e-7007-be8c-0320d9dae3fc\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Bologna Over 3.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-69fb-706b-8612-ecc9a32e4252\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Plzen Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3c52-723f-90c6-336b0d78c6f3\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Hacken Win or Rayo Vallecano Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4287-71fb-8873-872673c1f8de\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"FCSB Win or Bologna Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-1d87-7379-8525-a6e4425084a4\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Al-Kholood Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6444-7386-9213-1fc689794c4e\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nice Over 2.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2e9b-71ef-85ca-d1cb6a9ee9fb\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Hvidovre Win or HB Koge Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3a87-726e-af8e-086aa08346ff\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Sparta Prague Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-32b3-710f-bf99-553cb1cb6ed5\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shkendija Tetovo Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3f15-7217-ae3f-1496c152528a\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Genk Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-1b31-71cb-8fa4-03d6e03d2cf8\",\n            \"fixture_id\": \"0199c468-d073-70c4-8c92-c99236e8ee5b\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Buxoro\",\n            \"away_team\": \"Sogdiana\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-742c-727a-a453-96884005eb25\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8bba-73d1-b3ab-513da93b77aa\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3fac-71c6-82df-4faf06e3870a\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5d71-735b-a859-ffabee750232\",\n            \"fixture_id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lincoln Red Imps\",\n            \"away_team\": \"Lech Poznan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lech Poznan Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7d35-7209-b4c8-7bd33e1a87d0\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Exeter Win or Plymouth Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-39ee-715a-8aee-af23b7b21028\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rapid Vienna Win or Fiorentina Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-40d8-7392-97e0-3fba6270d683\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3ad6-7222-9340-632df45ed33b\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"GA Eagles Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6b57-71fd-bb9c-7ea605cc2d58\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 7.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-643e-70ef-87c8-bd63f9218096\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Czestochowa Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-5ad7-7088-a353-90972e395d1f\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Draw or Kampala City Council Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-74af-7372-83dd-bbb1df492912\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Panathinaikos Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-370b-715b-a9cf-5d55ee7265d2\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Al-Taawoun Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3efe-71b6-ae36-9242cc9eb597\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Sparta Prague Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-27c2-703e-9c6d-68b421bc0651\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Al-Riyadh Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-72e6-7235-99df-d99c3b4032f7\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nottm Forest Win or Porto Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2f9c-70bc-adcc-73795afbba23\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shkendija Win or Shelbourne Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4812-70ca-ad73-6d631a00365a\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Breidablik Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8bf5-7192-8e61-f486cb81a0c5\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Alkmaar Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-64c7-717f-992b-b47bfe858132\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sturm Graz Over 2.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-337b-737a-a6a0-1321c32f7eea\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Omonia Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2826-71d0-a8a5-236c03cbf091\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Al-Feiha Win or Al-Taawoun Buraidah Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4b9f-73d7-8a12-a117e1f6b11b\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"SK Rapid Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2809-72a6-82ea-01bcfbb6188a\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Draw or Al-Taawoun Buraidah Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-73f9-72c3-b4a0-7bf49e9a146f\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Porto Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-51cb-7222-ad23-56531e8191f9\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Real Betis Over 3.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-f63e-72f7-9675-90afc5c935e6\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Ferencvarosi Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-36b7-7184-9a6a-75c8306547cc\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Hacken Gothenburg Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6f99-720f-8f83-c122b46dbb06\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Malmo Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8cc7-7027-9770-c4641789d407\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"U de Chile Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8924-71da-9391-58310ca45f06\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Universidad de Chile Win or Lanus Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4295-7068-913b-2e96c08a57be\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6b6c-700b-9be0-53f7b247550f\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or Rakow Czestochowa Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4e1d-700e-b1e5-30d69bad3462\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rijeka Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-ce28-7360-8443-459746fbea64\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Porto Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-366b-71c8-bf56-4eacc21807a4\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-39f8-7258-8b64-9dd650ba2e48\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-896a-7076-b29b-649dd46618a8\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Lanus Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-83cb-705c-991f-1527df41a820\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Genk Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6e89-71a0-975c-0b6035e09dad\",\n            \"fixture_id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lincoln Red Imps\",\n            \"away_team\": \"Lech Poznan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-d810-73f1-8b60-2dc6af028114\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Dinamo Zagreb Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-c7e3-7307-9609-0b180af1ea27\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-44de-7306-b85f-1bfc6d3963e0\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Legia Warszawa Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7db7-733e-b484-40ba258f8d97\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.47,\n                \"numerator\": 40,\n                \"denominator\": 85\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3aad-7024-a008-32c780ed0277\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-1747-7361-b200-9484d7e8269e\",\n            \"fixture_id\": \"0199c468-d3c1-7090-b85d-88bf7da05e39\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Xorazm Urganch\",\n            \"away_team\": \"Pakhtakor\",\n            \"kick_off\": \"2025-10-23 14:00:00\",\n            \"selection_name\": \"Pakhtakor Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6cfb-711b-ba44-cb4e90c89c56\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sturm Graz Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-42e1-729f-a4f1-698986861f89\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"KF Drita Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-426d-70bb-9ae1-eb41d76dff94\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-76c0-7347-a5b8-5520e95abb35\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6b18-70ca-811a-a7b312607608\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sigma Olomouc Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3c87-71f0-b6f5-118bc4686eec\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3e91-7391-9bf3-3364f8c7f5c7\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-5a9b-70b0-b050-5d2f5e315dd6\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Express Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-961a-7245-9c7b-214cb162d09d\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-27e4-7069-a5bf-080228f3cdda\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Al-Feiha Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8b21-739a-a8f9-997154b453fb\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-dee5-71d3-b558-f5ae5deb7e2a\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4404-7090-ba48-58dd137f02c2\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Jagiellonia Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4f66-73ab-ab3f-e48285bca61b\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4595-70c7-a202-36a860a49bb0\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Stuttgart Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3f7d-73dd-9552-bda91196f03e\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6301-720b-99a9-9411f71e286d\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nice Over 3.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3eb3-7087-9112-f3a8c776b2b8\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rijeka Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7655-7061-b15a-5da9603a2be6\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"PAOK Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3141-7139-974b-80d978a3c6f9\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 8.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3766-7131-874b-c614b2973acf\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-27c4-72e4-9d30-30bf7541d62a\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Al-Taawoun Buraidah Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6a70-712e-8db7-381654a1f12d\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Plzen Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-661c-709f-bb73-f0bf9b8e3536\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sturm Graz Over 3.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4ca7-7232-9314-7dc6d50ad7ad\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Bologna Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4107-7393-98fa-e523ccd3716d\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Rangers Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2b20-7286-b889-886be6053ac4\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-31b2-72ce-85f2-9f0c5de4120e\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Real Betis Over 4.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2f6d-7292-ae2e-89e96327a6c7\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Shelbourne Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-32f4-727f-afbc-74a3fbfcccd6\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Omonia Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8816-7033-8913-44f73664c2d7\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3ef2-723b-80a9-be57494f9527\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Basel Over 3.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7537-7020-9216-a0866031aa96\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-1cc5-70f9-b288-9bb31b6338b0\",\n            \"fixture_id\": \"0199c468-d073-70c4-8c92-c99236e8ee5b\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Buxoro\",\n            \"away_team\": \"Sogdiana\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-264f-73b9-b280-31e33737998c\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-74ce-7366-a4cc-b5c01c8782b3\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"NK Celje Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5883-716d-a52d-571c6cacb241\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Al-Najma Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7610-7227-a864-ed36e3f53d66\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Porto Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-61d2-7055-af00-8bbd7d80118c\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or Nice Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-436b-7287-a602-c6ef038d9b25\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"KF Drita Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-91f0-737f-9c24-7fbc42223cb6\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Lanus Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-790e-7177-a4c7-0bbd456713c5\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Zrinjski Mostar Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4787-710c-bca7-5cc0977e3a0a\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Stuttgart Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-6da9-721c-a3de-31ed5062b718\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celtic Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3ec6-70b1-821f-f2e415da70eb\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.05,\n                \"numerator\": 21,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6e50-73a2-87f7-c33bbab36a41\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Larnaca Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5ad6-705e-959a-9312d86a7afb\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nice Over 4.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4567-708a-b9a6-c0bcd3c18bb9\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Kuopion Palloseura Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4b4f-7192-a439-a2ee14f719e9\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"KuPS Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5025-727e-9bb3-fc2757bb2415\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Ferencvarosi Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-43b7-7248-802a-159ef1508517\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Draw or Panathinaikos Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6fa5-72be-8e23-ca0ae9f92043\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Hamrun Spartans FC Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3336-7289-b6be-0eb059396e07\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Al-Taawoun Buraidah Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4450-7023-8161-1cc49b345a12\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or FC Basel Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6a4b-719e-a3e5-e5fc8f35da68\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or Sturm Graz Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-40f7-7247-a63b-50cb55137b7e\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shelbourne Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3b91-7129-b7b9-0341fae1ce1b\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"FCSB Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7711-70a7-95fa-7bc05da60712\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Porto Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3911-7080-b082-46bcb1c305df\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Stuttgart Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8c6b-7034-bd7e-0a1d3dff22c5\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Lanus Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-46dc-716d-812f-5613772db477\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"KF Drita Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-41f7-70f5-b6d4-9347c3c8b794\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"KuPS Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3340-7196-a12f-a02903480e33\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"KF Drita Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-9bd6-70cc-95e8-63ea1f2ca0aa\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Lanus Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-78e5-72c7-ae04-216994adc88d\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-405f-7347-a13d-25f940c3dc09\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shelbourne Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 3.8,\n                \"numerator\": 14,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7ab3-7330-864b-b392d5dec09e\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"NK Celje Over 2.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-76e1-7350-865e-6c0fef99a48e\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"PAOK Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 80,\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5e30-7318-ada8-458f79d8ac02\",\n            \"fixture_id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lincoln Red Imps\",\n            \"away_team\": \"Lech Poznan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lincoln Red Imps Win or Lech Poznan Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5b06-7243-8f36-8b4305ff64b0\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Al Najma Club Win or Al Ahli Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-609f-736d-bb7f-43d2cb1a835b\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-901c-720d-aeb2-22da903b276b\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-8921-706d-83f2-f36bf274b360\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8930-702a-ba17-d0591b6ecfac\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Az Alkmaar Win or Slovan Bratislava Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-6989-73a6-becb-5d220aeafa8a\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-74df-72c5-9ab2-852ce9806758\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4ba9-71cc-b341-3e548e838f9d\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Go Ahead Eagles Win or Aston Villa Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4395-70a0-9083-3c1f05cc7fe3\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-c197-7241-8729-ddfcd246c636\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4556-73e1-a692-2ed0ff5693bf\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6db8-704c-bf50-4f9fd48e19b9\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3408-70c9-84f9-678563c14a5b\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Strasbourg Win or Jagiellonia Bialystock Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3fd2-7312-98a7-e9c693f893fa\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 7.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4409-71a4-a51e-ce9e9c082c35\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Win or Panathinaikos Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7a1e-7368-822a-d0e60dfa4f64\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-73bb-7121-add6-879392a7ded3\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Win or PAOK Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-65b8-7116-a7b3-b0dcb4b2c053\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4139-715f-89d1-8a615a5548e6\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Win or Rangers Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-d558-705b-af2d-502d72148619\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-45ca-72da-8db8-bab5a1e23c0a\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Win or Stuttgart Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4065-70a3-b645-fdaf418b2f94\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Genk Win or Betis Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-40b8-730b-8a32-0fe1500db375\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-77f9-706d-9a19-75a616b6f200\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Shamrock Rovers Win or NK Celje Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-ed9f-702e-9bc3-20afb3b4bd24\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-624e-73fb-8bc1-4e7326a051fb\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-5b09-70b8-a5a9-ebe6a8748c2f\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Express Win or Kampala City Council Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-708b-7397-ba47-6b8eff3da63b\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-d0d4-7362-88a1-c71e54a92a9a\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-935c-7040-9bbc-d9bcea2c2751\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-692e-72b1-9375-b9ff1ff74784\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 7.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-858f-73d5-b345-796661fbf142\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-5e9c-727f-8501-cf1695a4820d\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.45,\n                \"numerator\": 9,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-836c-721b-9801-0e02c583a178\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.47,\n                \"numerator\": 40,\n                \"denominator\": 85\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3139-73db-8177-2eb3b1743cc8\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 8.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a0902-c74b-701e-bd61-4ac5a7ec3c3e\",\n            \"fixture_id\": \"9fa7a424-6f36-4dab-9a04-2ac697cc37c2\",\n            \"season_id\": \"9f2f553d-82c5-4809-ac63-4c1ef96117b2\",\n            \"competition_id\": \"9a94aa6b-ba67-44ab-b0f0-d4c8b539a179\",\n            \"competition\": \"AFC Champions League Two\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Persib Bandung\",\n            \"away_team\": \"Selangor FC\",\n            \"kick_off\": \"2025-10-23 13:15:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4da3-7327-9fd3-17a043f91467\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-f420-72a9-80c6-a470a172df38\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-499e-7370-bc2e-88b535de99ea\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-60da-7228-953d-887553ec65a4\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 8.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4183-73a2-accd-455b254588ac\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4afd-7383-9252-0b46ce2d2cf1\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-53c1-72c6-b2be-d4ac2f3d61dd\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4644-71b5-985a-5e3fd24c9ba5\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3d98-732d-ba8f-3e6339a1ac2d\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4c18-71ce-a595-f5837545d48c\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-70c2-720d-bb94-bb5b55638592\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-79de-7017-8ce6-d2f74b35c7da\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 9.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-8505-7215-b4b0-5d48dc38b409\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3c38-71b5-80ca-82823a96ec05\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 9.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5f9e-708e-b00c-31d45e2ac532\",\n            \"fixture_id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lincoln Red Imps\",\n            \"away_team\": \"Lech Poznan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 2.15,\n                \"numerator\": 23,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-6d53-7156-88d4-4a7cbb91ff3f\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 2.15,\n                \"numerator\": 23,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6e68-7296-a0c9-e9fcc85e1d2a\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 2.15,\n                \"numerator\": 23,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3375-7197-bc7f-0bd1201598db\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 70,\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-cf60-702e-bbe5-ec146fdd1bac\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Utrecht Over 0.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6192-73cf-8a95-fb38ea66b7b5\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 18\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6759-7309-bd01-317054beff2a\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 16\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-c749-73b5-9205-968714242939\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Malmo Over 0.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4ace-71b0-b191-61e292697440\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"AEK Athens Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-771c-70a3-8c7d-788709bf3326\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-68f9-72c0-9b7f-e44e612f8545\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-88b9-73e2-9ef8-9376b1282797\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celta Vigo Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-51b0-72a4-80ad-3c1776ba75bc\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aston Villa Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-d550-716c-a932-d896360aa991\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-776f-7030-9e59-aa30134d192e\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-41fe-7319-9e0c-a3f217f43424\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Strasbourg Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-734e-72ff-b060-ada73696a1a0\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-c7da-731d-b0f9-b031ac4550d2\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-666e-7114-9308-715d08b35fe9\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-394f-7354-a815-03858391681c\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3328-716a-b871-47c88f9a3820\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Stuttgart Over 2.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-397d-7389-a3a6-d89eb7432042\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aston Villa Over 3.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-d6f0-7198-990c-3de3570694ed\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"FCSB Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-77e5-72e9-9834-834a3abc8a8a\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Win or FC Utrecht Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-77ad-73e6-b4bb-779133e72de8\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Samsunspor Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7528-700a-8967-dae8d1be53e7\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Uni Craiova Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-915b-711d-8c73-85a58fefb7f9\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8927-70d1-9288-9eb74093b5bf\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7c3a-7084-9d48-dc36cebc4edc\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Universitatea Craiova Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7006-73f0-9637-624a5edac3ee\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Hamrun Spartans FC Win or Lausanne Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3fbb-71fe-82d9-39bfd6029fd5\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Bologna Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3049-709d-ab1c-3fae30f9c263\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3c25-72db-9a25-8d13d364b1ea\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Rayo Vallecano Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6648-711d-94ed-87b9065372b0\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a09c2-6aae-7262-a3f1-2756eec72a4c\",\n            \"fixture_id\": \"0199193f-58ad-7059-acdb-8a252e86ac7a\",\n            \"season_id\": \"9e4ad19c-162e-4f94-bcfa-e73176fd99ed\",\n            \"competition_id\": \"9a94aa6a-a81a-4261-816c-fef112d0e366\",\n            \"competition\": \"Lithuanian A Lyga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Suduva Marijampole\",\n            \"away_team\": \"Dainava Alytus\",\n            \"kick_off\": \"2025-10-23 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-ee2f-71da-b62d-739f8b8cae0a\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4495-7049-afb8-fff2b4bbcbc6\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shakhtar Win or Legia Warsaw Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7ce0-70eb-9490-9b64952bdd09\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Universitatea Craiova Win or FC Noah Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-701a-7146-a20b-e141768a29d7\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Crystal Palace Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-34e6-73c7-97d4-f17444e536e6\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"AEK Athens Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4887-732a-b51b-5b6794639c20\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Breidablik Win or KuPS Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5130-7057-ac1f-efa01a0bce5a\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Red Bull Salzburg Win or Ferencvaros Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-63ae-7297-ae3e-e3d3bbc00a3f\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celta Vigo Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7a90-725e-9c2c-dfe289d44945\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-91cf-730d-b7da-c4ad1061ecc5\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Win or Ludogorets Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-176b-71d5-b0c8-99c6550797c4\",\n            \"fixture_id\": \"0199c468-d3c1-7090-b85d-88bf7da05e39\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Xorazm Urganch\",\n            \"away_team\": \"Pakhtakor\",\n            \"kick_off\": \"2025-10-23 14:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-415f-71ad-a33a-41a45aeed130\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Over 7.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-50ba-71d9-aafe-954255eb5969\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Red Bull Salzburg Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-74c1-7384-883d-ecbb5ac45cde\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 7.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-404a-706a-b4cb-7e611c216e81\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-8f86-727e-ada5-b0df2e568e5b\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Basel Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7b90-7071-a1af-e691ab675427\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Exeter Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6551-716c-9ced-9568ea55d65c\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-38b5-7144-b574-f5657885fba3\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rangers Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-490e-73e7-a01a-a11448b890b6\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Panathinaikos Over 2.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6652-70f0-a29c-2ae09d744519\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-70db-7310-9f8b-cb867ea217d5\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nice Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-e914-719b-a314-50339b37f643\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6ad2-73be-a420-7c065632af13\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nottm Forest Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6d26-7213-ba86-0c5110233583\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or Dinamo Zagreb Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-7a0e-73a8-a9f1-e52b979f844c\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rangers Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-88ae-711c-a69e-1e7e41fa8c2b\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Universidad de Chile Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-69f2-7253-862e-91d6a9acc1ec\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Olomouc Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8f17-7126-be4b-1979c9fbef3e\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7cfc-7033-aef9-92f141c754d0\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or Plymouth Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-6187-73cf-89d9-cb6b59a9be9c\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Kampala Capital City Authority FC Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4f5f-7208-ad1a-464bf822b4cf\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aston Villa Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-33d2-7284-a254-7aa7ea05e46c\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-344d-736d-acc5-6b7d6fa03445\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Al-Fayha Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-66b6-739a-a9e1-70c2cf585533\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"NK Celje Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6a50-72f4-8839-71bc997d0466\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Porto Over 3.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5454-71b7-9a75-e8cbcd20c41d\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aston Villa Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-31c0-7060-9483-1a9a4aeea6da\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aston Villa Over 4.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2bc1-70c5-8aa8-7020c7abba78\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Draw or Al-Kholood Club Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7a3a-73a2-aeaa-9144c21b9081\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Shamrock Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-f14c-7364-895f-1b51b3cc83d3\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Ludogorets Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-35d0-7318-ad6f-5f0423a0bda9\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 8.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-e018-7124-b4e3-dddfddac4957\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Bologna Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-69b5-70eb-9fab-4c283e28c697\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"PAOK Over 2.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3f45-7083-8dcc-d0598a147057\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Strasbourg Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-d2ea-731a-81fd-302e769ef016\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nottm Forest Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-c251-721f-82c6-d4300382bea1\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3571-70af-87bd-dd8a61d51cca\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Stuttgart Over 3.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-31f0-7226-90a8-a889f0991d16\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"HB Koege Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-889d-71c5-a9e4-49bde35afa1c\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Real Betis Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-40a9-7121-bb4c-f16a96585996\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shkendija Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0902-c8b9-7300-9631-e612e8472aa3\",\n            \"fixture_id\": \"9fa7a424-6f36-4dab-9a04-2ac697cc37c2\",\n            \"season_id\": \"9f2f553d-82c5-4809-ac63-4c1ef96117b2\",\n            \"competition_id\": \"9a94aa6b-ba67-44ab-b0f0-d4c8b539a179\",\n            \"competition\": \"AFC Champions League Two\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Persib Bandung\",\n            \"away_team\": \"Selangor FC\",\n            \"kick_off\": \"2025-10-23 13:15:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.45,\n                \"numerator\": 9,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-51e7-730e-ae60-1d7790e3c2d8\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-30a3-73d7-aa02-2b759bbc8572\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 8.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-748c-70a2-948f-a1957b73932d\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Noah Yerevan Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-644e-7013-a171-2676f9a35790\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4486-712d-b4af-e0bc9a7cf744\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Strasbourg Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8cd8-7056-8dc1-6bd824c30b1e\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Ludogorets Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3297-7201-acd2-7419387bceea\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Bologna Over 4.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-705b-722f-9f4e-78bbba248473\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Spartans Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-dc26-711e-9641-151586cdc7f4\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-64fa-7141-a75e-422a6cf57409\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celta Vigo Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-46b1-7068-9f75-119972f0deb3\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6cdc-7345-a530-2309453b45df\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Malmo FF Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-e3ff-7263-9a3a-62cda353b531\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-bdc6-72ed-8473-79d2fcab8ab4\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6ae4-7001-88ad-6a1c7349cf6a\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Utrecht Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-f534-71be-8efd-0f7c600241a6\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Salzburg Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-8c06-71e0-8288-59f38a556e14\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3ca2-713f-95b6-2987102fc622\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Betis Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-846e-7373-ab3d-7686890ad135\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6b4a-72ed-8b2c-c6ebd2372435\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4f25-70bf-989c-9ceb36ec0157\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Bologna Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.65,\n                \"numerator\": 13,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3fed-7122-9496-3c2606c0b968\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Genk Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2d55-70ea-97e7-e6e422fe8d01\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Hvidovre Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6b93-7104-bc93-19b302e33f20\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Dinamo Zagreb Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-eb97-7053-82f6-a407cc125059\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-34c1-703b-831f-bc2b3378d1ae\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Hvidovre Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5118-7192-a6f7-3eb4125d2cbb\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a0902-c6a3-73cf-9b58-31d5ddfe023d\",\n            \"fixture_id\": \"9fa7a424-6f36-4dab-9a04-2ac697cc37c2\",\n            \"season_id\": \"9f2f553d-82c5-4809-ac63-4c1ef96117b2\",\n            \"competition_id\": \"9a94aa6b-ba67-44ab-b0f0-d4c8b539a179\",\n            \"competition\": \"AFC Champions League Two\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Persib Bandung\",\n            \"away_team\": \"Selangor FC\",\n            \"kick_off\": \"2025-10-23 13:15:00\",\n            \"selection_name\": \"Persib Bandung Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.7,\n                \"numerator\": 7,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3b72-708a-bfad-03888b315c5b\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-38c2-71e7-af5e-0427b7cc7447\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"GA Eagles Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2739-7260-ae67-9883ea8829a6\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Al-Kholood Club Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4d46-72bd-8eb6-e7490636193b\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Genk Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-69b4-7284-967f-3db392c16df8\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6fba-70ee-b75c-991f05e0daa8\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Utrecht Over 3.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-67f1-723f-bd76-297017accbe6\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nottm Forest Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-783c-739f-8f3d-8a896fc55fdc\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3781-73e0-b426-1e4362e551ab\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 9.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-33b7-7146-8bc3-093bab995eb6\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Omonia Nicosia Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8ea1-731b-a059-6c1e446dcb45\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-66ac-737c-a22d-3a42dabe6c6f\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4777-733b-b689-f4347a9005b2\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Panathinaikos Over 3.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5155-70e2-8c1a-8b576755d039\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 9.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8045-72e5-aef4-f2e773323b28\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-e5a4-7201-b69e-e39b96d7955b\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-674e-70a0-9410-50b2232d02ec\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Plzen Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4c47-7241-8ef1-e7cbc08383de\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Salzburg Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-776f-70c8-8c3a-47c2235d5c90\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Shamrock Rovers Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-61a8-71b2-802a-c3c7841d545c\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Porto Over 4.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8b01-73a1-9f0a-7abd9448ab34\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7888-705a-83b4-18a73e9272a6\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-898f-7277-b0ef-3b81491c42ac\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3155-7338-8ad3-7c5836bb569c\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Stuttgart Over 4.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3527-722a-9e15-1cb873d40ab1\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-406f-72f1-b960-00f5cd6da023\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-664d-7166-8fd1-506df9a229f3\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-75d1-7051-b258-a0da128c6bc1\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7d2e-7024-a460-23e4e3d8f7d7\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Uni Craiova Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-792d-7044-8e75-8f46aaa6bc68\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"NK Celje Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-d76d-73ef-b929-231b52f5f71a\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-77df-716c-8507-2697f25626a4\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Panathinaikos Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-c8af-7374-9aad-24841ee7164f\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-444b-70e8-bdeb-7fbb32183864\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Legia Warsaw Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-72e9-7013-ad8f-b5176e2b714e\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Samsunspor Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5c44-72d0-b5a4-d4ba67114f63\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3bfb-72e1-a826-aa7da56e374c\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Hacken Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3ff4-732e-8448-9ebb6b624a11\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shkendija Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.05,\n                \"numerator\": 21,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-6025-736d-882d-53795df4c759\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-48cd-7004-914b-e05dab246735\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4127-738e-9fe8-7b74cc593b5a\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Betis Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-39f8-704e-946c-3f9a01a85ebb\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Stuttgart Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-90d5-7367-9dd7-218ec1dd588e\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-d671-730c-8caf-8f1400055558\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Porto Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2974-71d4-ab27-b4557371a114\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Al-Kholood Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4d7a-7206-b4a1-a36498c156a8\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 10.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-385d-72f6-85f7-5889c0fdbe12\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 10.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-41f5-7358-9998-3215824f9fef\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"FCSB Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4888-707e-84e3-234ffcd35487\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Genk Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-74b8-71c9-a64d-fb65188a96b0\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-722f-717b-b52b-b33523415b01\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Dinamo Zagreb Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-1cdd-71fd-8439-27dcd8f2c76d\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Al-Kholood Club Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-1ebc-73cb-8c0b-8abc629f5d69\",\n            \"fixture_id\": \"0199c468-d073-70c4-8c92-c99236e8ee5b\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Buxoro\",\n            \"away_team\": \"Sogdiana\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"selection_name\": \"Sogdiana Jizak Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.45,\n                \"numerator\": 29,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6f11-7381-b37e-51ac37362765\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Dinamo Zagreb Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-40fa-726b-8bf7-29c0827e7f20\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.55,\n                \"numerator\": 31,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6596-719e-85c4-3f74ce316d69\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 10.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.55,\n                \"numerator\": 31,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4ba2-7258-ad3b-849e70b9f9bf\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"GA Eagles Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.55,\n                \"numerator\": 31,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5e3d-7182-933b-cbefe18074af\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sturm Graz Over 4.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.6,\n                \"numerator\": 8,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4084-71cd-8888-782cb8e0e1d4\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Strasbourg Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3217-73f9-884d-6172203c2994\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Panathinaikos Over 4.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-33e9-7359-b74e-cbbee3c59b3e\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Al-Taawoun Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5df1-7180-9ac3-70d16927f507\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Utrecht Over 4.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3c29-7370-9e51-0f91783dbb39\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6fe5-7343-9a91-f1db07f91cc9\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Porto Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-39af-728d-9f5e-0a39e096b3d1\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 10.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-ce50-725c-ad45-7e4a50c8a34b\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Over 2.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4b12-70bf-9f88-7ad8c3acbfa5\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Go Ahead Eagles Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6aeb-73bd-8bcf-36695bc09c50\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Malmo Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-5b4f-737c-ba4f-6b426bcebc12\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Express Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-67a3-7019-9a41-40f17619485f\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or Plzen Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-1d8f-7113-a7f8-7ba497b829ad\",\n            \"fixture_id\": \"0199c468-d073-70c4-8c92-c99236e8ee5b\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Buxoro\",\n            \"away_team\": \"Sogdiana\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4a10-718e-91dd-6204bbdcd236\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Basel Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-34e9-71f1-90a8-d305031eef19\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shelbourne Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-70d9-7148-b98a-0bc1a936c45b\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Dynamo Kyiv Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-699d-72c0-945e-73cf861131d4\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sturm Graz Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7a15-70c6-988d-bc12df2bec82\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Noah Yerevan Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6f8f-7230-b3a4-3f3c751e78e0\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-504b-7049-8adb-ab2d47a06509\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"GA Eagles Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-364a-702f-86dc-7e42fee0b85e\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Aberdeen Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-65e4-7228-946e-9e358daa278c\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3589-71db-beb4-d117bb052e23\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Jagiellonia Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a0902-c6f7-71b8-b819-f3ba1938651f\",\n            \"fixture_id\": \"9fa7a424-6f36-4dab-9a04-2ac697cc37c2\",\n            \"season_id\": \"9f2f553d-82c5-4809-ac63-4c1ef96117b2\",\n            \"competition_id\": \"9a94aa6b-ba67-44ab-b0f0-d4c8b539a179\",\n            \"competition\": \"AFC Champions League Two\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Persib Bandung\",\n            \"away_team\": \"Selangor FC\",\n            \"kick_off\": \"2025-10-23 13:15:00\",\n            \"selection_name\": \"Selangor FA Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 3.9,\n                \"numerator\": 29,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3c00-71f4-a1d9-76c83a4f40b2\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7a0d-7316-b28a-109be6f55913\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"PAOK Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 60,\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2850-7116-86c8-b67f24ab07f6\",\n            \"fixture_id\": \"0199193f-b5c2-7216-b833-ca8348a4eeca\",\n            \"season_id\": \"9e4ad19c-162e-4f94-bcfa-e73176fd99ed\",\n            \"competition_id\": \"9a94aa6a-a81a-4261-816c-fef112d0e366\",\n            \"competition\": \"Lithuanian A Lyga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hegelmann Kaunas\",\n            \"away_team\": \"Dziugas\",\n            \"kick_off\": \"2025-10-23 16:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6baa-723b-9185-c6638b74833d\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sigma Olomouc Win or Rakow Czestochowa Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3f43-7003-8b16-5566515cab0e\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rijeka Win or Sparta Prague Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-6e70-70c5-a321-434b097fd2dc\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-75a7-710f-bc55-f5b0dbeee098\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5f55-700a-8719-c23f77f4d5c3\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-7f82-7064-aa1e-39ac2d35816d\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6302-71af-a961-f6665adeb434\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4437-7129-8d1c-09ab7ab9d7e2\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3184-725c-af2b-45065a1bb52c\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Over 8.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-48e7-73f9-886b-f1022021b583\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.6,\n                \"numerator\": 6,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3ad1-73e1-87ea-5b2d99f2af52\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.6,\n                \"numerator\": 6,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-35fa-70a9-9709-5370c2bdf294\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3dac-71a9-b151-cbd91c4949af\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4b08-72f0-97d8-583cc251f8bf\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.65,\n                \"numerator\": 13,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8a9a-7374-93b3-4318db19cf71\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.65,\n                \"numerator\": 13,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3948-737c-b9bd-a437a14fe07e\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.65,\n                \"numerator\": 13,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-797d-73d0-ba5a-2f133130eea7\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-1c59-7048-864c-c82672c5519c\",\n            \"fixture_id\": \"0199c468-d073-70c4-8c92-c99236e8ee5b\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Buxoro\",\n            \"away_team\": \"Sogdiana\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3435-7194-8972-83376743b64e\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3336-70cd-908d-849dd7ceb1f9\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-420d-710e-91e3-b341fca0ff6d\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3d3a-73db-b764-4ff88d34c07c\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 9.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-48a4-713e-9c0d-9c48b7754c7c\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3526-7020-95cd-d78b0eb9e2fd\",\n            \"fixture_id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Strasbourg\",\n            \"away_team\": \"Jagiellonia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8072-704d-a95f-389ef5ed6776\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 9.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6954-7283-a0f2-c307ac71d3e1\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7834-7329-b82f-e79507feffa4\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3222-70b3-a6a1-892c2d567e35\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4e1f-71f7-b5d9-47993293ca8d\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3d14-7123-8627-07b696065c5f\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-8c06-71cc-bbb1-8a300d9db072\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-1992-7394-a152-8c39b0422394\",\n            \"fixture_id\": \"0199c468-d3c1-7090-b85d-88bf7da05e39\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Xorazm Urganch\",\n            \"away_team\": \"Pakhtakor\",\n            \"kick_off\": \"2025-10-23 14:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3bb5-70df-b5b7-9292eeb9564e\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a09c2-6a55-7139-9ce0-5bedc4496dc4\",\n            \"fixture_id\": \"0199193f-58ad-7059-acdb-8a252e86ac7a\",\n            \"season_id\": \"9e4ad19c-162e-4f94-bcfa-e73176fd99ed\",\n            \"competition_id\": \"9a94aa6a-a81a-4261-816c-fef112d0e366\",\n            \"competition\": \"Lithuanian A Lyga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Suduva Marijampole\",\n            \"away_team\": \"Dainava Alytus\",\n            \"kick_off\": \"2025-10-23 17:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 2.05,\n                \"numerator\": 21,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7768-71d3-b740-5a971f9b634b\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4b3e-72b9-afd3-dd155608c8fe\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 10.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7d29-7191-a241-f9e40571ed00\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4dc4-7388-a0f9-f85093b8f1db\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 10.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8dad-70da-84f1-fb4be7138b59\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-692d-72ab-87ee-b8aba8ed6781\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-61af-72e7-9943-6ef575e3cebe\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4dab-72c3-825f-fe37e0833cb1\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 50,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7353-7122-b0b6-a47d58393379\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Crystal Palace Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 66\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5dc3-70a4-b80b-4a17cc542d31\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Al Ahli Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.03,\n                \"numerator\": 1,\n                \"denominator\": 33\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-63af-701a-ac59-eb2b6a487664\",\n            \"fixture_id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lincoln Red Imps\",\n            \"away_team\": \"Lech Poznan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lech Poznan Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-60bf-7186-ba39-fc331bd8425b\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Mainz Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-66f2-7274-b88d-cf77872c5a9b\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celtic Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7b22-7255-8f86-d3429cae398d\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Az Alkmaar Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-516d-706b-97c6-9d92f3c4f44a\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Salzburg Over 2.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6ec6-7011-8f74-e46d3417e9dc\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celtic Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4424-73e2-96d3-6645159e74be\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-79ad-70dd-971d-4ab40411d141\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6cf4-73ac-a868-a98b7d0c5d16\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-82a2-7101-bba0-59cdceda0014\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Crystal Palace Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.15,\n                \"numerator\": 2,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5bdf-734b-bced-326474ef23df\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Al Ahli Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6290-721c-87fd-6ea6ff32655d\",\n            \"fixture_id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lincoln Red Imps\",\n            \"away_team\": \"Lech Poznan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lech Poznan Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-45d2-7169-ad05-d3209eb3c1c2\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-79e9-7111-abde-2837ad2e1e39\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7173-7145-8ce7-da533a459d27\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5611-71da-93c5-265a5ee6af06\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Al Ahli Saudi Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6205-7326-8c54-205e8695f818\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celta Vigo Win or Nice Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7a62-7343-8212-de67c763dd9e\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Az Alkmaar Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-c0d5-731f-bd2d-72084f9d9d91\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Utrecht Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-50c1-7295-ad91-660e5a3bae7d\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Salzburg Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7570-72b1-95d9-dde7a9d501ea\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Mainz Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-dff1-70e2-a4bb-04a7b8d368f6\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"PAOK Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3a61-70b3-a9a5-aa648f68e0b9\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rayo Vallecano Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6bb8-724d-b990-e6a35d625eb6\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Malmo Over 3.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-32d0-711e-8ed3-c239786da116\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shakhtar Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7b8d-717d-843d-4cb65c45ac13\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Universitatea Craiova Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-74be-73fb-adee-7e4fb2c4f05d\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Samsunspor Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-62de-7003-8c0e-1036230d31a6\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-d3bc-731c-8cdd-dfa392531d28\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2611-7060-92df-7bd19365c0fa\",\n            \"fixture_id\": \"0199193f-b5c2-7216-b833-ca8348a4eeca\",\n            \"season_id\": \"9e4ad19c-162e-4f94-bcfa-e73176fd99ed\",\n            \"competition_id\": \"9a94aa6a-a81a-4261-816c-fef112d0e366\",\n            \"competition\": \"Lithuanian A Lyga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hegelmann Kaunas\",\n            \"away_team\": \"Dziugas\",\n            \"kick_off\": \"2025-10-23 16:30:00\",\n            \"selection_name\": \"Hegelmann Litauen Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-68bc-72c0-8f1d-5fa97c1ad347\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celtic Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.47,\n                \"numerator\": 40,\n                \"denominator\": 85\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-760b-7294-9ece-42d7bc324230\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.47,\n                \"numerator\": 40,\n                \"denominator\": 85\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-64f0-7199-95e0-a46096598eb8\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celtic Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-739e-71b9-b243-3aaf37781903\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4cb8-73aa-9161-5d6776a660fc\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Red Bull Salzburg Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4d9a-706d-a0d2-8a428c538ae8\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-701d-724f-babd-a30411c6c11d\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celta Vigo Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5d5a-72eb-909a-cd39b8a45b2d\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 8.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3b6d-7297-91fa-a1e279bc67b7\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Sparta Prague Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-730e-70f1-9d3c-7c5006ef344a\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lausanne-Sport Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7ccb-72b1-b960-28f742aade27\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Exeter Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-67b1-713a-b7d4-dbcb8672abbf\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8852-73ef-abe2-2202abf88114\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Plymouth Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5c25-73f2-b93b-94b8872dd353\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 8.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3959-72a5-b5b9-7a8467218ca4\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rapid Vienna Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-473c-7220-b06f-63321dc25319\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3897-71f9-b28b-decfcc4dc7a5\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rayo Vallecano Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6912-7135-8a28-7e09cd216157\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Malmo Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-91b7-720c-b88e-b10429b077ed\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Universidad de Chile Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-d5d3-7076-88f1-308438453aac\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"FCSB Over 2.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-796d-72ca-a2a3-0423ba631e18\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lille Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-67de-72d3-816d-42796a8274f4\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Rakow Czestochowa Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-456b-735e-8d8c-d727481f795d\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8afc-71b3-9cf3-aee3f76db39d\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7241-701f-a4e4-02dd40358b4a\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Universitatea Craiova Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-46d1-7351-92ee-cd64c3c2cad5\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shakhtar Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6c83-71b2-a6db-04193dbb79a4\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7679-72ce-9976-39bc9872b5ec\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-71d8-735e-8346-6551de7057ad\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-333d-712e-881e-ebe6ffd4b0c2\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rayo Vallecano Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-e047-7076-a83b-73b597ded2d4\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aston Villa Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3ace-70e0-a7cb-61834c6e644c\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aberdeen Over 0.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-46bf-7151-b6e9-42a02bf3ba12\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Over 9.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5ec2-7351-a131-b52b2f2083c5\",\n            \"fixture_id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lincoln Red Imps\",\n            \"away_team\": \"Lech Poznan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7b07-71e5-85bc-b0e9bf7b0a9d\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-756c-716d-992f-c0459768ba00\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 9.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-78a5-7292-a566-03ff1c2f7c84\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Samsunspor Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-c736-71aa-87d4-30c4c62252e0\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"PAOK Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6b6f-70de-bb05-815510670efa\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"PAOK Over 3.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-8760-727a-9ee3-4ade8be47f21\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-27dd-70a6-ba27-fc010627c689\",\n            \"fixture_id\": \"0199193f-b5c2-7216-b833-ca8348a4eeca\",\n            \"season_id\": \"9e4ad19c-162e-4f94-bcfa-e73176fd99ed\",\n            \"competition_id\": \"9a94aa6a-a81a-4261-816c-fef112d0e366\",\n            \"competition\": \"Lithuanian A Lyga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hegelmann Kaunas\",\n            \"away_team\": \"Dziugas\",\n            \"kick_off\": \"2025-10-23 16:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-7c9c-71ba-a6c4-7cc47b96b3cf\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rangers Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6821-72b3-91f6-864bd1f2357c\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 9.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2798-72c0-9d5e-f6d511eb1e45\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Al-Feiha Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4a5f-7301-bfe7-855196656d62\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Red Bull Salzburg Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-716e-7265-9659-69a420184e8a\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nice Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8a3d-72d3-b5a7-a87b5c17b62d\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Plymouth Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2e4d-7142-9e95-48d5ac1eb198\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Draw or HB Koge Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-621a-73de-987f-942b71a632f3\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Mainz Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6b59-7189-9791-d79f3b779d75\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Malmo FF Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-745a-7234-a397-8c3dd66df0c1\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.15,\n                \"numerator\": 23,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2eee-71d3-86e6-8a95229aa2fe\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.15,\n                \"numerator\": 23,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-515c-72dc-a8d4-4ab570a3ab7c\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Sparta Prague Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-f5d7-737b-98fa-0fb17489c2c6\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3c60-7182-a36f-222cb652798e\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Genk Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-ee9e-7008-a5b8-cc7198d80879\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Ferencvarosi Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4dd4-7339-8c98-c88a1bde5373\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Sparta Prague Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-5bd2-7054-b1e9-39fcc4154f65\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Kampala City Council Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7425-73e6-83bb-82de357c9995\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8625-714b-acdf-4bec0ab02ce3\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Plymouth Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-6991-7123-961e-584b3294cc7d\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sturm Graz Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-847b-7301-903a-46adb3028ff8\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Real Betis Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-d771-704b-ae01-1986f06d32b9\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Dinamo Zagreb Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-d43b-722b-ad8b-2a49d89ffb86\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nottm Forest Over 2.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3869-71e9-9588-e98056c17c6c\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6bee-7316-b3dd-dafce2ab7942\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 10.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4ce0-73c6-b0d5-af88662799de\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Ferencvaros Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5fc7-73be-8f38-5fde4de6f01a\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.45,\n                \"numerator\": 29,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6a79-712f-b5fc-1c2c2203ab70\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Czestochowa Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-61fb-7247-9783-eaea95eb579f\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Rakow Czestochowa Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.55,\n                \"numerator\": 31,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-47d4-7364-9204-fc0a41e3a8c4\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.55,\n                \"numerator\": 31,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4428-7176-a630-cb6beb2a20db\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.55,\n                \"numerator\": 31,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8bdc-722a-9ab2-e0b75e8677ab\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Universidad de Chile Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.55,\n                \"numerator\": 31,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-77ab-73d5-a050-3b3a6367f80a\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw or FC Utrecht Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3e1f-73b0-abd6-f2f7899e1ebf\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rangers Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-1cfd-73e3-8bb3-88f894763b23\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Al-Riyadh Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4f11-7001-b2c6-09f2f98e7a24\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4106-723e-91ac-21aade0cab5f\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-d68b-73ee-8233-414bc44d3ec5\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Fenerbahce Over 2.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-64fd-70f6-bf15-325241f62d9f\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Olomouc Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-62c5-719c-8131-b9ea8752e266\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Kampala Capital City Authority FC Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-368b-7135-bba0-672c158eb716\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Basel Over 4.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-666b-71b2-88d3-75899b828588\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Shamrock Rovers Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-6d7b-7383-80c4-31ffaee0eb66\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celta Vigo Over 2.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-6608-73e1-a733-1e9e2d4ee9c4\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-96cc-7155-9a4a-398e89c298b1\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Over 2.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-42a1-723c-8656-001740007ee9\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-68a0-71d1-bee3-046147e180b9\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Freiburg Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-659b-7151-bc7a-21d8c89cffc9\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 10.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7bd7-73dd-a742-587b9a916724\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"FC Noah Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-9135-70c4-b6da-bc5666a148e7\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"U de Chile Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3c4d-7018-af7b-e725161aae07\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rijeka Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-76e1-73ce-ba54-3120c065724c\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Shamrock Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-39fc-70ff-987f-76899072dd28\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Hacken Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-329d-700e-83e2-6517142dcb4b\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Al-Feiha Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3ced-710b-a80e-96ec9e187c7a\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Hacken Gothenburg Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-40ac-737b-a2fd-34756cdbf161\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Genk Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3a6b-72fb-bc3f-2d22c2ce39fd\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 11.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-f3db-72e1-a85f-d39b6a248a5a\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Salzburg Over 2.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-717a-7384-b533-027b74470c19\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Malmo FF Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-8a5f-7109-a51f-176a085b8ef8\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Brann Over 2.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3a88-70dc-8f7c-f78b270beba4\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 11.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6816-72b6-893e-23d1843fc477\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nice Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2765-72b7-865d-8804671ebb1c\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Al-Fayha Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4ad2-7385-a0a5-1fd58d5ee8d8\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Ferencvaros Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-25ea-73ae-b10a-b89d38768126\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-66e2-72e2-a03b-27da17c194f5\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nice Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-423f-7156-9422-17654149a1fe\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Omonia Nicosia Over 2.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-427e-73c0-94cd-b34fcea05d1c\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Panathinaikos Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6eab-72a9-adae-77e31c6e7f86\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Spartans Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-87af-7303-9d62-f1c450b7de69\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 11.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-41a4-7287-8d7f-8ff4f5a4d906\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8d50-71a7-b544-a3be675c8156\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8082-7026-a355-659f5f59d722\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-78bd-72fd-bdfd-d0557ef8ff77\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Shamrock Rovers Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4a8b-71de-aa15-dd0232ce31e1\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.8,\n                \"numerator\": 14,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-471c-722c-a0ad-8854c67f24fe\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.8,\n                \"numerator\": 14,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3eed-739f-b8b6-70a47bdcbbdc\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 11.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.8,\n                \"numerator\": 14,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7292-73b5-95ac-b047202191be\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.8,\n                \"numerator\": 14,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-f19d-72dd-be3e-fdeb9e4708a6\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aston Villa Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.9,\n                \"numerator\": 29,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-757b-7365-91de-6fa1d54e3cf5\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Roma Over 2.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 3.9,\n                \"numerator\": 29,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-63c3-73c7-8fb2-4223dbbd82f4\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 11.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2649-737d-acc3-4ad6866bcc14\",\n            \"fixture_id\": \"0199193f-b5c2-7216-b833-ca8348a4eeca\",\n            \"season_id\": \"9e4ad19c-162e-4f94-bcfa-e73176fd99ed\",\n            \"competition_id\": \"9a94aa6a-a81a-4261-816c-fef112d0e366\",\n            \"competition\": \"Lithuanian A Lyga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hegelmann Kaunas\",\n            \"away_team\": \"Dziugas\",\n            \"kick_off\": \"2025-10-23 16:30:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3f77-7333-84e4-bbfac5cfbb16\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"FCSB Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 40,\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-dce8-71bf-9e8c-b8cfd1b7a01b\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6bce-72e2-8cc5-e7ceb217e0b5\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6be1-71b1-8360-0b2330f91359\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7493-728e-ba6b-9577c19654a7\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6d99-72d4-ae5a-eca577c6d152\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 1.65,\n                \"numerator\": 13,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-762c-702e-b25c-eb10aee1d7af\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a09c2-6c18-71cd-8619-fafe9ffc27ea\",\n            \"fixture_id\": \"0199193f-58ad-7059-acdb-8a252e86ac7a\",\n            \"season_id\": \"9e4ad19c-162e-4f94-bcfa-e73176fd99ed\",\n            \"competition_id\": \"9a94aa6a-a81a-4261-816c-fef112d0e366\",\n            \"competition\": \"Lithuanian A Lyga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Suduva Marijampole\",\n            \"away_team\": \"Dainava Alytus\",\n            \"kick_off\": \"2025-10-23 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-623e-7133-9786-8c3c2c907e4c\",\n            \"fixture_id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Roma\",\n            \"away_team\": \"Plzen\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-d2bc-719f-a73d-90acb5d0d4e4\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-cd45-72b4-8720-3a9cb23111e1\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-1828-7349-8331-b2f65f3ba2cf\",\n            \"fixture_id\": \"0199c468-d3c1-7090-b85d-88bf7da05e39\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Xorazm Urganch\",\n            \"away_team\": \"Pakhtakor\",\n            \"kick_off\": \"2025-10-23 14:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.05,\n                \"numerator\": 21,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a0c71-8b8a-7220-948f-77c6d5d367b0\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-558b-732f-af63-8e7bcb20ddc0\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.15,\n                \"numerator\": 23,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-471b-7052-9fbd-5f543b4e81aa\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4495-71c7-885a-63690436ce9d\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Over 10.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-63e3-720f-955d-aaba94a00aea\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.55,\n                \"numerator\": 31,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7061-717f-a813-e4a87b0411f7\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 10.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.55,\n                \"numerator\": 31,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7157-72af-87bf-9f783ca238bb\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-352b-7280-a672-a959f06c3474\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-37ee-7238-992f-cbc140b56554\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-5b8b-71e8-a60f-c87731d601e4\",\n            \"fixture_id\": \"0199c9ea-ac44-714b-a887-7296f60aac12\",\n            \"season_id\": \"01993e5e-b5d7-7351-8403-5c38d3d2b6ef\",\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"competition\": \"Ugandan Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Express\",\n            \"away_team\": \"Kampala Capital City Authority FC\",\n            \"kick_off\": \"2025-10-23 18:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-49d6-70b2-89d5-e2eb176fae20\",\n            \"fixture_id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"KF Drita\",\n            \"away_team\": \"Omonia Nicosia\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-42d3-7316-87a3-1fff4ebff678\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-63d7-7395-b175-ecd3879d1153\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3ae3-7162-8b7a-090c6b115221\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 11.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-e0d5-7332-8aa3-7602cb4cbd51\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4d9c-72ef-9a3a-48e3de62394c\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8907-73ee-b8b2-b9d2a6c924f3\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-47eb-7193-8133-d68884af649d\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Over 11.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-77b7-7233-ae29-a78ba8ea5b22\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4d94-739c-9d6e-3b9ba77d6373\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3f12-707f-9f85-60b5f03abe87\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-71fc-7343-a967-5117c52e29a5\",\n            \"fixture_id\": \"0198fd91-4b3e-70b5-9b4a-b8489677510e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Freiburg\",\n            \"away_team\": \"Utrecht\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 11.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-38ab-7153-bcd0-240334a9869c\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-40f2-7371-a18b-70b5ca223f83\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.7,\n                \"numerator\": 27,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-78ef-70eb-bba1-378742524734\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.7,\n                \"numerator\": 27,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-1711-702c-ada0-f1c6a2e82459\",\n            \"fixture_id\": \"0199c468-d3c1-7090-b85d-88bf7da05e39\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Xorazm Urganch\",\n            \"away_team\": \"Pakhtakor\",\n            \"kick_off\": \"2025-10-23 14:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 3.8,\n                \"numerator\": 14,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6817-71a4-84f0-31c72fa935b4\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 30,\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7602-73c4-a554-079a15ec7a62\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Mainz Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7852-703e-bb4d-78075e13a928\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Mainz Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-73c4-70e1-87d0-e1a465fbfb39\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lausanne Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-76a7-7063-b793-7985bec6e473\",\n            \"fixture_id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mainz\",\n            \"away_team\": \"Zrinjski Mostar\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Mainz Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-d59e-7160-bf50-c3131d39770e\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Stuttgart Over 1.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6f33-7084-b8b6-8c64b73bb3c1\",\n            \"fixture_id\": \"0198fd91-2eef-73b9-ba7c-8ffeb65c5f78\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Samsunspor\",\n            \"away_team\": \"Dynamo Kyiv\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Samsunspor Win or Dynamo Kiev Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6f14-70bb-811e-d5cdcec8f2c8\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nottm Forest Over 0.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3992-7289-a4d1-8221caa3f22f\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw or Fiorentina Win\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4907-7290-995a-ecebc54fabdc\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"AEK Athens Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a09c2-6b56-702e-8852-94ec3d17cc8a\",\n            \"fixture_id\": \"0199193f-58ad-7059-acdb-8a252e86ac7a\",\n            \"season_id\": \"9e4ad19c-162e-4f94-bcfa-e73176fd99ed\",\n            \"competition_id\": \"9a94aa6a-a81a-4261-816c-fef112d0e366\",\n            \"competition\": \"Lithuanian A Lyga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Suduva Marijampole\",\n            \"away_team\": \"Dainava Alytus\",\n            \"kick_off\": \"2025-10-23 17:00:00\",\n            \"selection_name\": \"FK Suduva Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7258-71b5-aa19-0708ba6a63d6\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Nottm Forest Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-da1c-7050-9591-a9f5dd145079\",\n            \"fixture_id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Malmo\",\n            \"away_team\": \"Dinamo Zagreb\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Malmo Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2b87-7301-967e-6332571ee306\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Al Riyadh SC Win or Draw\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4868-715b-b39f-bdee120fad51\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4aa2-72ea-b0d6-d42ed714564c\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Lyon Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7762-71be-8dbf-e17759aa9f48\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lausanne Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-e32c-722f-9f3b-c0b42d4bfbb9\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"GA Eagles Over 1.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4b28-7177-8e1a-37c39166b3db\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Breidablik Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4cd3-707b-9bd0-e6506df7441a\",\n            \"fixture_id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Salzburg\",\n            \"away_team\": \"Ferencvarosi\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Salzburg Over 4.5 Corners\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-416f-7127-896e-99d00b3a33f3\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shakhtar Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-f0b2-71af-af10-ed8292fa8abd\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Young Boys Over 2.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-45fd-71ce-9eee-0f6f064981bb\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Breidablik Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5689-7399-a959-dbdc99e5f9e1\",\n            \"fixture_id\": \"0199f9c7-41db-7116-83ad-0390ae0a888f\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Najma\",\n            \"away_team\": \"Al Ahli Saudi\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"selection_name\": \"Al Ahli Saudi Over 2.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-78a8-71be-a43f-37bd77c2154d\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-765a-72e0-a4b3-d484e68365b3\",\n            \"fixture_id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Crystal Palace\",\n            \"away_team\": \"Larnaca\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Crystal Palace Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2760-71cd-ba08-649ba0f176a3\",\n            \"fixture_id\": \"0199193f-b5c2-7216-b833-ca8348a4eeca\",\n            \"season_id\": \"9e4ad19c-162e-4f94-bcfa-e73176fd99ed\",\n            \"competition_id\": \"9a94aa6a-a81a-4261-816c-fef112d0e366\",\n            \"competition\": \"Lithuanian A Lyga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hegelmann Kaunas\",\n            \"away_team\": \"Dziugas\",\n            \"kick_off\": \"2025-10-23 16:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3b5e-72dc-8761-df5a8aa48372\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-679e-707d-af0d-fffff6186443\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sigma Olomouc Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a0bcd-6a5e-700f-9946-27e6cb2d1778\",\n            \"fixture_id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celta Vigo\",\n            \"away_team\": \"Nice\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 4.5 Cards\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2709-708a-b62c-97a5ce99d782\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Al Riyadh SC Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-65b3-7173-820f-caf0ca8d15bb\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.05,\n                \"numerator\": 21,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4150-73e0-b50a-89646ff10fac\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Breidablik Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-880d-7275-a732-b31f8eb7eef1\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Exeter Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7cd6-7308-8725-65fd60a9e8d4\",\n            \"fixture_id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alkmaar\",\n            \"away_team\": \"Slovan Bratislava\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Alkmaar Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-38aa-7019-a274-4f25da1470e4\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"AEK Athens Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3199-7020-91ab-c902fc7fd422\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shkendija Tetovo Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-52d9-7124-bc50-7578385a1f1d\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Aston Villa Over 2.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3b21-70e0-a025-7797f0b7ab63\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rijeka Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a0902-c70c-70cd-914c-9179a4f6c409\",\n            \"fixture_id\": \"9fa7a424-6f36-4dab-9a04-2ac697cc37c2\",\n            \"season_id\": \"9f2f553d-82c5-4809-ac63-4c1ef96117b2\",\n            \"competition_id\": \"9a94aa6b-ba67-44ab-b0f0-d4c8b539a179\",\n            \"competition\": \"AFC Champions League Two\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Persib Bandung\",\n            \"away_team\": \"Selangor FC\",\n            \"kick_off\": \"2025-10-23 13:15:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a0c8c-e1f7-7007-af5d-18628a53812a\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Bologna Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4fbd-7246-81d3-f2d362e1c4c7\",\n            \"fixture_id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"GA Eagles\",\n            \"away_team\": \"Aston Villa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-ed0a-7233-bdde-8178ce8e46fb\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Ludogorets Over 2.5 Cards\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-681a-715a-b4de-44e4451324c9\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3a53-703e-80a6-cbffccd7d9c4\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rapid Vienna Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-376f-72d3-adbe-8f7799eb321f\",\n            \"fixture_id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"AEK Athens\",\n            \"away_team\": \"Aberdeen\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.45,\n                \"numerator\": 29,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6782-7023-86d7-1ce4b85d174a\",\n            \"fixture_id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Celtic\",\n            \"away_team\": \"Sturm Graz\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Celtic Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3cb7-72a0-a318-1b4f3e955970\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rangers Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.55,\n                \"numerator\": 31,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-1dfa-72fd-89de-7e41370042cc\",\n            \"fixture_id\": \"0199c468-d073-70c4-8c92-c99236e8ee5b\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Buxoro\",\n            \"away_team\": \"Sogdiana\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"selection_name\": \"Buxoro FK Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-485d-73dc-819e-0e8740e3c16f\",\n            \"fixture_id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Fenerbahce\",\n            \"away_team\": \"Stuttgart\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-500e-71fd-b28a-15cbaa08a47e\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"SK Rapid Over 1.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6e31-728c-9f19-393d2d83c56b\",\n            \"fixture_id\": \"0198fd91-6f9c-735e-a5c5-108a7bdff312\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartans\",\n            \"away_team\": \"Lausanne-Sport\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Lausanne-Sport Over 2.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-1c7b-70b3-8add-8eb33103584e\",\n            \"fixture_id\": \"0199f9c7-2985-706c-9135-acd49f961933\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Riyadh\",\n            \"away_team\": \"Al-Kholood\",\n            \"kick_off\": \"2025-10-23 15:55:00\",\n            \"selection_name\": \"Al Riyadh SC Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-617b-738e-9e94-61a9f891f48d\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Sigma Olomouc Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3c7d-729d-bc2a-c91f7487685a\",\n            \"fixture_id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lyon\",\n            \"away_team\": \"Basel\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 11.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8c1f-716b-bd97-89f3faef488d\",\n            \"fixture_id\": \"019979bc-76d1-7098-b0aa-32e4ed5552f5\",\n            \"season_id\": \"9dc363fc-5cf0-442b-906e-fe2dc726af35\",\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"competition\": \"CONMEBOL Sudamericana\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"U de Chile\",\n            \"away_team\": \"Lanus\",\n            \"kick_off\": \"2025-10-23 23:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a0ca8-85cd-7145-b822-2a5a61c87a26\",\n            \"fixture_id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Feyenoord\",\n            \"away_team\": \"Panathinaikos\",\n            \"kick_off\": \"2025-10-23 15:30:00\",\n            \"selection_name\": \"Feyenoord Over 2.5 Cards\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 2.9,\n                \"numerator\": 19,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-32e8-7072-87d0-9be9b39fb369\",\n            \"fixture_id\": \"0199f9c7-29c1-7045-83d6-1c187ad6a801\",\n            \"season_id\": \"9fa018e9-166f-46e5-937f-98abb6c96298\",\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fayha\",\n            \"away_team\": \"Al-Taawoun\",\n            \"kick_off\": \"2025-10-23 16:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-85da-7022-aafc-0ab9f8a0b341\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Exeter Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a09de-1e70-70f2-bb7b-20238c2e5185\",\n            \"fixture_id\": \"0199c468-d073-70c4-8c92-c99236e8ee5b\",\n            \"season_id\": \"9e426777-a19c-4a63-ab79-a2df6dc93a61\",\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Buxoro\",\n            \"away_team\": \"Sogdiana\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8691-70b5-ac28-389ea09c8cb1\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-63ba-7399-b4a7-f0a87fc7a605\",\n            \"fixture_id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shamrock\",\n            \"away_team\": \"NK Celje\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a09c2-6d90-703e-b066-ba4e9a426013\",\n            \"fixture_id\": \"0199193f-58ad-7059-acdb-8a252e86ac7a\",\n            \"season_id\": \"9e4ad19c-162e-4f94-bcfa-e73176fd99ed\",\n            \"competition_id\": \"9a94aa6a-a81a-4261-816c-fef112d0e366\",\n            \"competition\": \"Lithuanian A Lyga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Suduva Marijampole\",\n            \"away_team\": \"Dainava Alytus\",\n            \"kick_off\": \"2025-10-23 17:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8f34-704e-8d13-44b60dd749f1\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Ludogorets Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3320-70ce-be28-4dbffc98fc3e\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Legia Warsaw Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-76c6-70bd-af39-92dcb8226755\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3059-706b-9e78-ecbd73316850\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Hvidovre Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2ee6-71f0-b92b-ceaf018e30da\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"HB Koege Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-6874-7062-aae1-ecc8321ca30d\",\n            \"fixture_id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nottm Forest\",\n            \"away_team\": \"Porto\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 11.5 Corners\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4d55-7296-b7c0-d6317f28390e\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rijeka Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-5cd9-71e6-a812-57d07e996896\",\n            \"fixture_id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lille\",\n            \"away_team\": \"PAOK\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"PAOK Over 4.5 Corners\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4027-71cd-a1ac-00aa78f85276\",\n            \"fixture_id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shkendija Tetovo\",\n            \"away_team\": \"Shelbourne\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3c58-72a8-8a53-bf71def918f5\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rapid Vienna Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-37f4-72d0-bb4d-f6efe012515b\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rayo Vallecano Over 2.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8a22-731f-b5a8-856f32009833\",\n            \"fixture_id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Young Boys\",\n            \"away_team\": \"Ludogorets\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Ludogorets Over 1.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3f80-7123-9b1b-1423a8dd8b40\",\n            \"fixture_id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Brann\",\n            \"away_team\": \"Rangers\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Rangers Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3366-7009-b1b6-4aaf4dc1199d\",\n            \"fixture_id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Shakhtar\",\n            \"away_team\": \"Legia Warszawa\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Shakhtar Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-8605-70eb-ac98-aecae2b6308d\",\n            \"fixture_id\": \"9f9bfd76-b039-4fa4-a8ec-6eb2e1cd9a2c\",\n            \"season_id\": \"9f410bdc-831c-44c8-84c1-fb1ca88d7c6e\",\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"competition\": \"English League One\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Exeter\",\n            \"away_team\": \"Plymouth\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3e5d-72f8-ab1e-29e3446dc358\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Bologna Over 2.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-3cb0-70c6-bf3c-aa65d1268f37\",\n            \"fixture_id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SK Rapid\",\n            \"away_team\": \"Fiorentina\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-2d85-7046-906e-575c2403cc9e\",\n            \"fixture_id\": \"0199306c-0b56-7054-8e38-152caa790856\",\n            \"season_id\": \"9f4136cc-2b24-40e2-b8b1-5cff7fa355bd\",\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hvidovre\",\n            \"away_team\": \"HB Koege\",\n            \"kick_off\": \"2025-10-23 17:30:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-63ab-73e2-87a6-d3260a059c32\",\n            \"fixture_id\": \"0198fd91-3551-722c-bccd-2cb4ca0be8dc\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Olomouc\",\n            \"away_team\": \"Czestochowa\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4f6c-70b2-a644-39717a4957d5\",\n            \"fixture_id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rijeka\",\n            \"away_team\": \"Sparta Prague\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4930-7350-8299-0d2bfaf139e8\",\n            \"fixture_id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Genk\",\n            \"away_team\": \"Real Betis\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Real Betis Over 2.5 Goals\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4aa2-7029-a632-421a27f25b68\",\n            \"fixture_id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Breidablik\",\n            \"away_team\": \"Kuopion Palloseura\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Breidablik Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-4ee3-739f-998d-3309f4ae1b8b\",\n            \"fixture_id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"season_id\": \"9f2d5228-aacc-4b92-9c1f-00565d80f67a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition\": \"UEFA Europa League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FCSB\",\n            \"away_team\": \"Bologna\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.8,\n                \"numerator\": 14,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-32f6-7008-b87b-20998bad76f6\",\n            \"fixture_id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Hacken Gothenburg\",\n            \"away_team\": \"Rayo Vallecano\",\n            \"kick_off\": \"2025-10-23 17:45:00\",\n            \"selection_name\": \"Draw\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 3.8,\n                \"numerator\": 14,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a079e-7847-701d-bd3e-6c2c0f8c9eaa\",\n            \"fixture_id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"season_id\": \"9f2d6ec4-415d-49b5-bea5-c95d9be93b6b\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition\": \"UEFA Conference League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Uni Craiova\",\n            \"away_team\": \"Noah Yerevan\",\n            \"kick_off\": \"2025-10-23 20:00:00\",\n            \"selection_name\": \"Uni Craiova Over 2.5 Goals\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"hit_rate\": 20,\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 875,\n        \"total_results\": 875,\n        \"timezone\": \"Europe/London\",\n        \"filtering\": {\n            \"day\": 0,\n            \"utc_dates\": [\n                \"2025-10-22\",\n                \"2025-10-23\"\n            ],\n            \"start_of_day_utc\": \"2025-10-22 23:00:00\",\n            \"end_of_day_utc\": \"2025-10-23 22:59:59\"\n        }\n    }\n}"}],"_postman_id":"e8dc33df-a767-41d5-bfd9-b1c2b7571f9a"},{"name":"bet-builder-fixtures","event":[{"listen":"test","script":{"id":"abb178fa-d677-4a31-8d75-6b9c768c5bde","exec":["// 1. Status Code Test","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Test","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","// 3. JSON Schema Validation Test","pm.test(\"Response matches expected schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"id\", \"competition_id\", \"competition_name\", \"competition_logo\", \"sport_radar_competition_id\", \"competition_coverage\", \"competition_tab_key\", \"kick_off\", \"country\", \"teams\"],","                    properties: {","                        id: { type: \"string\" },","                        competition_id: { type: \"string\" },","                        competition_name: { type: \"string\" },","                        competition_logo: { type: \"string\" },","                        sport_radar_competition_id: { type: \"string\" },","                        competition_coverage: {","                            type: \"object\",","                            properties: {","                                continental: { type: \"string\" }","                            }","                        },","                        competition_tab_key: { type: \"string\" },","                        kick_off: { type: \"string\" },","                        country: {","                            type: \"object\",","                            properties: {","                                name: { type: \"string\" },","                                flag: { type: [\"string\", \"null\"] }","                            }","                        },","                        teams: {","                            type: \"object\",","                            properties: {","                                home: {","                                    type: \"object\",","                                    properties: {","                                        id: { type: \"string\" },","                                        name: { type: \"string\" },","                                        badge: { type: \"string\" },","                                        abbreviation: { type: \"string\" }","                                    }","                                },","                                away: {","                                    type: \"object\",","                                    properties: {","                                        id: { type: \"string\" },","                                        name: { type: \"string\" },","                                        badge: { type: \"string\" },","                                        abbreviation: { type: \"string\" }","                                    }","                                }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"timezone\", \"filtering\"],","                properties: {","                    results: { type: \"integer\" },","                    timezone: { type: \"string\" },","                    filtering: {","                        type: \"object\",","                        properties: {","                            day: { type: \"integer\" },","                            utc_dates: {","                                type: \"array\",","                                items: { type: \"string\" }","                            },","                            start_of_day_utc: { type: \"string\" },","                            end_of_day_utc: { type: \"string\" }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"packages":{},"type":"text/javascript"}}],"id":"1ee543cb-6a3f-4c75-949f-3b65cdce4635","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/bet-builder-fixtures?day=0","description":"<h3 id=\"get-bet-builder-fixtures\">GET /bet-builder-fixtures</h3>\n<p>This endpoint retrieves bet builder fixtures for the specified day.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>/bet-builder-fixtures</code></p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li><code>day</code> (integer, required): Specifies the day for which fixtures are to be retrieved.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response is in JSON format and follows the schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"data\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"id\": {\"type\": \"string\"},\n          \"competition_id\": {\"type\": \"string\"},\n          \"competition_name\": {\"type\": \"string\"},\n          \"competition_logo\": {\"type\": \"string\"},\n          \"sport_radar_competition_id\": {\"type\": \"string\"},\n          \"competition_coverage\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"continental\": {\"type\": \"string\"}\n            }\n          },\n          \"competition_tab_key\": {\"type\": \"string\"},\n          \"kick_off\": {\"type\": \"string\"},\n          \"country\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"name\": {\"type\": \"string\"},\n              \"flag\": {\"type\": \"string\"}\n            }\n          },\n          \"teams\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"home\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              },\n              \"away\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              }\n            }\n          }\n        }\n      }\n    },\n    \"meta\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"results\": {\"type\": \"integer\"},\n        \"timezone\": {\"type\": \"string\"},\n        \"filtering\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"day\": {\"type\": \"integer\"},\n            \"utc_dates\": {\n              \"type\": \"array\",\n              \"items\": {\"type\": \"string\"}\n            },\n            \"start_of_day_utc\": {\"type\": \"string\"},\n            \"end_of_day_utc\": {\"type\": \"string\"}\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["bet-builder-fixtures"],"host":[""],"query":[{"key":"day","value":"0"}],"variable":[]}},"response":[{"id":"cea8fd23-123e-41ba-8ee7-fff47835e547","name":"bet-builder-fixtures","originalRequest":{"method":"GET","header":[],"url":{"raw":"/bet-builder-fixtures?day=0","host":[""],"path":["bet-builder-fixtures"],"query":[{"key":"day","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Thu, 23 Oct 2025 10:26:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"24205"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"a8403b25-ce1d-49af-9463-ae4f94aa0033"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S5ViGGj-DoEEgWQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fa02d9-205872a37aa0857b2626fe70;Parent=7d63e33e0a177b30;Sampled=0;Lineage=1:ba673fab:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c37e-206a-45a6-bcdc-3461ea3d71e0\",\n                    \"name\": \"Malmo\",\n                    \"badge\": \"sr-competitor-1892.png\",\n                    \"abbreviation\": \"MAL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9833-43fc-9f72-95dcaf01e5e5\",\n                    \"name\": \"Dinamo Zagreb\",\n                    \"badge\": \"sr-competitor-2032.png\",\n                    \"abbreviation\": \"DIN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c92a-08ed-4793-8537-29197bc6aed5\",\n                    \"name\": \"Brann\",\n                    \"badge\": \"sr-competitor-1159.png\",\n                    \"abbreviation\": \"SKB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e4ad-4e44-95dd-e5e31a7606f1\",\n                    \"name\": \"Rangers\",\n                    \"badge\": \"sr-competitor-2351.png\",\n                    \"abbreviation\": \"RFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace7-6c66-42e6-a3be-e64241cdf113\",\n                    \"name\": \"Shkendija Tetovo\",\n                    \"badge\": \"sr-competitor-5413.png\",\n                    \"abbreviation\": \"SHK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c312-9e51-4beb-8299-ed120dfa6d68\",\n                    \"name\": \"Shelbourne\",\n                    \"badge\": \"sr-competitor-3174.png\",\n                    \"abbreviation\": \"SHE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-78cf-44a2-bb88-a088b17a347c\",\n                    \"name\": \"Feyenoord\",\n                    \"badge\": \"sr-competitor-2959.png\",\n                    \"abbreviation\": \"FEY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9950-48c1-b5d4-f761812d85f5\",\n                    \"name\": \"Panathinaikos\",\n                    \"badge\": \"sr-competitor-3248.png\",\n                    \"abbreviation\": \"PAN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace1-ae78-417e-8a38-90812f49f8fd\",\n                    \"name\": \"Shamrock\",\n                    \"badge\": \"sr-competitor-3177.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94aceb-a5a0-4955-bc7d-a595b0faedd7\",\n                    \"name\": \"NK Celje\",\n                    \"badge\": \"sr-competitor-2413.png\",\n                    \"abbreviation\": \"CEL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d15-714c-9a8a-b661fe2b3ba5\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd8-c48a-4756-8275-2293293e66d1\",\n                    \"name\": \"Braga\",\n                    \"badge\": \"sr-competitor-2999.png\",\n                    \"abbreviation\": \"BRA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-baa7-4b20-a111-8202a82c0b1b\",\n                    \"name\": \"Crvena Zvezda\",\n                    \"badge\": \"sr-competitor-5149.png\",\n                    \"abbreviation\": \"CZV\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-46af-4c43-9af9-2e4bfee5307c\",\n                    \"name\": \"Strasbourg\",\n                    \"badge\": \"sr-competitor-1659.png\",\n                    \"abbreviation\": \"RCS\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a439-b254-4d01-b869-4186d5da11b0\",\n                    \"name\": \"Jagiellonia\",\n                    \"badge\": \"sr-competitor-7691.png\",\n                    \"abbreviation\": \"JAG\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-1ee1-4248-87a0-36b9b9697790\",\n                    \"name\": \"Breidablik\",\n                    \"badge\": \"sr-competitor-1901.png\",\n                    \"abbreviation\": \"KOP\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2a5e-e517-4b98-ad40-dd22f53162e7\",\n                    \"name\": \"Kuopion Palloseura\",\n                    \"badge\": \"sr-competitor-2244.png\",\n                    \"abbreviation\": \"KUPS\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-e0e4-4f8c-aa59-b1c409abdfa8\",\n                    \"name\": \"SK Rapid\",\n                    \"badge\": \"sr-competitor-2055.png\",\n                    \"abbreviation\": \"SCR\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace1-e90d-47f2-8a13-71819ceae79f\",\n                    \"name\": \"Fiorentina\",\n                    \"badge\": \"sr-competitor-2693.png\",\n                    \"abbreviation\": \"FIO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c31f-a70a-4dc7-a068-879f9e1077b5\",\n                    \"name\": \"Celta Vigo\",\n                    \"badge\": \"sr-competitor-2821.png\",\n                    \"abbreviation\": \"RCC\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2add-8a74-4c53-bfc8-58faec11d78e\",\n                    \"name\": \"Nice\",\n                    \"badge\": \"sr-competitor-1661.png\",\n                    \"abbreviation\": \"NIC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c368-ed2b-4782-aa0b-5706f0b1854c\",\n                    \"name\": \"Lincoln Red Imps\",\n                    \"badge\": \"sr-competitor-126304.png\",\n                    \"abbreviation\": \"LIN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45c-75f8-4a1d-b38c-bf970b93c517\",\n                    \"name\": \"Lech Poznan\",\n                    \"badge\": \"sr-competitor-3121.png\",\n                    \"abbreviation\": \"LPO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2ab8-4a4a-4fcc-8f79-9c733e7475dd\",\n                    \"name\": \"Mainz\",\n                    \"badge\": \"sr-competitor-2556.png\",\n                    \"abbreviation\": \"M05\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-b7f8-4088-9b31-8a756e9e2518\",\n                    \"name\": \"Zrinjski Mostar\",\n                    \"badge\": \"sr-competitor-5178.png\",\n                    \"abbreviation\": \"ZRI\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace6-03a6-400e-ad56-1856f450f30b\",\n                    \"name\": \"Salzburg\",\n                    \"badge\": \"sr-competitor-2046.png\",\n                    \"abbreviation\": \"RBS\"\n                },\n                \"away\": {\n                    \"id\": \"9a948083-c54e-465a-9ec7-bd19c7f13b84\",\n                    \"name\": \"Ferencvarosi\",\n                    \"badge\": \"sr-competitor-1925.png\",\n                    \"abbreviation\": \"FTC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2a9b-4c37-4624-bede-a3b5062f61cd\",\n                    \"name\": \"Lyon\",\n                    \"badge\": \"sr-competitor-1649.png\",\n                    \"abbreviation\": \"OL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c318-6afc-4bbe-aa0d-c89ba86d905d\",\n                    \"name\": \"Basel\",\n                    \"badge\": \"sr-competitor-2501.png\",\n                    \"abbreviation\": \"FCB\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-c018-4f71-be22-9ed851229f5a\",\n                    \"name\": \"GA Eagles\",\n                    \"badge\": \"sr-competitor-2979.png\",\n                    \"abbreviation\": \"GAE\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                    \"name\": \"Aston Villa\",\n                    \"badge\": \"sr-competitor-40.png\",\n                    \"abbreviation\": \"AVL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-313d-4db3-a792-f229601726dc\",\n                    \"name\": \"Alkmaar\",\n                    \"badge\": \"sr-competitor-2950.png\",\n                    \"abbreviation\": \"AZA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94accf-e1cd-4950-8b4f-30836314c790\",\n                    \"name\": \"Slovan Bratislava\",\n                    \"badge\": \"sr-competitor-2404.png\",\n                    \"abbreviation\": \"SLO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd7f-0ed0-7038-bc17-471a1f6473ae\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0d7c-4c80-ad39-b9ff5677e038\",\n                    \"name\": \"Maccabi Tel Aviv\",\n                    \"badge\": \"sr-competitor-5198.png\",\n                    \"abbreviation\": \"MTA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-e08b-43f0-8c2c-cc6aafc8f8d8\",\n                    \"name\": \"Midtjylland\",\n                    \"badge\": \"sr-competitor-1289.png\",\n                    \"abbreviation\": \"FCM\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-731e-4a04-9f97-5aa9ebf6b8ce\",\n                    \"name\": \"Shakhtar\",\n                    \"badge\": \"sr-competitor-3313.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45d-4fbe-4b9f-b9fa-f68b1df54bfa\",\n                    \"name\": \"Legia Warszawa\",\n                    \"badge\": \"sr-competitor-3106.png\",\n                    \"abbreviation\": \"LEG\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94aced-14f3-428b-b8a8-4b55e21e8205\",\n                    \"name\": \"Rijeka\",\n                    \"badge\": \"sr-competitor-2039.png\",\n                    \"abbreviation\": \"RIJ\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e085-48f8-a9ff-57e86235ad64\",\n                    \"name\": \"Sparta Prague\",\n                    \"badge\": \"sr-competitor-2218.png\",\n                    \"abbreviation\": \"SPA\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0b6a-477c-8180-fade01c34755\",\n                    \"name\": \"Hacken Gothenburg\",\n                    \"badge\": \"sr-competitor-1760.png\",\n                    \"abbreviation\": \"HAC\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acec-6b1f-482b-a5af-ad4243e92e57\",\n                    \"name\": \"Rayo Vallecano\",\n                    \"badge\": \"sr-competitor-2818.png\",\n                    \"abbreviation\": \"RVC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-314e-4a5f-90d1-e065020c17df\",\n                    \"name\": \"Fenerbahce\",\n                    \"badge\": \"sr-competitor-3052.png\",\n                    \"abbreviation\": \"FEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-2b99-4a62-b9c5-bedb6b95f11c\",\n                    \"name\": \"Stuttgart\",\n                    \"badge\": \"sr-competitor-2677.png\",\n                    \"abbreviation\": \"VFB\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acec-c098-43e0-a33e-777cbd27e1e4\",\n                    \"name\": \"KF Drita\",\n                    \"badge\": \"sr-competitor-277835.png\",\n                    \"abbreviation\": \"DRI\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-88df-4eaf-bf53-99de0096666e\",\n                    \"name\": \"Omonia Nicosia\",\n                    \"badge\": \"sr-competitor-3395.png\",\n                    \"abbreviation\": \"OMO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c946-e50a-41d9-b986-d0e1ea2126f7\",\n                    \"name\": \"Crystal Palace\",\n                    \"badge\": \"sr-competitor-7.png\",\n                    \"abbreviation\": \"CRY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c93c-c743-4768-ab99-f65f8045c8f6\",\n                    \"name\": \"Larnaca\",\n                    \"badge\": \"sr-competitor-3404.png\",\n                    \"abbreviation\": \"ALA\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-2714-4ca2-b04c-d7eb2c062896\",\n                    \"name\": \"Nottm Forest\",\n                    \"badge\": \"sr-competitor-14.png\",\n                    \"abbreviation\": \"NFO\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-ddba-47a9-9581-30f18c4f2c9d\",\n                    \"name\": \"Porto\",\n                    \"badge\": \"sr-competitor-3002.png\",\n                    \"abbreviation\": \"FCP\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-9ae1-4b48-b861-5ab84c15a5bb\",\n                    \"name\": \"FCSB\",\n                    \"badge\": \"sr-competitor-3301.png\",\n                    \"abbreviation\": \"FCSB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c314-1fe5-4448-a022-245bf92accf8\",\n                    \"name\": \"Bologna\",\n                    \"badge\": \"sr-competitor-2685.png\",\n                    \"abbreviation\": \"BFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-a29c-4bcf-819d-b49a494f045a\",\n                    \"name\": \"Uni Craiova\",\n                    \"badge\": \"sr-competitor-116223.png\",\n                    \"abbreviation\": \"CSU\"\n                },\n                \"away\": {\n                    \"id\": \"9a947f2c-36b3-4cdf-bd6e-c5fe79bdbac3\",\n                    \"name\": \"Noah Yerevan\",\n                    \"badge\": \"sr-competitor-364474.png\",\n                    \"abbreviation\": \"FCN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace8-fc14-477e-8325-d8b1a5ba9ca1\",\n                    \"name\": \"AEK Athens\",\n                    \"badge\": \"sr-competitor-3250.png\",\n                    \"abbreviation\": \"AEK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-df16-4ea7-9489-105bf25e61b8\",\n                    \"name\": \"Aberdeen\",\n                    \"badge\": \"sr-competitor-2355.png\",\n                    \"abbreviation\": \"ABE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-9e01-4535-86ef-e0b7cd4720b6\",\n                    \"name\": \"Celtic\",\n                    \"badge\": \"sr-competitor-2352.png\",\n                    \"abbreviation\": \"CEL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd3-5234-4395-9efd-8f791301c234\",\n                    \"name\": \"Sturm Graz\",\n                    \"badge\": \"sr-competitor-2051.png\",\n                    \"abbreviation\": \"STU\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-32c2-4905-bc2d-c2368a95716f\",\n                    \"name\": \"Lille\",\n                    \"badge\": \"sr-competitor-1643.png\",\n                    \"abbreviation\": \"LIL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-e714-40ed-bd4c-d5f716e61655\",\n                    \"name\": \"PAOK\",\n                    \"badge\": \"sr-competitor-3251.png\",\n                    \"abbreviation\": \"PAOK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-c286-4850-8b3c-8d2ced1a700f\",\n                    \"name\": \"Young Boys\",\n                    \"badge\": \"sr-competitor-2445.png\",\n                    \"abbreviation\": \"YB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-357c-4df0-b91a-cc63af783378\",\n                    \"name\": \"Ludogorets\",\n                    \"badge\": \"sr-competitor-43840.png\",\n                    \"abbreviation\": \"LUD\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-98db-4f3a-96f4-2e038d26d4f7\",\n                    \"name\": \"Roma\",\n                    \"badge\": \"sr-competitor-2702.png\",\n                    \"abbreviation\": \"ROM\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-889b-4040-a16d-93a204c8bf93\",\n                    \"name\": \"Plzen\",\n                    \"badge\": \"sr-competitor-4502.png\",\n                    \"abbreviation\": \"VIK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-d368-406b-b39c-0b6aaebcf1d0\",\n                    \"name\": \"Genk\",\n                    \"badge\": \"sr-competitor-2890.png\",\n                    \"abbreviation\": \"GEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-f63a-4b15-95f8-be1d2f972757\",\n                    \"name\": \"Real Betis\",\n                    \"badge\": \"sr-competitor-2816.png\",\n                    \"abbreviation\": \"RBB\"\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 32,\n        \"timezone\": \"UTC\",\n        \"filtering\": {\n            \"day\": 0,\n            \"utc_dates\": [\n                \"2025-10-23\"\n            ],\n            \"start_of_day_utc\": \"2025-10-23T00:00:00Z\",\n            \"end_of_day_utc\": \"2025-10-23T23:59:59Z\"\n        }\n    }\n}"}],"_postman_id":"1ee543cb-6a3f-4c75-949f-3b65cdce4635"},{"name":"bet-builder-nfl-fixtures","event":[{"listen":"test","script":{"id":"deb1c688-a4ed-4990-a364-47479114d84a","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})","","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","pm.test('Response matches expected schema', function () {","    const schema = {","        type: 'object',","        required: [","            'data',","            'meta'","        ],","        properties: {","            data: {","                type: 'array'","            },","            meta: {","                type: 'object',","                required: [","                    'timezone',","                    'utc_dates'","                ],","                properties: {","                    timezone: { type: 'string' },","                    utc_dates: {","                        type: 'array',","                        items: { type: 'string' }","                    }","                }","            }","        }","    };","    pm.response.to.have.jsonSchema(schema);","});","","pm.test('Data items match schema (if not empty)', function () {","    const jsonData = pm.response.json();","    const itemSchema = {","        type: 'object',","        required: [","            'day',","            'num_fixtures'","        ],","        properties: {","            day: { type: 'string' },","            num_fixtures: { type: 'integer' }","        }","    };","    if (jsonData.data.length > 0) {","        jsonData.data.forEach(function (item) {","            pm.expect(item).to.have.jsonSchema(itemSchema);","        });","    }","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"e31c676f-d17b-48a3-96c1-477010c260c4","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"43a00ba6-ed19-474a-8156-1123be71ee3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/bet-builder-nfl-fixtures?day=0&timezone=Europe/London","description":"<h3 id=\"get-bet-builder-fixtures\">GET /bet-builder-fixtures</h3>\n<p>This endpoint retrieves bet builder fixtures for the specified day.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>/bet-builder-fixtures</code></p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li><code>day</code> (integer, required): Specifies the day for which fixtures are to be retrieved.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response is in JSON format and follows the schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"data\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"id\": {\"type\": \"string\"},\n          \"competition_id\": {\"type\": \"string\"},\n          \"competition_name\": {\"type\": \"string\"},\n          \"competition_logo\": {\"type\": \"string\"},\n          \"sport_radar_competition_id\": {\"type\": \"string\"},\n          \"competition_coverage\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"continental\": {\"type\": \"string\"}\n            }\n          },\n          \"competition_tab_key\": {\"type\": \"string\"},\n          \"kick_off\": {\"type\": \"string\"},\n          \"country\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"name\": {\"type\": \"string\"},\n              \"flag\": {\"type\": \"string\"}\n            }\n          },\n          \"teams\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"home\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              },\n              \"away\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              }\n            }\n          }\n        }\n      }\n    },\n    \"meta\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"results\": {\"type\": \"integer\"},\n        \"timezone\": {\"type\": \"string\"},\n        \"filtering\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"day\": {\"type\": \"integer\"},\n            \"utc_dates\": {\n              \"type\": \"array\",\n              \"items\": {\"type\": \"string\"}\n            },\n            \"start_of_day_utc\": {\"type\": \"string\"},\n            \"end_of_day_utc\": {\"type\": \"string\"}\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["bet-builder-nfl-fixtures"],"host":[""],"query":[{"key":"day","value":"0"},{"key":"timezone","value":"Europe/London"}],"variable":[]}},"response":[{"id":"72b7b251-d7d6-4549-b429-6936520f720e","name":"bet-builder-nfl-fixtures","originalRequest":{"method":"GET","header":[],"url":{"raw":"/bet-builder-fixtures?day=0","host":[""],"path":["bet-builder-fixtures"],"query":[{"key":"day","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Thu, 23 Oct 2025 10:26:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"24205"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"a8403b25-ce1d-49af-9463-ae4f94aa0033"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S5ViGGj-DoEEgWQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fa02d9-205872a37aa0857b2626fe70;Parent=7d63e33e0a177b30;Sampled=0;Lineage=1:ba673fab:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c37e-206a-45a6-bcdc-3461ea3d71e0\",\n                    \"name\": \"Malmo\",\n                    \"badge\": \"sr-competitor-1892.png\",\n                    \"abbreviation\": \"MAL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9833-43fc-9f72-95dcaf01e5e5\",\n                    \"name\": \"Dinamo Zagreb\",\n                    \"badge\": \"sr-competitor-2032.png\",\n                    \"abbreviation\": \"DIN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c92a-08ed-4793-8537-29197bc6aed5\",\n                    \"name\": \"Brann\",\n                    \"badge\": \"sr-competitor-1159.png\",\n                    \"abbreviation\": \"SKB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e4ad-4e44-95dd-e5e31a7606f1\",\n                    \"name\": \"Rangers\",\n                    \"badge\": \"sr-competitor-2351.png\",\n                    \"abbreviation\": \"RFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace7-6c66-42e6-a3be-e64241cdf113\",\n                    \"name\": \"Shkendija Tetovo\",\n                    \"badge\": \"sr-competitor-5413.png\",\n                    \"abbreviation\": \"SHK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c312-9e51-4beb-8299-ed120dfa6d68\",\n                    \"name\": \"Shelbourne\",\n                    \"badge\": \"sr-competitor-3174.png\",\n                    \"abbreviation\": \"SHE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-78cf-44a2-bb88-a088b17a347c\",\n                    \"name\": \"Feyenoord\",\n                    \"badge\": \"sr-competitor-2959.png\",\n                    \"abbreviation\": \"FEY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9950-48c1-b5d4-f761812d85f5\",\n                    \"name\": \"Panathinaikos\",\n                    \"badge\": \"sr-competitor-3248.png\",\n                    \"abbreviation\": \"PAN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace1-ae78-417e-8a38-90812f49f8fd\",\n                    \"name\": \"Shamrock\",\n                    \"badge\": \"sr-competitor-3177.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94aceb-a5a0-4955-bc7d-a595b0faedd7\",\n                    \"name\": \"NK Celje\",\n                    \"badge\": \"sr-competitor-2413.png\",\n                    \"abbreviation\": \"CEL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d15-714c-9a8a-b661fe2b3ba5\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd8-c48a-4756-8275-2293293e66d1\",\n                    \"name\": \"Braga\",\n                    \"badge\": \"sr-competitor-2999.png\",\n                    \"abbreviation\": \"BRA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-baa7-4b20-a111-8202a82c0b1b\",\n                    \"name\": \"Crvena Zvezda\",\n                    \"badge\": \"sr-competitor-5149.png\",\n                    \"abbreviation\": \"CZV\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-46af-4c43-9af9-2e4bfee5307c\",\n                    \"name\": \"Strasbourg\",\n                    \"badge\": \"sr-competitor-1659.png\",\n                    \"abbreviation\": \"RCS\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a439-b254-4d01-b869-4186d5da11b0\",\n                    \"name\": \"Jagiellonia\",\n                    \"badge\": \"sr-competitor-7691.png\",\n                    \"abbreviation\": \"JAG\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-1ee1-4248-87a0-36b9b9697790\",\n                    \"name\": \"Breidablik\",\n                    \"badge\": \"sr-competitor-1901.png\",\n                    \"abbreviation\": \"KOP\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2a5e-e517-4b98-ad40-dd22f53162e7\",\n                    \"name\": \"Kuopion Palloseura\",\n                    \"badge\": \"sr-competitor-2244.png\",\n                    \"abbreviation\": \"KUPS\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-e0e4-4f8c-aa59-b1c409abdfa8\",\n                    \"name\": \"SK Rapid\",\n                    \"badge\": \"sr-competitor-2055.png\",\n                    \"abbreviation\": \"SCR\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace1-e90d-47f2-8a13-71819ceae79f\",\n                    \"name\": \"Fiorentina\",\n                    \"badge\": \"sr-competitor-2693.png\",\n                    \"abbreviation\": \"FIO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c31f-a70a-4dc7-a068-879f9e1077b5\",\n                    \"name\": \"Celta Vigo\",\n                    \"badge\": \"sr-competitor-2821.png\",\n                    \"abbreviation\": \"RCC\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2add-8a74-4c53-bfc8-58faec11d78e\",\n                    \"name\": \"Nice\",\n                    \"badge\": \"sr-competitor-1661.png\",\n                    \"abbreviation\": \"NIC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c368-ed2b-4782-aa0b-5706f0b1854c\",\n                    \"name\": \"Lincoln Red Imps\",\n                    \"badge\": \"sr-competitor-126304.png\",\n                    \"abbreviation\": \"LIN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45c-75f8-4a1d-b38c-bf970b93c517\",\n                    \"name\": \"Lech Poznan\",\n                    \"badge\": \"sr-competitor-3121.png\",\n                    \"abbreviation\": \"LPO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2ab8-4a4a-4fcc-8f79-9c733e7475dd\",\n                    \"name\": \"Mainz\",\n                    \"badge\": \"sr-competitor-2556.png\",\n                    \"abbreviation\": \"M05\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-b7f8-4088-9b31-8a756e9e2518\",\n                    \"name\": \"Zrinjski Mostar\",\n                    \"badge\": \"sr-competitor-5178.png\",\n                    \"abbreviation\": \"ZRI\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace6-03a6-400e-ad56-1856f450f30b\",\n                    \"name\": \"Salzburg\",\n                    \"badge\": \"sr-competitor-2046.png\",\n                    \"abbreviation\": \"RBS\"\n                },\n                \"away\": {\n                    \"id\": \"9a948083-c54e-465a-9ec7-bd19c7f13b84\",\n                    \"name\": \"Ferencvarosi\",\n                    \"badge\": \"sr-competitor-1925.png\",\n                    \"abbreviation\": \"FTC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2a9b-4c37-4624-bede-a3b5062f61cd\",\n                    \"name\": \"Lyon\",\n                    \"badge\": \"sr-competitor-1649.png\",\n                    \"abbreviation\": \"OL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c318-6afc-4bbe-aa0d-c89ba86d905d\",\n                    \"name\": \"Basel\",\n                    \"badge\": \"sr-competitor-2501.png\",\n                    \"abbreviation\": \"FCB\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-c018-4f71-be22-9ed851229f5a\",\n                    \"name\": \"GA Eagles\",\n                    \"badge\": \"sr-competitor-2979.png\",\n                    \"abbreviation\": \"GAE\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                    \"name\": \"Aston Villa\",\n                    \"badge\": \"sr-competitor-40.png\",\n                    \"abbreviation\": \"AVL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-313d-4db3-a792-f229601726dc\",\n                    \"name\": \"Alkmaar\",\n                    \"badge\": \"sr-competitor-2950.png\",\n                    \"abbreviation\": \"AZA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94accf-e1cd-4950-8b4f-30836314c790\",\n                    \"name\": \"Slovan Bratislava\",\n                    \"badge\": \"sr-competitor-2404.png\",\n                    \"abbreviation\": \"SLO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd7f-0ed0-7038-bc17-471a1f6473ae\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0d7c-4c80-ad39-b9ff5677e038\",\n                    \"name\": \"Maccabi Tel Aviv\",\n                    \"badge\": \"sr-competitor-5198.png\",\n                    \"abbreviation\": \"MTA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-e08b-43f0-8c2c-cc6aafc8f8d8\",\n                    \"name\": \"Midtjylland\",\n                    \"badge\": \"sr-competitor-1289.png\",\n                    \"abbreviation\": \"FCM\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-731e-4a04-9f97-5aa9ebf6b8ce\",\n                    \"name\": \"Shakhtar\",\n                    \"badge\": \"sr-competitor-3313.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45d-4fbe-4b9f-b9fa-f68b1df54bfa\",\n                    \"name\": \"Legia Warszawa\",\n                    \"badge\": \"sr-competitor-3106.png\",\n                    \"abbreviation\": \"LEG\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94aced-14f3-428b-b8a8-4b55e21e8205\",\n                    \"name\": \"Rijeka\",\n                    \"badge\": \"sr-competitor-2039.png\",\n                    \"abbreviation\": \"RIJ\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e085-48f8-a9ff-57e86235ad64\",\n                    \"name\": \"Sparta Prague\",\n                    \"badge\": \"sr-competitor-2218.png\",\n                    \"abbreviation\": \"SPA\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0b6a-477c-8180-fade01c34755\",\n                    \"name\": \"Hacken Gothenburg\",\n                    \"badge\": \"sr-competitor-1760.png\",\n                    \"abbreviation\": \"HAC\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acec-6b1f-482b-a5af-ad4243e92e57\",\n                    \"name\": \"Rayo Vallecano\",\n                    \"badge\": \"sr-competitor-2818.png\",\n                    \"abbreviation\": \"RVC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-314e-4a5f-90d1-e065020c17df\",\n                    \"name\": \"Fenerbahce\",\n                    \"badge\": \"sr-competitor-3052.png\",\n                    \"abbreviation\": \"FEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-2b99-4a62-b9c5-bedb6b95f11c\",\n                    \"name\": \"Stuttgart\",\n                    \"badge\": \"sr-competitor-2677.png\",\n                    \"abbreviation\": \"VFB\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acec-c098-43e0-a33e-777cbd27e1e4\",\n                    \"name\": \"KF Drita\",\n                    \"badge\": \"sr-competitor-277835.png\",\n                    \"abbreviation\": \"DRI\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-88df-4eaf-bf53-99de0096666e\",\n                    \"name\": \"Omonia Nicosia\",\n                    \"badge\": \"sr-competitor-3395.png\",\n                    \"abbreviation\": \"OMO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c946-e50a-41d9-b986-d0e1ea2126f7\",\n                    \"name\": \"Crystal Palace\",\n                    \"badge\": \"sr-competitor-7.png\",\n                    \"abbreviation\": \"CRY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c93c-c743-4768-ab99-f65f8045c8f6\",\n                    \"name\": \"Larnaca\",\n                    \"badge\": \"sr-competitor-3404.png\",\n                    \"abbreviation\": \"ALA\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-2714-4ca2-b04c-d7eb2c062896\",\n                    \"name\": \"Nottm Forest\",\n                    \"badge\": \"sr-competitor-14.png\",\n                    \"abbreviation\": \"NFO\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-ddba-47a9-9581-30f18c4f2c9d\",\n                    \"name\": \"Porto\",\n                    \"badge\": \"sr-competitor-3002.png\",\n                    \"abbreviation\": \"FCP\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-9ae1-4b48-b861-5ab84c15a5bb\",\n                    \"name\": \"FCSB\",\n                    \"badge\": \"sr-competitor-3301.png\",\n                    \"abbreviation\": \"FCSB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c314-1fe5-4448-a022-245bf92accf8\",\n                    \"name\": \"Bologna\",\n                    \"badge\": \"sr-competitor-2685.png\",\n                    \"abbreviation\": \"BFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-a29c-4bcf-819d-b49a494f045a\",\n                    \"name\": \"Uni Craiova\",\n                    \"badge\": \"sr-competitor-116223.png\",\n                    \"abbreviation\": \"CSU\"\n                },\n                \"away\": {\n                    \"id\": \"9a947f2c-36b3-4cdf-bd6e-c5fe79bdbac3\",\n                    \"name\": \"Noah Yerevan\",\n                    \"badge\": \"sr-competitor-364474.png\",\n                    \"abbreviation\": \"FCN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace8-fc14-477e-8325-d8b1a5ba9ca1\",\n                    \"name\": \"AEK Athens\",\n                    \"badge\": \"sr-competitor-3250.png\",\n                    \"abbreviation\": \"AEK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-df16-4ea7-9489-105bf25e61b8\",\n                    \"name\": \"Aberdeen\",\n                    \"badge\": \"sr-competitor-2355.png\",\n                    \"abbreviation\": \"ABE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-9e01-4535-86ef-e0b7cd4720b6\",\n                    \"name\": \"Celtic\",\n                    \"badge\": \"sr-competitor-2352.png\",\n                    \"abbreviation\": \"CEL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd3-5234-4395-9efd-8f791301c234\",\n                    \"name\": \"Sturm Graz\",\n                    \"badge\": \"sr-competitor-2051.png\",\n                    \"abbreviation\": \"STU\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-32c2-4905-bc2d-c2368a95716f\",\n                    \"name\": \"Lille\",\n                    \"badge\": \"sr-competitor-1643.png\",\n                    \"abbreviation\": \"LIL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-e714-40ed-bd4c-d5f716e61655\",\n                    \"name\": \"PAOK\",\n                    \"badge\": \"sr-competitor-3251.png\",\n                    \"abbreviation\": \"PAOK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-c286-4850-8b3c-8d2ced1a700f\",\n                    \"name\": \"Young Boys\",\n                    \"badge\": \"sr-competitor-2445.png\",\n                    \"abbreviation\": \"YB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-357c-4df0-b91a-cc63af783378\",\n                    \"name\": \"Ludogorets\",\n                    \"badge\": \"sr-competitor-43840.png\",\n                    \"abbreviation\": \"LUD\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-98db-4f3a-96f4-2e038d26d4f7\",\n                    \"name\": \"Roma\",\n                    \"badge\": \"sr-competitor-2702.png\",\n                    \"abbreviation\": \"ROM\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-889b-4040-a16d-93a204c8bf93\",\n                    \"name\": \"Plzen\",\n                    \"badge\": \"sr-competitor-4502.png\",\n                    \"abbreviation\": \"VIK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-d368-406b-b39c-0b6aaebcf1d0\",\n                    \"name\": \"Genk\",\n                    \"badge\": \"sr-competitor-2890.png\",\n                    \"abbreviation\": \"GEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-f63a-4b15-95f8-be1d2f972757\",\n                    \"name\": \"Real Betis\",\n                    \"badge\": \"sr-competitor-2816.png\",\n                    \"abbreviation\": \"RBB\"\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 32,\n        \"timezone\": \"UTC\",\n        \"filtering\": {\n            \"day\": 0,\n            \"utc_dates\": [\n                \"2025-10-23\"\n            ],\n            \"start_of_day_utc\": \"2025-10-23T00:00:00Z\",\n            \"end_of_day_utc\": \"2025-10-23T23:59:59Z\"\n        }\n    }\n}"}],"_postman_id":"43a00ba6-ed19-474a-8156-1123be71ee3e"},{"name":"bet-builder-nfl-selections","event":[{"listen":"test","script":{"id":"103f869a-14af-4f63-8c08-af7e41a22cc9","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","});","","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","pm.test('Response matches expected schema', function () {","    const schema = {","        type: 'object',","        required: ['data', 'meta'],","        properties: {","            data: {","                type: 'array'","            },","            meta: {","                type: 'object',","                required: ['results', 'timezone', 'filtering'],","                properties: {","                    results: { type: 'integer' },","                    timezone: { type: 'string' },","                    filtering: {","                        type: 'object',","                        required: ['day', 'utc_dates', 'start_of_day_utc', 'end_of_day_utc'],","                        properties: {","                            day: { type: 'integer' },","                            utc_dates: {","                                type: 'array',","                                items: { type: 'string' }","                            },","                            start_of_day_utc: { type: 'string' },","                            end_of_day_utc: { type: 'string' }","                        }","                    }","                }","            }","        }","    };","    pm.response.to.have.jsonSchema(schema);","});","","pm.test(\"Data items match schema (if not empty)\", function () {","    const jsonData = pm.response.json();","    if (jsonData.data.length > 0) {","        const itemSchema = {","            type: 'object',","            properties: {","                id: { type: 'string' },","                competition_id: { type: 'string' },","                competition_name: { type: 'string' },","                competition_logo: { type: 'string' },","                sport_radar_competition_id: { type: 'string' },","                competition_coverage: {","                    type: 'object',","                    properties: {","                        continental: { type: 'string' }","                    }","                },","                competition_tab_key: { type: 'string' },","                kick_off: { type: 'string' },","                country: {","                    type: 'object',","                    properties: {","                        name: { type: 'string' },","                        flag: { type: 'string' }","                    }","                },","                teams: {","                    type: 'object',","                    properties: {","                        home: {","                            type: 'object',","                            properties: {","                                id: { type: 'string' },","                                name: { type: 'string' },","                                badge: { type: 'string' },","                                abbreviation: { type: 'string' }","                            }","                        },","                        away: {","                            type: 'object',","                            properties: {","                                id: { type: 'string' },","                                name: { type: 'string' },","                                badge: { type: 'string' },","                                abbreviation: { type: 'string' }","                            }","                        }","                    }","                }","            }","        };","        jsonData.data.forEach(function (item, index) {","            pm.expect(item, 'Item at index ' + index + ' does not match schema').to.have.jsonSchema(itemSchema);","        });","    }","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"35606be8-ff18-481f-a860-e91bd8f2f21a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/bet-builder-nfl-selections?day=0&timezone=Europe/London","description":"<h3 id=\"get-bet-builder-fixtures\">GET /bet-builder-fixtures</h3>\n<p>This endpoint retrieves bet builder fixtures for the specified day.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>/bet-builder-fixtures</code></p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li><code>day</code> (integer, required): Specifies the day for which fixtures are to be retrieved.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response is in JSON format and follows the schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"data\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"id\": {\"type\": \"string\"},\n          \"competition_id\": {\"type\": \"string\"},\n          \"competition_name\": {\"type\": \"string\"},\n          \"competition_logo\": {\"type\": \"string\"},\n          \"sport_radar_competition_id\": {\"type\": \"string\"},\n          \"competition_coverage\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"continental\": {\"type\": \"string\"}\n            }\n          },\n          \"competition_tab_key\": {\"type\": \"string\"},\n          \"kick_off\": {\"type\": \"string\"},\n          \"country\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"name\": {\"type\": \"string\"},\n              \"flag\": {\"type\": \"string\"}\n            }\n          },\n          \"teams\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"home\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              },\n              \"away\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              }\n            }\n          }\n        }\n      }\n    },\n    \"meta\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"results\": {\"type\": \"integer\"},\n        \"timezone\": {\"type\": \"string\"},\n        \"filtering\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"day\": {\"type\": \"integer\"},\n            \"utc_dates\": {\n              \"type\": \"array\",\n              \"items\": {\"type\": \"string\"}\n            },\n            \"start_of_day_utc\": {\"type\": \"string\"},\n            \"end_of_day_utc\": {\"type\": \"string\"}\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["bet-builder-nfl-selections"],"host":[""],"query":[{"key":"day","value":"0"},{"key":"timezone","value":"Europe/London"}],"variable":[]}},"response":[{"id":"5dd88684-c30a-4bba-87a0-dd6e6ba238ac","name":"bet-builder-nfl-selections","originalRequest":{"method":"GET","header":[],"url":{"raw":"/bet-builder-nfl-selections?timezone=Europe/London&day","host":[""],"path":["bet-builder-nfl-selections"],"query":[{"key":"timezone","value":"Europe/London","type":"text"},{"key":"day","value":null,"description":"Day range 0 - 11 ","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Thu, 23 Oct 2025 10:26:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"24205"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"a8403b25-ce1d-49af-9463-ae4f94aa0033"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S5ViGGj-DoEEgWQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fa02d9-205872a37aa0857b2626fe70;Parent=7d63e33e0a177b30;Sampled=0;Lineage=1:ba673fab:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c37e-206a-45a6-bcdc-3461ea3d71e0\",\n                    \"name\": \"Malmo\",\n                    \"badge\": \"sr-competitor-1892.png\",\n                    \"abbreviation\": \"MAL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9833-43fc-9f72-95dcaf01e5e5\",\n                    \"name\": \"Dinamo Zagreb\",\n                    \"badge\": \"sr-competitor-2032.png\",\n                    \"abbreviation\": \"DIN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c92a-08ed-4793-8537-29197bc6aed5\",\n                    \"name\": \"Brann\",\n                    \"badge\": \"sr-competitor-1159.png\",\n                    \"abbreviation\": \"SKB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e4ad-4e44-95dd-e5e31a7606f1\",\n                    \"name\": \"Rangers\",\n                    \"badge\": \"sr-competitor-2351.png\",\n                    \"abbreviation\": \"RFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace7-6c66-42e6-a3be-e64241cdf113\",\n                    \"name\": \"Shkendija Tetovo\",\n                    \"badge\": \"sr-competitor-5413.png\",\n                    \"abbreviation\": \"SHK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c312-9e51-4beb-8299-ed120dfa6d68\",\n                    \"name\": \"Shelbourne\",\n                    \"badge\": \"sr-competitor-3174.png\",\n                    \"abbreviation\": \"SHE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-78cf-44a2-bb88-a088b17a347c\",\n                    \"name\": \"Feyenoord\",\n                    \"badge\": \"sr-competitor-2959.png\",\n                    \"abbreviation\": \"FEY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9950-48c1-b5d4-f761812d85f5\",\n                    \"name\": \"Panathinaikos\",\n                    \"badge\": \"sr-competitor-3248.png\",\n                    \"abbreviation\": \"PAN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace1-ae78-417e-8a38-90812f49f8fd\",\n                    \"name\": \"Shamrock\",\n                    \"badge\": \"sr-competitor-3177.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94aceb-a5a0-4955-bc7d-a595b0faedd7\",\n                    \"name\": \"NK Celje\",\n                    \"badge\": \"sr-competitor-2413.png\",\n                    \"abbreviation\": \"CEL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d15-714c-9a8a-b661fe2b3ba5\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd8-c48a-4756-8275-2293293e66d1\",\n                    \"name\": \"Braga\",\n                    \"badge\": \"sr-competitor-2999.png\",\n                    \"abbreviation\": \"BRA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-baa7-4b20-a111-8202a82c0b1b\",\n                    \"name\": \"Crvena Zvezda\",\n                    \"badge\": \"sr-competitor-5149.png\",\n                    \"abbreviation\": \"CZV\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-46af-4c43-9af9-2e4bfee5307c\",\n                    \"name\": \"Strasbourg\",\n                    \"badge\": \"sr-competitor-1659.png\",\n                    \"abbreviation\": \"RCS\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a439-b254-4d01-b869-4186d5da11b0\",\n                    \"name\": \"Jagiellonia\",\n                    \"badge\": \"sr-competitor-7691.png\",\n                    \"abbreviation\": \"JAG\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-1ee1-4248-87a0-36b9b9697790\",\n                    \"name\": \"Breidablik\",\n                    \"badge\": \"sr-competitor-1901.png\",\n                    \"abbreviation\": \"KOP\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2a5e-e517-4b98-ad40-dd22f53162e7\",\n                    \"name\": \"Kuopion Palloseura\",\n                    \"badge\": \"sr-competitor-2244.png\",\n                    \"abbreviation\": \"KUPS\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-e0e4-4f8c-aa59-b1c409abdfa8\",\n                    \"name\": \"SK Rapid\",\n                    \"badge\": \"sr-competitor-2055.png\",\n                    \"abbreviation\": \"SCR\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace1-e90d-47f2-8a13-71819ceae79f\",\n                    \"name\": \"Fiorentina\",\n                    \"badge\": \"sr-competitor-2693.png\",\n                    \"abbreviation\": \"FIO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c31f-a70a-4dc7-a068-879f9e1077b5\",\n                    \"name\": \"Celta Vigo\",\n                    \"badge\": \"sr-competitor-2821.png\",\n                    \"abbreviation\": \"RCC\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2add-8a74-4c53-bfc8-58faec11d78e\",\n                    \"name\": \"Nice\",\n                    \"badge\": \"sr-competitor-1661.png\",\n                    \"abbreviation\": \"NIC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c368-ed2b-4782-aa0b-5706f0b1854c\",\n                    \"name\": \"Lincoln Red Imps\",\n                    \"badge\": \"sr-competitor-126304.png\",\n                    \"abbreviation\": \"LIN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45c-75f8-4a1d-b38c-bf970b93c517\",\n                    \"name\": \"Lech Poznan\",\n                    \"badge\": \"sr-competitor-3121.png\",\n                    \"abbreviation\": \"LPO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2ab8-4a4a-4fcc-8f79-9c733e7475dd\",\n                    \"name\": \"Mainz\",\n                    \"badge\": \"sr-competitor-2556.png\",\n                    \"abbreviation\": \"M05\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-b7f8-4088-9b31-8a756e9e2518\",\n                    \"name\": \"Zrinjski Mostar\",\n                    \"badge\": \"sr-competitor-5178.png\",\n                    \"abbreviation\": \"ZRI\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace6-03a6-400e-ad56-1856f450f30b\",\n                    \"name\": \"Salzburg\",\n                    \"badge\": \"sr-competitor-2046.png\",\n                    \"abbreviation\": \"RBS\"\n                },\n                \"away\": {\n                    \"id\": \"9a948083-c54e-465a-9ec7-bd19c7f13b84\",\n                    \"name\": \"Ferencvarosi\",\n                    \"badge\": \"sr-competitor-1925.png\",\n                    \"abbreviation\": \"FTC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2a9b-4c37-4624-bede-a3b5062f61cd\",\n                    \"name\": \"Lyon\",\n                    \"badge\": \"sr-competitor-1649.png\",\n                    \"abbreviation\": \"OL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c318-6afc-4bbe-aa0d-c89ba86d905d\",\n                    \"name\": \"Basel\",\n                    \"badge\": \"sr-competitor-2501.png\",\n                    \"abbreviation\": \"FCB\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-c018-4f71-be22-9ed851229f5a\",\n                    \"name\": \"GA Eagles\",\n                    \"badge\": \"sr-competitor-2979.png\",\n                    \"abbreviation\": \"GAE\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                    \"name\": \"Aston Villa\",\n                    \"badge\": \"sr-competitor-40.png\",\n                    \"abbreviation\": \"AVL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-313d-4db3-a792-f229601726dc\",\n                    \"name\": \"Alkmaar\",\n                    \"badge\": \"sr-competitor-2950.png\",\n                    \"abbreviation\": \"AZA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94accf-e1cd-4950-8b4f-30836314c790\",\n                    \"name\": \"Slovan Bratislava\",\n                    \"badge\": \"sr-competitor-2404.png\",\n                    \"abbreviation\": \"SLO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd7f-0ed0-7038-bc17-471a1f6473ae\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0d7c-4c80-ad39-b9ff5677e038\",\n                    \"name\": \"Maccabi Tel Aviv\",\n                    \"badge\": \"sr-competitor-5198.png\",\n                    \"abbreviation\": \"MTA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-e08b-43f0-8c2c-cc6aafc8f8d8\",\n                    \"name\": \"Midtjylland\",\n                    \"badge\": \"sr-competitor-1289.png\",\n                    \"abbreviation\": \"FCM\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-731e-4a04-9f97-5aa9ebf6b8ce\",\n                    \"name\": \"Shakhtar\",\n                    \"badge\": \"sr-competitor-3313.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45d-4fbe-4b9f-b9fa-f68b1df54bfa\",\n                    \"name\": \"Legia Warszawa\",\n                    \"badge\": \"sr-competitor-3106.png\",\n                    \"abbreviation\": \"LEG\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94aced-14f3-428b-b8a8-4b55e21e8205\",\n                    \"name\": \"Rijeka\",\n                    \"badge\": \"sr-competitor-2039.png\",\n                    \"abbreviation\": \"RIJ\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e085-48f8-a9ff-57e86235ad64\",\n                    \"name\": \"Sparta Prague\",\n                    \"badge\": \"sr-competitor-2218.png\",\n                    \"abbreviation\": \"SPA\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0b6a-477c-8180-fade01c34755\",\n                    \"name\": \"Hacken Gothenburg\",\n                    \"badge\": \"sr-competitor-1760.png\",\n                    \"abbreviation\": \"HAC\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acec-6b1f-482b-a5af-ad4243e92e57\",\n                    \"name\": \"Rayo Vallecano\",\n                    \"badge\": \"sr-competitor-2818.png\",\n                    \"abbreviation\": \"RVC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-314e-4a5f-90d1-e065020c17df\",\n                    \"name\": \"Fenerbahce\",\n                    \"badge\": \"sr-competitor-3052.png\",\n                    \"abbreviation\": \"FEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-2b99-4a62-b9c5-bedb6b95f11c\",\n                    \"name\": \"Stuttgart\",\n                    \"badge\": \"sr-competitor-2677.png\",\n                    \"abbreviation\": \"VFB\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acec-c098-43e0-a33e-777cbd27e1e4\",\n                    \"name\": \"KF Drita\",\n                    \"badge\": \"sr-competitor-277835.png\",\n                    \"abbreviation\": \"DRI\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-88df-4eaf-bf53-99de0096666e\",\n                    \"name\": \"Omonia Nicosia\",\n                    \"badge\": \"sr-competitor-3395.png\",\n                    \"abbreviation\": \"OMO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c946-e50a-41d9-b986-d0e1ea2126f7\",\n                    \"name\": \"Crystal Palace\",\n                    \"badge\": \"sr-competitor-7.png\",\n                    \"abbreviation\": \"CRY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c93c-c743-4768-ab99-f65f8045c8f6\",\n                    \"name\": \"Larnaca\",\n                    \"badge\": \"sr-competitor-3404.png\",\n                    \"abbreviation\": \"ALA\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-2714-4ca2-b04c-d7eb2c062896\",\n                    \"name\": \"Nottm Forest\",\n                    \"badge\": \"sr-competitor-14.png\",\n                    \"abbreviation\": \"NFO\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-ddba-47a9-9581-30f18c4f2c9d\",\n                    \"name\": \"Porto\",\n                    \"badge\": \"sr-competitor-3002.png\",\n                    \"abbreviation\": \"FCP\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-9ae1-4b48-b861-5ab84c15a5bb\",\n                    \"name\": \"FCSB\",\n                    \"badge\": \"sr-competitor-3301.png\",\n                    \"abbreviation\": \"FCSB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c314-1fe5-4448-a022-245bf92accf8\",\n                    \"name\": \"Bologna\",\n                    \"badge\": \"sr-competitor-2685.png\",\n                    \"abbreviation\": \"BFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-a29c-4bcf-819d-b49a494f045a\",\n                    \"name\": \"Uni Craiova\",\n                    \"badge\": \"sr-competitor-116223.png\",\n                    \"abbreviation\": \"CSU\"\n                },\n                \"away\": {\n                    \"id\": \"9a947f2c-36b3-4cdf-bd6e-c5fe79bdbac3\",\n                    \"name\": \"Noah Yerevan\",\n                    \"badge\": \"sr-competitor-364474.png\",\n                    \"abbreviation\": \"FCN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace8-fc14-477e-8325-d8b1a5ba9ca1\",\n                    \"name\": \"AEK Athens\",\n                    \"badge\": \"sr-competitor-3250.png\",\n                    \"abbreviation\": \"AEK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-df16-4ea7-9489-105bf25e61b8\",\n                    \"name\": \"Aberdeen\",\n                    \"badge\": \"sr-competitor-2355.png\",\n                    \"abbreviation\": \"ABE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-9e01-4535-86ef-e0b7cd4720b6\",\n                    \"name\": \"Celtic\",\n                    \"badge\": \"sr-competitor-2352.png\",\n                    \"abbreviation\": \"CEL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd3-5234-4395-9efd-8f791301c234\",\n                    \"name\": \"Sturm Graz\",\n                    \"badge\": \"sr-competitor-2051.png\",\n                    \"abbreviation\": \"STU\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-32c2-4905-bc2d-c2368a95716f\",\n                    \"name\": \"Lille\",\n                    \"badge\": \"sr-competitor-1643.png\",\n                    \"abbreviation\": \"LIL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-e714-40ed-bd4c-d5f716e61655\",\n                    \"name\": \"PAOK\",\n                    \"badge\": \"sr-competitor-3251.png\",\n                    \"abbreviation\": \"PAOK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-c286-4850-8b3c-8d2ced1a700f\",\n                    \"name\": \"Young Boys\",\n                    \"badge\": \"sr-competitor-2445.png\",\n                    \"abbreviation\": \"YB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-357c-4df0-b91a-cc63af783378\",\n                    \"name\": \"Ludogorets\",\n                    \"badge\": \"sr-competitor-43840.png\",\n                    \"abbreviation\": \"LUD\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-98db-4f3a-96f4-2e038d26d4f7\",\n                    \"name\": \"Roma\",\n                    \"badge\": \"sr-competitor-2702.png\",\n                    \"abbreviation\": \"ROM\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-889b-4040-a16d-93a204c8bf93\",\n                    \"name\": \"Plzen\",\n                    \"badge\": \"sr-competitor-4502.png\",\n                    \"abbreviation\": \"VIK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-d368-406b-b39c-0b6aaebcf1d0\",\n                    \"name\": \"Genk\",\n                    \"badge\": \"sr-competitor-2890.png\",\n                    \"abbreviation\": \"GEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-f63a-4b15-95f8-be1d2f972757\",\n                    \"name\": \"Real Betis\",\n                    \"badge\": \"sr-competitor-2816.png\",\n                    \"abbreviation\": \"RBB\"\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 32,\n        \"timezone\": \"UTC\",\n        \"filtering\": {\n            \"day\": 0,\n            \"utc_dates\": [\n                \"2025-10-23\"\n            ],\n            \"start_of_day_utc\": \"2025-10-23T00:00:00Z\",\n            \"end_of_day_utc\": \"2025-10-23T23:59:59Z\"\n        }\n    }\n}"}],"_postman_id":"35606be8-ff18-481f-a860-e91bd8f2f21a"},{"name":"bet-builder-fixtures-count","event":[{"listen":"test","script":{"id":"fd563510-6e9d-4290-9933-23b7403985d3","exec":["pm.test('Status code is 200', function () {","    pm.response.to.have.status(200);","})","","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","pm.test('Response matches expected schema', function () {","    const schema = {","        type: 'object',","        required: [","            'data',","            'meta'","        ],","        properties: {","            data: {","                type: 'array',","                items: {","                    type: 'object',","                    required: [","                        'day',","                        'num_fixtures'","                    ],","                    properties: {","                        day: { type: 'string' },","                        num_fixtures: { type: 'integer' }","                    }","                }","            },","            meta: {","                type: 'object',","                required: [","                    'timezone',","                    'utc_dates'","                ],","                properties: {","                    timezone: { type: 'string' },","                    utc_dates: {","                        type: 'array',","                        items: { type: 'string' }","                    }","                }","            }","        }","    };","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d32f06e8-e30b-4034-a030-b581ce3f4127","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/bet-builder-fixtures-count?timezone=Europe/London","description":"<h3 id=\"get-bet-builder-fixtures\">GET /bet-builder-fixtures</h3>\n<p>This endpoint retrieves bet builder fixtures for the specified day.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>/bet-builder-fixtures</code></p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li><code>day</code> (integer, required): Specifies the day for which fixtures are to be retrieved.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response is in JSON format and follows the schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"data\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"id\": {\"type\": \"string\"},\n          \"competition_id\": {\"type\": \"string\"},\n          \"competition_name\": {\"type\": \"string\"},\n          \"competition_logo\": {\"type\": \"string\"},\n          \"sport_radar_competition_id\": {\"type\": \"string\"},\n          \"competition_coverage\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"continental\": {\"type\": \"string\"}\n            }\n          },\n          \"competition_tab_key\": {\"type\": \"string\"},\n          \"kick_off\": {\"type\": \"string\"},\n          \"country\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"name\": {\"type\": \"string\"},\n              \"flag\": {\"type\": \"string\"}\n            }\n          },\n          \"teams\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"home\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              },\n              \"away\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              }\n            }\n          }\n        }\n      }\n    },\n    \"meta\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"results\": {\"type\": \"integer\"},\n        \"timezone\": {\"type\": \"string\"},\n        \"filtering\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"day\": {\"type\": \"integer\"},\n            \"utc_dates\": {\n              \"type\": \"array\",\n              \"items\": {\"type\": \"string\"}\n            },\n            \"start_of_day_utc\": {\"type\": \"string\"},\n            \"end_of_day_utc\": {\"type\": \"string\"}\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["bet-builder-fixtures-count"],"host":[""],"query":[{"key":"timezone","value":"Europe/London"}],"variable":[]}},"response":[{"id":"de31c436-e53d-4ac3-b8a2-39ab0355c0cc","name":"bet-builder-fixtures","originalRequest":{"method":"GET","header":[],"url":{"raw":"/bet-builder-fixtures?day=0","host":[""],"path":["bet-builder-fixtures"],"query":[{"key":"day","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Thu, 23 Oct 2025 10:26:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"24205"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"a8403b25-ce1d-49af-9463-ae4f94aa0033"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S5ViGGj-DoEEgWQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fa02d9-205872a37aa0857b2626fe70;Parent=7d63e33e0a177b30;Sampled=0;Lineage=1:ba673fab:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c37e-206a-45a6-bcdc-3461ea3d71e0\",\n                    \"name\": \"Malmo\",\n                    \"badge\": \"sr-competitor-1892.png\",\n                    \"abbreviation\": \"MAL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9833-43fc-9f72-95dcaf01e5e5\",\n                    \"name\": \"Dinamo Zagreb\",\n                    \"badge\": \"sr-competitor-2032.png\",\n                    \"abbreviation\": \"DIN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c92a-08ed-4793-8537-29197bc6aed5\",\n                    \"name\": \"Brann\",\n                    \"badge\": \"sr-competitor-1159.png\",\n                    \"abbreviation\": \"SKB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e4ad-4e44-95dd-e5e31a7606f1\",\n                    \"name\": \"Rangers\",\n                    \"badge\": \"sr-competitor-2351.png\",\n                    \"abbreviation\": \"RFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace7-6c66-42e6-a3be-e64241cdf113\",\n                    \"name\": \"Shkendija Tetovo\",\n                    \"badge\": \"sr-competitor-5413.png\",\n                    \"abbreviation\": \"SHK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c312-9e51-4beb-8299-ed120dfa6d68\",\n                    \"name\": \"Shelbourne\",\n                    \"badge\": \"sr-competitor-3174.png\",\n                    \"abbreviation\": \"SHE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-78cf-44a2-bb88-a088b17a347c\",\n                    \"name\": \"Feyenoord\",\n                    \"badge\": \"sr-competitor-2959.png\",\n                    \"abbreviation\": \"FEY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9950-48c1-b5d4-f761812d85f5\",\n                    \"name\": \"Panathinaikos\",\n                    \"badge\": \"sr-competitor-3248.png\",\n                    \"abbreviation\": \"PAN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace1-ae78-417e-8a38-90812f49f8fd\",\n                    \"name\": \"Shamrock\",\n                    \"badge\": \"sr-competitor-3177.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94aceb-a5a0-4955-bc7d-a595b0faedd7\",\n                    \"name\": \"NK Celje\",\n                    \"badge\": \"sr-competitor-2413.png\",\n                    \"abbreviation\": \"CEL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d15-714c-9a8a-b661fe2b3ba5\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd8-c48a-4756-8275-2293293e66d1\",\n                    \"name\": \"Braga\",\n                    \"badge\": \"sr-competitor-2999.png\",\n                    \"abbreviation\": \"BRA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-baa7-4b20-a111-8202a82c0b1b\",\n                    \"name\": \"Crvena Zvezda\",\n                    \"badge\": \"sr-competitor-5149.png\",\n                    \"abbreviation\": \"CZV\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-46af-4c43-9af9-2e4bfee5307c\",\n                    \"name\": \"Strasbourg\",\n                    \"badge\": \"sr-competitor-1659.png\",\n                    \"abbreviation\": \"RCS\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a439-b254-4d01-b869-4186d5da11b0\",\n                    \"name\": \"Jagiellonia\",\n                    \"badge\": \"sr-competitor-7691.png\",\n                    \"abbreviation\": \"JAG\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-1ee1-4248-87a0-36b9b9697790\",\n                    \"name\": \"Breidablik\",\n                    \"badge\": \"sr-competitor-1901.png\",\n                    \"abbreviation\": \"KOP\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2a5e-e517-4b98-ad40-dd22f53162e7\",\n                    \"name\": \"Kuopion Palloseura\",\n                    \"badge\": \"sr-competitor-2244.png\",\n                    \"abbreviation\": \"KUPS\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-e0e4-4f8c-aa59-b1c409abdfa8\",\n                    \"name\": \"SK Rapid\",\n                    \"badge\": \"sr-competitor-2055.png\",\n                    \"abbreviation\": \"SCR\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace1-e90d-47f2-8a13-71819ceae79f\",\n                    \"name\": \"Fiorentina\",\n                    \"badge\": \"sr-competitor-2693.png\",\n                    \"abbreviation\": \"FIO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c31f-a70a-4dc7-a068-879f9e1077b5\",\n                    \"name\": \"Celta Vigo\",\n                    \"badge\": \"sr-competitor-2821.png\",\n                    \"abbreviation\": \"RCC\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2add-8a74-4c53-bfc8-58faec11d78e\",\n                    \"name\": \"Nice\",\n                    \"badge\": \"sr-competitor-1661.png\",\n                    \"abbreviation\": \"NIC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c368-ed2b-4782-aa0b-5706f0b1854c\",\n                    \"name\": \"Lincoln Red Imps\",\n                    \"badge\": \"sr-competitor-126304.png\",\n                    \"abbreviation\": \"LIN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45c-75f8-4a1d-b38c-bf970b93c517\",\n                    \"name\": \"Lech Poznan\",\n                    \"badge\": \"sr-competitor-3121.png\",\n                    \"abbreviation\": \"LPO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2ab8-4a4a-4fcc-8f79-9c733e7475dd\",\n                    \"name\": \"Mainz\",\n                    \"badge\": \"sr-competitor-2556.png\",\n                    \"abbreviation\": \"M05\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-b7f8-4088-9b31-8a756e9e2518\",\n                    \"name\": \"Zrinjski Mostar\",\n                    \"badge\": \"sr-competitor-5178.png\",\n                    \"abbreviation\": \"ZRI\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace6-03a6-400e-ad56-1856f450f30b\",\n                    \"name\": \"Salzburg\",\n                    \"badge\": \"sr-competitor-2046.png\",\n                    \"abbreviation\": \"RBS\"\n                },\n                \"away\": {\n                    \"id\": \"9a948083-c54e-465a-9ec7-bd19c7f13b84\",\n                    \"name\": \"Ferencvarosi\",\n                    \"badge\": \"sr-competitor-1925.png\",\n                    \"abbreviation\": \"FTC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2a9b-4c37-4624-bede-a3b5062f61cd\",\n                    \"name\": \"Lyon\",\n                    \"badge\": \"sr-competitor-1649.png\",\n                    \"abbreviation\": \"OL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c318-6afc-4bbe-aa0d-c89ba86d905d\",\n                    \"name\": \"Basel\",\n                    \"badge\": \"sr-competitor-2501.png\",\n                    \"abbreviation\": \"FCB\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-c018-4f71-be22-9ed851229f5a\",\n                    \"name\": \"GA Eagles\",\n                    \"badge\": \"sr-competitor-2979.png\",\n                    \"abbreviation\": \"GAE\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                    \"name\": \"Aston Villa\",\n                    \"badge\": \"sr-competitor-40.png\",\n                    \"abbreviation\": \"AVL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-313d-4db3-a792-f229601726dc\",\n                    \"name\": \"Alkmaar\",\n                    \"badge\": \"sr-competitor-2950.png\",\n                    \"abbreviation\": \"AZA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94accf-e1cd-4950-8b4f-30836314c790\",\n                    \"name\": \"Slovan Bratislava\",\n                    \"badge\": \"sr-competitor-2404.png\",\n                    \"abbreviation\": \"SLO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd7f-0ed0-7038-bc17-471a1f6473ae\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0d7c-4c80-ad39-b9ff5677e038\",\n                    \"name\": \"Maccabi Tel Aviv\",\n                    \"badge\": \"sr-competitor-5198.png\",\n                    \"abbreviation\": \"MTA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-e08b-43f0-8c2c-cc6aafc8f8d8\",\n                    \"name\": \"Midtjylland\",\n                    \"badge\": \"sr-competitor-1289.png\",\n                    \"abbreviation\": \"FCM\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-731e-4a04-9f97-5aa9ebf6b8ce\",\n                    \"name\": \"Shakhtar\",\n                    \"badge\": \"sr-competitor-3313.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45d-4fbe-4b9f-b9fa-f68b1df54bfa\",\n                    \"name\": \"Legia Warszawa\",\n                    \"badge\": \"sr-competitor-3106.png\",\n                    \"abbreviation\": \"LEG\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94aced-14f3-428b-b8a8-4b55e21e8205\",\n                    \"name\": \"Rijeka\",\n                    \"badge\": \"sr-competitor-2039.png\",\n                    \"abbreviation\": \"RIJ\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e085-48f8-a9ff-57e86235ad64\",\n                    \"name\": \"Sparta Prague\",\n                    \"badge\": \"sr-competitor-2218.png\",\n                    \"abbreviation\": \"SPA\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0b6a-477c-8180-fade01c34755\",\n                    \"name\": \"Hacken Gothenburg\",\n                    \"badge\": \"sr-competitor-1760.png\",\n                    \"abbreviation\": \"HAC\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acec-6b1f-482b-a5af-ad4243e92e57\",\n                    \"name\": \"Rayo Vallecano\",\n                    \"badge\": \"sr-competitor-2818.png\",\n                    \"abbreviation\": \"RVC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-314e-4a5f-90d1-e065020c17df\",\n                    \"name\": \"Fenerbahce\",\n                    \"badge\": \"sr-competitor-3052.png\",\n                    \"abbreviation\": \"FEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-2b99-4a62-b9c5-bedb6b95f11c\",\n                    \"name\": \"Stuttgart\",\n                    \"badge\": \"sr-competitor-2677.png\",\n                    \"abbreviation\": \"VFB\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acec-c098-43e0-a33e-777cbd27e1e4\",\n                    \"name\": \"KF Drita\",\n                    \"badge\": \"sr-competitor-277835.png\",\n                    \"abbreviation\": \"DRI\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-88df-4eaf-bf53-99de0096666e\",\n                    \"name\": \"Omonia Nicosia\",\n                    \"badge\": \"sr-competitor-3395.png\",\n                    \"abbreviation\": \"OMO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c946-e50a-41d9-b986-d0e1ea2126f7\",\n                    \"name\": \"Crystal Palace\",\n                    \"badge\": \"sr-competitor-7.png\",\n                    \"abbreviation\": \"CRY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c93c-c743-4768-ab99-f65f8045c8f6\",\n                    \"name\": \"Larnaca\",\n                    \"badge\": \"sr-competitor-3404.png\",\n                    \"abbreviation\": \"ALA\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-2714-4ca2-b04c-d7eb2c062896\",\n                    \"name\": \"Nottm Forest\",\n                    \"badge\": \"sr-competitor-14.png\",\n                    \"abbreviation\": \"NFO\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-ddba-47a9-9581-30f18c4f2c9d\",\n                    \"name\": \"Porto\",\n                    \"badge\": \"sr-competitor-3002.png\",\n                    \"abbreviation\": \"FCP\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-9ae1-4b48-b861-5ab84c15a5bb\",\n                    \"name\": \"FCSB\",\n                    \"badge\": \"sr-competitor-3301.png\",\n                    \"abbreviation\": \"FCSB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c314-1fe5-4448-a022-245bf92accf8\",\n                    \"name\": \"Bologna\",\n                    \"badge\": \"sr-competitor-2685.png\",\n                    \"abbreviation\": \"BFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-a29c-4bcf-819d-b49a494f045a\",\n                    \"name\": \"Uni Craiova\",\n                    \"badge\": \"sr-competitor-116223.png\",\n                    \"abbreviation\": \"CSU\"\n                },\n                \"away\": {\n                    \"id\": \"9a947f2c-36b3-4cdf-bd6e-c5fe79bdbac3\",\n                    \"name\": \"Noah Yerevan\",\n                    \"badge\": \"sr-competitor-364474.png\",\n                    \"abbreviation\": \"FCN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace8-fc14-477e-8325-d8b1a5ba9ca1\",\n                    \"name\": \"AEK Athens\",\n                    \"badge\": \"sr-competitor-3250.png\",\n                    \"abbreviation\": \"AEK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-df16-4ea7-9489-105bf25e61b8\",\n                    \"name\": \"Aberdeen\",\n                    \"badge\": \"sr-competitor-2355.png\",\n                    \"abbreviation\": \"ABE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-9e01-4535-86ef-e0b7cd4720b6\",\n                    \"name\": \"Celtic\",\n                    \"badge\": \"sr-competitor-2352.png\",\n                    \"abbreviation\": \"CEL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd3-5234-4395-9efd-8f791301c234\",\n                    \"name\": \"Sturm Graz\",\n                    \"badge\": \"sr-competitor-2051.png\",\n                    \"abbreviation\": \"STU\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-32c2-4905-bc2d-c2368a95716f\",\n                    \"name\": \"Lille\",\n                    \"badge\": \"sr-competitor-1643.png\",\n                    \"abbreviation\": \"LIL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-e714-40ed-bd4c-d5f716e61655\",\n                    \"name\": \"PAOK\",\n                    \"badge\": \"sr-competitor-3251.png\",\n                    \"abbreviation\": \"PAOK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-c286-4850-8b3c-8d2ced1a700f\",\n                    \"name\": \"Young Boys\",\n                    \"badge\": \"sr-competitor-2445.png\",\n                    \"abbreviation\": \"YB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-357c-4df0-b91a-cc63af783378\",\n                    \"name\": \"Ludogorets\",\n                    \"badge\": \"sr-competitor-43840.png\",\n                    \"abbreviation\": \"LUD\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-98db-4f3a-96f4-2e038d26d4f7\",\n                    \"name\": \"Roma\",\n                    \"badge\": \"sr-competitor-2702.png\",\n                    \"abbreviation\": \"ROM\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-889b-4040-a16d-93a204c8bf93\",\n                    \"name\": \"Plzen\",\n                    \"badge\": \"sr-competitor-4502.png\",\n                    \"abbreviation\": \"VIK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-d368-406b-b39c-0b6aaebcf1d0\",\n                    \"name\": \"Genk\",\n                    \"badge\": \"sr-competitor-2890.png\",\n                    \"abbreviation\": \"GEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-f63a-4b15-95f8-be1d2f972757\",\n                    \"name\": \"Real Betis\",\n                    \"badge\": \"sr-competitor-2816.png\",\n                    \"abbreviation\": \"RBB\"\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 32,\n        \"timezone\": \"UTC\",\n        \"filtering\": {\n            \"day\": 0,\n            \"utc_dates\": [\n                \"2025-10-23\"\n            ],\n            \"start_of_day_utc\": \"2025-10-23T00:00:00Z\",\n            \"end_of_day_utc\": \"2025-10-23T23:59:59Z\"\n        }\n    }\n}"}],"_postman_id":"d32f06e8-e30b-4034-a030-b581ce3f4127"},{"name":"bet-builder-form-selection-stats","event":[{"listen":"test","script":{"id":"39ed43c5-5cbf-450f-a26e-0935434dffe6","exec":["pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response schema is valid\", function () {","    const metricsSchema = {","        type: \"object\",","        required: [\"played\", \"won\", \"drawn\", \"lost\", \"results\"],","        properties: {","            played: { type: [\"string\", \"number\", \"null\"] },","            won: { type: [\"string\", \"number\", \"null\"] },","            drawn: { type: [\"string\", \"number\", \"null\"] },","            lost: { type: [\"string\", \"number\", \"null\"] },","            results: { type: [\"string\", \"number\", \"null\"] }","        }","    };","","    const statEntrySchema = {","        type: \"object\",","        required: [\"competition_name\", \"competition_logo\", \"country_flag\", \"season\", \"metrics\"],","        properties: {","            competition_name: { type: [\"string\", \"null\"] },","            competition_logo: { type: [\"string\", \"null\"] },","            country_flag: { type: [\"string\", \"null\"] },","            season: { type: [\"string\", \"null\"] },","            metrics: metricsSchema","        }","    };","","    const periodSchema = {","        type: \"object\",","        required: [\"home\", \"away\"],","        properties: {","            home: statEntrySchema,","            away: statEntrySchema","        }","    };","","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"object\",","                required: [\"selection_id\", \"fixture_id\", \"market_key\", \"selection_name\", \"stats\"],","                properties: {","                    selection_id: { type: \"string\" },","                    fixture_id: { type: \"string\" },","                    market_key: { type: \"string\" },","                    selection_name: { type: \"string\" },","                    stats: {","                        type: \"object\",","                        properties: {","                            domestic: {","                                type: \"object\",","                                properties: {","                                    last_0: periodSchema,","                                    season: periodSchema","                                }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"last_updated\"],","                properties: {","                    last_updated: { type: \"string\" }","                }","            }","        }","    };","","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"daca0a6c-6a4c-4260-b4ed-2cb4c288caa9","exec":["const baseUrl = pm.environment.get(\"base_url\");\r","const apiKey = pm.environment.get(\"api_key\");\r","\r","pm.environment.unset(\"selectionId\");\r","\r","const fetchFeaturedMatches = () => new Promise((resolve, reject) => {\r","    pm.sendRequest({\r","        url: baseUrl + \"/fixtures-centre-featured-matches?timezone=Europe/London\",\r","        method: \"GET\",\r","        header: {\r","            \"x-api-key\": apiKey\r","        }\r","    }, function (err, response) {\r","        if (err) {\r","            console.error(\"Error fetching fixtures-centre-featured-matches:\", err);\r","            return reject(err);\r","        }\r","\r","        const jsonData = response.json();\r","        console.log(\"fixtures-centre-featured-matches status:\", response.code);\r","        console.log(\"fixtures-centre-featured-matches response:\", JSON.stringify(jsonData).substring(0, 200));\r","\r","        if (jsonData.data && jsonData.data.length > 0) {\r","            resolve(jsonData.data[0].id);\r","        } else {\r","            console.error(\"No data found in fixtures-centre-featured-matches response\");\r","            console.log(\"Full response:\", JSON.stringify(jsonData));\r","            reject(new Error(\"No data found in fixtures-centre-featured-matches response\"));\r","        }\r","    });\r","});\r","\r","const fetchBetBuilderSelections = (fixtureId) => new Promise((resolve, reject) => {\r","    pm.sendRequest({\r","        url: baseUrl + \"/bet-builder-selections/\" + fixtureId,\r","        method: \"GET\",\r","        header: {\r","            \"x-api-key\": apiKey\r","        }\r","    }, function (err, response) {\r","        if (err) {\r","            console.error(\"Error fetching bet-builder-selections:\", err);\r","            return reject(err);\r","        }\r","\r","        const jsonData = response.json();\r","        console.log(\"bet-builder-selections status:\", response.code);\r","        console.log(\"bet-builder-selections response:\", JSON.stringify(jsonData).substring(0, 200));\r","\r","        if (jsonData.data && jsonData.data.length > 0) {\r","            resolve(jsonData.data[0].selection_id);\r","        } else {\r","            console.error(\"No data found in bet-builder-selections response\");\r","            console.log(\"Full response:\", JSON.stringify(jsonData));\r","            reject(new Error(\"No data found in bet-builder-selections response\"));\r","        }\r","    });\r","});\r","\r","const fixtureId = await fetchFeaturedMatches();\r","const selectionId = await fetchBetBuilderSelections(fixtureId);\r","\r","pm.environment.set(\"id\", selectionId);\r","\r","pm.request.url.variables.each(function(variable) {\r","    if (variable.key === \"id\") {\r","        variable.value = selectionId;\r","    }\r","});\r","\r","console.log(\"Set id to:\", selectionId);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"df7dfa9d-7440-4ad4-b254-001b664348bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/bet-builder-form-selection-stats/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["bet-builder-form-selection-stats",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"019ce1bd-5626-7339-a193-40a2d96f5916","key":"id"}]}},"response":[{"id":"533fa7e8-92eb-4cab-b3e6-4fbc7f858df1","name":"bet-builder-form-selection-stats","originalRequest":{"method":"GET","header":[],"url":{"raw":"/bet-builder-form-selection-stats/:id","host":[""],"path":["bet-builder-form-selection-stats",":id"],"variable":[{"key":"id","value":"019a07c5-6176-707b-aa5a-8e5276feb27b"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 15:18:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1177"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"ae7bff79-7c82-4e04-a72a-6347f3b5fa7f"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9TNkHr_DoEERMw="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb98bc-31841d41516fa983310043ae;Parent=3d37642a6047a7c6;Sampled=0;Lineage=1:712e8fd8:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"selection_id\": \"019a07c5-6176-707b-aa5a-8e5276feb27b\",\n        \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n        \"market_key\": \"MATCH_ODDS\",\n        \"selection_name\": \"Man City\",\n        \"stats\": {\n            \"domestic\": {\n                \"last_5\": {\n                    \"home\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 5,\n                            \"won\": 3,\n                            \"drawn\": 2,\n                            \"lost\": 0,\n                            \"results\": \"w,w,w,d,d\"\n                        }\n                    },\n                    \"away\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 5,\n                            \"won\": 4,\n                            \"drawn\": 1,\n                            \"lost\": 0,\n                            \"results\": \"w,w,w,d,w\"\n                        }\n                    }\n                },\n                \"season\": {\n                    \"home\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 8,\n                            \"won\": 3,\n                            \"drawn\": 3,\n                            \"lost\": 2,\n                            \"results\": \"w,w,w,d,d,l,l,d\"\n                        }\n                    },\n                    \"away\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 8,\n                            \"won\": 5,\n                            \"drawn\": 2,\n                            \"lost\": 1,\n                            \"results\": \"w,w,w,d,w,d,l,w\"\n                        }\n                    }\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"last_updated\": \"2025-10-24T11:06:19Z\"\n    }\n}"}],"_postman_id":"df7dfa9d-7440-4ad4-b254-001b664348bd"},{"name":"bet-builder-match-selection-stats","event":[{"listen":"test","script":{"id":"af058526-651f-47e0-a826-4bd8092a2d97","exec":["pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response schema is valid\", function () {","    const metricsSchema = {","        type: \"object\",","        required: [\"played\", \"hit_rate\", \"for\", \"against\", \"total\", \"average\"],","        properties: {","            played: { type: \"number\" },","            hit_rate: { type: [\"number\", \"null\"] },","            for: { type: \"number\" },","            against: { type: \"number\" },","            total: { type: \"number\" },","            average: { type: \"number\" }","        }","    };","","    const statEntrySchema = {","        type: [\"object\", \"null\"],","        required: [\"competition_name\", \"competition_logo\", \"country_flag\", \"season\", \"metrics\"],","        properties: {","            competition_name: { type: [\"string\", \"null\"] },","            competition_logo: { type: [\"string\", \"null\"] },","            country_flag: { type: [\"string\", \"null\"] },","            season: { type: [\"string\", \"null\"] },","            metrics: metricsSchema","        }","    };","","    const periodSchema = {","        type: \"object\",","        required: [\"home\", \"away\"],","        properties: {","            home: statEntrySchema,","            away: statEntrySchema","        }","    };","","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"object\",","                required: [\"selection_id\", \"fixture_id\", \"market_key\", \"selection_name\", \"stats\"],","                properties: {","                    selection_id: { type: \"string\" },","                    fixture_id: { type: \"string\" },","                    market_key: { type: \"string\" },","                    selection_name: { type: \"string\" },","                    stats: {","                        type: \"object\",","                        properties: {","                            domestic: {","                                type: \"object\",","                                properties: {","                                    last_5: periodSchema,","                                    season: periodSchema","                                }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"last_updated\"],","                properties: {","                    last_updated: { type: \"string\" }","                }","            }","        }","    };","","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"8401d102-8819-499f-a140-302ae33675a6","exec":["const baseUrl = pm.environment.get(\"base_url\");\r","const apiKey = pm.environment.get(\"api_key\");\r","\r","pm.environment.unset(\"selectionId\");\r","\r","const fetchFeaturedMatches = () => new Promise((resolve, reject) => {\r","    pm.sendRequest({\r","        url: baseUrl + \"/fixtures-centre-featured-matches?timezone=Europe/London\",\r","        method: \"GET\",\r","        header: {\r","            \"x-api-key\": apiKey\r","        }\r","    }, function (err, response) {\r","        if (err) {\r","            console.error(\"Error fetching fixtures-centre-featured-matches:\", err);\r","            return reject(err);\r","        }\r","\r","        const jsonData = response.json();\r","        console.log(\"fixtures-centre-featured-matches status:\", response.code);\r","        console.log(\"fixtures-centre-featured-matches response:\", JSON.stringify(jsonData).substring(0, 200));\r","\r","        if (jsonData.data && jsonData.data.length > 0) {\r","            resolve(jsonData.data[0].id);\r","        } else {\r","            console.error(\"No data found in fixtures-centre-featured-matches response\");\r","            console.log(\"Full response:\", JSON.stringify(jsonData));\r","            reject(new Error(\"No data found in fixtures-centre-featured-matches response\"));\r","        }\r","    });\r","});\r","\r","const fetchBetBuilderSelections = (fixtureId) => new Promise((resolve, reject) => {\r","    pm.sendRequest({\r","        url: baseUrl + \"/bet-builder-selections/\" + fixtureId,\r","        method: \"GET\",\r","        header: {\r","            \"x-api-key\": apiKey\r","        }\r","    }, function (err, response) {\r","        if (err) {\r","            console.error(\"Error fetching bet-builder-selections:\", err);\r","            return reject(err);\r","        }\r","\r","        const jsonData = response.json();\r","        console.log(\"bet-builder-selections status:\", response.code);\r","        console.log(\"bet-builder-selections response:\", JSON.stringify(jsonData).substring(0, 200));\r","\r","        if (jsonData.data && jsonData.data.length > 0) {\r","            resolve(jsonData.data[0].selection_id);\r","        } else {\r","            console.error(\"No data found in bet-builder-selections response\");\r","            console.log(\"Full response:\", JSON.stringify(jsonData));\r","            reject(new Error(\"No data found in bet-builder-selections response\"));\r","        }\r","    });\r","});\r","\r","const fixtureId = await fetchFeaturedMatches();\r","const selectionId = await fetchBetBuilderSelections(fixtureId);\r","\r","pm.environment.set(\"id\", selectionId);\r","\r","pm.request.url.variables.each(function(variable) {\r","    if (variable.key === \"id\") {\r","        variable.value = selectionId;\r","    }\r","});\r","\r","console.log(\"Set id to:\", selectionId);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"88cf6ef4-df92-409b-ba8a-ce9cddf3088e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/bet-builder-match-selection-stats/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["bet-builder-match-selection-stats",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"019ce789-5324-737c-b8e7-4892f2b7fb16","key":"id"}]}},"response":[{"id":"5d93d3de-699c-47c7-91ef-5e5085f3957c","name":"bet-builder-match-selection-stats","originalRequest":{"method":"GET","header":[],"url":{"raw":"/bet-builder-match-selection-stats/:id","host":[""],"path":["bet-builder-match-selection-stats",":id"],"variable":[{"key":"id","value":"019a07c5-61fa-70ee-a463-b6d6232a9a72"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 15:19:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1238"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"132ce8d9-01d9-4809-9673-8ca61be903e2"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9TTjH19DoEETiw="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb98e3-7bf8a772492f6c96123395a4;Parent=1c906517624f43f9;Sampled=0;Lineage=1:c282fd45:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"selection_id\": \"019a07c5-61fa-70ee-a463-b6d6232a9a72\",\n        \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n        \"market_key\": \"OVER_UNDER_15\",\n        \"selection_name\": \"Over 1.5 Goals\",\n        \"stats\": {\n            \"domestic\": {\n                \"last_5\": {\n                    \"home\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 5,\n                            \"hit_rate\": 80,\n                            \"for\": 1.6,\n                            \"against\": 0.8,\n                            \"total\": 12,\n                            \"average\": 2.4\n                        }\n                    },\n                    \"away\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 5,\n                            \"hit_rate\": 80,\n                            \"for\": 2.4,\n                            \"against\": 0.4,\n                            \"total\": 14,\n                            \"average\": 2.8\n                        }\n                    }\n                },\n                \"season\": {\n                    \"home\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 8,\n                            \"hit_rate\": 63,\n                            \"for\": 1,\n                            \"against\": 1,\n                            \"total\": 16,\n                            \"average\": 2\n                        }\n                    },\n                    \"away\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 8,\n                            \"hit_rate\": 75,\n                            \"for\": 2,\n                            \"against\": 0.5,\n                            \"total\": 20,\n                            \"average\": 2.5\n                        }\n                    }\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"last_updated\": \"2025-10-24T11:06:19Z\"\n    }\n}"}],"_postman_id":"88cf6ef4-df92-409b-ba8a-ce9cddf3088e"},{"name":"bet-builder-player-selection-stats","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})"]}}],"id":"2790c3bc-4ae3-4ab2-82f6-e9603afe5e4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/bet-builder-player-selection-stats/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["bet-builder-player-selection-stats",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"019c05c7-80f6-7092-9de3-82b248725300","key":"id"}]}},"response":[{"id":"e3873e9b-b6d4-4eb5-8312-38f76a1cd834","name":"bet-builder-player-selection-stats","originalRequest":{"method":"GET","header":[],"url":{"raw":"/bet-builder-player-selection-stats/:id","host":[""],"path":["bet-builder-player-selection-stats",":id"],"variable":[{"key":"id","value":"019a15cf-7e85-7172-a0e8-bd7a9c7503c8"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 15:19:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"451"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"69230804-4e54-46bd-b6bd-56f7d7b44a8c"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9TXtERsjoEERMw="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb98fd-6430d0387e16defc0e64ca0c;Parent=7fd7d35005b094d9;Sampled=0;Lineage=1:2878a7b8:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"selection_id\": \"019a15cf-7e85-7172-a0e8-bd7a9c7503c8\",\n        \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n        \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n        \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n        \"selection_name\": \"Rico Lewis\",\n        \"stats\": {\n            \"domestic\": {\n                \"last_5\": {\n                    \"played\": 5,\n                    \"average_minutes\": 34,\n                    \"hit_rate\": 40,\n                    \"total_stat\": 3,\n                    \"average_stat_per_90\": 1.57\n                },\n                \"season\": null\n            }\n        }\n    },\n    \"meta\": {\n        \"last_updated\": \"2025-10-24T11:27:27Z\"\n    }\n}"}],"_postman_id":"2790c3bc-4ae3-4ab2-82f6-e9603afe5e4d"},{"name":"bet-builder-selections","event":[{"listen":"prerequest","script":{"id":"499c2c62-1fb8-4488-ac11-d313ebfb0212","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","","pm.environment.unset(\"selectionId\");","","const fetchFeaturedMatches = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/fixtures-centre-featured-matches?timezone=Europe/London\",","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, response) {","        if (err) {","            console.error(\"Error fetching fixtures-centre-featured-matches:\", err);","            return reject(err);","        }","","        const jsonData = response.json();","        console.log(\"fixtures-centre-featured-matches status:\", response.code);","        console.log(\"fixtures-centre-featured-matches response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData.data && jsonData.data.length > 0) {","            resolve(jsonData.data[0].id);","        } else {","            console.error(\"No data found in fixtures-centre-featured-matches response\");","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(\"No data found in fixtures-centre-featured-matches response\"));","        }","    });","});","","const fixtureId = await fetchFeaturedMatches();","","pm.environment.set(\"fixtureId\", fixtureId);","","pm.request.url.variables.each(function(variable) {","    if (variable.key === \"fixtureId\") {","        variable.value = fixtureId;","    }","});","","console.log(\"Set fixtureId to:\", fixtureId);"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"8cb4dd9a-2965-4b53-9748-2cfd651c3c47","exec":["// 1. HTTP 200 Status Check","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Check","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","// 3. JSON Schema Validation","pm.test(\"Response matches expected schema\", function () {","    const jsonData = pm.response.json();","    ","    // Validate top-level structure","    pm.expect(jsonData).to.have.property(\"data\").that.is.an(\"array\");","    pm.expect(jsonData).to.have.property(\"meta\").that.is.an(\"object\");","    ","    // Validate meta object","    pm.expect(jsonData.meta).to.have.property(\"results\").that.is.a(\"number\");","    ","    // Validate each item in data array","    jsonData.data.forEach((item, index) => {","        pm.expect(item, `data[${index}].selection_id`).to.have.property(\"selection_id\").that.is.a(\"string\");","        pm.expect(item, `data[${index}].kick_off`).to.have.property(\"kick_off\").that.is.a(\"string\");","        pm.expect(item, `data[${index}].fixture_id`).to.have.property(\"fixture_id\").that.is.a(\"string\");","        pm.expect(item, `data[${index}].market_key`).to.have.property(\"market_key\").that.is.a(\"string\");","        pm.expect(item, `data[${index}].selection_name`).to.have.property(\"selection_name\").that.is.a(\"string\");","        pm.expect(item, `data[${index}].selection_type`).to.have.property(\"selection_type\").that.is.a(\"string\");","        pm.expect(item, `data[${index}].hit_rates`).to.have.property(\"hit_rates\").that.is.an(\"object\");","        pm.expect(item, `data[${index}].odds`).to.have.property(\"odds\").that.is.an(\"object\");","        ","        // Validate odds object structure","        pm.expect(item.odds, `data[${index}].odds.decimal`).to.have.property(\"decimal\").that.is.a(\"number\");","        pm.expect(item.odds, `data[${index}].odds.numerator`).to.have.property(\"numerator\").that.is.a(\"number\");","        pm.expect(item.odds, `data[${index}].odds.denominator`).to.have.property(\"denominator\").that.is.a(\"number\");","    });","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a539f68c-c772-4832-9c3c-3576cf4da384","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/bet-builder-selections/:fixtureId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["bet-builder-selections",":fixtureId"],"host":[""],"query":[],"variable":[{"type":"any","value":"9f2ef10f-cf04-4759-94ee-23f22427a1ef","key":"fixtureId"}]}},"response":[{"id":"c297bb3e-56c9-4917-9d80-63700ce33efe","name":"bet-builder-selections","originalRequest":{"method":"GET","header":[],"url":{"raw":"/bet-builder-selections/:id","host":[""],"path":["bet-builder-selections",":id"],"variable":[{"key":"id","value":"9fae4361-7554-45fc-ba79-4fe586eea353"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 15:17:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"174594"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"3a4ee7ac-1c25-4608-81fa-eaa80e074068"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9TC7HaFDoEESGA="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb9878-7b6a672371ffe13772dbfcbe;Parent=12c5afd0472e5eb6;Sampled=0;Lineage=1:1f83b8e2:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"selection_id\": \"019a10c3-0ee5-71e2-b7ad-419e3a53e884\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"selection_name\": \"Aston Villa Under 3.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 38\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-073a-73f0-b0bf-4974d61b7a16\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"selection_name\": \"Aston Villa Under 4.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 38\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9be5-720f-bcfd-190cf1a68991\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"selection_name\": \"Man City Over 1.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 38\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-04b1-70a9-b6e0-fc8b27a4394e\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"selection_name\": \"Under 10.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 50,\n                    \"last_4\": 38,\n                    \"last_5\": 40,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9a47-73bd-aab5-3acf7e9d960a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"selection_name\": \"Aston Villa Over 2.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 25\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6071-72d2-aa1d-a6414abf54ec\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"selection_name\": \"Under 2.5 Goals\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 50,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 50,\n                    \"all_season\": 56\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-0fb8-731d-bf00-9fa2e8c5ae44\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_5.5\",\n            \"selection_name\": \"Aston Villa Under 5.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a10c2-fe71-7217-95d8-33984d7821dd\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"selection_name\": \"Man City Under 4.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-058f-713c-905c-69061fbbfc97\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_5.5\",\n            \"selection_name\": \"Man City Under 5.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-0bb8-7268-9783-265e37888776\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"selection_name\": \"Man City Under 2.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-0d5b-72b1-af27-589714c3f315\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"selection_name\": \"Man City Under 3.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.8,\n                \"numerator\": 14,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9dc7-711a-870e-332eaa51ddcf\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"selection_name\": \"Aston Villa Over 1.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 63\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5e5f-73dd-9c86-b8c95e585ca5\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"selection_name\": \"No Both Teams To Score\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 50,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 63\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6050-70e3-b2d6-05f64e062e6e\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 50,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 50,\n                    \"last_5\": 50,\n                    \"all_season\": 44\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a97e-72ba-9dab-e360ab6f32af\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"selection_name\": \"Over 3.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 63,\n                    \"last_5\": 60,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-1075-7169-9c3d-af4256b134f1\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"selection_name\": \"Under 11.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 50,\n                    \"last_4\": 50,\n                    \"last_5\": 50,\n                    \"all_season\": 69\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9f07-71d9-a6ed-9787715a1cdb\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"selection_name\": \"Man City Over 0.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 63\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5e11-7135-9b63-d4452f18a790\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"selection_name\": \"Yes Both Teams To Score\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 50,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 38\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9ac1-7387-8e01-122b474f82fb\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"selection_name\": \"Over 2.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 70,\n                    \"all_season\": 75\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a05b-73eb-8a01-e5ea1e952d66\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"selection_name\": \"Aston Villa Over 0.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 88\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5f9e-737f-a5ea-c844ae0353a9\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"selection_name\": \"Aston Villa And Draw Double Chance\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 75\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cd-bbdb-7095-8bb3-3c38eada2a1a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_2_OR_MORE_SAVES\",\n            \"selection_name\": \"Aston Villa Goalkeeper 2+ Saves\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 100\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9c9a-703c-a1e2-9e9222621091\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"selection_name\": \"Under 4.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 75,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 70,\n                    \"all_season\": 69\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9d40-7210-a9ed-b131a2b00fd6\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"selection_name\": \"Man City Under 2.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 100\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15cd-bbaa-732e-af84-2653c601b58f\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_3_OR_MORE_SAVES\",\n            \"selection_name\": \"Man City Goalkeeper 3+ Saves\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 0,\n                    \"last_4\": 0,\n                    \"last_5\": 0,\n                    \"all_season\": 100\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-07a6-73e0-b2b0-9be86696208f\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"selection_name\": \"Aston Villa Over 2.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 88\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9c0d-71ca-a0f1-dbe13b90156e\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"selection_name\": \"Man City Under 1.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 63\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cd-bb7e-7014-b6b1-b8bd7daffe75\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_3_OR_MORE_SAVES\",\n            \"selection_name\": \"Aston Villa Goalkeeper 3+ Saves\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 100\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-0f6b-7184-98fe-7d837862dbaf\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_5.5\",\n            \"selection_name\": \"Aston Villa Over 5.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 67,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-0b62-71a7-9d8c-ec42513633ea\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"selection_name\": \"Man City Over 2.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a10c2-fef7-72ab-acd7-f1c8c9e29458\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"selection_name\": \"Over 8.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 75,\n                    \"last_3\": 83,\n                    \"last_4\": 88,\n                    \"last_5\": 80,\n                    \"all_season\": 81\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6176-707b-aa5a-8e5276feb27b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"selection_name\": \"Man City To Win\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 63\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a10c2-fdf5-734c-b30f-f9beed5b64aa\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"selection_name\": \"Man City Over 4.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-06f3-7332-b920-65e0dd1d3b37\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"selection_name\": \"Aston Villa Over 4.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 63\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-60fd-70ab-9c81-c3126f829633\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"selection_name\": \"Aston Villa To Win\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 38\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a0ab-705a-9ef5-766ec058f219\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"selection_name\": \"Aston Villa Under 0.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 13\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-101e-7019-9a5d-8833a99c6d9d\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"selection_name\": \"Over 11.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 50,\n                    \"last_4\": 50,\n                    \"last_5\": 50,\n                    \"all_season\": 31\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6303-72ef-b690-3ddcf857b5df\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"selection_name\": \"Man City Draw No Bet\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 63\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-0d13-7133-8200-9fdc5d5004c5\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"selection_name\": \"Man City Over 3.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5fd3-70ff-b4d8-50ef548bdb4b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"selection_name\": \"Man City And Draw Double Chance\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 88\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15cd-bb33-7185-bcdd-65735aa23725\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_1_OR_MORE_SAVES\",\n            \"selection_name\": \"Aston Villa Goalkeeper 1+ Saves\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 100\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5d61-739b-89aa-530e54080281\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"selection_name\": \"Under 3.5 Goals\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 81\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-61fa-70ee-a463-b6d6232a9a72\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 75,\n                    \"last_3\": 83,\n                    \"last_4\": 88,\n                    \"last_5\": 80,\n                    \"all_season\": 69\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9b01-70e4-92f7-35bff43fd71b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"selection_name\": \"Under 2.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 30,\n                    \"all_season\": 25\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-09c2-720f-bd86-a9f477b60410\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"selection_name\": \"Over 9.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 75,\n                    \"last_3\": 83,\n                    \"last_4\": 88,\n                    \"last_5\": 80,\n                    \"all_season\": 69\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a15cd-bb51-73ae-adc4-f99212d08eef\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_1_OR_MORE_SAVES\",\n            \"selection_name\": \"Man City Goalkeeper 1+ Saves\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 100\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 18\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-053a-7244-aa9c-e4dc6349e36a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_5.5\",\n            \"selection_name\": \"Man City Over 5.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-0e83-7355-ad52-db1bc2706b51\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"selection_name\": \"Aston Villa Over 3.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 63\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-0452-7133-9723-888a84ea7327\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"selection_name\": \"Over 10.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 50,\n                    \"last_4\": 63,\n                    \"last_5\": 60,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cd-bbff-71c3-a91b-cc2631d1c5fa\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_2_OR_MORE_SAVES\",\n            \"selection_name\": \"Man City Goalkeeper 2+ Saves\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 0,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 100\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9f52-71cd-a4d8-027e99e6f870\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"selection_name\": \"Man City Under 0.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 38\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9e16-7341-baf6-66f4fb2a3622\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"selection_name\": \"Aston Villa Under 1.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 38\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.15,\n                \"numerator\": 23,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a15cd-bc85-7276-9f09-6b5f21f381c4\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_4_OR_MORE_SAVES\",\n            \"selection_name\": \"Man City Goalkeeper 4+ Saves\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 0,\n                    \"last_4\": 0,\n                    \"last_5\": 0,\n                    \"all_season\": 100\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9b97-7148-b924-3a1f31202265\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"OVER/UNDER_5.5_CARDS\",\n            \"selection_name\": \"Under 5.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 90,\n                    \"all_season\": 94\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6004-70d9-8419-422c344c3949\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"selection_name\": \"Aston Villa And Man City Double Chance\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 70,\n                    \"all_season\": 69\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15cd-bc42-72bc-bfe8-c1a6ebb10f56\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_4_OR_MORE_SAVES\",\n            \"selection_name\": \"Aston Villa Goalkeeper 4+ Saves\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 0,\n                    \"last_4\": 0,\n                    \"last_5\": 0,\n                    \"all_season\": 100\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.6,\n                \"numerator\": 8,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a10c3-0dc3-7362-9fda-36ef49a17fe5\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"selection_name\": \"Over 7.5 Corners\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 75,\n                    \"last_3\": 83,\n                    \"last_4\": 88,\n                    \"last_5\": 80,\n                    \"all_season\": 81\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a9b1-72fa-8415-6d269f9a11d8\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"selection_name\": \"Under 3.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"home_competition_name\": \"Premier League\",\n                    \"home_competition_logo\": \"sr-competition-17.png\",\n                    \"home_country_flag\": \"ENG.png\",\n                    \"home_season\": \"25/26\",\n                    \"away_competition_name\": \"Premier League\",\n                    \"away_competition_logo\": \"sr-competition-17.png\",\n                    \"away_country_flag\": \"ENG.png\",\n                    \"away_season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 38,\n                    \"last_5\": 40,\n                    \"all_season\": 50\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-9a6e-70dd-8a8c-d257388673e9\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"selection_name\": \"Aston Villa Under 2.5 Cards\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 67,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 75\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-62af-7394-93fb-d4c9de6f18c0\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"selection_name\": \"Aston Villa Draw No Bet\",\n            \"selection_type\": \"team\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 38\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7e85-7172-a0e8-bd7a9c7503c8\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rico Lewis 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 40,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 40,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-490a-704d-8423-7e1356df1819\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Jeremy Doku Anytime Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 40,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-931b-71b3-a2cd-aa4e1e5ec857\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tyrone Mings 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 40,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-776b-72a1-9216-d3bbd698dc6a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Jeremy Doku 3+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 40,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 0,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-816b-7095-af84-12be71dd8d50\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Bernardo Silva 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 40,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 0,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 37,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5490-710c-a7e1-b405d8de7ccb\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Jeremy Doku To Score or Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 40,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.6,\n                \"numerator\": 8,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3096-7127-afe5-bccb0d46e3bf\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ezri Konsa 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 42,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 0,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 42,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-733f-700b-a762-2a29ecefb01f\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Donyell Malen 3+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3632-728c-8bf9-c1c2da7bcd7b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Phil Foden 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3a05-728d-bb59-5d35b5c79c8d\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"John McGinn 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8036-72bb-9ae9-90b066400010\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Donyell Malen 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8ba9-702c-a0d2-716d53f222f4\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ross Barkley 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3ef5-705b-ad27-dc64334a6942\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Phil Foden 5+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 16,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-73fe-732c-b5c6-f12a71005202\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ezri Konsa 2+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 28,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3428-71e4-9cf9-f0b8befd09fe\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Lamare Bogarde 2+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-91e9-7232-8c00-5da2f1fd746b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Pau Torres 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 40,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3b35-7338-ac8c-cee020fb2b25\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Josko Gvardiol 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-71c6-71af-9033-45c8e1efcc30\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Phil Foden 3+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 16,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4f96-73cc-abb6-2b96aee9bdde\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Boubacar Kamara Anytime Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-481b-70c1-b10b-df46890183ee\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Phil Foden 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4f6b-7237-8ae9-eb09a2a592fe\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ezri Konsa 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 14,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6661-70db-9abb-29b1c7f5973d\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Donyell Malen To Score Anytime\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3050-734e-84da-93a5636d292e\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Cherki 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-82e5-728b-9eae-b308a3fbc32b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Tyrone Mings 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5581-70f0-9513-eadfa4b07d65\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Donyell Malen To Score or Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-360a-733b-9f21-199de0e9e923\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Omar Marmoush 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9403-7253-bfc5-ebdaecf17253\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ezri Konsa 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 14,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3726-73a8-b438-cd90c09880c8\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Donyell Malen 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 37,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5c72-7330-8add-47cdadc20bd4\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Omar Marmoush 2+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8398-7076-868a-f87ab777ff1d\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Abdukodir Khusanov 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": \"Injured\"\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5ea2-72b9-931f-f5ea4cbf1b38\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Morgan Rogers 2+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-38f5-715a-a7c7-4a45354617af\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Harvey Elliott 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4cc4-7265-ac6c-14a64fe1b67b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Matty Cash 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7680-73a6-98c9-269e6fd73bc2\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Morgan Rogers 3+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-544f-7276-b768-ab6d0489f2c0\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Donyell Malen To Score First\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2ad2-7128-aa4d-7818de631b2c\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Lucas Digne 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 37,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7f59-736c-b3c1-54d6831a3e2a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Amadou Onana 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-367d-7258-917a-9b560679a109\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ollie Watkins 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 37,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-39a7-7229-a688-aa4947ee59d8\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Morgan Rogers 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-716b-7239-ae52-c65f70904173\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Omar Marmoush 3+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-768a-7233-83db-c2cf79c08579\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ruben Dias 2+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9252-70a7-858f-ec9deb541a91\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Boubacar Kamara 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5a58-7072-8f5b-8577b866b3b9\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Boubacar Kamara To Score or Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4838-7210-934e-956432ebed4c\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Omar Marmoush 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-36cc-7025-aca0-b8e5e849e96e\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Abdukodir Khusanov 2+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": \"Injured\"\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-965d-73a6-8110-e1af9f4a00b5\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Phil Foden 4+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 16,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2b36-72e3-a41a-2529bf4889ef\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Bernardo Silva 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 50,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 0,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7eb4-707e-a785-05743aa1f039\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Oscar Bobb 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 57,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 57,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8a2f-70d6-b4b4-cd62a24f380e\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rodri 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 60,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 60,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": \"Injured\"\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-331e-71f8-9160-176cfe5a4f58\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Emiliano Buendia 2+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 60,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 42,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2eff-717b-a04b-515e9e448dce\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Tyrone Mings 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 60,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-70b5-7188-9310-b056b711e3a0\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"John McGinn 2+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 60,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-383a-7065-8bad-f03ed8cb94f3\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Emiliano Buendia 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 60,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 0,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 57,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2d5e-702b-8656-f2170d43ba5e\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ollie Watkins 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 60,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2ceb-735a-8dd2-10ca3afcb3bb\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Erling Haaland 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 62,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-821a-7250-b5b1-9368feff1586\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico Gonzalez 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 66,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 57,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": \"Injured\"\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4c53-702d-8417-c5f3eafef7f8\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Morgan Rogers Anytime Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 66,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-334e-7243-baa1-037e6d0c198a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Morgan Rogers 2+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 66,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2be1-7067-840f-07c13399100a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Abdukodir Khusanov 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 66,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": \"Injured\"\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4ee1-714d-b129-758ac5f7968a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Lucas Digne 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 66,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-908d-7358-91ab-7de55685ff42\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Lucas Digne 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 66,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 37,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-82b8-71c9-8c7a-2312d4744991\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ian Maatsen 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 66,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 40,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8438-71c8-a1ea-e6e4c8d39d6d\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ruben Dias 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 66,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2859-72dd-a45a-07f4b9db5d97\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Matheus Nunes 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 66,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8119-72d5-b3d0-a30376d606b1\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ezri Konsa 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 71,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 71,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8064-70e8-9b37-a0f89612bd98\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ollie Watkins 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 75,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 75,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-80c2-72cf-9af8-b011d5a8cf9c\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rodri 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 80,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 80,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": \"Injured\"\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2960-70e0-8dda-e9d550e89c64\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Matty Cash 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 80,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 75,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-28c7-71de-b715-b7becbcef7a9\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Morgan Rogers 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 80,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4954-7299-82a6-051033084eee\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Tijjani Reijnders 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 80,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 0,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2831-7023-a2fb-0d18f0fe2e61\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Evann Guessand 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 71,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-279a-71c1-906a-49ccba831796\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Amadou Onana 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-84dc-73bb-8e62-298f25600910\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Savinho 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 60,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8286-7304-a87b-65515a944c16\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Matty Cash 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7deb-717a-89dc-d1552862520f\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Savinho 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 80,\n                    \"all_season\": 80,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-493b-70d6-a1cc-5f9272b7bdf6\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Omar Marmoush Anytime Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3587-734b-a6b7-baf2ffbbfa6b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Erling Haaland 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 75,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-81ea-7096-a28f-718c001c9b88\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Erling Haaland 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 100,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 50\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-80ec-7215-be56-11bf159ad2de\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Morgan Rogers 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 87,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8316-707a-b089-6aaa5a326cd4\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Josko Gvardiol 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6648-72a9-9a16-8e9996d4c0e1\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Erling Haaland 3+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8d99-7076-a1d1-5cd4b26934e5\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Josko Gvardiol 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-792c-70e1-a8b2-78ccf3629a7c\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Boubacar Kamara 3+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7201-7383-98f5-48e3e1979009\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Boubacar Kamara 2+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4c7b-7316-a94b-82ddcbd9a68a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Nico O'Reilly Anytime Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 14,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-82c7-70b5-b640-70a60c735f98\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ollie Watkins 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 75,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-74e1-730b-a93c-06dfb9c57cc4\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Erling Haaland 2+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7fa9-70a5-947d-fe971f41ec77\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Emiliano Buendia 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 57,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2e50-703f-8f6c-af50bb2de9dd\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Tijjani Reijnders 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 37,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-74b7-723e-8ab3-43d77df97240\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Matty Cash 2+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 37,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7e3c-7394-ba46-ffe561394ec0\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Evann Guessand 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 71,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5b7c-71a6-ac0c-bfb2d28c295e\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Erling Haaland 2+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 75,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-485e-7225-a9a1-9b7eb107adc3\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Savinho 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 40,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5ba3-7278-a2d5-4569371ec5e7\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Erling Haaland To Score First\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2fed-7245-95c8-d803d563b27f\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Donyell Malen 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-49b7-70e8-b93e-312bf904f3d8\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Emiliano Buendia 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 28,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7eed-729e-b087-87f9bdf99164\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Cherki 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-588e-703d-9d27-dcc7a45edc09\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Josko Gvardiol To Score or Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2dd6-7105-8675-b9d4ac140835\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ruben Dias 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7f0b-70b0-86bd-eb5f50c72468\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Bradley Burrowes 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"all_season\": 100,\n                    \"last_x_raw\": [\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-89b4-71fa-a80f-37242f0c9745\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Morgan Rogers 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-29ed-73b6-8de9-84547998dc52\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Savinho 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 40,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-385e-7020-a0b9-bbf1423e3207\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jeremy Doku 2+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7063-71bf-8146-b0e91ef41bcb\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jeremy Doku 2+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7441-716b-b793-6543b9d31667\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico O'Reilly 2+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 14,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2997-7328-b755-56fe72d2777a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Lamare Bogarde 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 66,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-902d-7314-82e1-652add32ea87\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nathan Ake 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 60,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8edb-7367-bb90-b87e265c1e27\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ian Maatsen 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 60,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-703b-7194-8620-e3b0c1fccd67\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Savinho 2+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 60,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3125-7133-88d8-25e6a13cd1aa\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"John McGinn 2+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8c0e-717e-9842-54921869a9f1\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jadon Sancho 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"all_season\": 100,\n                    \"last_x_raw\": [\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-a350-7125-9cbe-30856c79d82e\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Erling Haaland 4+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9522-7094-b2cd-a003e76764ff\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Erling Haaland 4+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4ee1-73de-ba71-2a0c03a65c06\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Lucas Digne Anytime Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-48d9-713d-ad01-5c398bd86ab6\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Savinho Anytime Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 20,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-83e8-70a6-8d2a-07e89d7ca198\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Lucas Digne 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5cad-7281-981b-30a79bfcd895\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Savinho 2+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 20,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-27c2-707e-a277-729328355a44\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico Gonzalez 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 71,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": \"Injured\"\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4bbd-7171-823b-feb2acdaecf0\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Josko Gvardiol 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-66b5-720b-8902-2d6dc269a076\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Morgan Rogers To Score Anytime\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 12,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2c95-72a4-9d10-63464169c69f\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Omar Marmoush 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8009-71bd-a757-170e9d37fb0c\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Harvey Elliott 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"all_season\": 66,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-535f-7210-9659-79deb45b6d01\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Savinho To Score or Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 20,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8e0d-73ad-95a1-20b40a0408ad\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nico O'Reilly 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 57,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5436-7271-ad8c-0c603951ef0b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Ait-Nouri 3+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3e3a-702f-af45-8ceedbb0c2c2\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Erling Haaland 5+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-28ef-705b-9ef5-b65ccadd5414\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Emiliano Buendia 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 100,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-63a7-712e-a269-12db5149f18c\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Emiliano Buendia To Score Anytime\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 28,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-524b-71a7-ac00-e347ce37f1ec\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Erling Haaland To Score or Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 87,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6b39-723c-87cb-1826f3490fe0\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Erling Haaland To Score Anytime\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 87,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2bb7-70b8-89e9-28737be205c9\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Ait-Nouri 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2e1c-70fd-bde0-138251180eb1\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jeremy Doku 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 75,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-81be-7396-8d25-04b9f1d3a199\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Tijjani Reijnders 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 40,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7d97-722f-814e-63ee20d7dd3e\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Omar Marmoush 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"all_season\": 100,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-36a2-73dd-bf0e-74722bc1ca4c\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Savinho 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 20,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-52f1-7242-bec2-ae6f2b2a40e5\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Omar Marmoush To Score or Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7f2f-7170-9a64-99f1dc6b9413\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Lamare Bogarde 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2f57-7121-9a95-051490adfd0b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Phil Foden 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 80,\n                    \"all_season\": 66,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-874e-70fe-84fa-2754f2336d5b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Oscar Bobb 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 42,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7972-73da-9a98-3168957877bb\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Lamare Bogarde 3+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-72dd-7329-9ba5-476691ea897f\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tijjani Reijnders 3+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7913-712c-8fb6-5be6dafae0ad\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nico O'Reilly 3+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 14,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4f55-720f-9135-7e38db7a015a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Josko Gvardiol Anytime Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-6ff2-7215-9f65-3dc6f7206c22\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Omar Marmoush 2+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"all_season\": 66,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-824e-73ae-b0ac-5f81cdcf7f6d\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Erling Haaland 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-836d-7305-816d-48be742dd110\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nathan Ake 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 60,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8f34-721b-bfb2-dabdff563c19\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Matty Cash 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 80,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-819c-71ba-8eee-145be0cb600d\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico O'Reilly 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 14,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7e5e-7315-986c-034af0f19d1f\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"John McGinn 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 87,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-47aa-7092-823e-c673ed832448\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Erling Haaland 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 87,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3bbc-733d-bd8a-34b42a64b374\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Matty Cash 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-85b8-733a-a717-5f797292af0a\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rayan Cherki 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"all_season\": 66,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 16\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8545-732e-9a70-deca09e3f38b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jeremy Doku 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 37,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-842e-73f2-a613-4430feb327d9\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tijjani Reijnders 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 100,\n                    \"all_season\": 100,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-36e9-70e5-aa4a-c10b6dc803f4\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tijjani Reijnders 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-884b-7122-a327-f98cf7de30ef\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Emiliano Buendia 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 85,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 16\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5942-702b-94a2-a8c0960960c6\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Lucas Digne To Score or Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-86c4-72d5-a245-5e6ecda40342\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Harvey Elliott 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"all_season\": 66,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-864d-7105-a12c-17bf4d86ae57\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Donyell Malen 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4987-73b5-83e6-65fbcd154996\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Morgan Rogers 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2895-7359-a024-dff03009837b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Boubacar Kamara 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 66,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-72c3-73e0-a947-2c779d59ad69\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Lamare Bogarde 2+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 50,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7e13-7166-8170-047dffda98ba\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jeremy Doku 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-26e7-73a8-9bc9-059dde29c7cd\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"John McGinn 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 75,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7dc2-732b-881c-415e59ee134c\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Phil Foden 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 66,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-365b-7145-bcf6-1465b1dc50a2\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Ait-Nouri 2+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3b0a-729c-8f61-5288d490d309\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nico O'Reilly 2+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 14,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7f7e-71ec-90d1-dab70216ea5b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Matheus Nunes 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 66,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8b2c-728e-935f-40d309128ae6\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"John McGinn 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 100,\n                    \"last_5\": 80,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5746-7391-b29c-6f8c42f49b25\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Nico O'Reilly To Score or Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"last_4\": 25,\n                    \"last_5\": 20,\n                    \"all_season\": 14,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-57bb-7185-ad8b-3535cd91812b\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Emiliano Buendia To Score or Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 28,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7ed0-721d-84b8-b9da384fac89\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Ait-Nouri 1+ Fouls Won\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 33,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2a7a-7257-87e1-4719a2a5ba26\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico O'Reilly 1+ Fouls Committed\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 75,\n                    \"last_5\": 80,\n                    \"all_season\": 57,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-825b-7228-b0a3-d4cd0ec9f118\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Phil Foden 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 66,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-70b3-7307-bf08-d9e6fb365990\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Erling Haaland 3+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 60,\n                    \"all_season\": 62,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-48d4-7243-95ed-7e88530a67fc\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jeremy Doku 1+ Shots on Target\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 25,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8cdc-70f2-9510-646dccee09d1\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Matheus Nunes 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 50,\n                    \"last_3\": 66,\n                    \"last_4\": 50,\n                    \"last_5\": 40,\n                    \"all_season\": 33,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"l\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-83c0-7124-b71c-ab8894139581\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Omar Marmoush 1+ Shots\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"all_season\": 100,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"availability\": null\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5653-7158-8b4b-9cbd175de8c0\",\n            \"kick_off\": \"2025-10-26 14:00:00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Morgan Rogers To Score or Assist\",\n            \"selection_type\": \"player\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"maxHitRate\": 100,\n                    \"competition_name\": \"Premier League\",\n                    \"competition_logo\": \"sr-competition-17.png\",\n                    \"country_flag\": \"ENG.png\",\n                    \"season\": \"25/26\",\n                    \"last_1\": 100,\n                    \"last_2\": 100,\n                    \"last_3\": 100,\n                    \"last_4\": 75,\n                    \"last_5\": 60,\n                    \"all_season\": 37,\n                    \"last_x_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\"\n                    ],\n                    \"all_season_raw\": [\n                        \"w\",\n                        \"w\",\n                        \"w\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\",\n                        \"l\"\n                    ]\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            },\n            \"player_data\": {\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"availability\": null\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 239\n    }\n}"}],"_postman_id":"a539f68c-c772-4832-9c3c-3576cf4da384"},{"name":"bet-builder-team-selection-stats","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})"]}}],"id":"a1798a34-0f4c-4d30-8765-f990ecf0e47b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/bet-builder-team-selection-stats/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["bet-builder-team-selection-stats",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"019c04b4-a0b0-72b8-986b-00aeae474d04","key":"id"}]}},"response":[{"id":"d92e698a-4e16-4312-82b7-d532294d0893","name":"bet-builder-team-selection-stats","originalRequest":{"method":"GET","header":[],"url":{"raw":"/bet-builder-team-selection-stats/:id","host":[""],"path":["bet-builder-team-selection-stats",":id"],"variable":[{"key":"id","value":"019a10c3-0ee5-71e2-b7ad-419e3a53e884"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 15:17:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1171"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"727ca8e4-4005-4d4c-8ecb-1f942ed32804"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9TGhECAjoEEluQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb988f-1b6e85f80829b4270e31c341;Parent=2b3181439f7716ba;Sampled=0;Lineage=1:655c5567:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"selection_id\": \"019a10c3-0ee5-71e2-b7ad-419e3a53e884\",\n        \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n        \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n        \"selection_name\": \"Aston Villa Under 3.5 Corners\",\n        \"stat_type\": \"corners\",\n        \"stats\": {\n            \"domestic\": {\n                \"last_5\": {\n                    \"home\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 5,\n                            \"for_hit_rate\": 40,\n                            \"average_for\": 4.4\n                        }\n                    },\n                    \"away\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 5,\n                            \"against_hit_rate\": 60,\n                            \"average_against\": 4.6\n                        }\n                    }\n                },\n                \"season\": {\n                    \"home\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 8,\n                            \"for_hit_rate\": 38,\n                            \"average_for\": 5.5\n                        }\n                    },\n                    \"away\": {\n                        \"competition_name\": \"Premier League\",\n                        \"competition_logo\": \"sr-competition-17.png\",\n                        \"country_flag\": \"ENG.png\",\n                        \"season\": \"25/26\",\n                        \"metrics\": {\n                            \"played\": 8,\n                            \"against_hit_rate\": 63,\n                            \"average_against\": 3.63\n                        }\n                    }\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"last_updated\": \"2025-10-24T11:06:19Z\"\n    }\n}"}],"_postman_id":"a1798a34-0f4c-4d30-8765-f990ecf0e47b"},{"name":"bet-pack","event":[{"listen":"test","script":{"id":"537dbf8a-d1dc-40f5-8b77-9faa3eeb45f4","exec":["// 1. HTTP 200 Status Check","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Check","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","// 3. JSON Schema Validation","pm.test(\"Response matches expected schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"selection_id\", \"fixture_id\", \"competition\", \"competition_groups\", \"home_team\", \"away_team\", \"kick_off\", \"selection_name\", \"market_key\", \"probability\", \"odds\"],","                    properties: {","                        selection_id: { type: \"string\" },","                        fixture_id: { type: \"string\" },","                        competition: { type: \"string\" },","                        competition_groups: {","                            type: \"array\",","                            items: { type: \"string\" }","                        },","                        home_team: { type: \"string\" },","                        away_team: { type: \"string\" },","                        kick_off: { type: \"string\" },","                        selection_name: { type: \"string\" },","                        market_key: { type: \"string\" },","                        probability: { type: \"number\" },","                        odds: {","                            type: \"object\",","                            required: [\"decimal\", \"numerator\", \"denominator\"],","                            properties: {","                                decimal: { type: \"number\" },","                                numerator: { type: \"number\" },","                                denominator: { type: \"number\" }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"total_results\", \"timezone\", \"filtering\"],","                properties: {","                    results: { type: \"number\" },","                    total_results: { type: \"number\" },","                    timezone: { type: \"string\" },","                    filtering: {","                        type: \"object\",","                        required: [\"day\", \"utc_dates\", \"start_of_day_utc\", \"end_of_day_utc\"],","                        properties: {","                            day: { type: \"number\" },","                            utc_dates: {","                                type: \"array\",","                                items: { type: \"string\" }","                            },","                            start_of_day_utc: { type: \"string\" },","                            end_of_day_utc: { type: \"string\" }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"packages":{},"type":"text/javascript"}}],"id":"9761ee85-957d-4fca-9099-1dc35cdf31db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/bet-pack?day=0","description":"<h3 id=\"retrieve-bet-packs\">Retrieve Bet Packs</h3>\n<p>The <code>GET</code> request retrieves a list of bet packs for a specific day.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Endpoint: <code>/bet-pack?day=0</code></p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response is in JSON format and includes the following structure:</p>\n<ul>\n<li><p><code>data</code> (array) - Contains details about each bet pack, including:</p>\n<ul>\n<li><p><code>selection_id</code> (string)</p>\n</li>\n<li><p><code>fixture_id</code> (string)</p>\n</li>\n<li><p><code>competition</code> (string)</p>\n</li>\n<li><p><code>competition_groups</code> (array of strings)</p>\n</li>\n<li><p><code>home_team</code> (string)</p>\n</li>\n<li><p><code>away_team</code> (string)</p>\n</li>\n<li><p><code>kick_off</code> (string)</p>\n</li>\n<li><p><code>selection_name</code> (string)</p>\n</li>\n<li><p><code>market_key</code> (string)</p>\n</li>\n<li><p><code>probability</code> (number)</p>\n</li>\n<li><p><code>odds</code> (object) - Contains:</p>\n<ul>\n<li><p><code>decimal</code> (number)</p>\n</li>\n<li><p><code>numerator</code> (number)</p>\n</li>\n<li><p><code>denominator</code> (number)</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>meta</code> (object) - Provides additional information about the results and filtering, including:</p>\n<ul>\n<li><p><code>results</code> (number)</p>\n</li>\n<li><p><code>total_results</code> (number)</p>\n</li>\n<li><p><code>timezone</code> (string)</p>\n</li>\n<li><p><code>filtering</code> (object) - Contains:</p>\n<ul>\n<li><p><code>day</code> (number)</p>\n</li>\n<li><p><code>utc_dates</code> (array of strings)</p>\n</li>\n<li><p><code>start_of_day_utc</code> (string)</p>\n</li>\n<li><p><code>end_of_day_utc</code> (string)</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["bet-pack"],"host":[""],"query":[{"key":"day","value":"0"}],"variable":[]}},"response":[{"id":"04dd43d4-aca8-40f5-bb13-162bb42de481","name":"bet-pack","originalRequest":{"method":"GET","header":[],"url":{"raw":"/bet-pack?day=0","host":[""],"path":["bet-pack"],"query":[{"key":"day","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:21:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"155995"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"d09f6594-d8cb-4979-93b5-b20f04bb7cde"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8wfhFqPDoEEJIg="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb612f-14e638ec213a305820a57a66;Parent=685bf612d07ffae2;Sampled=0;Lineage=1:b2268dce:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"selection_id\": \"019a07bd-18f2-72fd-99c7-8cf946934289\",\n            \"fixture_id\": \"9f5d8465-acb5-4c5b-ac32-1c8a523c5992\",\n            \"competition\": \"Welsh Cymru Premier\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Llanelli Town\",\n            \"away_team\": \"New Saints\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"The New Saints Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 100,\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 50\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-66d6-73fe-bb0a-8dc83ee513ac\",\n            \"fixture_id\": \"0199feed-3369-724c-bfb4-e2225e25e2ea\",\n            \"competition\": \"Latvian Virsliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Riga FC\",\n            \"away_team\": \"Tukums 2000\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"FK Riga Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 98.1,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-65b1-719c-a404-5d6a85947152\",\n            \"fixture_id\": \"0199feed-3369-724c-bfb4-e2225e25e2ea\",\n            \"competition\": \"Latvian Virsliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Riga FC\",\n            \"away_team\": \"Tukums 2000\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 97.1,\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 16\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-17ff-71bc-83df-8f07f7a3c0ad\",\n            \"fixture_id\": \"9f5d8465-acb5-4c5b-ac32-1c8a523c5992\",\n            \"competition\": \"Welsh Cymru Premier\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Llanelli Town\",\n            \"away_team\": \"New Saints\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 96.7,\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 50\n            }\n        },\n        {\n            \"selection_id\": \"019a14ea-637a-70ca-85da-a835173de1a2\",\n            \"fixture_id\": \"0199cf47-bf90-737f-b6fb-a1d07ae18161\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lafnitz\",\n            \"away_team\": \"St. Anna\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 93.5,\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-f2ed-7317-bef3-f8ef430ed3f2\",\n            \"fixture_id\": \"9e1368e3-08d8-431b-ad70-3812ecae69c6\",\n            \"competition\": \"Chinese Chinese Super League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Meizhou Hakka\",\n            \"away_team\": \"Yunnan Yukun\",\n            \"kick_off\": \"2025-10-24 11:35:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 91.9,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1762-7045-94a1-d14227fa7336\",\n            \"fixture_id\": \"9f5d8465-acb5-4c5b-ac32-1c8a523c5992\",\n            \"competition\": \"Welsh Cymru Premier\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Llanelli Town\",\n            \"away_team\": \"New Saints\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 91.9,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a1161-90d3-70ef-9226-42177fd6787b\",\n            \"fixture_id\": \"0199cf47-b656-714b-9090-876ef8591361\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"SV Wallern\",\n            \"away_team\": \"Oedt\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 91.9,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a1558-a032-7173-bf2f-5b9d8926d55b\",\n            \"fixture_id\": \"0199cf47-d7db-716d-84ef-2169cdf0b927\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Weiz\",\n            \"away_team\": \"Atus Velden\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 91.8,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-fc42-716f-a78c-86d7f6a64721\",\n            \"fixture_id\": \"0199feed-69ca-72af-a76d-c5598a4d4dad\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Ittihad\",\n            \"away_team\": \"Al Hilal\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 91.4,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f036-71f1-ba90-e21e0b8c8019\",\n            \"fixture_id\": \"0199feed-56bb-726e-9510-609c326e03ae\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"De Graafschap\",\n            \"away_team\": \"PSV\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 91.2,\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-d7c1-70b2-ae63-660392ea3e8f\",\n            \"fixture_id\": \"0199cf47-c64e-71ff-821a-916bc88b36d8\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Deutschlandsb. SC\",\n            \"away_team\": \"Junge Wikinger Ried\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 91.1,\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ec04-700a-af62-2e541ea3ee0e\",\n            \"fixture_id\": \"0199feed-56b5-71c5-9048-74de7e57a250\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Almere\",\n            \"away_team\": \"Alkmaar\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 89.2,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-6265-726f-8d05-bc6d360bb91b\",\n            \"fixture_id\": \"0199feed-335d-71e3-bc4d-a665f3870277\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fateh\",\n            \"away_team\": \"Al-Ittifaq\",\n            \"kick_off\": \"2025-10-24 14:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 88.7,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-7154-708b-bf6b-70756c51510c\",\n            \"fixture_id\": \"0199feed-3fb7-711d-b8a1-62cc15cad216\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Neom SC\",\n            \"away_team\": \"Al-Khaleej\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 88.7,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a1160-ef6d-72d8-b817-5e5cd9bb37ff\",\n            \"fixture_id\": \"0199e1e0-b6bc-7325-acae-7f3741e8c3c9\",\n            \"competition\": \"Macedonian 1. MFL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Baskhimi\",\n            \"away_team\": \"Shkupi Cair\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 88.7,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a1160-ecb1-705f-b7e8-6a5aae277711\",\n            \"fixture_id\": \"0199e1e0-b6bc-7325-acae-7f3741e8c3c9\",\n            \"competition\": \"Macedonian 1. MFL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Baskhimi\",\n            \"away_team\": \"Shkupi Cair\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"selection_name\": \"KF Bashkimi Kumanovo Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 88.7,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f6bf-7133-8ceb-35d2946355e8\",\n            \"fixture_id\": \"0199feed-56cd-7287-8f11-488f06c2fc73\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Ajax\",\n            \"away_team\": \"Emmen\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 88.6,\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-d86f-7057-8d5e-aebaee7fffbb\",\n            \"fixture_id\": \"0199cf47-cf77-7322-b362-cdcad1e3f76b\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Gleisdorf\",\n            \"away_team\": \"Treibach\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 87.8,\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a10f3-b650-73d1-84ce-fb9bc4b4a71e\",\n            \"fixture_id\": \"0199cdc7-55fe-7348-b7bb-e927066c5bda\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"SV Donau\",\n            \"away_team\": \"Wiener Sport-Club\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 87.6,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a10f3-f615-7221-824b-d7255d6e5222\",\n            \"fixture_id\": \"9f3e968f-921e-4ec3-86ee-f7bac89645a2\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Krems\",\n            \"away_team\": \"Horn\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 86.9,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-7142-7399-bf9e-959c89abdd0a\",\n            \"fixture_id\": \"9f594c4c-46ff-4b9c-bfb4-142ec0a7c9c9\",\n            \"competition\": \"Serbian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Partizan Belgrade\",\n            \"away_team\": \"Mladost Lucani\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 86.5,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a1506-97bf-7301-b8c2-2aea3c79210a\",\n            \"fixture_id\": \"9f76c675-116a-4d18-807e-ba2b327f3fce\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Traiskirchen\",\n            \"away_team\": \"FC Marchfeld Donauauen\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 86.5,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-c762-7159-83a2-3719bb2256f0\",\n            \"fixture_id\": \"9f19042a-3c9f-4907-8990-e18719cb4cab\",\n            \"competition\": \"Danish Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Aarhus\",\n            \"away_team\": \"Nordsjaelland\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 86.4,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a8d0-7092-b9a5-6c45f14f8f09\",\n            \"fixture_id\": \"01994cbf-4639-72dc-aedf-18c214ca1208\",\n            \"competition\": \"Turkish Super Lig\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Karagümrük\",\n            \"away_team\": \"Kayserispor\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 86.3,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ed93-7246-a156-bd70ced8d4f9\",\n            \"fixture_id\": \"0199feed-56af-711e-8571-93e78330e435\",\n            \"competition\": \"Dutch Eredivisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Heerenveen\",\n            \"away_team\": \"Breda\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 86.3,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9849-70d7-b5e2-b96b6e0fbea1\",\n            \"fixture_id\": \"9f6a7d5e-7f67-4c68-a307-f85eb9d126b0\",\n            \"competition\": \"Polish Ekstraklasa\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nieciecza\",\n            \"away_team\": \"Zaglebie Lubin\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 86.3,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-dd10-711c-a579-6853acbf12d9\",\n            \"fixture_id\": \"9f36d20a-0c6d-4b38-ba17-bcd0a012814a\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Stade Nyonnais\",\n            \"away_team\": \"Yverdon-Sport\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 86.1,\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-0f9a-7225-8563-0374c948b825\",\n            \"fixture_id\": \"9fb1ddfa-730a-430f-9c71-7f8d3f913a0c\",\n            \"competition\": \"Thai Thai League 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Port FC\",\n            \"away_team\": \"Muang Thong\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 86.1,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a1085-d7c1-73d0-976d-8de39d2ba2fe\",\n            \"fixture_id\": \"9f76c66e-90a9-451e-a935-c61af8ecded9\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Parndorf\",\n            \"away_team\": \"Donaufeld\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 85.6,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-71be-7235-91de-91beea2df487\",\n            \"fixture_id\": \"9f594c4c-46ff-4b9c-bfb4-142ec0a7c9c9\",\n            \"competition\": \"Serbian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Partizan Belgrade\",\n            \"away_team\": \"Mladost Lucani\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"selection_name\": \"Partizan Belgrade Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 85.6,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f6bd-7183-b9c0-da4bedb56362\",\n            \"fixture_id\": \"0199feed-56db-70b9-93da-88ceada0f406\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Waalwijk\",\n            \"away_team\": \"Cambuur\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 85.5,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f1d4-721d-80a9-f6e228c79a89\",\n            \"fixture_id\": \"0199feed-56c8-729b-936f-8877500e8f6c\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Helmond\",\n            \"away_team\": \"Dordrecht\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 85.5,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-c8ac-7182-ac56-2df16331b7e8\",\n            \"fixture_id\": \"9dcd1d0f-df18-4ceb-a08e-a6d54d38afa9\",\n            \"competition\": \"Swedish Superettan\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Orgryte\",\n            \"away_team\": \"Vasteraas\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 85.3,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9809-73f6-99ea-234c41a23842\",\n            \"fixture_id\": \"9f5384da-568c-4136-849a-2d9d563fd702\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Austria Klagenfurt\",\n            \"away_team\": \"Sturm II\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 84.8,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0c20-7e8c-70fe-bdf0-8068ac95d7bb\",\n            \"fixture_id\": \"019a02c9-cd9c-72d1-bf0b-dba91651a0ae\",\n            \"competition\": \"Bosnian and Herzegovinian Premijer Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Sarajevo\",\n            \"away_team\": \"Sloga\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 84.8,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9a30-7038-965b-0e83a33743b4\",\n            \"fixture_id\": \"01991f9d-6636-7310-868f-31ade70e838f\",\n            \"competition\": \"German 2. Bundesliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Greuther Furth\",\n            \"away_team\": \"Karlsruhe\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 84.7,\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-def4-729e-ae93-33f835f558ce\",\n            \"fixture_id\": \"0199cf4a-060e-72ef-a547-5f949e502259\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Kalsdorf\",\n            \"away_team\": \"Union Gurten\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 84.5,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-bda6-71bd-8128-cc9745a37517\",\n            \"fixture_id\": \"0199feed-5266-70b3-b55b-1c38cf146a35\",\n            \"competition\": \"Turkish 1. Lig\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Sivasspor\",\n            \"away_team\": \"Hatayspor\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 83.8,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-968f-726d-86c8-8673a0450412\",\n            \"fixture_id\": \"9f5385df-0d09-42fc-8d1a-2532e5be7c59\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Liefering\",\n            \"away_team\": \"St. Polten\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 83.6,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ddd9-72fd-bf88-fd2405ab14fe\",\n            \"fixture_id\": \"9f36d20b-579a-461e-86d0-d75bd077d508\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Neuchatel Xamax\",\n            \"away_team\": \"Rapperswil-Jona\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 83.1,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-33fd-71c8-8257-4acf69c631da\",\n            \"fixture_id\": \"9e058626-c6a4-4068-8096-3698a2d583c1\",\n            \"competition\": \"Chilean Primera Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Palestino\",\n            \"away_team\": \"Everton\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 83,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-fe95-72c9-8d33-35cea94a43bb\",\n            \"fixture_id\": \"9f531fb3-ca49-4ff9-824d-b32f137099e4\",\n            \"competition\": \"Belgian Challenger Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Royal Francs Borains\",\n            \"away_team\": \"KAA Gent\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 83,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-05e2-7089-a391-4fc273cf4422\",\n            \"fixture_id\": \"9f36d207-0c37-446f-8a9f-ef961b7e2fc4\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Aarau\",\n            \"away_team\": \"Wil\",\n            \"kick_off\": \"2025-10-24 18:15:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 82.8,\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a0c0-7233-817a-e8fc428db395\",\n            \"fixture_id\": \"01993059-f253-70a2-bf1b-d66dd21b8946\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"B93 Copenhagen\",\n            \"away_team\": \"Horsens\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 82.2,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-11c3-716a-942a-540fc1ef50d8\",\n            \"fixture_id\": \"0199bb65-8cb8-7263-95d7-069f35d260c8\",\n            \"competition\": \"Scottish League 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Hamilton\",\n            \"away_team\": \"Queen of The South\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 82,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9aed-70cf-9625-663fb154d819\",\n            \"fixture_id\": \"9f5385ef-9703-4026-ab35-bf5eb9144ec6\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"SW Bregenz\",\n            \"away_team\": \"KSV 1919\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 81.6,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f30f-706b-95c4-d67864756dae\",\n            \"fixture_id\": \"0199feed-56d4-710f-9afb-45d4055c1fcb\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Utrecht\",\n            \"away_team\": \"Oss\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 81.4,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2574-7038-9eac-3e8a9319bf50\",\n            \"fixture_id\": \"9f67afe9-c2dd-490c-ae3a-edbef2297fce\",\n            \"competition\": \"Italian Serie A\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Milan\",\n            \"away_team\": \"Pisa\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 81.4,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-11ba-7291-97ad-c2c976b344bd\",\n            \"fixture_id\": \"9f6a7d65-42c9-42e0-84a3-30e00f6b6287\",\n            \"competition\": \"Polish Ekstraklasa\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Motor Lublin\",\n            \"away_team\": \"Widzew Lodz\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 81.2,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0048-7049-9fbf-1a3d116d99a4\",\n            \"fixture_id\": \"9f531fb7-af85-42bf-815b-f495640b5486\",\n            \"competition\": \"Belgian Challenger Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Seraing\",\n            \"away_team\": \"Lierse Kempenzonen\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 81.2,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9280-71b1-ad99-3644c4bb43cf\",\n            \"fixture_id\": \"9f4b292c-581e-4934-ae6d-6030078f9c9c\",\n            \"competition\": \"Czech FNL\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Usti nad Labem\",\n            \"away_team\": \"FC Banik Ostrava B\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 81.1,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-e2a2-72f3-a0ff-4d29e02b7b03\",\n            \"fixture_id\": \"01991ac0-1391-7177-a7bf-2e63ca9c9356\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vitesse\",\n            \"away_team\": \"Roda\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 80.8,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f3e8-732a-8356-5fb10b56664d\",\n            \"fixture_id\": \"0199feed-56c1-73d6-9d83-c927e1170fca\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FC Eindhoven\",\n            \"away_team\": \"Venlo\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 80.8,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1160-ee8d-7252-9638-183392a16810\",\n            \"fixture_id\": \"0199e1e0-d7ac-730c-a40b-8df9ed87f14a\",\n            \"competition\": \"Macedonian 1. MFL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"GFK Tikvesh 1930\",\n            \"away_team\": \"Arsimi 1973\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 80.8,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-184f-7168-8206-2829b266ba72\",\n            \"fixture_id\": \"9dc0fcf8-9733-4fc3-86c8-601653993f0a\",\n            \"competition\": \"Irish Premier Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"St. Patrick´s\",\n            \"away_team\": \"Waterford\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 80.7,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a1e1-705c-afb1-6a724c7f3971\",\n            \"fixture_id\": \"01993881-375b-700c-9b28-6a6e7ee203b9\",\n            \"competition\": \"German 3. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Wiesbaden\",\n            \"away_team\": \"Aachen\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 80.6,\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a0be9-9009-72a7-b686-bd138c6aa300\",\n            \"fixture_id\": \"0199feed-46f0-7176-99a7-c294f230c4ff\",\n            \"competition\": \"Danish 2nd Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Helsingoer\",\n            \"away_team\": \"Thisted FC\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 80.6,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a14ea-63de-7145-98f6-7d7a49473a4a\",\n            \"fixture_id\": \"0199cf47-bf90-737f-b6fb-a1d07ae18161\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lafnitz\",\n            \"away_team\": \"St. Anna\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"SV Lafnitz Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 80.5,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0c20-7fbe-718f-be99-11f4bf7dcdec\",\n            \"fixture_id\": \"019a02c9-cd9c-72d1-bf0b-dba91651a0ae\",\n            \"competition\": \"Bosnian and Herzegovinian Premijer Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Sarajevo\",\n            \"away_team\": \"Sloga\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Sarajevo Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 80.4,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-13e9-710d-ab92-314219bc8aa8\",\n            \"fixture_id\": \"019996d8-da0a-7232-ad83-b6ce7831ec50\",\n            \"competition\": \"Ukrainian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Oleksandriya\",\n            \"away_team\": \"Epitsentr Kamianets-Podilskyi\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 79.9,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a08ce-860b-72a9-aa8c-9fd16133561a\",\n            \"fixture_id\": \"0199ce6c-0e16-7098-8711-b5371e35030d\",\n            \"competition\": \"Croatian Prva NL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Orijent Rijeka\",\n            \"away_team\": \"Dugopolje\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 79.9,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-27b7-72e0-89b5-328ec3cb3492\",\n            \"fixture_id\": \"9f67afe9-c2dd-490c-ae3a-edbef2297fce\",\n            \"competition\": \"Italian Serie A\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Milan\",\n            \"away_team\": \"Pisa\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"AC Milan Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 79.9,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a1161-3e3d-71fd-b82b-5299488e4e1f\",\n            \"fixture_id\": \"0199cf7e-eb69-735d-902d-088274437ec0\",\n            \"competition\": \"Albanian Kategoria Superiore\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vllaznia Shkoder\",\n            \"away_team\": \"Tirana\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 79.9,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1244-70e8-8aa7-14ff7d6c84cb\",\n            \"fixture_id\": \"01991faf-909d-733b-9103-ed144b71a4f6\",\n            \"competition\": \"French Ligue 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Paris FC\",\n            \"away_team\": \"Nantes\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 79.7,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-97cf-73bf-af9f-2233def0dc03\",\n            \"fixture_id\": \"9f5385ff-748c-4e5c-a96f-188ec1ef8053\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Stripfing\",\n            \"away_team\": \"Hogo Wels\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 79.6,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0da5-73f3-862a-4b595d6a0654\",\n            \"fixture_id\": \"019914f4-fced-7085-bbb3-67ebdd1ec7f3\",\n            \"competition\": \"German Bundesliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Bremen\",\n            \"away_team\": \"Union Berlin\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 79.4,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-ecd1-70a3-a8dd-9b27033f860f\",\n            \"fixture_id\": \"9e1368ea-0256-4cd5-b75f-21b4b67a8476\",\n            \"competition\": \"Chinese Chinese Super League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Wuhan Three Towns FC\",\n            \"away_team\": \"Shenzhen Peng City\",\n            \"kick_off\": \"2025-10-24 11:35:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 79.3,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a10bb-eabe-70a7-af4a-e62615a225f2\",\n            \"fixture_id\": \"0199ce00-12b3-7175-8a68-0d30431466c5\",\n            \"competition\": \"Armenian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alashkert Yerevan\",\n            \"away_team\": \"Van\",\n            \"kick_off\": \"2025-10-24 11:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 79,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-f8da-73dd-99cf-f91de2c9be84\",\n            \"fixture_id\": \"9f76c671-bf83-47e1-be54-b14b85554655\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Favoritner AC\",\n            \"away_team\": \"SV Oberwart\",\n            \"kick_off\": \"2025-10-24 17:10:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 79,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a7d2-7388-b804-594eed8400cb\",\n            \"fixture_id\": \"01994ce3-f0ed-720c-9a2a-62cbada98a8f\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Kolding IF\",\n            \"away_team\": \"Middelfart\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 78.8,\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9dc7-73df-9da5-0b78b7a6d4de\",\n            \"fixture_id\": \"01991faf-7855-7358-8988-61f788a677ae\",\n            \"competition\": \"German 2. Bundesliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Schalke\",\n            \"away_team\": \"Darmstadt\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 78.4,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-6530-738c-bf73-8aa71284e154\",\n            \"fixture_id\": \"0199feed-3369-724c-bfb4-e2225e25e2ea\",\n            \"competition\": \"Latvian Virsliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Riga FC\",\n            \"away_team\": \"Tukums 2000\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 78.4,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-511f-724e-b738-cdbd73bb2989\",\n            \"fixture_id\": \"9f594c53-4b3a-45bb-addf-d70b914c6662\",\n            \"competition\": \"Serbian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Napredak\",\n            \"away_team\": \"Vojvodina Novi Sad\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 78.1,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1161-3b65-730e-84e2-9826777bf239\",\n            \"fixture_id\": \"0199cf7e-eb69-735d-902d-088274437ec0\",\n            \"competition\": \"Albanian Kategoria Superiore\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vllaznia Shkoder\",\n            \"away_team\": \"Tirana\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Vllaznia Shkoder Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 78,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-d8f0-71b5-8c3a-98d8af3d9503\",\n            \"fixture_id\": \"0199cf47-c64e-71ff-821a-916bc88b36d8\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Deutschlandsb. SC\",\n            \"away_team\": \"Junge Wikinger Ried\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Deutschlandsberger SC Mithlinger Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 78,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a0eb2-494f-72c0-bd71-d39b894a538d\",\n            \"fixture_id\": \"019971b9-a6e6-739c-9f63-772dade191f7\",\n            \"competition\": \"Ghanaian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Heart of Lions\",\n            \"away_team\": \"Basake Holy Stars\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Heart of Lions Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 77.4,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a117c-bc31-7094-a1d1-e1823aed4065\",\n            \"fixture_id\": \"019972cc-5d22-71c4-b115-05f25be621ee\",\n            \"competition\": \"Maltese Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mosta\",\n            \"away_team\": \"Zabbar Saint Patrick FC\",\n            \"kick_off\": \"2025-10-24 16:15:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 77.2,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-ffcd-7190-be77-ec33bca4499a\",\n            \"fixture_id\": \"0199feed-1bb1-71ae-98f8-09e3f0ea8fd4\",\n            \"competition\": \"Indonesian Super League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Madura United\",\n            \"away_team\": \"Persija\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 77.1,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-322c-7008-b2a0-2888e26db0bf\",\n            \"fixture_id\": \"9fae436a-e5cd-49c4-9830-be1a0c2b2200\",\n            \"competition\": \"English Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Leeds\",\n            \"away_team\": \"West Ham\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 77,\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-8d3a-7303-81e0-17e0d4747400\",\n            \"fixture_id\": \"9f310981-f91d-4d86-b381-9704ea569dd3\",\n            \"competition\": \"Czech FNL\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Ceske Budejovice\",\n            \"away_team\": \"Prostejov\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 77,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-b9b8-71f2-8e4b-c085a9c5829d\",\n            \"fixture_id\": \"0199feed-5266-70b3-b55b-1c38cf146a35\",\n            \"competition\": \"Turkish 1. Lig\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Sivasspor\",\n            \"away_team\": \"Hatayspor\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Sivasspor Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 76.5,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-dbcd-7185-bcd8-e40206c38fb1\",\n            \"fixture_id\": \"0199cd59-4fd5-73d4-a1b5-246745ff67d6\",\n            \"competition\": \"Portuguese Liga Portugal 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SCU Torreense\",\n            \"away_team\": \"Oliveirense\",\n            \"kick_off\": \"2025-10-24 17:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 76.3,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a1084-f09b-71f0-9f22-2f5bbacc0250\",\n            \"fixture_id\": \"0199cf7e-f2c8-7387-bc69-41b3143d6d72\",\n            \"competition\": \"Albanian Kategoria Superiore\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"FK Vora\",\n            \"away_team\": \"Dinamo City\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 76.3,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2e4d-7224-9371-0cea406e15de\",\n            \"fixture_id\": \"0199feed-6dc4-7191-b468-981e4c210ed2\",\n            \"competition\": \"Peruvian Liga 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Juan Pablo II\",\n            \"away_team\": \"Comerciantes U\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 76.3,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a110e-5cc5-72fb-b98c-95c94df3c308\",\n            \"fixture_id\": \"0199c97c-d7b5-701c-8dc4-f6a5cf15a9cf\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Qizilqum\",\n            \"away_team\": \"Dinamo\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 76.3,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-4d40-703c-bfc3-77155fb25d6f\",\n            \"fixture_id\": \"0199feed-3360-7206-87f4-d05ae6b4f4ee\",\n            \"competition\": \"Turkish 1. Lig\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Erzurumspor\",\n            \"away_team\": \"Umraniyespor\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Erzurum BB Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 76.3,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-01df-72bd-924d-c85de329ae0e\",\n            \"fixture_id\": \"01993f4c-d6ec-70be-af12-78b380cad174\",\n            \"competition\": \"Italian Serie C, Group C\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Foggia\",\n            \"away_team\": \"Asd Team Altamura\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 76.3,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f06c-73df-aec4-8bf376c6da03\",\n            \"fixture_id\": \"0199feed-56cd-7287-8f11-488f06c2fc73\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Ajax\",\n            \"away_team\": \"Emmen\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 76.3,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-fd4c-7099-b596-20a07d26bf1b\",\n            \"fixture_id\": \"9f42d5a7-3c34-4bfb-b13b-923a0316a760\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Pau\",\n            \"away_team\": \"Dunkerque\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 76,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a14ea-667b-7151-bca3-622338b2b343\",\n            \"fixture_id\": \"0199cf47-bf90-737f-b6fb-a1d07ae18161\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lafnitz\",\n            \"away_team\": \"St. Anna\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 76,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-567c-7067-b354-63222ac581be\",\n            \"fixture_id\": \"01990aa8-6087-72e5-ba61-eddf6684debd\",\n            \"competition\": \"Bulgarian Parva Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartak Varna\",\n            \"away_team\": \"Botev Plovdiv\",\n            \"kick_off\": \"2025-10-24 14:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 76,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-93cd-7241-bdb1-9c14dce9b2be\",\n            \"fixture_id\": \"9f371278-ba83-4efe-9ee4-0ab029dcdf3f\",\n            \"competition\": \"Polish 1. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Znicz Pruszkow\",\n            \"away_team\": \"Niepołomice\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 75.8,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-f726-73db-8ad3-41bfbab4cc24\",\n            \"fixture_id\": \"9f76c671-bf83-47e1-be54-b14b85554655\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Favoritner AC\",\n            \"away_team\": \"SV Oberwart\",\n            \"kick_off\": \"2025-10-24 17:10:00\",\n            \"selection_name\": \"SV Oberwart Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 75.8,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-3281-70e7-a77f-cd10bf20434d\",\n            \"fixture_id\": \"0199b563-6179-7074-a619-f3599545f534\",\n            \"competition\": \"Colombian Primera A, Clausura\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Alianza FC Valledupar\",\n            \"away_team\": \"La Equidad\",\n            \"kick_off\": \"2025-10-24 21:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 75.7,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-4e30-7323-b976-2d20d72a3a24\",\n            \"fixture_id\": \"0199feed-3360-7206-87f4-d05ae6b4f4ee\",\n            \"competition\": \"Turkish 1. Lig\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Erzurumspor\",\n            \"away_team\": \"Umraniyespor\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 75.6,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ed5e-7344-b4bf-621c12750b06\",\n            \"fixture_id\": \"0199feed-56bb-726e-9510-609c326e03ae\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"De Graafschap\",\n            \"away_team\": \"PSV\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 75.6,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f3e5-72c6-82a6-e46eaf68f820\",\n            \"fixture_id\": \"0199feed-56bb-726e-9510-609c326e03ae\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"De Graafschap\",\n            \"away_team\": \"PSV\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 75.3,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a0be9-93e2-7007-8f95-f14eaa1637ee\",\n            \"fixture_id\": \"0199feed-46f5-7013-86ec-95b09b3e27dd\",\n            \"competition\": \"Danish 2nd Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vendsyssel\",\n            \"away_team\": \"Fremad Amager\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 75.1,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2225-7232-bf30-9b42b9a8d17c\",\n            \"fixture_id\": \"0199812c-a204-7009-a7ba-7f55644bdb1f\",\n            \"competition\": \"Spanish LaLiga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Real Sociedad\",\n            \"away_team\": \"Sevilla\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 75.1,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ff54-7186-8e13-554f184e79d4\",\n            \"fixture_id\": \"9f42d5a9-e4c4-4c44-8351-c1e9a660d254\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Guingamp\",\n            \"away_team\": \"Clermont Foot\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 75,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a08ce-87c2-72c3-9e7d-c6ac42c84b0f\",\n            \"fixture_id\": \"0199ce6c-1403-72f5-bdfb-504a510030e2\",\n            \"competition\": \"Croatian Prva NL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Cibalia\",\n            \"away_team\": \"NK Hrvace\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 74.9,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1cab-72c1-8209-368d3a7462af\",\n            \"fixture_id\": \"9f333761-648f-4ed5-a423-ad884df5d852\",\n            \"competition\": \"Belgian Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Charleroi\",\n            \"away_team\": \"Anderlecht\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 74.8,\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-729f-71d4-b174-608ff3687f9f\",\n            \"fixture_id\": \"9f594c48-f4b6-46d6-baff-89b8d2dabc91\",\n            \"competition\": \"Serbian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Novi Pazar\",\n            \"away_team\": \"Javor\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 74.8,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-fdd3-710e-a8d2-2f60d630b853\",\n            \"fixture_id\": \"9f42d5ac-f295-4f22-943c-f466550506b1\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Red Star\",\n            \"away_team\": \"Grenoble\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 74.6,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-30fe-7101-8fe0-c2e090dad362\",\n            \"fixture_id\": \"0199cd59-552a-7013-90ae-061b717839ad\",\n            \"competition\": \"Portuguese Liga Portugal 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vizela\",\n            \"away_team\": \"FC Felgueiras 1932\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 74.4,\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f838-7350-8591-b6dede6a7771\",\n            \"fixture_id\": \"0199feed-69ca-72af-a76d-c5598a4d4dad\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Ittihad\",\n            \"away_team\": \"Al Hilal\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 74.4,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-074a-7354-b11b-9a811a39f1ea\",\n            \"fixture_id\": \"0199feed-69e7-735c-a076-0778d50dbe4b\",\n            \"competition\": \"Italian Serie C, Group A\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Novara\",\n            \"away_team\": \"Virtus Verona\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 74.4,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-17bd-73e0-b5cf-54c7840679bd\",\n            \"fixture_id\": \"9f5d8465-acb5-4c5b-ac32-1c8a523c5992\",\n            \"competition\": \"Welsh Cymru Premier\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Llanelli Town\",\n            \"away_team\": \"New Saints\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"probability\": 74.4,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-5567-731d-b1a0-a4344a047180\",\n            \"fixture_id\": \"0199dcf1-205c-71e6-abef-02029def9e2e\",\n            \"competition\": \"Romanian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"FK Csikszereda Miercurea Ciuc\",\n            \"away_team\": \"Petrolul Ploiesti\",\n            \"kick_off\": \"2025-10-24 14:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 74.4,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-f06e-7292-8adb-db2fb8764a9a\",\n            \"fixture_id\": \"01990aa8-5529-733e-9089-f6ab9640f9bb\",\n            \"competition\": \"Bulgarian Parva Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Montana\",\n            \"away_team\": \"Arda Kardzhali\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 74.4,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f3f3-7352-a345-6bc66160a7a2\",\n            \"fixture_id\": \"0199feed-56cd-7287-8f11-488f06c2fc73\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Ajax\",\n            \"away_team\": \"Emmen\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 73.7,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a10f3-3efc-70cc-a1ae-a768a60299bb\",\n            \"fixture_id\": \"0199cea3-3a8d-7002-965e-845ff66d74ff\",\n            \"competition\": \"Jordanian Jordan League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Al Jazeera\",\n            \"away_team\": \"Shabab AL Ordun\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 73.2,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a117d-622c-7109-81fd-90343928ff23\",\n            \"fixture_id\": \"019972cc-597d-730f-872a-d3af987095ef\",\n            \"competition\": \"Maltese Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Gzira Utd\",\n            \"away_team\": \"Tarxien R\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 73.2,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-032b-71d7-8f60-df819aa33210\",\n            \"fixture_id\": \"9f42d5af-f49f-4e17-833b-0f8d5e9d7567\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Reims\",\n            \"away_team\": \"Troyes\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 72.9,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a1558-9d75-7328-b458-bc142eab4e97\",\n            \"fixture_id\": \"0199cf47-d7db-716d-84ef-2169cdf0b927\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Weiz\",\n            \"away_team\": \"Atus Velden\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 72.8,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f885-7095-9166-7794c925d237\",\n            \"fixture_id\": \"0199feed-69ca-72af-a76d-c5598a4d4dad\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Ittihad\",\n            \"away_team\": \"Al Hilal\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 72.3,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2c24-7122-b343-2d5885b46d23\",\n            \"fixture_id\": \"0199b563-6179-7074-a619-f3599545f534\",\n            \"competition\": \"Colombian Primera A, Clausura\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Alianza FC Valledupar\",\n            \"away_team\": \"La Equidad\",\n            \"kick_off\": \"2025-10-24 21:00:00\",\n            \"selection_name\": \"Alianza FC Valledupar Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 72.2,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9f6c-7165-90c4-d08f4ae31482\",\n            \"fixture_id\": \"01990aa8-728b-72f4-8fe8-de77c9b7cefd\",\n            \"competition\": \"Bulgarian Parva Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lok Sofia\",\n            \"away_team\": \"Lok Plovdiv\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 72.2,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a117d-5246-7368-b954-01aea7e32d51\",\n            \"fixture_id\": \"0199cf7e-ce60-7180-9fcd-38e935dc578d\",\n            \"competition\": \"Northern Irish Championship\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Annagh United\",\n            \"away_team\": \"Warrenpoint Town\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 72.1,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9567-73c3-9f36-28834b21f8a5\",\n            \"fixture_id\": \"9f53859e-7bc7-46de-b520-be93123bd140\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"First Vienna\",\n            \"away_team\": \"Admira Wacker\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 72.1,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-d88d-7334-9f86-f04aaf325ca2\",\n            \"fixture_id\": \"0199cf47-c64e-71ff-821a-916bc88b36d8\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Deutschlandsb. SC\",\n            \"away_team\": \"Junge Wikinger Ried\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 72.1,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1bc5-711c-85dd-8909bb8e2c28\",\n            \"fixture_id\": \"9dc0fcf6-4c44-4916-8d89-5e03e852fba0\",\n            \"competition\": \"Irish Premier Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Galway Utd\",\n            \"away_team\": \"Drogheda United\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 72,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a1085-6140-71d7-b906-8a54223621c1\",\n            \"fixture_id\": \"0199cf7e-eee8-708f-8883-f6677eee9ab7\",\n            \"competition\": \"Albanian Kategoria Superiore\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Af Elbasani\",\n            \"away_team\": \"Bylis Ballsh\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 72,\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a1161-9312-72a1-8f3d-f7a5b4a14cfa\",\n            \"fixture_id\": \"0199cf47-b656-714b-9090-876ef8591361\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"SV Wallern\",\n            \"away_team\": \"Oedt\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 72,\n            \"odds\": {\n                \"decimal\": 1.45,\n                \"numerator\": 9,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-f21c-736b-a3f5-27e26d0fa2f7\",\n            \"fixture_id\": \"9e1368e3-08d8-431b-ad70-3812ecae69c6\",\n            \"competition\": \"Chinese Chinese Super League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Meizhou Hakka\",\n            \"away_team\": \"Yunnan Yukun\",\n            \"kick_off\": \"2025-10-24 11:35:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 72,\n            \"odds\": {\n                \"decimal\": 1.45,\n                \"numerator\": 9,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-f2a0-72ff-9b2d-988686c8d969\",\n            \"fixture_id\": \"9e1368e3-08d8-431b-ad70-3812ecae69c6\",\n            \"competition\": \"Chinese Chinese Super League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Meizhou Hakka\",\n            \"away_team\": \"Yunnan Yukun\",\n            \"kick_off\": \"2025-10-24 11:35:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 72,\n            \"odds\": {\n                \"decimal\": 1.45,\n                \"numerator\": 9,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-14c2-7305-87d7-6daf027c3813\",\n            \"fixture_id\": \"9dc0fcf8-9733-4fc3-86c8-601653993f0a\",\n            \"competition\": \"Irish Premier Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"St. Patrick´s\",\n            \"away_team\": \"Waterford\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"St Patricks Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 71.8,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0844-722b-8845-65b11efa1138\",\n            \"fixture_id\": \"9f371270-9086-4305-b93f-bcdbd2d5f1e0\",\n            \"competition\": \"Polish 1. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Opole\",\n            \"away_team\": \"Ruch Chorzow\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 71.5,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f0b5-730a-9a5d-790ef5ba77c6\",\n            \"fixture_id\": \"0199feed-56db-70b9-93da-88ceada0f406\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Waalwijk\",\n            \"away_team\": \"Cambuur\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 71.5,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-3a8a-73a3-8c4f-f5d619e5fc86\",\n            \"fixture_id\": \"0199feed-6e6c-715d-b343-fd16be42d719\",\n            \"competition\": \"Uruguayan Primera Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Defensor\",\n            \"away_team\": \"Montevideo City\",\n            \"kick_off\": \"2025-10-24 22:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 71.4,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-013e-7230-a8a4-001a9d335ed6\",\n            \"fixture_id\": \"9f956ca3-783b-4cce-a49f-3f69d4898e54\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Le Mans\",\n            \"away_team\": \"US Boulogne\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 71.3,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-c803-712e-bc8c-06818160df38\",\n            \"fixture_id\": \"9dcd1d0f-df18-4ceb-a08e-a6d54d38afa9\",\n            \"competition\": \"Swedish Superettan\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Orgryte\",\n            \"away_team\": \"Vasteraas\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 71,\n            \"odds\": {\n                \"decimal\": 1.47,\n                \"numerator\": 40,\n                \"denominator\": 85\n            }\n        },\n        {\n            \"selection_id\": \"019a0af2-308f-7057-98d0-159315e04d3d\",\n            \"fixture_id\": \"019996d8-e072-733b-bf40-cf672e3049c3\",\n            \"competition\": \"Ukrainian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rivne\",\n            \"away_team\": \"Lugansk\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 70.5,\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ec40-7111-bda1-ace3eebf47e6\",\n            \"fixture_id\": \"0199feed-56b5-71c5-9048-74de7e57a250\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Almere\",\n            \"away_team\": \"Alkmaar\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 69.8,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-100b-71e6-ab56-722e2e165ae7\",\n            \"fixture_id\": \"9fb1ddfa-730a-430f-9c71-7f8d3f913a0c\",\n            \"competition\": \"Thai Thai League 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Port FC\",\n            \"away_team\": \"Muang Thong\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 69.7,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-7105-7296-a143-99f4f466fffd\",\n            \"fixture_id\": \"0199feed-3fb7-711d-b8a1-62cc15cad216\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Neom SC\",\n            \"away_team\": \"Al-Khaleej\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 69.7,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a123d-291a-73ec-bda9-a0652ab408b2\",\n            \"fixture_id\": \"0199cedc-0e49-716a-a861-1a6744db34fd\",\n            \"competition\": \"Nigerian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Katsina United FC\",\n            \"away_team\": \"El Kanemi Warriors\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Katsina United Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 69.7,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a08ce-86e2-7156-bc34-84873b406769\",\n            \"fixture_id\": \"0199ce6c-0e16-7098-8711-b5371e35030d\",\n            \"competition\": \"Croatian Prva NL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Orijent Rijeka\",\n            \"away_team\": \"Dugopolje\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"HNK Orijent 1919 Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 69.7,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-62b5-7038-b84d-1b0add31e1cf\",\n            \"fixture_id\": \"0199feed-335d-71e3-bc4d-a665f3870277\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fateh\",\n            \"away_team\": \"Al-Ittifaq\",\n            \"kick_off\": \"2025-10-24 14:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 69.7,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a08ce-888a-726d-b6c8-f3ce02fbf727\",\n            \"fixture_id\": \"0199ce6c-192c-70d2-9f24-c65f7b9a2720\",\n            \"competition\": \"Croatian Prva NL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"NK Sesvete\",\n            \"away_team\": \"Rudes Zagreb\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 69.7,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f1ee-7109-9c18-f395385cf203\",\n            \"fixture_id\": \"0199feed-56b5-71c5-9048-74de7e57a250\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Almere\",\n            \"away_team\": \"Alkmaar\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 69.5,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a1085-4534-73b6-9916-2f08ce910b0e\",\n            \"fixture_id\": \"9fb3e0e6-95c0-485c-acbf-6d284b50e84e\",\n            \"competition\": \"Azerbaijani Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Kapaz\",\n            \"away_team\": \"Imisli FK\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 69.4,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1d3c-71b0-9525-a442c5a39d3c\",\n            \"fixture_id\": \"9f854676-5b78-48e2-8e12-788c77f31564\",\n            \"competition\": \"Italian Serie B\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Modena\",\n            \"away_team\": \"Empoli\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 69.2,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-3ee9-72e1-9ee2-426a788b192c\",\n            \"fixture_id\": \"019974f1-b972-7022-96cf-17c6860e1cc9\",\n            \"competition\": \"Brazilian Brasileiro Serie B\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Gremio Novorizontino\",\n            \"away_team\": \"Botafogo\",\n            \"kick_off\": \"2025-10-24 22:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 69.2,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-d77c-7020-b607-4285d5e58fb9\",\n            \"fixture_id\": \"0199cf47-cf77-7322-b362-cdcad1e3f76b\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Gleisdorf\",\n            \"away_team\": \"Treibach\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 69.2,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-deb8-7188-95bb-da584246696a\",\n            \"fixture_id\": \"9f36d20a-0c6d-4b38-ba17-bcd0a012814a\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Stade Nyonnais\",\n            \"away_team\": \"Yverdon-Sport\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Yverdon Sport Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 68.8,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-913e-73a2-8012-230966104a40\",\n            \"fixture_id\": \"9f2ebf0a-2771-47e7-b11d-c9e8a2d991f9\",\n            \"competition\": \"Croatian HNL\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Gorica\",\n            \"away_team\": \"Hajduk\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 68.7,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2a1f-706c-b84a-b67522d9ad63\",\n            \"fixture_id\": \"9f8265bc-188f-46cc-9cea-c1e45044e0f9\",\n            \"competition\": \"English Championship\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Preston\",\n            \"away_team\": \"Sheffield Utd\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 68.6,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f158-719c-b0a0-43ac3a6f8b7b\",\n            \"fixture_id\": \"0199feed-56c8-729b-936f-8877500e8f6c\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Helmond\",\n            \"away_team\": \"Dordrecht\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 68.6,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a0eb2-4842-7317-9542-2733a83f93da\",\n            \"fixture_id\": \"019971b9-a6e6-739c-9f63-772dade191f7\",\n            \"competition\": \"Ghanaian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Heart of Lions\",\n            \"away_team\": \"Basake Holy Stars\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 68.5,\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-daa9-71ff-bee4-27a58b834a06\",\n            \"fixture_id\": \"9f5bd01c-af76-49b2-b4fa-5bf15edf373f\",\n            \"competition\": \"Romanian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Champions FC Arges\",\n            \"away_team\": \"Dinamo Bucuresti\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 68.2,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a1085-d740-7178-bd13-b5a3770946c4\",\n            \"fixture_id\": \"9f76c66e-90a9-451e-a935-c61af8ecded9\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Parndorf\",\n            \"away_team\": \"Donaufeld\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 68.2,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-c768-71f6-a5da-72ed222cf5c5\",\n            \"fixture_id\": \"9dcd1d0f-df18-4ceb-a08e-a6d54d38afa9\",\n            \"competition\": \"Swedish Superettan\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Orgryte\",\n            \"away_team\": \"Vasteraas\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 68.2,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-04d5-719f-9490-8603c9ec9b3f\",\n            \"fixture_id\": \"9f36d207-0c37-446f-8a9f-ef961b7e2fc4\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Aarau\",\n            \"away_team\": \"Wil\",\n            \"kick_off\": \"2025-10-24 18:15:00\",\n            \"selection_name\": \"Aarau Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 68.2,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-aa16-715d-b336-7bd91b59220d\",\n            \"fixture_id\": \"01994ce3-f0ed-720c-9a2a-62cbada98a8f\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Kolding IF\",\n            \"away_team\": \"Middelfart\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Kolding IF Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 67.9,\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0cba-72ae-adce-bbd732db6344\",\n            \"fixture_id\": \"0199bb65-8cb8-7263-95d7-069f35d260c8\",\n            \"competition\": \"Scottish League 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Hamilton\",\n            \"away_team\": \"Queen of The South\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Hamilton Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 67.9,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9b65-70fd-8945-a4ba26c80ec1\",\n            \"fixture_id\": \"01991f9d-6636-7310-868f-31ade70e838f\",\n            \"competition\": \"German 2. Bundesliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Greuther Furth\",\n            \"away_team\": \"Karlsruhe\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 67.7,\n            \"odds\": {\n                \"decimal\": 1.47,\n                \"numerator\": 40,\n                \"denominator\": 85\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-410e-73f1-937b-333df3b8ca3a\",\n            \"fixture_id\": \"0199fef0-26a9-7158-8c86-c72ca495684a\",\n            \"competition\": \"Colombian Primera A, Clausura\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Fortaleza\",\n            \"away_team\": \"Pasto\",\n            \"kick_off\": \"2025-10-24 23:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 67,\n            \"odds\": {\n                \"decimal\": 1.47,\n                \"numerator\": 40,\n                \"denominator\": 85\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-5699-7095-bbe7-fa0bc930b91f\",\n            \"fixture_id\": \"0199feed-335d-71e3-bc4d-a665f3870277\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fateh\",\n            \"away_team\": \"Al-Ittifaq\",\n            \"kick_off\": \"2025-10-24 14:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 66.6,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-96f5-73e9-9eac-286a5bf9a445\",\n            \"fixture_id\": \"9f6a7d5e-7f67-4c68-a307-f85eb9d126b0\",\n            \"competition\": \"Polish Ekstraklasa\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nieciecza\",\n            \"away_team\": \"Zaglebie Lubin\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 66.6,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-7029-7092-96b4-d38da127b69b\",\n            \"fixture_id\": \"0199feed-3fb7-711d-b8a1-62cc15cad216\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Neom SC\",\n            \"away_team\": \"Al-Khaleej\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 66.6,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a123d-29e0-715a-92e1-aa1877beb3ca\",\n            \"fixture_id\": \"0199cedc-0e49-716a-a861-1a6744db34fd\",\n            \"competition\": \"Nigerian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Katsina United FC\",\n            \"away_team\": \"El Kanemi Warriors\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 66.6,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-efe0-7296-b9d4-11cf0c837975\",\n            \"fixture_id\": \"0199feed-56d4-710f-9afb-45d4055c1fcb\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Utrecht\",\n            \"away_team\": \"Oss\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 66.5,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-3f1b-7265-a65a-99a575c0c84d\",\n            \"fixture_id\": \"019974f1-b972-7022-96cf-17c6860e1cc9\",\n            \"competition\": \"Brazilian Brasileiro Serie B\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Gremio Novorizontino\",\n            \"away_team\": \"Botafogo\",\n            \"kick_off\": \"2025-10-24 22:00:00\",\n            \"selection_name\": \"Novorizontino Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 66.4,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f397-71a0-9fb2-9fb456d09348\",\n            \"fixture_id\": \"0199feed-56c1-73d6-9d83-c927e1170fca\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FC Eindhoven\",\n            \"away_team\": \"Venlo\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 66.3,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ee30-7268-8dc5-eb8ea71dbf43\",\n            \"fixture_id\": \"0199feed-56af-711e-8571-93e78330e435\",\n            \"competition\": \"Dutch Eredivisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Heerenveen\",\n            \"away_team\": \"Breda\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 65.9,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-7072-71fe-b358-349936babfed\",\n            \"fixture_id\": \"9f594c4c-46ff-4b9c-bfb4-142ec0a7c9c9\",\n            \"competition\": \"Serbian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Partizan Belgrade\",\n            \"away_team\": \"Mladost Lucani\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 65.6,\n            \"odds\": {\n                \"decimal\": 1.47,\n                \"numerator\": 40,\n                \"denominator\": 85\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ebed-73a0-8671-a89af5b47a79\",\n            \"fixture_id\": \"0199feed-56bb-726e-9510-609c326e03ae\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"De Graafschap\",\n            \"away_team\": \"PSV\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"De Graafschap Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 65.6,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a10f3-afb9-728f-afd1-df766f3423a4\",\n            \"fixture_id\": \"0199d437-6b00-71cf-b93c-abc77d3e8a8b\",\n            \"competition\": \"Jordanian Jordan League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"AL Salt\",\n            \"away_team\": \"Ramtha\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 65.5,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ef0c-73c7-ae6b-08851ebf83ef\",\n            \"fixture_id\": \"0199feed-56af-711e-8571-93e78330e435\",\n            \"competition\": \"Dutch Eredivisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Heerenveen\",\n            \"away_team\": \"Breda\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 65.5,\n            \"odds\": {\n                \"decimal\": 1.6,\n                \"numerator\": 6,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a4ff-73fe-b18a-de0bc660e9f4\",\n            \"fixture_id\": \"01994cbf-4639-72dc-aedf-18c214ca1208\",\n            \"competition\": \"Turkish Super Lig\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Karagümrük\",\n            \"away_team\": \"Kayserispor\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 65.5,\n            \"odds\": {\n                \"decimal\": 1.6,\n                \"numerator\": 6,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-fead-7369-ba09-b2787bf8ca77\",\n            \"fixture_id\": \"9f42d5ae-7e4a-41bc-8c9a-3e5dedaf6d4b\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Bastia\",\n            \"away_team\": \"Stade Lavallois\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 65.4,\n            \"odds\": {\n                \"decimal\": 1.47,\n                \"numerator\": 40,\n                \"denominator\": 85\n            }\n        },\n        {\n            \"selection_id\": \"019a10f3-b6de-72db-a36b-5c8292f7d658\",\n            \"fixture_id\": \"0199cdc7-55fe-7348-b7bb-e927066c5bda\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"SV Donau\",\n            \"away_team\": \"Wiener Sport-Club\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 65.4,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0212-71e8-bd28-91edfeccf6ea\",\n            \"fixture_id\": \"9f531fb3-ca49-4ff9-824d-b32f137099e4\",\n            \"competition\": \"Belgian Challenger Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Royal Francs Borains\",\n            \"away_team\": \"KAA Gent\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 64.9,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a0be9-9087-72fb-b31c-57d77af1e537\",\n            \"fixture_id\": \"0199feed-46f0-7176-99a7-c294f230c4ff\",\n            \"competition\": \"Danish 2nd Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Helsingoer\",\n            \"away_team\": \"Thisted FC\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 64.9,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a1160-edd6-720e-93e3-7c72405703dd\",\n            \"fixture_id\": \"0199e1e0-b6bc-7325-acae-7f3741e8c3c9\",\n            \"competition\": \"Macedonian 1. MFL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Baskhimi\",\n            \"away_team\": \"Shkupi Cair\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 64.9,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-5027-7063-8884-464c057871aa\",\n            \"fixture_id\": \"9f594c53-4b3a-45bb-addf-d70b914c6662\",\n            \"competition\": \"Serbian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Napredak\",\n            \"away_team\": \"Vojvodina Novi Sad\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"selection_name\": \"Vojvodina Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 64.9,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0e11-73df-8b81-b3873bec3039\",\n            \"fixture_id\": \"9f6a7d65-42c9-42e0-84a3-30e00f6b6287\",\n            \"competition\": \"Polish Ekstraklasa\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Motor Lublin\",\n            \"away_team\": \"Widzew Lodz\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 64.8,\n            \"odds\": {\n                \"decimal\": 1.6,\n                \"numerator\": 6,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2e6c-73c0-8044-e7edbf7087f7\",\n            \"fixture_id\": \"01992054-49f4-70a7-a82e-a0d3e3caf49a\",\n            \"competition\": \"Portuguese Liga Portugal\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alverca\",\n            \"away_team\": \"Gil Vicente\",\n            \"kick_off\": \"2025-10-24 19:15:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 64.7,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f571-7213-b320-8b9160f915f0\",\n            \"fixture_id\": \"0199feed-56db-70b9-93da-88ceada0f406\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Waalwijk\",\n            \"away_team\": \"Cambuur\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 64.6,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f00e-722e-9e5b-ef5068345f78\",\n            \"fixture_id\": \"0199feed-56c8-729b-936f-8877500e8f6c\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Helmond\",\n            \"away_team\": \"Dordrecht\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 64.6,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-92f1-7273-ab09-1f5def9cbbb7\",\n            \"fixture_id\": \"9f4b292c-581e-4934-ae6d-6030078f9c9c\",\n            \"competition\": \"Czech FNL\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Usti nad Labem\",\n            \"away_team\": \"FC Banik Ostrava B\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 64.5,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-d38c-72dd-a234-40c0e50e5ef2\",\n            \"fixture_id\": \"9f19042a-3c9f-4907-8990-e18719cb4cab\",\n            \"competition\": \"Danish Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Aarhus\",\n            \"away_team\": \"Nordsjaelland\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 64.3,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-104e-71c9-a8fa-50efb88d4d38\",\n            \"fixture_id\": \"9fb1ddfa-730a-430f-9c71-7f8d3f913a0c\",\n            \"competition\": \"Thai Thai League 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Port FC\",\n            \"away_team\": \"Muang Thong\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 64,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9b11-739c-b83c-57a3d19f3089\",\n            \"fixture_id\": \"01991f9d-6636-7310-868f-31ade70e838f\",\n            \"competition\": \"German 2. Bundesliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Greuther Furth\",\n            \"away_team\": \"Karlsruhe\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 63.9,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-db4e-7332-9fd0-16bd2cfab52f\",\n            \"fixture_id\": \"9f36d20a-0c6d-4b38-ba17-bcd0a012814a\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Stade Nyonnais\",\n            \"away_team\": \"Yverdon-Sport\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 63.9,\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-dc37-7169-99d3-77dac0bc6c16\",\n            \"fixture_id\": \"9f36d20b-579a-461e-86d0-d75bd077d508\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Neuchatel Xamax\",\n            \"away_team\": \"Rapperswil-Jona\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 63.9,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-d298-7120-a448-b5418f3ca461\",\n            \"fixture_id\": \"9f19042a-3c9f-4907-8990-e18719cb4cab\",\n            \"competition\": \"Danish Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Aarhus\",\n            \"away_team\": \"Nordsjaelland\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 63.8,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9a31-7276-9c1e-9bbc841afc51\",\n            \"fixture_id\": \"9f5385df-0d09-42fc-8d1a-2532e5be7c59\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Liefering\",\n            \"away_team\": \"St. Polten\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 63.7,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-e345-72af-bcc0-05e115a43486\",\n            \"fixture_id\": \"01991ac0-1391-7177-a7bf-2e63ca9c9356\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vitesse\",\n            \"away_team\": \"Roda\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 63.6,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-bb44-734c-8759-41382503d18d\",\n            \"fixture_id\": \"0199feed-5266-70b3-b55b-1c38cf146a35\",\n            \"competition\": \"Turkish 1. Lig\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Sivasspor\",\n            \"away_team\": \"Hatayspor\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 63.3,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9a5c-702f-9579-55ccd3efbe92\",\n            \"fixture_id\": \"9f5385ef-9703-4026-ab35-bf5eb9144ec6\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"SW Bregenz\",\n            \"away_team\": \"KSV 1919\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 63.2,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a10f3-f65e-7002-8601-10cd7dc56bae\",\n            \"fixture_id\": \"9f3e968f-921e-4ec3-86ee-f7bac89645a2\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Krems\",\n            \"away_team\": \"Horn\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 63.1,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-dab3-7185-a8a5-55e3a3a60794\",\n            \"fixture_id\": \"9f36d20a-0c6d-4b38-ba17-bcd0a012814a\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Stade Nyonnais\",\n            \"away_team\": \"Yverdon-Sport\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 63,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-98ad-738b-9f4e-94063c9ba6e6\",\n            \"fixture_id\": \"9f6a7d5e-7f67-4c68-a307-f85eb9d126b0\",\n            \"competition\": \"Polish Ekstraklasa\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Nieciecza\",\n            \"away_team\": \"Zaglebie Lubin\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 63,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0a01-7341-9a3e-14c9a11a62fd\",\n            \"fixture_id\": \"0199feed-69ca-72af-a76d-c5598a4d4dad\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Ittihad\",\n            \"away_team\": \"Al Hilal\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Al-Hilal Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 63,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-91c8-7317-b789-71f8e0404eed\",\n            \"fixture_id\": \"9f371278-ba83-4efe-9ee4-0ab029dcdf3f\",\n            \"competition\": \"Polish 1. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Znicz Pruszkow\",\n            \"away_team\": \"Niepołomice\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 63,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-e225-72d0-9637-14fb4b346a0b\",\n            \"fixture_id\": \"01991ac0-1391-7177-a7bf-2e63ca9c9356\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vitesse\",\n            \"away_team\": \"Roda\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 63,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a1160-f19d-7117-93e7-c9213f1bef88\",\n            \"fixture_id\": \"0199e1e0-d7ac-730c-a40b-8df9ed87f14a\",\n            \"competition\": \"Macedonian 1. MFL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"GFK Tikvesh 1930\",\n            \"away_team\": \"Arsimi 1973\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"selection_name\": \"Tikves Kavadarci Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 63,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-123f-7378-b7ca-d26134c33561\",\n            \"fixture_id\": \"019914f4-fced-7085-bbb3-67ebdd1ec7f3\",\n            \"competition\": \"German Bundesliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Bremen\",\n            \"away_team\": \"Union Berlin\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 62.8,\n            \"odds\": {\n                \"decimal\": 1.6,\n                \"numerator\": 6,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-99dc-7244-bfbf-64e15c3b8472\",\n            \"fixture_id\": \"9f5384da-568c-4136-849a-2d9d563fd702\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Austria Klagenfurt\",\n            \"away_team\": \"Sturm II\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 62.8,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ff9f-711c-b5d3-e97520cca1f5\",\n            \"fixture_id\": \"9f531fb7-af85-42bf-815b-f495640b5486\",\n            \"competition\": \"Belgian Challenger Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Seraing\",\n            \"away_team\": \"Lierse Kempenzonen\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 62.7,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a1506-9913-7233-b210-5c1e1cc3c8cd\",\n            \"fixture_id\": \"9f76c675-116a-4d18-807e-ba2b327f3fce\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Traiskirchen\",\n            \"away_team\": \"FC Marchfeld Donauauen\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 62.6,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a10bb-f135-73ab-a75f-5d3d66030728\",\n            \"fixture_id\": \"0199ce00-12b3-7175-8a68-0d30431466c5\",\n            \"competition\": \"Armenian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alashkert Yerevan\",\n            \"away_team\": \"Van\",\n            \"kick_off\": \"2025-10-24 11:30:00\",\n            \"selection_name\": \"Alashkert Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 62.6,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-34de-718f-a2bc-5bcabaf854ad\",\n            \"fixture_id\": \"0199dd28-22d9-7117-bd7b-f15dcd934c31\",\n            \"competition\": \"Argentine Primera LPF\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Independiente\",\n            \"away_team\": \"Platense\",\n            \"kick_off\": \"2025-10-24 21:00:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 62.2,\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a228-725c-a5a9-108b3bb3bb5a\",\n            \"fixture_id\": \"01993881-375b-700c-9b28-6a6e7ee203b9\",\n            \"competition\": \"German 3. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Wiesbaden\",\n            \"away_team\": \"Aachen\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 62.1,\n            \"odds\": {\n                \"decimal\": 1.6,\n                \"numerator\": 6,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a08ce-8680-7351-a540-474af0a6e987\",\n            \"fixture_id\": \"0199ce6c-1403-72f5-bdfb-504a510030e2\",\n            \"competition\": \"Croatian Prva NL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Cibalia\",\n            \"away_team\": \"NK Hrvace\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Cibalia Vinkovci Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 61.8,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-43f5-72a0-b14b-d710ba8cf0e5\",\n            \"fixture_id\": \"0199fef0-26a9-7158-8c86-c72ca495684a\",\n            \"competition\": \"Colombian Primera A, Clausura\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Fortaleza\",\n            \"away_team\": \"Pasto\",\n            \"kick_off\": \"2025-10-24 23:00:00\",\n            \"selection_name\": \"Fortaleza FC Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 61.8,\n            \"odds\": {\n                \"decimal\": 1.7,\n                \"numerator\": 7,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a117c-ba8e-71e2-89c1-63552489fcb0\",\n            \"fixture_id\": \"019972cc-5d22-71c4-b115-05f25be621ee\",\n            \"competition\": \"Maltese Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mosta\",\n            \"away_team\": \"Zabbar Saint Patrick FC\",\n            \"kick_off\": \"2025-10-24 16:15:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 61.3,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1599-73fa-a5ff-83611f28055d\",\n            \"fixture_id\": \"9dc0fcf8-9733-4fc3-86c8-601653993f0a\",\n            \"competition\": \"Irish Premier Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"St. Patrick´s\",\n            \"away_team\": \"Waterford\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 61,\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-e03a-73a0-87b3-a0f73ab5c9e5\",\n            \"fixture_id\": \"0199cd59-4fd5-73d4-a1b5-246745ff67d6\",\n            \"competition\": \"Portuguese Liga Portugal 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SCU Torreense\",\n            \"away_team\": \"Oliveirense\",\n            \"kick_off\": \"2025-10-24 17:45:00\",\n            \"selection_name\": \"Torreense Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 61,\n            \"odds\": {\n                \"decimal\": 1.6,\n                \"numerator\": 6,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-105a-714d-9354-b1fcaf2e0dee\",\n            \"fixture_id\": \"019914f4-fced-7085-bbb3-67ebdd1ec7f3\",\n            \"competition\": \"German Bundesliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Bremen\",\n            \"away_team\": \"Union Berlin\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 60.9,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a764-7377-89e8-1ca368b19ab8\",\n            \"fixture_id\": \"01994cbf-4639-72dc-aedf-18c214ca1208\",\n            \"competition\": \"Turkish Super Lig\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Karagümrük\",\n            \"away_team\": \"Kayserispor\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 60.9,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-f01d-7151-8b60-de3a6d75ea6f\",\n            \"fixture_id\": \"9e1368ea-0256-4cd5-b75f-21b4b67a8476\",\n            \"competition\": \"Chinese Chinese Super League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Wuhan Three Towns FC\",\n            \"away_team\": \"Shenzhen Peng City\",\n            \"kick_off\": \"2025-10-24 11:35:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 60.9,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-045c-721a-ad15-b20c365497f4\",\n            \"fixture_id\": \"9f36d207-0c37-446f-8a9f-ef961b7e2fc4\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Aarau\",\n            \"away_team\": \"Wil\",\n            \"kick_off\": \"2025-10-24 18:15:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 60.9,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-979b-7288-bce3-de610bb7cf7e\",\n            \"fixture_id\": \"9f5384da-568c-4136-849a-2d9d563fd702\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Austria Klagenfurt\",\n            \"away_team\": \"Sturm II\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 60.9,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-30d6-70c5-9f3c-df6d41bd5507\",\n            \"fixture_id\": \"9e058626-c6a4-4068-8096-3698a2d583c1\",\n            \"competition\": \"Chilean Primera Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Palestino\",\n            \"away_team\": \"Everton\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 60.9,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ebb0-708e-9d51-b98bb497d410\",\n            \"fixture_id\": \"0199feed-56af-711e-8571-93e78330e435\",\n            \"competition\": \"Dutch Eredivisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Heerenveen\",\n            \"away_team\": \"Breda\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Heerenveen Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 60.9,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-d520-71a2-bf63-86646b7d0705\",\n            \"fixture_id\": \"9f19042a-3c9f-4907-8990-e18719cb4cab\",\n            \"competition\": \"Danish Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Aarhus\",\n            \"away_team\": \"Nordsjaelland\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"AGF Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 60.9,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-df87-70fd-b3ca-52622d0afcc4\",\n            \"fixture_id\": \"0199cf4a-060e-72ef-a547-5f949e502259\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Kalsdorf\",\n            \"away_team\": \"Union Gurten\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 60.7,\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-20b1-7035-92af-04a9cb8cc760\",\n            \"fixture_id\": \"01991faf-909d-733b-9103-ed144b71a4f6\",\n            \"competition\": \"French Ligue 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Paris FC\",\n            \"away_team\": \"Nantes\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Paris FC Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 60.4,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9a57-727f-aac1-b0b6e8a55613\",\n            \"fixture_id\": \"9f5385ff-748c-4e5c-a96f-188ec1ef8053\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Stripfing\",\n            \"away_team\": \"Hogo Wels\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 60.3,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9135-73f5-baad-5aaa171c65e3\",\n            \"fixture_id\": \"9f4b292c-581e-4934-ae6d-6030078f9c9c\",\n            \"competition\": \"Czech FNL\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Usti nad Labem\",\n            \"away_team\": \"FC Banik Ostrava B\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 60.2,\n            \"odds\": {\n                \"decimal\": 1.6,\n                \"numerator\": 6,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9876-7217-b392-23aee92571e9\",\n            \"fixture_id\": \"9f5385df-0d09-42fc-8d1a-2532e5be7c59\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Liefering\",\n            \"away_team\": \"St. Polten\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 60.2,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-f1b5-73eb-86bf-38261d6f3aaa\",\n            \"fixture_id\": \"9e1368e3-08d8-431b-ad70-3812ecae69c6\",\n            \"competition\": \"Chinese Chinese Super League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Meizhou Hakka\",\n            \"away_team\": \"Yunnan Yukun\",\n            \"kick_off\": \"2025-10-24 11:35:00\",\n            \"selection_name\": \"Meizhou Hakka Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 60.1,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-f836-7090-a486-7215cd89e6af\",\n            \"fixture_id\": \"9f76c671-bf83-47e1-be54-b14b85554655\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Favoritner AC\",\n            \"away_team\": \"SV Oberwart\",\n            \"kick_off\": \"2025-10-24 17:10:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 60.1,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-ff58-710c-b0bf-8ad7b59c068e\",\n            \"fixture_id\": \"0199feed-1bb1-71ae-98f8-09e3f0ea8fd4\",\n            \"competition\": \"Indonesian Super League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Madura United\",\n            \"away_team\": \"Persija\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Persija Jakarta Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 60.1,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a0c20-8023-730d-a778-29ddeb32c444\",\n            \"fixture_id\": \"019a02c9-cd9c-72d1-bf0b-dba91651a0ae\",\n            \"competition\": \"Bosnian and Herzegovinian Premijer Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Sarajevo\",\n            \"away_team\": \"Sloga\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 60.1,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2966-7115-8dfb-c2b2a1f88547\",\n            \"fixture_id\": \"0199feed-6dc4-7191-b468-981e4c210ed2\",\n            \"competition\": \"Peruvian Liga 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Juan Pablo II\",\n            \"away_team\": \"Comerciantes U\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"selection_name\": \"Juan Pablo II College Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 60.1,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f099-707f-afb6-496fc55c7c55\",\n            \"fixture_id\": \"0199feed-56c1-73d6-9d83-c927e1170fca\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"FC Eindhoven\",\n            \"away_team\": \"Venlo\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 60,\n            \"odds\": {\n                \"decimal\": 1.6,\n                \"numerator\": 6,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-99a9-71f2-88f1-5e59bb3032d4\",\n            \"fixture_id\": \"01991faf-7855-7358-8988-61f788a677ae\",\n            \"competition\": \"German 2. Bundesliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Schalke\",\n            \"away_team\": \"Darmstadt\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 59.8,\n            \"odds\": {\n                \"decimal\": 1.65,\n                \"numerator\": 13,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-fc3c-708a-913a-ca070ef2f44b\",\n            \"fixture_id\": \"9f42d5a9-e4c4-4c44-8351-c1e9a660d254\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Guingamp\",\n            \"away_team\": \"Clermont Foot\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Guingamp Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 59.4,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a10bb-e8dd-706a-abff-7b8b9f6340e4\",\n            \"fixture_id\": \"0199ce00-12b3-7175-8a68-0d30431466c5\",\n            \"competition\": \"Armenian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alashkert Yerevan\",\n            \"away_team\": \"Van\",\n            \"kick_off\": \"2025-10-24 11:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 59.4,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0d3a-731a-afaa-061b4357bcac\",\n            \"fixture_id\": \"0199bb65-8cb8-7263-95d7-069f35d260c8\",\n            \"competition\": \"Scottish League 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Hamilton\",\n            \"away_team\": \"Queen of The South\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 59.3,\n            \"odds\": {\n                \"decimal\": 1.65,\n                \"numerator\": 13,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f174-7062-aed2-b3fe866faedf\",\n            \"fixture_id\": \"0199feed-56d4-710f-9afb-45d4055c1fcb\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Utrecht\",\n            \"away_team\": \"Oss\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 58.7,\n            \"odds\": {\n                \"decimal\": 1.65,\n                \"numerator\": 13,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a3b3-72fc-80c3-1abb8ad33e94\",\n            \"fixture_id\": \"01993059-f253-70a2-bf1b-d66dd21b8946\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"B93 Copenhagen\",\n            \"away_team\": \"Horsens\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"AC Horsens Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 58.7,\n            \"odds\": {\n                \"decimal\": 1.7,\n                \"numerator\": 7,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ff44-7331-a4e1-91989b1f2316\",\n            \"fixture_id\": \"9f531fb3-ca49-4ff9-824d-b32f137099e4\",\n            \"competition\": \"Belgian Challenger Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Royal Francs Borains\",\n            \"away_team\": \"KAA Gent\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 58.6,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-4ea3-7356-8b31-4f862ff0e4e5\",\n            \"fixture_id\": \"9f594c53-4b3a-45bb-addf-d70b914c6662\",\n            \"competition\": \"Serbian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Napredak\",\n            \"away_team\": \"Vojvodina Novi Sad\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 58.6,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9bd2-7043-b786-ee1eb2bd9c23\",\n            \"fixture_id\": \"01991faf-7855-7358-8988-61f788a677ae\",\n            \"competition\": \"German 2. Bundesliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Schalke\",\n            \"away_team\": \"Darmstadt\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 58.6,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-14bd-72f0-b18b-ff763b3e8204\",\n            \"fixture_id\": \"019996d8-da0a-7232-ad83-b6ce7831ec50\",\n            \"competition\": \"Ukrainian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Oleksandriya\",\n            \"away_team\": \"Epitsentr Kamianets-Podilskyi\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 58.6,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1974-7000-bd47-e80337943c2c\",\n            \"fixture_id\": \"9f67afe9-c2dd-490c-ae3a-edbef2297fce\",\n            \"competition\": \"Italian Serie A\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Milan\",\n            \"away_team\": \"Pisa\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 58.6,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-f990-7172-90c7-bc127524b727\",\n            \"fixture_id\": \"9f42d5a7-3c34-4bfb-b13b-923a0316a760\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Pau\",\n            \"away_team\": \"Dunkerque\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 58.4,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-959d-70b7-8c45-3a83b3548780\",\n            \"fixture_id\": \"9f5385ef-9703-4026-ab35-bf5eb9144ec6\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"SW Bregenz\",\n            \"away_team\": \"KSV 1919\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 58.2,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a605-73e1-8bbf-1756930d9a1a\",\n            \"fixture_id\": \"01993059-f253-70a2-bf1b-d66dd21b8946\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"B93 Copenhagen\",\n            \"away_team\": \"Horsens\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 58.2,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1f87-7248-a59c-028c6d1b5802\",\n            \"fixture_id\": \"9f333761-648f-4ed5-a423-ad884df5d852\",\n            \"competition\": \"Belgian Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Charleroi\",\n            \"away_team\": \"Anderlecht\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 58.2,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-d9f6-70e4-a4b8-0756b3a6bdad\",\n            \"fixture_id\": \"9f36d20b-579a-461e-86d0-d75bd077d508\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Neuchatel Xamax\",\n            \"away_team\": \"Rapperswil-Jona\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 58,\n            \"odds\": {\n                \"decimal\": 1.65,\n                \"numerator\": 13,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-10f4-7041-9bcb-729e388a6069\",\n            \"fixture_id\": \"0199bb65-8cb8-7263-95d7-069f35d260c8\",\n            \"competition\": \"Scottish League 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Hamilton\",\n            \"away_team\": \"Queen of The South\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 57.9,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1135-7379-977c-7aac76b9186f\",\n            \"fixture_id\": \"9f4a124b-6c8d-49e6-859f-65e71bad9dc7\",\n            \"competition\": \"Spanish LaLiga 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Huesca\",\n            \"away_team\": \"Las Palmas\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Over 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"probability\": 57.8,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0536-7154-b32f-5f22aa9b6dc3\",\n            \"fixture_id\": \"9f36d207-0c37-446f-8a9f-ef961b7e2fc4\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Aarau\",\n            \"away_team\": \"Wil\",\n            \"kick_off\": \"2025-10-24 18:15:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 57.7,\n            \"odds\": {\n                \"decimal\": 1.65,\n                \"numerator\": 13,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0e99-7092-b432-330939667562\",\n            \"fixture_id\": \"01991faf-909d-733b-9103-ed144b71a4f6\",\n            \"competition\": \"French Ligue 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Paris FC\",\n            \"away_team\": \"Nantes\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 57.7,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-56cf-71cf-addc-d16891e8daf9\",\n            \"fixture_id\": \"01990aa8-6087-72e5-ba61-eddf6684debd\",\n            \"competition\": \"Bulgarian Parva Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartak Varna\",\n            \"away_team\": \"Botev Plovdiv\",\n            \"kick_off\": \"2025-10-24 14:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 57.6,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a1c0-732e-84bb-eeba71e7c507\",\n            \"fixture_id\": \"01993059-f253-70a2-bf1b-d66dd21b8946\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"B93 Copenhagen\",\n            \"away_team\": \"Horsens\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 57.5,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-8cc1-717e-8337-e085bb4ae7a5\",\n            \"fixture_id\": \"9f310981-f91d-4d86-b381-9704ea569dd3\",\n            \"competition\": \"Czech FNL\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Ceske Budejovice\",\n            \"away_team\": \"Prostejov\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 57.4,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a0be9-955a-709b-8aaf-3032933ca3e0\",\n            \"fixture_id\": \"0199feed-46f5-7013-86ec-95b09b3e27dd\",\n            \"competition\": \"Danish 2nd Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vendsyssel\",\n            \"away_team\": \"Fremad Amager\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 57.4,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1253-72ed-9156-fc8243f228d3\",\n            \"fixture_id\": \"9f854676-5b78-48e2-8e12-788c77f31564\",\n            \"competition\": \"Italian Serie B\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Modena\",\n            \"away_team\": \"Empoli\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Modena Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 57.4,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a139-72fd-84c9-62e5fd0fc152\",\n            \"fixture_id\": \"01993881-375b-700c-9b28-6a6e7ee203b9\",\n            \"competition\": \"German 3. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Wiesbaden\",\n            \"away_team\": \"Aachen\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 57.2,\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0023-7166-a5a2-5d4d8c832f2f\",\n            \"fixture_id\": \"9f42d5ac-f295-4f22-943c-f466550506b1\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Red Star\",\n            \"away_team\": \"Grenoble\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Red Star Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 57,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1160-efbc-7316-b51d-eed82eab2f7e\",\n            \"fixture_id\": \"0199e1e0-d7ac-730c-a40b-8df9ed87f14a\",\n            \"competition\": \"Macedonian 1. MFL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"GFK Tikvesh 1930\",\n            \"away_team\": \"Arsimi 1973\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 57,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2bb2-705f-9528-b8934e27cdea\",\n            \"fixture_id\": \"9e058626-c6a4-4068-8096-3698a2d583c1\",\n            \"competition\": \"Chilean Primera Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Palestino\",\n            \"away_team\": \"Everton\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 57,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-5244-722a-aca2-2392c6f0018b\",\n            \"fixture_id\": \"01990aa8-6087-72e5-ba61-eddf6684debd\",\n            \"competition\": \"Bulgarian Parva Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Spartak Varna\",\n            \"away_team\": \"Botev Plovdiv\",\n            \"kick_off\": \"2025-10-24 14:30:00\",\n            \"selection_name\": \"Botev Plovdiv Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 57,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-00da-7163-8e0e-d50ca09bbfa5\",\n            \"fixture_id\": \"0199feed-1bb1-71ae-98f8-09e3f0ea8fd4\",\n            \"competition\": \"Indonesian Super League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Madura United\",\n            \"away_team\": \"Persija\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 57,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-01dc-7294-a5fc-14223a09c94d\",\n            \"fixture_id\": \"0199feed-1bb1-71ae-98f8-09e3f0ea8fd4\",\n            \"competition\": \"Indonesian Super League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Madura United\",\n            \"away_team\": \"Persija\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 56.8,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a0be9-9137-7393-ab51-16e38b65221c\",\n            \"fixture_id\": \"0199feed-46f0-7176-99a7-c294f230c4ff\",\n            \"competition\": \"Danish 2nd Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Helsingoer\",\n            \"away_team\": \"Thisted FC\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 56.7,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1766-7332-92b5-cbf97e5aa7d8\",\n            \"fixture_id\": \"9dc0fcf8-9733-4fc3-86c8-601653993f0a\",\n            \"competition\": \"Irish Premier Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"St. Patrick´s\",\n            \"away_team\": \"Waterford\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 56.7,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-d88e-73f9-b08d-c2e9f8c6eb46\",\n            \"fixture_id\": \"9f36d20b-579a-461e-86d0-d75bd077d508\",\n            \"competition\": \"Swiss Challenge League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Neuchatel Xamax\",\n            \"away_team\": \"Rapperswil-Jona\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"selection_name\": \"Neuchatel Xamax Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 56.7,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-04f9-72a0-baf9-fd24cdca4f89\",\n            \"fixture_id\": \"9f531fb7-af85-42bf-815b-f495640b5486\",\n            \"competition\": \"Belgian Challenger Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Seraing\",\n            \"away_team\": \"Lierse Kempenzonen\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 56.6,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-5057-7141-9f31-a530b1fe6487\",\n            \"fixture_id\": \"9f594c53-4b3a-45bb-addf-d70b914c6662\",\n            \"competition\": \"Serbian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Napredak\",\n            \"away_team\": \"Vojvodina Novi Sad\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 56.5,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2785-73f9-ba51-0df078056be2\",\n            \"fixture_id\": \"9f8265bc-188f-46cc-9cea-c1e45044e0f9\",\n            \"competition\": \"English Championship\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Preston\",\n            \"away_team\": \"Sheffield Utd\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 56.5,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-fff7-71b7-8306-b44ba6084105\",\n            \"fixture_id\": \"01993f4c-d6ec-70be-af12-78b380cad174\",\n            \"competition\": \"Italian Serie C, Group C\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Foggia\",\n            \"away_team\": \"Asd Team Altamura\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 56.5,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-6677-73cb-863a-97e2940e6b3a\",\n            \"fixture_id\": \"0199feed-3369-724c-bfb4-e2225e25e2ea\",\n            \"competition\": \"Latvian Virsliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Riga FC\",\n            \"away_team\": \"Tukums 2000\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"probability\": 56.3,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a14ea-648b-71b1-9e80-097907696bcc\",\n            \"fixture_id\": \"0199cf47-bf90-737f-b6fb-a1d07ae18161\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lafnitz\",\n            \"away_team\": \"St. Anna\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"probability\": 56.2,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ee15-7042-b95c-ced5f1c899fc\",\n            \"fixture_id\": \"0199feed-56b5-71c5-9048-74de7e57a250\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Almere\",\n            \"away_team\": \"Alkmaar\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Almere City Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 56.2,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a1085-60ae-72a2-9e7e-190f4bd4b7ad\",\n            \"fixture_id\": \"0199cf7e-eee8-708f-8883-f6677eee9ab7\",\n            \"competition\": \"Albanian Kategoria Superiore\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Af Elbasani\",\n            \"away_team\": \"Bylis Ballsh\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"AF Elbasani Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 56.2,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-054a-70b8-ab05-abe963ece039\",\n            \"fixture_id\": \"9f42d5af-f49f-4e17-833b-0f8d5e9d7567\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Reims\",\n            \"away_team\": \"Troyes\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 56,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-efa7-7207-bf5d-03f9f03abd9c\",\n            \"fixture_id\": \"0199feed-56bb-726e-9510-609c326e03ae\",\n            \"competition\": \"Dutch Eerste Divisie\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"De Graafschap\",\n            \"away_team\": \"PSV\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"probability\": 55.7,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-13ad-7091-bcab-e7ded8577b55\",\n            \"fixture_id\": \"9f6a7d65-42c9-42e0-84a3-30e00f6b6287\",\n            \"competition\": \"Polish Ekstraklasa\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Motor Lublin\",\n            \"away_team\": \"Widzew Lodz\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 55.7,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a1558-9c8d-73cd-9726-458e840a881e\",\n            \"fixture_id\": \"0199cf47-d7db-716d-84ef-2169cdf0b927\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Weiz\",\n            \"away_team\": \"Atus Velden\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"SC Weiz Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 55.7,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-0f54-73ff-bb74-1e6c77e92faa\",\n            \"fixture_id\": \"9fb1ddfa-730a-430f-9c71-7f8d3f913a0c\",\n            \"competition\": \"Thai Thai League 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Port FC\",\n            \"away_team\": \"Muang Thong\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Port FC Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 55.6,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9338-71b1-af8b-48c1f668b526\",\n            \"fixture_id\": \"9f5384da-568c-4136-849a-2d9d563fd702\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Austria Klagenfurt\",\n            \"away_team\": \"Sturm II\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Austria Klagenfurt Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 55.6,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9420-71d0-af2a-0ea8d593cdab\",\n            \"fixture_id\": \"9f2ebf0a-2771-47e7-b11d-c9e8a2d991f9\",\n            \"competition\": \"Croatian HNL\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Gorica\",\n            \"away_team\": \"Hajduk\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Hajduk Split Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 55.6,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a0be9-8fe6-713f-aa5e-b6d3ab387474\",\n            \"fixture_id\": \"0199feed-46f0-7176-99a7-c294f230c4ff\",\n            \"competition\": \"Danish 2nd Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Helsingoer\",\n            \"away_team\": \"Thisted FC\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Thisted Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 55.4,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-ed4c-7381-acf5-dcea6e74c04c\",\n            \"fixture_id\": \"9e1368ea-0256-4cd5-b75f-21b4b67a8476\",\n            \"competition\": \"Chinese Chinese Super League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Wuhan Three Towns FC\",\n            \"away_team\": \"Shenzhen Peng City\",\n            \"kick_off\": \"2025-10-24 11:35:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 55.4,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a110e-5ded-7347-8d6a-0985dd3d05bd\",\n            \"fixture_id\": \"0199c97c-d7b5-701c-8dc4-f6a5cf15a9cf\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Qizilqum\",\n            \"away_team\": \"Dinamo\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 55.4,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a1084-eebb-7136-a398-01b8c6c769b8\",\n            \"fixture_id\": \"0199cf7e-f2c8-7387-bc69-41b3143d6d72\",\n            \"competition\": \"Albanian Kategoria Superiore\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"FK Vora\",\n            \"away_team\": \"Dinamo City\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Dinamo Tirana Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 55.4,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-5815-7352-ab57-91ee1dd198c4\",\n            \"fixture_id\": \"0199dcf1-205c-71e6-abef-02029def9e2e\",\n            \"competition\": \"Romanian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"FK Csikszereda Miercurea Ciuc\",\n            \"away_team\": \"Petrolul Ploiesti\",\n            \"kick_off\": \"2025-10-24 14:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 55.4,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-d9c7-71c1-8e12-61b3c3c818de\",\n            \"fixture_id\": \"0199cd59-4fd5-73d4-a1b5-246745ff67d6\",\n            \"competition\": \"Portuguese Liga Portugal 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SCU Torreense\",\n            \"away_team\": \"Oliveirense\",\n            \"kick_off\": \"2025-10-24 17:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 55.1,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9012-727d-876d-0ccb74b90909\",\n            \"fixture_id\": \"9f4b292c-581e-4934-ae6d-6030078f9c9c\",\n            \"competition\": \"Czech FNL\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Usti nad Labem\",\n            \"away_team\": \"FC Banik Ostrava B\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Usti Nad Labem Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 55,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a858-7287-9b16-524e2f87c158\",\n            \"fixture_id\": \"01994ce3-f0ed-720c-9a2a-62cbada98a8f\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Kolding IF\",\n            \"away_team\": \"Middelfart\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 54.9,\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9934-731a-9d8a-3fc869edb339\",\n            \"fixture_id\": \"9f5385ff-748c-4e5c-a96f-188ec1ef8053\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Stripfing\",\n            \"away_team\": \"Hogo Wels\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 54.9,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9b77-732e-aa1d-6b11f6cb1887\",\n            \"fixture_id\": \"9f5385df-0d09-42fc-8d1a-2532e5be7c59\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Liefering\",\n            \"away_team\": \"St. Polten\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"St Polten Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 54.8,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2bd8-72ac-a036-bdd64b6fcb5e\",\n            \"fixture_id\": \"0199cd59-552a-7013-90ae-061b717839ad\",\n            \"competition\": \"Portuguese Liga Portugal 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vizela\",\n            \"away_team\": \"FC Felgueiras 1932\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 54.7,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a117d-63ac-72b3-9eff-0b398dba3103\",\n            \"fixture_id\": \"019972cc-597d-730f-872a-d3af987095ef\",\n            \"competition\": \"Maltese Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Gzira Utd\",\n            \"away_team\": \"Tarxien R\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 54.7,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a10f3-3a83-7174-843b-f2067d75182c\",\n            \"fixture_id\": \"0199cea3-3a8d-7002-965e-845ff66d74ff\",\n            \"competition\": \"Jordanian Jordan League\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Al Jazeera\",\n            \"away_team\": \"Shabab AL Ordun\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 54.6,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-20a0-7080-b8af-d001083e3fd1\",\n            \"fixture_id\": \"0199812c-a204-7009-a7ba-7f55644bdb1f\",\n            \"competition\": \"Spanish LaLiga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Real Sociedad\",\n            \"away_team\": \"Sevilla\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 54.6,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a117c-b92a-7157-a57a-284c89811dcc\",\n            \"fixture_id\": \"019972cc-5d22-71c4-b115-05f25be621ee\",\n            \"competition\": \"Maltese Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Mosta\",\n            \"away_team\": \"Zabbar Saint Patrick FC\",\n            \"kick_off\": \"2025-10-24 16:15:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 54.4,\n            \"odds\": {\n                \"decimal\": 1.75,\n                \"numerator\": 3,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a0af2-2efb-716a-8701-e1871b1cf793\",\n            \"fixture_id\": \"019996d8-e072-733b-bf40-cf672e3049c3\",\n            \"competition\": \"Ukrainian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Rivne\",\n            \"away_team\": \"Lugansk\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 54.4,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-7186-72f5-992a-e4daffe187a5\",\n            \"fixture_id\": \"9f594c48-f4b6-46d6-baff-89b8d2dabc91\",\n            \"competition\": \"Serbian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Novi Pazar\",\n            \"away_team\": \"Javor\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"selection_name\": \"FK Novi Pazar Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 54.3,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0953-7030-9c63-a9942f4f09c9\",\n            \"fixture_id\": \"0199feed-69e7-735c-a076-0778d50dbe4b\",\n            \"competition\": \"Italian Serie C, Group A\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Novara\",\n            \"away_team\": \"Virtus Verona\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 54.3,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a1160-f083-7183-83b2-5f20f40c1a59\",\n            \"fixture_id\": \"0199e1e0-d7ac-730c-a40b-8df9ed87f14a\",\n            \"competition\": \"Macedonian 1. MFL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"GFK Tikvesh 1930\",\n            \"away_team\": \"Arsimi 1973\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 54.3,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2b23-7058-858a-5cff57e0eca5\",\n            \"fixture_id\": \"0199feed-6dc4-7191-b468-981e4c210ed2\",\n            \"competition\": \"Peruvian Liga 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Juan Pablo II\",\n            \"away_team\": \"Comerciantes U\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 54.3,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a1084-ef8a-739a-93c5-b3de16a98a78\",\n            \"fixture_id\": \"0199cf7e-f2c8-7387-bc69-41b3143d6d72\",\n            \"competition\": \"Albanian Kategoria Superiore\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"FK Vora\",\n            \"away_team\": \"Dinamo City\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 54.3,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-fe01-7278-9911-88b8d273c2c8\",\n            \"fixture_id\": \"9f42d5a9-e4c4-4c44-8351-c1e9a660d254\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Guingamp\",\n            \"away_team\": \"Clermont Foot\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 54.2,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-3903-710b-8776-926d3a031352\",\n            \"fixture_id\": \"0199feed-6e6c-715d-b343-fd16be42d719\",\n            \"competition\": \"Uruguayan Primera Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Defensor\",\n            \"away_team\": \"Montevideo City\",\n            \"kick_off\": \"2025-10-24 22:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 54,\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-29f6-72c9-be0e-51b3de8e0787\",\n            \"fixture_id\": \"9fae436a-e5cd-49c4-9830-be1a0c2b2200\",\n            \"competition\": \"English Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Leeds\",\n            \"away_team\": \"West Ham\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 53.8,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a0be9-92b0-70da-aa0b-582473db371d\",\n            \"fixture_id\": \"0199feed-46f5-7013-86ec-95b09b3e27dd\",\n            \"competition\": \"Danish 2nd Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vendsyssel\",\n            \"away_team\": \"Fremad Amager\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Vendsyssel FF Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 53.7,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9a6f-72af-87cd-66dbbd24d41d\",\n            \"fixture_id\": \"9f53859e-7bc7-46de-b520-be93123bd140\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"First Vienna\",\n            \"away_team\": \"Admira Wacker\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Admira Wacker Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 53.7,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-108e-717c-ab84-8fb57cac68e0\",\n            \"fixture_id\": \"01991faf-909d-733b-9103-ed144b71a4f6\",\n            \"competition\": \"French Ligue 1\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Paris FC\",\n            \"away_team\": \"Nantes\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 53.5,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-bca1-7127-b5b3-17e5d18c4199\",\n            \"fixture_id\": \"0199feed-5266-70b3-b55b-1c38cf146a35\",\n            \"competition\": \"Turkish 1. Lig\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Sivasspor\",\n            \"away_team\": \"Hatayspor\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 53.5,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-723a-7312-bfdb-592924d63050\",\n            \"fixture_id\": \"9f594c48-f4b6-46d6-baff-89b8d2dabc91\",\n            \"competition\": \"Serbian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Novi Pazar\",\n            \"away_team\": \"Javor\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 53.2,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-fa7f-71b9-b4be-27020c6a0a49\",\n            \"fixture_id\": \"9f42d5ac-f295-4f22-943c-f466550506b1\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Red Star\",\n            \"away_team\": \"Grenoble\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 53.2,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0bfa-721f-8079-357ffd27c215\",\n            \"fixture_id\": \"9f371270-9086-4305-b93f-bcdbd2d5f1e0\",\n            \"competition\": \"Polish 1. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Opole\",\n            \"away_team\": \"Ruch Chorzow\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 53,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-8f98-729c-b1e6-3279321a5d0c\",\n            \"fixture_id\": \"9f310981-f91d-4d86-b381-9704ea569dd3\",\n            \"competition\": \"Czech FNL\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Ceske Budejovice\",\n            \"away_team\": \"Prostejov\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Ceske Budejovice Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 53,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-f1d2-7317-aee0-e5b31d5a9bb7\",\n            \"fixture_id\": \"01990aa8-5529-733e-9089-f6ab9640f9bb\",\n            \"competition\": \"Bulgarian Parva Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Montana\",\n            \"away_team\": \"Arda Kardzhali\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 53,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-8e1a-7225-9ff9-8c002f149ef4\",\n            \"fixture_id\": \"9f2ebf0a-2771-47e7-b11d-c9e8a2d991f9\",\n            \"competition\": \"Croatian HNL\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Gorica\",\n            \"away_team\": \"Hajduk\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 53,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9ec3-719f-9974-9bd820ccc9a6\",\n            \"fixture_id\": \"01990aa8-728b-72f4-8fe8-de77c9b7cefd\",\n            \"competition\": \"Bulgarian Parva Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lok Sofia\",\n            \"away_team\": \"Lok Plovdiv\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 53,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-6400-71ce-b2a2-261d5ac6405a\",\n            \"fixture_id\": \"0199feed-335d-71e3-bc4d-a665f3870277\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Fateh\",\n            \"away_team\": \"Al-Ittifaq\",\n            \"kick_off\": \"2025-10-24 14:45:00\",\n            \"selection_name\": \"Al-Fateh (KSA) Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 53,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1161-3aba-7081-aed1-8772e0d3e9a8\",\n            \"fixture_id\": \"0199cf7e-eb69-735d-902d-088274437ec0\",\n            \"competition\": \"Albanian Kategoria Superiore\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vllaznia Shkoder\",\n            \"away_team\": \"Tirana\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 53,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-fc09-71b7-b394-18a33a257a58\",\n            \"fixture_id\": \"9f42d5a7-3c34-4bfb-b13b-923a0316a760\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Pau\",\n            \"away_team\": \"Dunkerque\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Pau Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 53,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07bb-f03d-7124-9b91-f05d924ff540\",\n            \"fixture_id\": \"01990aa8-5529-733e-9089-f6ab9640f9bb\",\n            \"competition\": \"Bulgarian Parva Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Montana\",\n            \"away_team\": \"Arda Kardzhali\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"selection_name\": \"Arda Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 53,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-171d-7090-85f7-4d48b02a8e2d\",\n            \"fixture_id\": \"019996d8-da0a-7232-ad83-b6ce7831ec50\",\n            \"competition\": \"Ukrainian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Oleksandriya\",\n            \"away_team\": \"Epitsentr Kamianets-Podilskyi\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 53,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-08b2-7379-8df1-5767cb38d26a\",\n            \"fixture_id\": \"0199feed-69ca-72af-a76d-c5598a4d4dad\",\n            \"competition\": \"Saudi Saudi Pro League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"row\"\n            ],\n            \"home_team\": \"Al-Ittihad\",\n            \"away_team\": \"Al Hilal\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"probability\": 53,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-2843-7170-ac1d-7452d214b437\",\n            \"fixture_id\": \"9fae436a-e5cd-49c4-9830-be1a0c2b2200\",\n            \"competition\": \"English Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Leeds\",\n            \"away_team\": \"West Ham\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"selection_name\": \"Leeds Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 52.9,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-aad7-7068-aa84-8f83939c12ed\",\n            \"fixture_id\": \"01994ce3-f0ed-720c-9a2a-62cbada98a8f\",\n            \"competition\": \"Danish 1. Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Kolding IF\",\n            \"away_team\": \"Middelfart\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 52.9,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a10bb-e838-724a-9f74-cba1c8f11531\",\n            \"fixture_id\": \"0199ce00-12b3-7175-8a68-0d30431466c5\",\n            \"competition\": \"Armenian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Alashkert Yerevan\",\n            \"away_team\": \"Van\",\n            \"kick_off\": \"2025-10-24 11:30:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 52.7,\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a117d-53a7-71a7-a906-8a82c08b9dde\",\n            \"fixture_id\": \"0199cf7e-ce60-7180-9fcd-38e935dc578d\",\n            \"competition\": \"Northern Irish Championship\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Annagh United\",\n            \"away_team\": \"Warrenpoint Town\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 52.7,\n            \"odds\": {\n                \"decimal\": 1.87,\n                \"numerator\": 20,\n                \"denominator\": 23\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-ded9-7282-a48f-3dca1ffea6c5\",\n            \"fixture_id\": \"0199cd59-4fd5-73d4-a1b5-246745ff67d6\",\n            \"competition\": \"Portuguese Liga Portugal 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"SCU Torreense\",\n            \"away_team\": \"Oliveirense\",\n            \"kick_off\": \"2025-10-24 17:45:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 52.6,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a117d-4f8e-7226-b6dc-304d8fc4ba74\",\n            \"fixture_id\": \"0199cf7e-ce60-7180-9fcd-38e935dc578d\",\n            \"competition\": \"Northern Irish Championship\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"uk\"\n            ],\n            \"home_team\": \"Annagh United\",\n            \"away_team\": \"Warrenpoint Town\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Gzira United FC Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 52.6,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a276-73d4-b4ed-a458c43f8164\",\n            \"fixture_id\": \"01993881-375b-700c-9b28-6a6e7ee203b9\",\n            \"competition\": \"German 3. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Wiesbaden\",\n            \"away_team\": \"Aachen\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Wehen Wiesbaden Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 52.2,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-92d0-73b4-9e3b-95139d742da1\",\n            \"fixture_id\": \"9f371278-ba83-4efe-9ee4-0ab029dcdf3f\",\n            \"competition\": \"Polish 1. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Znicz Pruszkow\",\n            \"away_team\": \"Niepołomice\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 52.1,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a10f3-b5ac-7186-a94d-81a8d9026b98\",\n            \"fixture_id\": \"0199cdc7-55fe-7348-b7bb-e927066c5bda\",\n            \"competition\": \"Austrian Regionalliga Ost\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"SV Donau\",\n            \"away_team\": \"Wiener Sport-Club\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"SV Donau Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 52,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a08ce-8779-719b-8b25-a89379bda003\",\n            \"fixture_id\": \"0199ce6c-1403-72f5-bdfb-504a510030e2\",\n            \"competition\": \"Croatian Prva NL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Cibalia\",\n            \"away_team\": \"NK Hrvace\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 51.8,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-052a-7138-8660-247b7ff114f3\",\n            \"fixture_id\": \"0199feed-69e7-735c-a076-0778d50dbe4b\",\n            \"competition\": \"Italian Serie C, Group A\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Novara\",\n            \"away_team\": \"Virtus Verona\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"selection_name\": \"Novara Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 51.8,\n            \"odds\": {\n                \"decimal\": 2.05,\n                \"numerator\": 21,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-1c13-726b-b62c-4d77c0b987e4\",\n            \"fixture_id\": \"9dc0fcf6-4c44-4916-8d89-5e03e852fba0\",\n            \"competition\": \"Irish Premier Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Galway Utd\",\n            \"away_team\": \"Drogheda United\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Galway Utd Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 51.7,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-15ac-7147-9984-1d2d59025df2\",\n            \"fixture_id\": \"9dc0fcf6-4c44-4916-8d89-5e03e852fba0\",\n            \"competition\": \"Irish Premier Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Galway Utd\",\n            \"away_team\": \"Drogheda United\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 51.6,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-8e15-7024-be0a-d221de7cee3c\",\n            \"fixture_id\": \"9f310981-f91d-4d86-b381-9704ea569dd3\",\n            \"competition\": \"Czech FNL\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Ceske Budejovice\",\n            \"away_team\": \"Prostejov\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 51.6,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a0be9-937e-7233-b6c4-bcaaa201c975\",\n            \"fixture_id\": \"0199feed-46f5-7013-86ec-95b09b3e27dd\",\n            \"competition\": \"Danish 2nd Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Vendsyssel\",\n            \"away_team\": \"Fremad Amager\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 51.4,\n            \"odds\": {\n                \"decimal\": 1.85,\n                \"numerator\": 17,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-7187-7017-88b8-213508008f89\",\n            \"fixture_id\": \"9f594c4c-46ff-4b9c-bfb4-142ec0a7c9c9\",\n            \"competition\": \"Serbian Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Partizan Belgrade\",\n            \"away_team\": \"Mladost Lucani\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 51.4,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-9b32-702a-9339-169f95590ef0\",\n            \"fixture_id\": \"9f53859e-7bc7-46de-b520-be93123bd140\",\n            \"competition\": \"Austrian 2. Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"First Vienna\",\n            \"away_team\": \"Admira Wacker\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 51.2,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-355d-717e-a56c-7ad0a7c9bd18\",\n            \"fixture_id\": \"9e058626-c6a4-4068-8096-3698a2d583c1\",\n            \"competition\": \"Chilean Primera Division\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Palestino\",\n            \"away_team\": \"Everton\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"selection_name\": \"Palestino Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 50.9,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-fa0d-71b0-81ee-9ed8790d6999\",\n            \"fixture_id\": \"9f42d5a7-3c34-4bfb-b13b-923a0316a760\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Pau\",\n            \"away_team\": \"Dunkerque\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 50.8,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a117d-5f85-7014-81d3-d5a9098c2469\",\n            \"fixture_id\": \"019972cc-597d-730f-872a-d3af987095ef\",\n            \"competition\": \"Maltese Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Gzira Utd\",\n            \"away_team\": \"Tarxien R\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"selection_name\": \"Gzira United FC Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 50.8,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-312c-739c-bf59-cefbd4af48dc\",\n            \"fixture_id\": \"0199b563-6179-7074-a619-f3599545f534\",\n            \"competition\": \"Colombian Primera A, Clausura\",\n            \"competition_groups\": [\n                \"all\",\n                \"americas\"\n            ],\n            \"home_team\": \"Alianza FC Valledupar\",\n            \"away_team\": \"La Equidad\",\n            \"kick_off\": \"2025-10-24 21:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 50.6,\n            \"odds\": {\n                \"decimal\": 1.9,\n                \"numerator\": 9,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a100-7063-8840-b4c54bbd2597\",\n            \"fixture_id\": \"01990aa8-728b-72f4-8fe8-de77c9b7cefd\",\n            \"competition\": \"Bulgarian Parva Liga\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Lok Sofia\",\n            \"away_team\": \"Lok Plovdiv\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Lokomotiv Sofia Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 50.6,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a08ce-858f-70c6-a042-ff743edd6280\",\n            \"fixture_id\": \"0199ce6c-0e16-7098-8711-b5371e35030d\",\n            \"competition\": \"Croatian Prva NL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Orijent Rijeka\",\n            \"away_team\": \"Dugopolje\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 50.6,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a110e-5f15-706b-bf0d-4de6e62ad23a\",\n            \"fixture_id\": \"0199c97c-d7b5-701c-8dc4-f6a5cf15a9cf\",\n            \"competition\": \"Uzbekistani Superliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"row\"\n            ],\n            \"home_team\": \"Qizilqum\",\n            \"away_team\": \"Dinamo\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"selection_name\": \"FK Dinamo Samarkand Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 50.6,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a08ce-8670-7208-9fbe-186f584bc468\",\n            \"fixture_id\": \"0199ce6c-0e16-7098-8711-b5371e35030d\",\n            \"competition\": \"Croatian Prva NL\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Orijent Rijeka\",\n            \"away_team\": \"Dugopolje\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 50.6,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-a093-71cd-a228-3ef58ef7b1df\",\n            \"fixture_id\": \"01991faf-7855-7358-8988-61f788a677ae\",\n            \"competition\": \"German 2. Bundesliga\",\n            \"competition_groups\": [\n                \"all\",\n                \"top\",\n                \"europe\"\n            ],\n            \"home_team\": \"Schalke\",\n            \"away_team\": \"Darmstadt\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"selection_name\": \"Schalke 04 Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 50.6,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-13a2-71a7-a134-cee8a5f23b21\",\n            \"fixture_id\": \"019996d8-da0a-7232-ad83-b6ce7831ec50\",\n            \"competition\": \"Ukrainian Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Oleksandriya\",\n            \"away_team\": \"Epitsentr Kamianets-Podilskyi\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"selection_name\": \"Oleksandria Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 50.6,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a1161-9281-711d-bd91-14dc62b2efc1\",\n            \"fixture_id\": \"0199cf47-b656-714b-9090-876ef8591361\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"SV Wallern\",\n            \"away_team\": \"Oedt\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"ASKO Oedt Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 50.6,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a1085-5e68-7122-bbfd-0eb727d92c6b\",\n            \"fixture_id\": \"0199cf7e-eee8-708f-8883-f6677eee9ab7\",\n            \"competition\": \"Albanian Kategoria Superiore\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Af Elbasani\",\n            \"away_team\": \"Bylis Ballsh\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 50.5,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-00d2-728e-95b0-7a96822cd4a5\",\n            \"fixture_id\": \"9f956ca3-783b-4cce-a49f-3f69d4898e54\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Le Mans\",\n            \"away_team\": \"US Boulogne\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 50.5,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07bc-5000-71f7-a271-640b9eb3de35\",\n            \"fixture_id\": \"0199feed-3360-7206-87f4-d05ae6b4f4ee\",\n            \"competition\": \"Turkish 1. Lig\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Erzurumspor\",\n            \"away_team\": \"Umraniyespor\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Over 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"probability\": 50.2,\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a1085-48cf-70c7-bc1e-4eb712c75ee5\",\n            \"fixture_id\": \"9fb3e0e6-95c0-485c-acbf-6d284b50e84e\",\n            \"competition\": \"Azerbaijani Premier League\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Kapaz\",\n            \"away_team\": \"Imisli FK\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"selection_name\": \"Both Teams to Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"probability\": 50.1,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-d71b-70a0-a5ba-347a53091270\",\n            \"fixture_id\": \"0199cf47-c64e-71ff-821a-916bc88b36d8\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Deutschlandsb. SC\",\n            \"away_team\": \"Junge Wikinger Ried\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Over 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"probability\": 50,\n            \"odds\": {\n                \"decimal\": 1.95,\n                \"numerator\": 19,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019a07bd-0821-726f-a066-c02d9b517123\",\n            \"fixture_id\": \"9f956ca3-783b-4cce-a49f-3f69d4898e54\",\n            \"competition\": \"French Ligue 2\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Le Mans\",\n            \"away_team\": \"US Boulogne\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"selection_name\": \"Le Mans Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 50,\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a10a0-de7f-7041-aa6f-48eed4babf12\",\n            \"fixture_id\": \"0199cf4a-060e-72ef-a547-5f949e502259\",\n            \"competition\": \"Austrian Regionalliga Centre\",\n            \"competition_groups\": [\n                \"all\",\n                \"europe\"\n            ],\n            \"home_team\": \"Kalsdorf\",\n            \"away_team\": \"Union Gurten\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"selection_name\": \"Union Gurten Win\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"probability\": 50,\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 357,\n        \"total_results\": 357,\n        \"timezone\": \"UTC\",\n        \"filtering\": {\n            \"day\": 0,\n            \"utc_dates\": [\n                \"2025-10-24\"\n            ],\n            \"start_of_day_utc\": \"2025-10-24 00:00:00\",\n            \"end_of_day_utc\": \"2025-10-24 23:59:59\"\n        }\n    }\n}"}],"_postman_id":"9761ee85-957d-4fca-9099-1dc35cdf31db"},{"name":"competitions","event":[{"listen":"test","script":{"id":"52c42de8-5569-4fb7-a8e0-ed892a84a7c3","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","pm.test(\"Response matches expected JSON schema\", function () {","    const competitionItem = {","        type: 'object',","        required: ['competition_id', 'sr_competition_id', 'country', 'name'],","        properties: {","            competition_id: { type: 'string' },","            sr_competition_id: { type: 'string' },","            country: { type: ['string', 'null'] },","            name: { type: 'string' }","        },","        additionalProperties: false","    };","","    const schema = {","    type: 'object',","    required: ['data', 'meta'],","    properties: {","        data: {","            type: 'array',","            items: competitionItem","        },","        meta: {","            type: 'object',","            required: ['results'],","            properties: {","                results: { type: 'number' }","            },","            additionalProperties: true","        }","    },","    additionalProperties: true","}; pm.response.to.have.jsonSchema(schema); });","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"44ffde6e-5c16-409f-a5f7-2a9848723f7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/competitions","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["competitions"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"06c1dedb-ff85-43ae-8f2b-3bf7a62598bd","name":"competitions","originalRequest":{"method":"GET","header":[],"url":"/competitions"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:21:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"168797"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"1e243e12-7311-47a8-bb6a-568e9a6ad810"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8wh8GmeDoEESvg="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb613f-2600837d3fbc44b06af29094;Parent=43eb3305fa987462;Sampled=0;Lineage=1:f3d25a6c:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"competition_id\": \"9a94aa17-d86e-492a-83e0-e8fa428db8b9\",\n            \"sr_competition_id\": \"sr:competition:38941\",\n            \"country\": \"Sweden Amateur\",\n            \"name\": \"Elitettan, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f14-dacc-454b-8a9c-b6926c1989c5\",\n            \"sr_competition_id\": \"sr:competition:1089\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Bayernliga North\"\n        },\n        {\n            \"competition_id\": \"9f6a0194-0e1f-48dc-98a3-0319c20ef885\",\n            \"sr_competition_id\": \"sr:competition:47830\",\n            \"country\": \"Oman\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9ac871ec-b25d-4bcb-a8fb-aa2839559ed0\",\n            \"sr_competition_id\": \"sr:competition:2462\",\n            \"country\": \"Bahrain\",\n            \"name\": \"King of Bahrain Cup\"\n        },\n        {\n            \"competition_id\": \"9e98456d-8870-4677-9e8f-03b5a4f1ddf4\",\n            \"sr_competition_id\": \"sr:competition:46647\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Goiano, 1. Divisao\"\n        },\n        {\n            \"competition_id\": \"9ad7c219-82a8-48e8-a129-70efbdcf464b\",\n            \"sr_competition_id\": \"sr:competition:31839\",\n            \"country\": \"Brazil\",\n            \"name\": \"Campeonato Acreano\"\n        },\n        {\n            \"competition_id\": \"9a94aa58-9353-4452-aa1a-9feff2b17fa8\",\n            \"sr_competition_id\": \"sr:competition:37197\",\n            \"country\": \"Brazil\",\n            \"name\": \"Carioca, Women\"\n        },\n        {\n            \"competition_id\": \"9a947eff-12a3-4b67-af8a-7f8f7f7e6927\",\n            \"sr_competition_id\": \"sr:competition:1307\",\n            \"country\": \"Ukraine\",\n            \"name\": \"U19\"\n        },\n        {\n            \"competition_id\": \"9f874258-fc56-4bdb-85e8-e300b89435ac\",\n            \"sr_competition_id\": \"sr:competition:48098\",\n            \"country\": \"Malaysia\",\n            \"name\": \"Piala Sumbangsih\"\n        },\n        {\n            \"competition_id\": \"9a94aa41-fbec-40f9-95d1-5c2a21df2213\",\n            \"sr_competition_id\": \"sr:competition:37331\",\n            \"country\": \"El Salvador\",\n            \"name\": \"Primera Division, Reserves, Apertura\"\n        },\n        {\n            \"competition_id\": \"9a9a2ab9-d4e6-466a-a2f0-a027bc96f2be\",\n            \"sr_competition_id\": \"sr:competition:550\",\n            \"country\": \"Cyprus\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f1d-5733-4ca4-a529-e015b569b151\",\n            \"sr_competition_id\": \"sr:competition:746\",\n            \"country\": \"International Youth\",\n            \"name\": \"U19 European Championship, Women, Qualification\"\n        },\n        {\n            \"competition_id\": \"9a94aa2d-6aa9-4f7a-8c73-b5f47496fae5\",\n            \"sr_competition_id\": \"sr:competition:27104\",\n            \"country\": \"Panama\",\n            \"name\": \"Liga Panamena, Clausura\"\n        },\n        {\n            \"competition_id\": \"9a947f16-98b0-49bf-84df-241f380cafe8\",\n            \"sr_competition_id\": \"sr:competition:678\",\n            \"country\": \"Estonia\",\n            \"name\": \"Esiliiga\"\n        },\n        {\n            \"competition_id\": \"9a94aa39-cf98-44f5-adf1-a3b4903356e2\",\n            \"sr_competition_id\": \"sr:competition:23479\",\n            \"country\": \"Zimbabwe\",\n            \"name\": \"Premier Soccer League\"\n        },\n        {\n            \"competition_id\": \"9a94aa56-615f-421e-baa0-7878ffee8682\",\n            \"sr_competition_id\": \"sr:competition:28681\",\n            \"country\": \"Ireland\",\n            \"name\": \"Premier Division, Women\"\n        },\n        {\n            \"competition_id\": \"9a948081-a351-4c2f-9cb2-c116d52f551e\",\n            \"sr_competition_id\": \"sr:competition:26038\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 11\"\n        },\n        {\n            \"competition_id\": \"9a94ac1a-60b8-432d-b101-a6dfdb4d9d70\",\n            \"sr_competition_id\": \"sr:competition:41\",\n            \"country\": \"Finland\",\n            \"name\": \"Veikkausliiga\"\n        },\n        {\n            \"competition_id\": \"9a948071-86c4-4a88-8312-d13234c1a137\",\n            \"sr_competition_id\": \"sr:competition:18\",\n            \"country\": \"England\",\n            \"name\": \"Championship\"\n        },\n        {\n            \"competition_id\": \"9ad7bba1-97e6-46d4-b928-323ba1f74a20\",\n            \"sr_competition_id\": \"sr:competition:2108\",\n            \"country\": \"International Youth\",\n            \"name\": \"U20 Africa Cup of Nations\"\n        },\n        {\n            \"competition_id\": \"9a94c256-990d-4ced-afef-1d10fe9c9012\",\n            \"sr_competition_id\": \"sr:competition:193\",\n            \"country\": \"Ireland\",\n            \"name\": \"First Division\"\n        },\n        {\n            \"competition_id\": \"9e0d770a-abe8-4f76-b25b-8cb2f8dbd0a6\",\n            \"sr_competition_id\": \"sr:competition:45857\",\n            \"country\": \"Honduras\",\n            \"name\": \"Liga de Ascenso\"\n        },\n        {\n            \"competition_id\": \"9ad7ac91-9aaf-4c8b-8a61-1622a5b5e011\",\n            \"sr_competition_id\": \"sr:competition:29682\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Tirol, Regionalliga Tirol\"\n        },\n        {\n            \"competition_id\": \"9ad7ace1-0abd-4578-9a02-474f0dff55ee\",\n            \"sr_competition_id\": \"sr:competition:1710\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie D, Poule Scudetto\"\n        },\n        {\n            \"competition_id\": \"9a947efd-fb44-4549-b4df-04f9fb59bee0\",\n            \"sr_competition_id\": \"sr:competition:28953\",\n            \"country\": \"Mexico\",\n            \"name\": \"Liga MX, Women, Apertura\"\n        },\n        {\n            \"competition_id\": \"9ad7db0c-e68e-4254-88f8-c0e533bdf883\",\n            \"sr_competition_id\": \"sr:competition:804\",\n            \"country\": \"International Youth\",\n            \"name\": \"U20 FIFA World Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9c44568f-530c-4c16-ba47-02466fbbaea7\",\n            \"sr_competition_id\": \"sr:competition:37101\",\n            \"country\": \"Mexico\",\n            \"name\": \"Supercopa Liga MX\"\n        },\n        {\n            \"competition_id\": \"9ac81960-a1fa-45ad-9e64-3ffaf0d42a97\",\n            \"sr_competition_id\": \"sr:competition:725\",\n            \"country\": \"Malta\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a9b20ba-9264-4bec-88c6-ebd66fa86d06\",\n            \"sr_competition_id\": \"sr:competition:1991\",\n            \"country\": \"England Amateur\",\n            \"name\": \"FA Trophy, Qualification\"\n        },\n        {\n            \"competition_id\": \"019a0bca-f4cb-7286-a3f2-e1899bb1647d\",\n            \"sr_competition_id\": \"sr:competition:49224\",\n            \"country\": \"SoccerSpecials\",\n            \"name\": \"Kings Cup Brazil\"\n        },\n        {\n            \"competition_id\": \"9a94aa26-29f5-47e4-9987-226a59949bbf\",\n            \"sr_competition_id\": \"sr:competition:40677\",\n            \"country\": \"Brazil\",\n            \"name\": \"Carioca, Serie B1\"\n        },\n        {\n            \"competition_id\": \"9a94c242-ec6e-424d-a52c-78f0e2e4e3ab\",\n            \"sr_competition_id\": \"sr:competition:2268\",\n            \"country\": \"Belgium\",\n            \"name\": \"Super League, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7def2-0590-40c9-8648-a61b9fc4773e\",\n            \"sr_competition_id\": \"sr:competition:1309\",\n            \"country\": \"Chile\",\n            \"name\": \"Supercup\"\n        },\n        {\n            \"competition_id\": \"9e6e0bd4-4b4e-4e12-ba2e-61d0af2b1d7f\",\n            \"sr_competition_id\": \"sr:competition:1824\",\n            \"country\": \"Japan\",\n            \"name\": \"Japan Football League\"\n        },\n        {\n            \"competition_id\": \"9ad7de79-acc5-4c11-877d-4fe09f0e6458\",\n            \"sr_competition_id\": \"sr:competition:23517\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Copa Sao Paulo de Juniores\"\n        },\n        {\n            \"competition_id\": \"9eccc2ee-68c1-4741-b9da-4df18a4110da\",\n            \"sr_competition_id\": \"sr:competition:33950\",\n            \"country\": \"Australia\",\n            \"name\": \"Queensland Premier League 2\"\n        },\n        {\n            \"competition_id\": \"9ad7bc69-6838-4d27-9e2a-25ab5b3d118d\",\n            \"sr_competition_id\": \"sr:competition:1614\",\n            \"country\": \"Brazil\",\n            \"name\": \"Paulista, Serie A3\"\n        },\n        {\n            \"competition_id\": \"9a94aa18-f839-4d87-a34a-f5df0b777ec7\",\n            \"sr_competition_id\": \"sr:competition:35793\",\n            \"country\": \"Brazil\",\n            \"name\": \"Copa FGF\"\n        },\n        {\n            \"competition_id\": \"9a94c2a5-d780-4491-9768-74f9e9198b0c\",\n            \"sr_competition_id\": \"sr:competition:1236\",\n            \"country\": \"Vietnam\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa33-8655-4689-bc1a-4fd00c38b4cc\",\n            \"sr_competition_id\": \"sr:competition:91\",\n            \"country\": \"Russia\",\n            \"name\": \"Russian Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa6b-f772-440b-8863-cc49bffec1a6\",\n            \"sr_competition_id\": \"sr:competition:463\",\n            \"country\": \"International Clubs\",\n            \"name\": \"AFC Champions League Elite\"\n        },\n        {\n            \"competition_id\": \"9a94aa26-ef2c-4143-84d5-a36803c70b3d\",\n            \"sr_competition_id\": \"sr:competition:200\",\n            \"country\": \"Northern Ireland\",\n            \"name\": \"Premiership\"\n        },\n        {\n            \"competition_id\": \"9a9a31dd-9519-44a8-8387-1911f046ec9a\",\n            \"sr_competition_id\": \"sr:competition:39221\",\n            \"country\": \"Italy\",\n            \"name\": \"Coppa Italia Serie D\"\n        },\n        {\n            \"competition_id\": \"9f86328f-4064-489c-8915-6750b2034eca\",\n            \"sr_competition_id\": \"sr:competition:43771\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Niederosterreich, 1. Landesliga\"\n        },\n        {\n            \"competition_id\": \"9a947f0a-82bc-47fc-8957-e79c7609dc4b\",\n            \"sr_competition_id\": \"sr:competition:27414\",\n            \"country\": \"Honduras\",\n            \"name\": \"Liga Nacional, Apertura\"\n        },\n        {\n            \"competition_id\": \"9a9ab1e5-f8ec-4769-9f58-2f51d51ab3bf\",\n            \"sr_competition_id\": \"sr:competition:701\",\n            \"country\": \"Northern Ireland\",\n            \"name\": \"Championship\"\n        },\n        {\n            \"competition_id\": \"9f7c4e70-a459-42cf-a364-48c3648edf5d\",\n            \"sr_competition_id\": \"sr:competition:37051\",\n            \"country\": \"Switzerland\",\n            \"name\": \"1. Liga Classic\"\n        },\n        {\n            \"competition_id\": \"9a947f0e-e06b-4e83-9808-3b0e903f088f\",\n            \"sr_competition_id\": \"sr:competition:202\",\n            \"country\": \"Poland\",\n            \"name\": \"Ekstraklasa\"\n        },\n        {\n            \"competition_id\": \"9a94aa4e-4982-4b2c-916e-0a478e9e2241\",\n            \"sr_competition_id\": \"sr:competition:20574\",\n            \"country\": \"Botswana\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"019a10f3-8f74-732f-be6f-894eb68e9327\",\n            \"sr_competition_id\": \"sr:competition:49276\",\n            \"country\": \"International\",\n            \"name\": \"CONMEBOL Nations League, Women\"\n        },\n        {\n            \"competition_id\": \"0199f357-42e3-73c2-ab65-916d275e8fb1\",\n            \"sr_competition_id\": \"sr:competition:47243\",\n            \"country\": \"SoccerSpecials\",\n            \"name\": \"Kings Cup Spain\"\n        },\n        {\n            \"competition_id\": \"9a94a439-460b-43d8-9de8-88e7106e5487\",\n            \"sr_competition_id\": \"sr:competition:183\",\n            \"country\": \"France\",\n            \"name\": \"National\"\n        },\n        {\n            \"competition_id\": \"9a9ab1c7-e604-4e57-ad77-22f80a93b0a7\",\n            \"sr_competition_id\": \"sr:competition:2513\",\n            \"country\": \"United Arab Emirates\",\n            \"name\": \"Presidents Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa39-3d44-492e-ab84-c080682e3490\",\n            \"sr_competition_id\": \"sr:competition:67\",\n            \"country\": \"Sweden\",\n            \"name\": \"Ettan, Norra\"\n        },\n        {\n            \"competition_id\": \"9ad7da2c-45a6-4388-a39f-f1f7e419ea77\",\n            \"sr_competition_id\": \"sr:competition:16918\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CONCACAF League\"\n        },\n        {\n            \"competition_id\": \"9a94aa51-9e43-4b46-b5a9-a2716bae38dd\",\n            \"sr_competition_id\": \"sr:competition:28165\",\n            \"country\": \"USA\",\n            \"name\": \"USL League One\"\n        },\n        {\n            \"competition_id\": \"9a94aa2e-0f60-4074-9b10-cd4a7b9ab480\",\n            \"sr_competition_id\": \"sr:competition:41310\",\n            \"country\": \"Costa Rica\",\n            \"name\": \"Copa Costa Rica\"\n        },\n        {\n            \"competition_id\": \"9acfa690-4c8e-40ee-ad35-593bd854d9db\",\n            \"sr_competition_id\": \"sr:competition:357\",\n            \"country\": \"International Clubs\",\n            \"name\": \"FIFA Club World Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa63-782d-4a98-80c4-f023fbf1f596\",\n            \"sr_competition_id\": \"sr:competition:626\",\n            \"country\": \"Vietnam\",\n            \"name\": \"V-League 1\"\n        },\n        {\n            \"competition_id\": \"9ad8013e-72cf-44e3-995c-f3e07fa4083c\",\n            \"sr_competition_id\": \"sr:competition:20434\",\n            \"country\": \"International\",\n            \"name\": \"WC Qu. Int-Conf. Playoff\"\n        },\n        {\n            \"competition_id\": \"9a94aa27-75ac-46fc-9b8a-86917ffe52f8\",\n            \"sr_competition_id\": \"sr:competition:27100\",\n            \"country\": \"Paraguay\",\n            \"name\": \"Division de Honor, Clausura\"\n        },\n        {\n            \"competition_id\": \"9a947f1d-3842-439c-a5a5-1615f35a5944\",\n            \"sr_competition_id\": \"sr:competition:35797\",\n            \"country\": \"Estonia\",\n            \"name\": \"Esiliiga B\"\n        },\n        {\n            \"competition_id\": \"9e77139a-f02c-4b03-afbe-b4e61888dc4f\",\n            \"sr_competition_id\": \"sr:competition:46133\",\n            \"country\": \"Venezuela\",\n            \"name\": \"Supercopa Venezuela\"\n        },\n        {\n            \"competition_id\": \"9a9aa46b-60d8-4cd3-aded-5d4e69e8c2d1\",\n            \"sr_competition_id\": \"sr:competition:482\",\n            \"country\": \"Canada\",\n            \"name\": \"Canadian Soccer League\"\n        },\n        {\n            \"competition_id\": \"9a947f0e-10df-489d-955d-5812703c7285\",\n            \"sr_competition_id\": \"sr:competition:212\",\n            \"country\": \"Slovenia\",\n            \"name\": \"PrvaLiga\"\n        },\n        {\n            \"competition_id\": \"9baef300-9d9f-43be-9103-3b9cf8b32ac2\",\n            \"sr_competition_id\": \"sr:competition:786\",\n            \"country\": \"Iceland\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a9aa464-4588-4946-b520-799befa7ef53\",\n            \"sr_competition_id\": \"sr:competition:2242\",\n            \"country\": \"Israel\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f12-9599-4b49-95a0-fbb700fe3725\",\n            \"sr_competition_id\": \"sr:competition:204\",\n            \"country\": \"Russia\",\n            \"name\": \"1. Liga\"\n        },\n        {\n            \"competition_id\": \"9a947f1e-5fc1-46b6-b28d-8bddffd085f1\",\n            \"sr_competition_id\": \"sr:competition:26030\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 7\"\n        },\n        {\n            \"competition_id\": \"9a94a999-e831-419b-b385-b95368d2cd39\",\n            \"sr_competition_id\": \"sr:competition:696\",\n            \"country\": \"International Clubs\",\n            \"name\": \"UEFA Champions League Women\"\n        },\n        {\n            \"competition_id\": \"9a94808c-de01-4fa4-b052-cac29d9f917b\",\n            \"sr_competition_id\": \"sr:competition:26046\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 15\"\n        },\n        {\n            \"competition_id\": \"9a94aa10-07a5-49da-9980-d2307278f57b\",\n            \"sr_competition_id\": \"sr:competition:27659\",\n            \"country\": \"England Amateur\",\n            \"name\": \"FA Womens League Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c2ca-92f2-4018-8c99-712e0cdba74b\",\n            \"sr_competition_id\": \"sr:competition:26280\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"DFB-Pokal Junioren\"\n        },\n        {\n            \"competition_id\": \"9fa6d9e8-03d0-4e35-bdac-acb9fc118094\",\n            \"sr_competition_id\": \"sr:competition:43439\",\n            \"country\": \"USA\",\n            \"name\": \"USL Super League, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa29-71a3-4467-93da-efa072e843dd\",\n            \"sr_competition_id\": \"sr:competition:30152\",\n            \"country\": \"Bahrain\",\n            \"name\": \"Federation Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7bc68-a99b-4a2f-a7bd-a70f8ff309c7\",\n            \"sr_competition_id\": \"sr:competition:36167\",\n            \"country\": \"El Salvador\",\n            \"name\": \"Primera Division, Reserves, Clausura\"\n        },\n        {\n            \"competition_id\": \"9ad7dec4-9554-43df-ab6b-6b2bcbb6da26\",\n            \"sr_competition_id\": \"sr:competition:632\",\n            \"country\": \"International Youth\",\n            \"name\": \"U20 CONMEBOL Ch.ship\"\n        },\n        {\n            \"competition_id\": \"9a94ac3a-992d-4048-b71d-cba016da8df2\",\n            \"sr_competition_id\": \"sr:competition:1384\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie D, Group F\"\n        },\n        {\n            \"competition_id\": \"9a94aa3b-ba9d-451e-a06b-93ac0b41ba82\",\n            \"sr_competition_id\": \"sr:competition:1822\",\n            \"country\": \"Jordan\",\n            \"name\": \"Jordan Cup\"\n        },\n        {\n            \"competition_id\": \"9a94ac48-c6ce-4e67-b89f-19e143db9f78\",\n            \"sr_competition_id\": \"sr:competition:76\",\n            \"country\": \"Denmark\",\n            \"name\": \"DBU Pokalen\"\n        },\n        {\n            \"competition_id\": \"9ad7f5fa-63c1-413f-940b-d2c39c9ffd39\",\n            \"sr_competition_id\": \"sr:competition:38915\",\n            \"country\": \"Argentina\",\n            \"name\": \"Supercopa Internacional\"\n        },\n        {\n            \"competition_id\": \"9ad7bdf4-616d-4db9-a3c8-7e4530ed8d9f\",\n            \"sr_competition_id\": \"sr:competition:18364\",\n            \"country\": \"France\",\n            \"name\": \"Coupe de France, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c25b-51c4-48f1-b16f-436c311075de\",\n            \"sr_competition_id\": \"sr:competition:495\",\n            \"country\": \"USA\",\n            \"name\": \"US Open Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa0a-0e95-4be0-ae8f-8414417b5383\",\n            \"sr_competition_id\": \"sr:competition:375\",\n            \"country\": \"Greece\",\n            \"name\": \"Greece Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7ad36-6015-4e40-ab77-c3ce0d031910\",\n            \"sr_competition_id\": \"sr:competition:454\",\n            \"country\": \"International Youth\",\n            \"name\": \"U21 European Championship\"\n        },\n        {\n            \"competition_id\": \"9a9a2c7b-f78e-4816-9590-862a9d01436f\",\n            \"sr_competition_id\": \"sr:competition:335\",\n            \"country\": \"France\",\n            \"name\": \"Coupe de France\"\n        },\n        {\n            \"competition_id\": \"9a947f10-b8d5-4ee3-a862-eb5668d11ffa\",\n            \"sr_competition_id\": \"sr:competition:40735\",\n            \"country\": \"Czechia\",\n            \"name\": \"Divize E\"\n        },\n        {\n            \"competition_id\": \"9ad7a8d2-a7f4-41d6-8a13-62e60f7b6cef\",\n            \"sr_competition_id\": \"sr:competition:340\",\n            \"country\": \"Netherlands\",\n            \"name\": \"Johan Cruijff Schaal\"\n        },\n        {\n            \"competition_id\": \"9a9a2c7b-9934-4c7c-bfcf-47658e8ae0c1\",\n            \"sr_competition_id\": \"sr:competition:13\",\n            \"country\": \"International\",\n            \"name\": \"World Cup, Qualification CAF\"\n        },\n        {\n            \"competition_id\": \"9a947efe-20e1-4d6b-b481-bd2df6946d81\",\n            \"sr_competition_id\": \"sr:competition:848\",\n            \"country\": \"India\",\n            \"name\": \"I-League\"\n        },\n        {\n            \"competition_id\": \"9bf55bb0-4c3c-48a4-81c6-09d53ab99290\",\n            \"sr_competition_id\": \"sr:competition:25659\",\n            \"country\": \"Qatar\",\n            \"name\": \"Amir Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa73-d3c6-487e-a7aa-0597bb3f593b\",\n            \"sr_competition_id\": \"sr:competition:131\",\n            \"country\": \"Netherlands\",\n            \"name\": \"Eerste Divisie\"\n        },\n        {\n            \"competition_id\": \"9a9a298d-8d37-446f-bf10-b5bfb9041236\",\n            \"sr_competition_id\": \"sr:competition:28472\",\n            \"country\": \"Palestine\",\n            \"name\": \"Gaza Strip Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f1b-727a-40f6-b9c1-9bff97344b6c\",\n            \"sr_competition_id\": \"sr:competition:26028\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 6\"\n        },\n        {\n            \"competition_id\": \"9a94a909-85b5-4008-8cbb-2379b5cbfac2\",\n            \"sr_competition_id\": \"sr:competition:36475\",\n            \"country\": \"USA\",\n            \"name\": \"NISA\"\n        },\n        {\n            \"competition_id\": \"9ad7bf9b-26bf-4635-81df-15937e3a4bb7\",\n            \"sr_competition_id\": \"sr:competition:36667\",\n            \"country\": \"Brazil\",\n            \"name\": \"Cearense, Serie B\"\n        },\n        {\n            \"competition_id\": \"9e96990a-1e7e-4425-962c-c37eca2189da\",\n            \"sr_competition_id\": \"sr:competition:17302\",\n            \"country\": \"Venezuela\",\n            \"name\": \"Segunda Division\"\n        },\n        {\n            \"competition_id\": \"9f33295c-6dcc-4ee3-8c7f-0c1b5cf2e11b\",\n            \"sr_competition_id\": \"sr:competition:20576\",\n            \"country\": \"Mozambique\",\n            \"name\": \"Mocambola\"\n        },\n        {\n            \"competition_id\": \"9a947f1c-232d-4a71-94d8-21c2f6e2d270\",\n            \"sr_competition_id\": \"sr:competition:40305\",\n            \"country\": \"Russia\",\n            \"name\": \"2. Liga, Division A\"\n        },\n        {\n            \"competition_id\": \"01991004-4122-7290-a1a1-a480a9b0e48a\",\n            \"sr_competition_id\": \"sr:competition:48603\",\n            \"country\": \"International Clubs\",\n            \"name\": \"UEFA Europa Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a947efd-ba58-41fe-9928-a735e67b697c\",\n            \"sr_competition_id\": \"sr:competition:27092\",\n            \"country\": \"Costa Rica\",\n            \"name\": \"Primera Division, Apertura\"\n        },\n        {\n            \"competition_id\": \"9ad7bb9d-0b06-4681-9b56-a683742d060e\",\n            \"sr_competition_id\": \"sr:competition:379\",\n            \"country\": \"Brazil\",\n            \"name\": \"Mineiro, Modulo I\"\n        },\n        {\n            \"competition_id\": \"9ad7db09-707f-4f78-b208-68dca4d4336b\",\n            \"sr_competition_id\": \"sr:competition:27871\",\n            \"country\": \"Bolivia\",\n            \"name\": \"Division Profesional, Clausura\"\n        },\n        {\n            \"competition_id\": \"9a94aa28-684e-4267-82bb-b384f6fc3f87\",\n            \"sr_competition_id\": \"sr:competition:23477\",\n            \"country\": \"Uzbekistan\",\n            \"name\": \"Pro Liga\"\n        },\n        {\n            \"competition_id\": \"9ad7bfa9-2e90-4c1e-9023-ad2de54fd7f0\",\n            \"sr_competition_id\": \"sr:competition:28345\",\n            \"country\": \"International Youth\",\n            \"name\": \"Viareggio Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a948094-d7cd-4ba8-963d-a67f3ae8afb8\",\n            \"sr_competition_id\": \"sr:competition:26018\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 1\"\n        },\n        {\n            \"competition_id\": \"9ad7bba1-abbf-4a7b-8381-f6dac8a24942\",\n            \"sr_competition_id\": \"sr:competition:2104\",\n            \"country\": \"Iceland\",\n            \"name\": \"League Cup A\"\n        },\n        {\n            \"competition_id\": \"9a94ac8a-a5fc-40ac-9dde-6b1d170fb740\",\n            \"sr_competition_id\": \"sr:competition:327\",\n            \"country\": \"Portugal\",\n            \"name\": \"League Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa21-220a-4565-bba1-91da1aa59f63\",\n            \"sr_competition_id\": \"sr:competition:168\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Regionalliga Centre\"\n        },\n        {\n            \"competition_id\": \"9a947f00-7b9a-4c17-8114-6b94a7c922af\",\n            \"sr_competition_id\": \"sr:competition:1644\",\n            \"country\": \"Kenya\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a947f1e-aa82-4a8a-a75c-074ad39dcaf4\",\n            \"sr_competition_id\": \"sr:competition:20808\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie A, Women\"\n        },\n        {\n            \"competition_id\": \"9a94a9a2-1bd2-4a61-9f01-50656cfe1340\",\n            \"sr_competition_id\": \"sr:competition:676\",\n            \"country\": \"Lithuania\",\n            \"name\": \"1 Lyga\"\n        },\n        {\n            \"competition_id\": \"9a94aa64-d936-48a2-95a5-f0b4bbdf6508\",\n            \"sr_competition_id\": \"sr:competition:29912\",\n            \"country\": \"Turkiye Amateur\",\n            \"name\": \"U19 PAF Ligi\"\n        },\n        {\n            \"competition_id\": \"9a94c826-6a16-4def-bb81-813571989c15\",\n            \"sr_competition_id\": \"sr:competition:15283\",\n            \"country\": \"Iceland\",\n            \"name\": \"2. deild\"\n        },\n        {\n            \"competition_id\": \"9f760e60-7ec2-46fb-a1fb-e123e2e13af3\",\n            \"sr_competition_id\": \"sr:competition:48000\",\n            \"country\": \"Guatemala\",\n            \"name\": \"Primera Division\"\n        },\n        {\n            \"competition_id\": \"9f89a23e-d319-4c83-8e80-2a3852560ea3\",\n            \"sr_competition_id\": \"sr:competition:47996\",\n            \"country\": \"Denmark\",\n            \"name\": \"B Liga, Women\"\n        },\n        {\n            \"competition_id\": \"9a94ac05-5f10-4726-b7f4-af0e6f60b6c5\",\n            \"sr_competition_id\": \"sr:competition:729\",\n            \"country\": \"Georgia\",\n            \"name\": \"Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa0a-8079-4f54-b7cb-558c2503a3b9\",\n            \"sr_competition_id\": \"sr:competition:37127\",\n            \"country\": \"Uruguay\",\n            \"name\": \"Copa Uruguay\"\n        },\n        {\n            \"competition_id\": \"9ac4e07e-974c-405d-a7e7-979c03e07797\",\n            \"sr_competition_id\": \"sr:competition:14688\",\n            \"country\": \"Kosovo\",\n            \"name\": \"Kosovo FA Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa11-0521-403a-80e8-8834c2f73583\",\n            \"sr_competition_id\": \"sr:competition:33656\",\n            \"country\": \"Ethiopia\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a94c2d8-0419-4323-9fa7-08f4c4cfb59e\",\n            \"sr_competition_id\": \"sr:competition:40805\",\n            \"country\": \"Brazil\",\n            \"name\": \"Mineiro, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7b107-b9d4-4b35-89a1-a7c3b37a72ae\",\n            \"sr_competition_id\": \"sr:competition:40135\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga, Qualification for Regionalliga Southwest\"\n        },\n        {\n            \"competition_id\": \"9a947f10-3518-41af-94cf-13124d7898ec\",\n            \"sr_competition_id\": \"sr:competition:52\",\n            \"country\": \"Turkiye\",\n            \"name\": \"Super Lig\"\n        },\n        {\n            \"competition_id\": \"9b5c133b-1b70-4424-92c5-777536ffba2d\",\n            \"sr_competition_id\": \"sr:competition:42283\",\n            \"country\": \"Chile\",\n            \"name\": \"Segunda Division\"\n        },\n        {\n            \"competition_id\": \"9ad7e2f8-50c3-419e-99fe-68935952a264\",\n            \"sr_competition_id\": \"sr:competition:827\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 FIFA World Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7bd34-68f8-494c-aac2-16b0ddd43918\",\n            \"sr_competition_id\": \"sr:competition:33686\",\n            \"country\": \"International Youth\",\n            \"name\": \"AFC U20 Asian Cup\"\n        },\n        {\n            \"competition_id\": \"9a94ac34-9f29-4cd2-96d9-0c4373d13075\",\n            \"sr_competition_id\": \"sr:competition:739\",\n            \"country\": \"Montenegro\",\n            \"name\": \"Cup Crne Gore\"\n        },\n        {\n            \"competition_id\": \"9f88aa0c-6399-4835-8bcd-83c16acbd62a\",\n            \"sr_competition_id\": \"sr:competition:43773\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Burgenlandliga\"\n        },\n        {\n            \"competition_id\": \"9c1a5823-032a-40e3-9aff-494d776efcf3\",\n            \"sr_competition_id\": \"sr:competition:34292\",\n            \"country\": \"Turkiye Amateur\",\n            \"name\": \"3. Lig, Playoffs\"\n        },\n        {\n            \"competition_id\": \"9a948073-3682-4e2c-939c-cf84662d723a\",\n            \"sr_competition_id\": \"sr:competition:222\",\n            \"country\": \"Bosnia & Herzegovina\",\n            \"name\": \"Premijer Liga\"\n        },\n        {\n            \"competition_id\": \"9a947f08-914f-4a7a-b1a6-a8c1ab97bbe1\",\n            \"sr_competition_id\": \"sr:competition:27088\",\n            \"country\": \"El Salvador\",\n            \"name\": \"Primera Division, Apertura\"\n        },\n        {\n            \"competition_id\": \"9ad7dda1-0f9d-448a-b1b1-a08dc4c8ec13\",\n            \"sr_competition_id\": \"sr:competition:1224\",\n            \"country\": \"Czechia\",\n            \"name\": \"Winter League\"\n        },\n        {\n            \"competition_id\": \"9a94a909-8b64-45f2-81ea-7548237432e1\",\n            \"sr_competition_id\": \"sr:competition:28127\",\n            \"country\": \"Italy\",\n            \"name\": \"Coppa Italia, Women\"\n        },\n        {\n            \"competition_id\": \"9d7c7ac4-a5f9-493e-9ab4-4a4ea83f04bc\",\n            \"sr_competition_id\": \"sr:competition:45083\",\n            \"country\": \"England\",\n            \"name\": \"National League Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f16-fdc8-405d-93d9-35a98142f61d\",\n            \"sr_competition_id\": \"sr:competition:509\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga Hamburg\"\n        },\n        {\n            \"competition_id\": \"9a94c257-68b1-42b4-9fef-65dbea48a562\",\n            \"sr_competition_id\": \"sr:competition:2529\",\n            \"country\": \"Japan\",\n            \"name\": \"Nadeshiko League, Div. 1, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7ab72-bf87-4062-ba81-288283bd7570\",\n            \"sr_competition_id\": \"sr:competition:27466\",\n            \"country\": \"Mexico\",\n            \"name\": \"Liga MX, Clausura\"\n        },\n        {\n            \"competition_id\": \"9ad7e748-75bf-4090-ac7f-1714d5c33532\",\n            \"sr_competition_id\": \"sr:competition:404\",\n            \"country\": \"International\",\n            \"name\": \"EAFF E-1 Football Championship, Women\"\n        },\n        {\n            \"competition_id\": \"9e4015cf-d15e-46f1-b8a2-f8c75d5cb7d9\",\n            \"sr_competition_id\": \"sr:competition:46053\",\n            \"country\": \"Greece\",\n            \"name\": \"Gamma Ethniki\"\n        },\n        {\n            \"competition_id\": \"9ad7da53-df6c-47f9-9b9e-2a655416ba14\",\n            \"sr_competition_id\": \"sr:competition:14604\",\n            \"country\": \"International\",\n            \"name\": \"Africa Cup of Nations, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n            \"sr_competition_id\": \"sr:competition:955\",\n            \"country\": \"Saudi Arabia\",\n            \"name\": \"Saudi Pro League\"\n        },\n        {\n            \"competition_id\": \"9a947f01-0925-410e-a264-020e9556e65e\",\n            \"sr_competition_id\": \"sr:competition:915\",\n            \"country\": \"Iran\",\n            \"name\": \"Pro League\"\n        },\n        {\n            \"competition_id\": \"9a94aa23-80f7-4d96-a676-8ab232071583\",\n            \"sr_competition_id\": \"sr:competition:34066\",\n            \"country\": \"Lithuania\",\n            \"name\": \"II Lyga\"\n        },\n        {\n            \"competition_id\": \"9a94c23c-72c8-4376-8392-e1a0df003abf\",\n            \"sr_competition_id\": \"sr:competition:34184\",\n            \"country\": \"Qatar\",\n            \"name\": \"QFA Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa0d-e7c0-49db-aba3-132b9c474d51\",\n            \"sr_competition_id\": \"sr:competition:312\",\n            \"country\": \"Ukraine\",\n            \"name\": \"Ukraine Cup\"\n        },\n        {\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"sr_competition_id\": \"sr:competition:34480\",\n            \"country\": \"International Clubs\",\n            \"name\": \"UEFA Conference League\"\n        },\n        {\n            \"competition_id\": \"9a94aa37-a885-4b0a-b2db-408d96d15041\",\n            \"sr_competition_id\": \"sr:competition:365\",\n            \"country\": \"Bulgaria\",\n            \"name\": \"Bulgarian Cup\"\n        },\n        {\n            \"competition_id\": \"9ad80327-f65f-4aea-9cf2-03a427e204b4\",\n            \"sr_competition_id\": \"sr:competition:35937\",\n            \"country\": \"Paraguay\",\n            \"name\": \"Supercopa Paraguay\"\n        },\n        {\n            \"competition_id\": \"9f661848-a048-42c0-8c0c-1cc3716e8d26\",\n            \"sr_competition_id\": \"sr:competition:18486\",\n            \"country\": \"Finland\",\n            \"name\": \"Suomen Cup, Women\"\n        },\n        {\n            \"competition_id\": \"01992ded-178e-7278-8431-ab6233956192\",\n            \"sr_competition_id\": \"sr:competition:48711\",\n            \"country\": \"Portugal\",\n            \"name\": \"II Divisao, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7ae56-e613-4b68-be80-bfb9c33f2319\",\n            \"sr_competition_id\": \"sr:competition:1279\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Salzburger Liga\"\n        },\n        {\n            \"competition_id\": \"9cd4a7cb-d054-4c0d-b9fe-fb335598019d\",\n            \"sr_competition_id\": \"sr:competition:42969\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Supercup, Women\"\n        },\n        {\n            \"competition_id\": \"9cd4a7d0-a255-40f9-9569-5cae5cf35642\",\n            \"sr_competition_id\": \"sr:competition:42985\",\n            \"country\": \"International Clubs\",\n            \"name\": \"AFC Women's Champions League\"\n        },\n        {\n            \"competition_id\": \"9a947f13-ee8f-4806-be43-315a2ed3db9b\",\n            \"sr_competition_id\": \"sr:competition:810\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"A-Junioren-Bundesliga West\"\n        },\n        {\n            \"competition_id\": \"9a94aa0d-d538-47b9-ba4d-01ee4b29f68f\",\n            \"sr_competition_id\": \"sr:competition:1109\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga Rheinland-Pfalz\"\n        },\n        {\n            \"competition_id\": \"9f474e09-993d-4136-b96e-10bf78b49f9c\",\n            \"sr_competition_id\": \"sr:competition:47478\",\n            \"country\": \"Russia\",\n            \"name\": \"Russian Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa0c-ef1c-46ff-a133-e61e0c9c119c\",\n            \"sr_competition_id\": \"sr:competition:15235\",\n            \"country\": \"Peru\",\n            \"name\": \"Liga 2\"\n        },\n        {\n            \"competition_id\": \"9ef47783-c0d4-4dfa-9c3a-a84079d77c20\",\n            \"sr_competition_id\": \"sr:competition:47097\",\n            \"country\": \"Brazil\",\n            \"name\": \"Copa do Brasil, Women\"\n        },\n        {\n            \"competition_id\": \"9a94ac88-2056-4fac-a5b6-845b062c67ea\",\n            \"sr_competition_id\": \"sr:competition:882\",\n            \"country\": \"China\",\n            \"name\": \"FA Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa3e-1996-4920-af23-ccbb22347467\",\n            \"sr_competition_id\": \"sr:competition:1083\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Regionalliga Northeast\"\n        },\n        {\n            \"competition_id\": \"9a9aa1c8-7791-40c8-8a7c-810751edbeec\",\n            \"sr_competition_id\": \"sr:competition:1074\",\n            \"country\": \"International Youth\",\n            \"name\": \"U20 CONMEBOL Libertadores\"\n        },\n        {\n            \"competition_id\": \"9a947f1b-3889-4691-8065-1afd73749004\",\n            \"sr_competition_id\": \"sr:competition:1127\",\n            \"country\": \"Spain\",\n            \"name\": \"Primera Division Women\"\n        },\n        {\n            \"competition_id\": \"9ad7e3d7-6d80-4c39-8b4b-d23e84f442f4\",\n            \"sr_competition_id\": \"sr:competition:1060\",\n            \"country\": \"International\",\n            \"name\": \"Baltic Cup\"\n        },\n        {\n            \"competition_id\": \"9bf1557e-759e-4511-ba43-cd01f12d666b\",\n            \"sr_competition_id\": \"sr:competition:36175\",\n            \"country\": \"Singapore\",\n            \"name\": \"Community Shield\"\n        },\n        {\n            \"competition_id\": \"9a94aa37-cf4b-4302-80b3-4313047a565d\",\n            \"sr_competition_id\": \"sr:competition:649\",\n            \"country\": \"China\",\n            \"name\": \"Chinese Super League\"\n        },\n        {\n            \"competition_id\": \"9a94ac2e-96f9-4d9b-b987-35eba44a8c6f\",\n            \"sr_competition_id\": \"sr:competition:615\",\n            \"country\": \"Republic of Korea\",\n            \"name\": \"Korea Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa6a-3ac1-44e0-91af-3fd24b0e87f6\",\n            \"sr_competition_id\": \"sr:competition:1002\",\n            \"country\": \"Kuwait\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9aa4580a-4453-4390-8602-0741964d3e32\",\n            \"sr_competition_id\": \"sr:competition:27412\",\n            \"country\": \"Sweden\",\n            \"name\": \"Ettan, Relegation/Promotion\"\n        },\n        {\n            \"competition_id\": \"9a94c2bd-5eff-4e5b-a899-1aaaa75e1362\",\n            \"sr_competition_id\": \"sr:competition:323\",\n            \"country\": \"Japan\",\n            \"name\": \"Emperor Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7aba0-bd4c-4682-b29a-3ea5dacdbcc2\",\n            \"sr_competition_id\": \"sr:competition:27384\",\n            \"country\": \"Mexico\",\n            \"name\": \"Liga de Expansion MX, Clausura\"\n        },\n        {\n            \"competition_id\": \"9a94aa32-9a28-49b2-8e72-e476d90e45ab\",\n            \"sr_competition_id\": \"sr:competition:71\",\n            \"country\": \"Sweden\",\n            \"name\": \"Division 2, Norrland\"\n        },\n        {\n            \"competition_id\": \"9a948077-ccd7-4dd5-8c1e-84790ad0d7b1\",\n            \"sr_competition_id\": \"sr:competition:206\",\n            \"country\": \"Scotland\",\n            \"name\": \"Championship\"\n        },\n        {\n            \"competition_id\": \"9b9e1180-721c-46f0-91ee-8ef73028095f\",\n            \"sr_competition_id\": \"sr:competition:437\",\n            \"country\": \"International\",\n            \"name\": \"Olympic Tournament, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f05-6951-4161-b858-2b5d560a4d3d\",\n            \"sr_competition_id\": \"sr:competition:169\",\n            \"country\": \"Belarus\",\n            \"name\": \"Vysshaya Liga\"\n        },\n        {\n            \"competition_id\": \"9ad7bc0d-3c62-4e30-b425-b4c4adf75d63\",\n            \"sr_competition_id\": \"sr:competition:36139\",\n            \"country\": \"USA\",\n            \"name\": \"MLS Preseason\"\n        },\n        {\n            \"competition_id\": \"9a947f24-de0a-4835-af62-dd6944452df5\",\n            \"sr_competition_id\": \"sr:competition:14189\",\n            \"country\": \"Kosovo\",\n            \"name\": \"Superliga\"\n        },\n        {\n            \"competition_id\": \"9ea41bf5-5d7d-416d-9e29-168c4c3eef30\",\n            \"sr_competition_id\": \"sr:competition:46714\",\n            \"country\": \"Australia\",\n            \"name\": \"Capital Premier League\"\n        },\n        {\n            \"competition_id\": \"9a9aa1ca-05df-449d-bb46-1f790b73a028\",\n            \"sr_competition_id\": \"sr:competition:258\",\n            \"country\": \"International Youth\",\n            \"name\": \"U19 European Championship\"\n        },\n        {\n            \"competition_id\": \"9ad7ac46-eb90-4228-a558-1de9e1626d6a\",\n            \"sr_competition_id\": \"sr:competition:28735\",\n            \"country\": \"Portugal\",\n            \"name\": \"U23 Taca Revelacao\"\n        },\n        {\n            \"competition_id\": \"9a94ac3c-dadd-41a3-873e-d902510099bd\",\n            \"sr_competition_id\": \"sr:competition:1382\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie D, Group E\"\n        },\n        {\n            \"competition_id\": \"9a947f0b-a8f4-4ed8-8184-e4fc5b1efeb8\",\n            \"sr_competition_id\": \"sr:competition:205\",\n            \"country\": \"Czechia\",\n            \"name\": \"FNL\"\n        },\n        {\n            \"competition_id\": \"9eb0a776-d2ab-4424-9a5b-1f65fb28cd93\",\n            \"sr_competition_id\": \"sr:competition:46760\",\n            \"country\": \"Ecuador\",\n            \"name\": \"Superliga, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f0d-7922-445d-a3a4-f626b49a966e\",\n            \"sr_competition_id\": \"sr:competition:685\",\n            \"country\": \"Moldova\",\n            \"name\": \"Super Liga\"\n        },\n        {\n            \"competition_id\": \"9a94aa0e-e211-4d30-b089-428efe128edb\",\n            \"sr_competition_id\": \"sr:competition:40061\",\n            \"country\": \"Brazil\",\n            \"name\": \"Copa Rio\"\n        },\n        {\n            \"competition_id\": \"9a947f19-2787-42fd-a877-631929d1622e\",\n            \"sr_competition_id\": \"sr:competition:25837\",\n            \"country\": \"Poland\",\n            \"name\": \"III Liga, Group 2\"\n        },\n        {\n            \"competition_id\": \"0199571f-0cbc-7116-a4e6-3a32b93b0011\",\n            \"sr_competition_id\": \"sr:competition:48769\",\n            \"country\": \"Puerto Rico\",\n            \"name\": \"LPR Pro\"\n        },\n        {\n            \"competition_id\": \"9a94c954-72a6-4e74-9c9a-b83470c38ec2\",\n            \"sr_competition_id\": \"sr:competition:14043\",\n            \"country\": \"Israel\",\n            \"name\": \"League Cup, Premier\"\n        },\n        {\n            \"competition_id\": \"9fb60eec-f22a-4a88-a840-0306e15ca4ab\",\n            \"sr_competition_id\": \"sr:competition:48215\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie B, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa39-617a-4810-871e-8473ced1f05c\",\n            \"sr_competition_id\": \"sr:competition:40513\",\n            \"country\": \"Malaysia\",\n            \"name\": \"Piala Malaysia\"\n        },\n        {\n            \"competition_id\": \"9adae8e1-76d5-49c1-ac7a-fd8f02567ca4\",\n            \"sr_competition_id\": \"sr:competition:510\",\n            \"country\": \"Bulgaria\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7c5fe-014d-4fca-ad5a-f1ae7799f5f8\",\n            \"sr_competition_id\": \"sr:competition:925\",\n            \"country\": \"Honduras\",\n            \"name\": \"Liga Nacional, Relegation Playoff\"\n        },\n        {\n            \"competition_id\": \"9a947f02-29f7-4de2-bd34-efd96777cc1e\",\n            \"sr_competition_id\": \"sr:competition:2386\",\n            \"country\": \"Lebanon\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"01994497-c87a-7062-a6df-8cd30aaa3a30\",\n            \"sr_competition_id\": \"sr:competition:48743\",\n            \"country\": \"Brazil\",\n            \"name\": \"Piauiense, Serie B\"\n        },\n        {\n            \"competition_id\": \"9a94c253-c796-41c9-8c23-73271f55a0c0\",\n            \"sr_competition_id\": \"sr:competition:673\",\n            \"country\": \"Faroe Islands\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9ef5cf95-ec79-4ea2-a3da-7c8d90aea24b\",\n            \"sr_competition_id\": \"sr:competition:19454\",\n            \"country\": \"Costa Rica\",\n            \"name\": \"Liga de Ascenso\"\n        },\n        {\n            \"competition_id\": \"9ad7a79c-f01c-4018-b276-0770cc125147\",\n            \"sr_competition_id\": \"sr:competition:345\",\n            \"country\": \"Portugal\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f06-4e16-4976-8608-c18ec2bd7df6\",\n            \"sr_competition_id\": \"sr:competition:19266\",\n            \"country\": \"Hungary\",\n            \"name\": \"NB I, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa22-5f70-4b4d-b995-c8be578c51eb\",\n            \"sr_competition_id\": \"sr:competition:24646\",\n            \"country\": \"Norway\",\n            \"name\": \"3rd Division Group 3\"\n        },\n        {\n            \"competition_id\": \"9a94ac40-ec22-47fc-b1d5-cf0dc538cfa3\",\n            \"sr_competition_id\": \"sr:competition:628\",\n            \"country\": \"England Amateur\",\n            \"name\": \"FA Trophy\"\n        },\n        {\n            \"competition_id\": \"9a9b0254-cf94-425e-b027-cd1b91f8cba5\",\n            \"sr_competition_id\": \"sr:competition:23795\",\n            \"country\": \"Belgium\",\n            \"name\": \"Beker van Belgie, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa36-53a1-4f71-9670-f052893c58c0\",\n            \"sr_competition_id\": \"sr:competition:756\",\n            \"country\": \"Albania\",\n            \"name\": \"Kupa e Shqiperise\"\n        },\n        {\n            \"competition_id\": \"9a94a44c-f20c-4542-a2a8-3e76da245510\",\n            \"sr_competition_id\": \"sr:competition:184\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Hessenliga\"\n        },\n        {\n            \"competition_id\": \"9b6687ca-203b-4e7a-9537-809eb76015a9\",\n            \"sr_competition_id\": \"sr:competition:773\",\n            \"country\": \"Kazakhstan\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f12-cc15-4290-b6e5-adaee6525e8d\",\n            \"sr_competition_id\": \"sr:competition:508\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Bremen Liga\"\n        },\n        {\n            \"competition_id\": \"9bfc0f33-8dfd-43f5-8b86-0fab7fc973ab\",\n            \"sr_competition_id\": \"sr:competition:42763\",\n            \"country\": \"International Youth\",\n            \"name\": \"AFC-CAF Olympic Qualification Playoff\"\n        },\n        {\n            \"competition_id\": \"9a9a294e-7ec5-4152-905b-7f2d456e88d3\",\n            \"sr_competition_id\": \"sr:competition:1794\",\n            \"country\": \"USA\",\n            \"name\": \"MLS All Star Game\"\n        },\n        {\n            \"competition_id\": \"9ccfbad7-58d5-4b20-bff3-8c5e3e2993cc\",\n            \"sr_competition_id\": \"sr:competition:43845\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CONCACAF Champions Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9af57afe-6234-4159-9a87-9ec090092d41\",\n            \"sr_competition_id\": \"sr:competition:270\",\n            \"country\": \"International\",\n            \"name\": \"Africa Cup of Nations\"\n        },\n        {\n            \"competition_id\": \"9f93ba78-2ac2-4d58-a4c4-05def7f73348\",\n            \"sr_competition_id\": \"sr:competition:48197\",\n            \"country\": \"Nicaragua\",\n            \"name\": \"Liga de Ascenso\"\n        },\n        {\n            \"competition_id\": \"9a94aa18-a10a-4862-b0e2-1c3cb6a78c5b\",\n            \"sr_competition_id\": \"sr:competition:27420\",\n            \"country\": \"International\",\n            \"name\": \"CONCACAF Nations League\"\n        },\n        {\n            \"competition_id\": \"9adfbe9b-1ca9-4cef-8f4b-4381c3433215\",\n            \"sr_competition_id\": \"sr:competition:1107\",\n            \"country\": \"Albania\",\n            \"name\": \"Superkupa e Shqiperise\"\n        },\n        {\n            \"competition_id\": \"9a947f0f-6a87-41fb-b0b1-c0771f36d25b\",\n            \"sr_competition_id\": \"sr:competition:14151\",\n            \"country\": \"Czechia\",\n            \"name\": \"CFL\"\n        },\n        {\n            \"competition_id\": \"9f88aa06-078f-4bde-af91-91a8acaecb61\",\n            \"sr_competition_id\": \"sr:competition:48056\",\n            \"country\": \"Mexico\",\n            \"name\": \"U21 Liga MX\"\n        },\n        {\n            \"competition_id\": \"9ea414d0-e231-4046-8b6e-c8b462566e0b\",\n            \"sr_competition_id\": \"sr:competition:32343\",\n            \"country\": \"Australia\",\n            \"name\": \"Northern NSW League One\"\n        },\n        {\n            \"competition_id\": \"9ad7db40-a636-41c8-b032-0834d1368344\",\n            \"sr_competition_id\": \"sr:competition:25071\",\n            \"country\": \"Brazil\",\n            \"name\": \"U23 Brasileiro\"\n        },\n        {\n            \"competition_id\": \"9a94c807-5f46-4b0b-aa69-d33d56c40a42\",\n            \"sr_competition_id\": \"sr:competition:18204\",\n            \"country\": \"Iceland\",\n            \"name\": \"1. deild, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c27a-c29c-42d0-98fc-4ff77f07c768\",\n            \"sr_competition_id\": \"sr:competition:2342\",\n            \"country\": \"Palestine\",\n            \"name\": \"West Bank League\"\n        },\n        {\n            \"competition_id\": \"9ad7d674-2f61-4bf2-bfeb-d8bea3d6083a\",\n            \"sr_competition_id\": \"sr:competition:19226\",\n            \"country\": \"Malaysia\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9cc0880b-2a56-4786-8329-74d46553569c\",\n            \"sr_competition_id\": \"sr:competition:26178\",\n            \"country\": \"USA\",\n            \"name\": \"NCAA Regular Season, Women\"\n        },\n        {\n            \"competition_id\": \"9a94ac22-2334-48f7-9aa8-7e1523c2b906\",\n            \"sr_competition_id\": \"sr:competition:852\",\n            \"country\": \"International\",\n            \"name\": \"Int. Friendly Games W\"\n        },\n        {\n            \"competition_id\": \"9ad7cf4c-37fa-4f93-a112-1cddbe6623ec\",\n            \"sr_competition_id\": \"sr:competition:884\",\n            \"country\": \"Italy\",\n            \"name\": \"Supercoppa di Lega Pro\"\n        },\n        {\n            \"competition_id\": \"9a947f0f-8d9d-4b1b-8b46-2f5a95496572\",\n            \"sr_competition_id\": \"sr:competition:25835\",\n            \"country\": \"Poland\",\n            \"name\": \"III Liga, Group 1\"\n        },\n        {\n            \"competition_id\": \"9a9a2862-9380-4ed9-a9b5-995173bbc8b2\",\n            \"sr_competition_id\": \"sr:competition:28424\",\n            \"country\": \"USA\",\n            \"name\": \"National Premier Soccer League\"\n        },\n        {\n            \"competition_id\": \"9a94ac06-c1b9-4a17-b55a-83713738552c\",\n            \"sr_competition_id\": \"sr:competition:630\",\n            \"country\": \"Malta\",\n            \"name\": \"Challenge League\"\n        },\n        {\n            \"competition_id\": \"9ad7abec-5c5a-488e-8c5b-7565e5cc2200\",\n            \"sr_competition_id\": \"sr:competition:498\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CONCACAF Champions Cup\"\n        },\n        {\n            \"competition_id\": \"9a94ac3b-f329-4205-980c-035e45f3823e\",\n            \"sr_competition_id\": \"sr:competition:1226\",\n            \"country\": \"Senegal\",\n            \"name\": \"Ligue 1\"\n        },\n        {\n            \"competition_id\": \"9ad7de30-5011-4bf1-a881-21c17b37f69f\",\n            \"sr_competition_id\": \"sr:competition:602\",\n            \"country\": \"International\",\n            \"name\": \"ASEAN Championship\"\n        },\n        {\n            \"competition_id\": \"9a94c238-aeed-49cd-afc2-de76b434c9c1\",\n            \"sr_competition_id\": \"sr:competition:1270\",\n            \"country\": \"Australia\",\n            \"name\": \"Western Australia NPL\"\n        },\n        {\n            \"competition_id\": \"9a94c23f-6a5f-4aad-a5ef-c8e823ffdaa6\",\n            \"sr_competition_id\": \"sr:competition:14413\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Copa do Brasil\"\n        },\n        {\n            \"competition_id\": \"9ad7bcdd-4866-49ed-9a34-f6d9ddbb7434\",\n            \"sr_competition_id\": \"sr:competition:380\",\n            \"country\": \"Brazil\",\n            \"name\": \"Pernambucano\"\n        },\n        {\n            \"competition_id\": \"9a94c806-eaf2-4eb7-810e-7911aa7743a7\",\n            \"sr_competition_id\": \"sr:competition:290\",\n            \"country\": \"International\",\n            \"name\": \"World Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7dfc6-94a8-43cc-b109-c16dcbfa729a\",\n            \"sr_competition_id\": \"sr:competition:39043\",\n            \"country\": \"Brazil\",\n            \"name\": \"Supercopa, Women\"\n        },\n        {\n            \"competition_id\": \"9aa00a6f-7f13-490b-8670-6f9f7afcc8b8\",\n            \"sr_competition_id\": \"sr:competition:246\",\n            \"country\": \"International\",\n            \"name\": \"AFC Asian Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7bc0d-3ceb-48b9-86b6-6d298584a33a\",\n            \"sr_competition_id\": \"sr:competition:15257\",\n            \"country\": \"Brazil\",\n            \"name\": \"Sergipano\"\n        },\n        {\n            \"competition_id\": \"9f94bc43-4590-4c67-8eaf-1618ca587567\",\n            \"sr_competition_id\": \"sr:competition:43831\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Wiener Stadtliga\"\n        },\n        {\n            \"competition_id\": \"9a9a299b-b3f2-46a1-a5d0-dff8106112a5\",\n            \"sr_competition_id\": \"sr:competition:36661\",\n            \"country\": \"Brazil\",\n            \"name\": \"Mineiro, Modulo II\"\n        },\n        {\n            \"competition_id\": \"9a94aa3f-505c-41dd-8c45-c5e729ee24ff\",\n            \"sr_competition_id\": \"sr:competition:152\",\n            \"country\": \"Romania\",\n            \"name\": \"Superliga\"\n        },\n        {\n            \"competition_id\": \"9a94aa37-1136-4f49-ada5-0130b9b9886c\",\n            \"sr_competition_id\": \"sr:competition:26034\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 9\"\n        },\n        {\n            \"competition_id\": \"9ad7ada0-0ef8-4d31-9edb-7377b2bf7879\",\n            \"sr_competition_id\": \"sr:competition:36903\",\n            \"country\": \"Mexico\",\n            \"name\": \"Campeon de Campeones, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7cb30-98e3-4482-861c-f39a3d42f277\",\n            \"sr_competition_id\": \"sr:competition:2306\",\n            \"country\": \"United Arab Emirates\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94a921-7fd6-4e00-a726-82631eaf1a3a\",\n            \"sr_competition_id\": \"sr:competition:96\",\n            \"country\": \"Turkiye\",\n            \"name\": \"Turkiye Kupasi\"\n        },\n        {\n            \"competition_id\": \"9ad7ab64-d7e9-401f-b8c3-84531e6d2ace\",\n            \"sr_competition_id\": \"sr:competition:28955\",\n            \"country\": \"Mexico\",\n            \"name\": \"Liga MX, Women, Clausura\"\n        },\n        {\n            \"competition_id\": \"9a94aa2a-a9d5-40d1-9cde-572c57890953\",\n            \"sr_competition_id\": \"sr:competition:24650\",\n            \"country\": \"Norway\",\n            \"name\": \"3rd Division Group 5\"\n        },\n        {\n            \"competition_id\": \"9a94aa26-5bf8-4afb-85d1-32c45dfad671\",\n            \"sr_competition_id\": \"sr:competition:388\",\n            \"country\": \"Wales\",\n            \"name\": \"FAW Welsh Cup\"\n        },\n        {\n            \"competition_id\": \"9a94ac8b-7a15-4639-8311-941846ffee99\",\n            \"sr_competition_id\": \"sr:competition:722\",\n            \"country\": \"Albania\",\n            \"name\": \"Kategoria e Pare\"\n        },\n        {\n            \"competition_id\": \"9a94aa11-b71f-4b68-824d-54c4b46a6c7d\",\n            \"sr_competition_id\": \"sr:competition:41085\",\n            \"country\": \"Brazil\",\n            \"name\": \"Gaucho, Serie B\"\n        },\n        {\n            \"competition_id\": \"9ea41bf6-38c5-45fb-b1ca-a78c5462f22f\",\n            \"sr_competition_id\": \"sr:competition:46718\",\n            \"country\": \"Australia\",\n            \"name\": \"Tasmania Southern Championship\"\n        },\n        {\n            \"competition_id\": \"9ad7d6cc-680e-4a49-b0fd-c45ec5e23587\",\n            \"sr_competition_id\": \"sr:competition:27869\",\n            \"country\": \"Bolivia\",\n            \"name\": \"Division Profesional, Apertura\"\n        },\n        {\n            \"competition_id\": \"9a94aa5b-6ba0-46b8-abbc-8bfc5115707d\",\n            \"sr_competition_id\": \"sr:competition:26036\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 10\"\n        },\n        {\n            \"competition_id\": \"9a947f0d-105b-4f7b-8fe2-63a212ef1914\",\n            \"sr_competition_id\": \"sr:competition:846\",\n            \"country\": \"Bahrain\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a947eff-6907-401f-a4e5-365be4c56137\",\n            \"sr_competition_id\": \"sr:competition:671\",\n            \"country\": \"Armenia\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9ad7c863-8f38-4aab-bd30-6b44224a74bf\",\n            \"sr_competition_id\": \"sr:competition:28837\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie C,  Relegation Playoffs\"\n        },\n        {\n            \"competition_id\": \"9ad7deba-93d3-48d7-8237-dca739fd1361\",\n            \"sr_competition_id\": \"sr:competition:637\",\n            \"country\": \"International\",\n            \"name\": \"African Nations Championship\"\n        },\n        {\n            \"competition_id\": \"9a94ac49-f43e-41e3-88c5-c248429ceeda\",\n            \"sr_competition_id\": \"sr:competition:326\",\n            \"country\": \"Belgium\",\n            \"name\": \"Beker van Belgie\"\n        },\n        {\n            \"competition_id\": \"9a94ac07-f96d-4f18-b007-72e7e8551e3c\",\n            \"sr_competition_id\": \"sr:competition:757\",\n            \"country\": \"Liechtenstein\",\n            \"name\": \"Liechtensteiner Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f1a-2840-4586-adb4-56cd85382ea1\",\n            \"sr_competition_id\": \"sr:competition:1133\",\n            \"country\": \"Portugal\",\n            \"name\": \"U19 Campeonato Nacional\"\n        },\n        {\n            \"competition_id\": \"9a94ac36-1ef4-43af-93bc-1bf737722d79\",\n            \"sr_competition_id\": \"sr:competition:307\",\n            \"country\": \"Croatia\",\n            \"name\": \"Croatian Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa2e-399e-42a3-a37b-328fb3720d2a\",\n            \"sr_competition_id\": \"sr:competition:15636\",\n            \"country\": \"China\",\n            \"name\": \"China League 2\"\n        },\n        {\n            \"competition_id\": \"9f6df92c-e5e4-4833-81a6-d1ca37847c04\",\n            \"sr_competition_id\": \"sr:competition:47536\",\n            \"country\": \"Slovakia\",\n            \"name\": \"3. Liga\"\n        },\n        {\n            \"competition_id\": \"9ad7eef7-1abf-410c-bbeb-e9a231648b39\",\n            \"sr_competition_id\": \"sr:competition:31509\",\n            \"country\": \"Kuwait\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c23c-c7a0-4f5c-9e65-dde0ceda1ef6\",\n            \"sr_competition_id\": \"sr:competition:15279\",\n            \"country\": \"Iceland\",\n            \"name\": \"Besta deild, Women\"\n        },\n        {\n            \"competition_id\": \"9a9b1f81-b926-4a24-84a5-b91ce6266daf\",\n            \"sr_competition_id\": \"sr:competition:1125\",\n            \"country\": \"South Africa\",\n            \"name\": \"MTN 8\"\n        },\n        {\n            \"competition_id\": \"9a9b2530-41dc-4818-8472-403ea4c5814f\",\n            \"sr_competition_id\": \"sr:competition:40531\",\n            \"country\": \"Netherlands\",\n            \"name\": \"Supercup, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c808-4a89-4e9f-bbcf-37e783305297\",\n            \"sr_competition_id\": \"sr:competition:39781\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Cearense\"\n        },\n        {\n            \"competition_id\": \"9a94c81a-6e57-469a-9641-69d9f165d3b8\",\n            \"sr_competition_id\": \"sr:competition:716\",\n            \"country\": \"Bosnia & Herzegovina\",\n            \"name\": \"Prva Liga, Fed BiH\"\n        },\n        {\n            \"competition_id\": \"9ad7d924-b0cb-4665-9a7e-60a8a4184a2f\",\n            \"sr_competition_id\": \"sr:competition:2430\",\n            \"country\": \"International Youth\",\n            \"name\": \"AFC U23 Asian Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f0f-b13c-418f-bf01-431ad1713e75\",\n            \"sr_competition_id\": \"sr:competition:14147\",\n            \"country\": \"Czechia\",\n            \"name\": \"MSFL\"\n        },\n        {\n            \"competition_id\": \"9a94ac26-e79d-4f12-ad1b-2ba62d8cc531\",\n            \"sr_competition_id\": \"sr:competition:1000\",\n            \"country\": \"Malaysia\",\n            \"name\": \"Super League\"\n        },\n        {\n            \"competition_id\": \"9ad7c5fc-c899-4f35-90ef-c6cf2e29da97\",\n            \"sr_competition_id\": \"sr:competition:25655\",\n            \"country\": \"International Youth\",\n            \"name\": \"Blue Stars / FIFA Youth Cup\"\n        },\n        {\n            \"competition_id\": \"01990a27-e0ed-73d9-8e6d-a48da55f78fd\",\n            \"sr_competition_id\": \"sr:competition:48613\",\n            \"country\": \"Scotland\",\n            \"name\": \"Premier League Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa6c-65cb-4ebc-8e1c-29fcf4a3dd06\",\n            \"sr_competition_id\": \"sr:competition:2298\",\n            \"country\": \"Saudi Arabia\",\n            \"name\": \"Division 1\"\n        },\n        {\n            \"competition_id\": \"9a947f1b-5e9d-4401-a1e1-9d0c199b5c82\",\n            \"sr_competition_id\": \"sr:competition:33133\",\n            \"country\": \"Turkiye Amateur\",\n            \"name\": \"3. Lig, Group 4\"\n        },\n        {\n            \"competition_id\": \"9a9aa1c8-7e34-43e4-a405-d393bd473d61\",\n            \"sr_competition_id\": \"sr:competition:35791\",\n            \"country\": \"Brazil\",\n            \"name\": \"Gaucho, Serie A2\"\n        },\n        {\n            \"competition_id\": \"9ad7fb82-fe5f-4261-8d1c-275340dc7d81\",\n            \"sr_competition_id\": \"sr:competition:34518\",\n            \"country\": \"Bahrain\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f0a-c36a-4067-9797-e099ab49d9db\",\n            \"sr_competition_id\": \"sr:competition:1690\",\n            \"country\": \"USA\",\n            \"name\": \"National Womens Soccer League\"\n        },\n        {\n            \"competition_id\": \"9a94aa2b-fb57-4b58-b108-2472f03a7201\",\n            \"sr_competition_id\": \"sr:competition:54\",\n            \"country\": \"Spain\",\n            \"name\": \"LaLiga 2\"\n        },\n        {\n            \"competition_id\": \"9ad7aeaf-65c1-4f5a-a2fa-e4c1c8d157dc\",\n            \"sr_competition_id\": \"sr:competition:397\",\n            \"country\": \"Russia\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7bf99-e117-42bd-92fa-bb194e48ea05\",\n            \"sr_competition_id\": \"sr:competition:953\",\n            \"country\": \"Kuwait\",\n            \"name\": \"Federation Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7d930-4b60-4ef4-a6cd-4170653a86ff\",\n            \"sr_competition_id\": \"sr:competition:11\",\n            \"country\": \"International\",\n            \"name\": \"World Cup Qualification UEFA\"\n        },\n        {\n            \"competition_id\": \"9ad7de63-148f-4861-a8e3-eb9dfebc2120\",\n            \"sr_competition_id\": \"sr:competition:1612\",\n            \"country\": \"International Youth\",\n            \"name\": \"U20 CONMEBOL, Women\"\n        },\n        {\n            \"competition_id\": \"9a947efe-20e8-4e75-b586-3cbbfe2b8c8c\",\n            \"sr_competition_id\": \"sr:competition:136\",\n            \"country\": \"Australia\",\n            \"name\": \"A-League\"\n        },\n        {\n            \"competition_id\": \"9fafbac8-a0d2-4932-8722-89832fc29cf1\",\n            \"sr_competition_id\": \"sr:competition:48183\",\n            \"country\": \"Hungary\",\n            \"name\": \"U19 National\"\n        },\n        {\n            \"competition_id\": \"9a94ac0a-9f62-4d21-8199-5d5c1c6ed1f3\",\n            \"sr_competition_id\": \"sr:competition:173\",\n            \"country\": \"England\",\n            \"name\": \"National League\"\n        },\n        {\n            \"competition_id\": \"9a94ac2f-e420-4540-bbc4-0e99922cbf2c\",\n            \"sr_competition_id\": \"sr:competition:1554\",\n            \"country\": \"Italy\",\n            \"name\": \"Coppa Italia Primavera\"\n        },\n        {\n            \"competition_id\": \"9a9b0250-8c1d-47c5-8bdc-ea9008ed618f\",\n            \"sr_competition_id\": \"sr:competition:20782\",\n            \"country\": \"Sweden\",\n            \"name\": \"Division 2, Promotion Playoffs\"\n        },\n        {\n            \"competition_id\": \"9ecce94c-e5bb-47b4-8f61-69ffbb803c00\",\n            \"sr_competition_id\": \"sr:competition:46883\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Paranaense, 1. Divisao\"\n        },\n        {\n            \"competition_id\": \"9ef6fc23-d381-4eee-8b7a-78a7a0de273c\",\n            \"sr_competition_id\": \"sr:competition:47127\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"OFB Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a9a2a37-f426-49cf-b7e5-2c7201eb316f\",\n            \"sr_competition_id\": \"sr:competition:40385\",\n            \"country\": \"International Clubs\",\n            \"name\": \"UEFA-CONMEBOL Club Challenge\"\n        },\n        {\n            \"competition_id\": \"9ad7d73f-588f-4a58-92db-4aa5c921e7f9\",\n            \"sr_competition_id\": \"sr:competition:535\",\n            \"country\": \"Denmark Amateur\",\n            \"name\": \"Danmarksserien, Pulje 3\"\n        },\n        {\n            \"competition_id\": \"9ad7cd83-275c-4082-803d-688918792c12\",\n            \"sr_competition_id\": \"sr:competition:28621\",\n            \"country\": \"Iceland\",\n            \"name\": \"Super Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c248-17a9-4728-a2bc-6f8bc81372cf\",\n            \"sr_competition_id\": \"sr:competition:1054\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CAF Champions League\"\n        },\n        {\n            \"competition_id\": \"9a94ac9c-c022-4e2f-afee-b76a919c5636\",\n            \"sr_competition_id\": \"sr:competition:611\",\n            \"country\": \"Northern Ireland\",\n            \"name\": \"League Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f02-5b5e-466b-8ed2-125242b8e2f2\",\n            \"sr_competition_id\": \"sr:competition:727\",\n            \"country\": \"Israel\",\n            \"name\": \"National League\"\n        },\n        {\n            \"competition_id\": \"9a94c252-205f-4f9d-9606-9405d225b4e3\",\n            \"sr_competition_id\": \"sr:competition:179\",\n            \"country\": \"Finland\",\n            \"name\": \"Kakkonen, Group A\"\n        },\n        {\n            \"competition_id\": \"9a94ac9f-1f59-4392-8a1b-ef37e04e514a\",\n            \"sr_competition_id\": \"sr:competition:36\",\n            \"country\": \"Scotland\",\n            \"name\": \"Premiership\"\n        },\n        {\n            \"competition_id\": \"9ad7c321-3bc7-40be-9b58-496d3399c934\",\n            \"sr_competition_id\": \"sr:competition:370\",\n            \"country\": \"Israel\",\n            \"name\": \"State Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f0f-4684-43f8-a55b-6e54c227becc\",\n            \"sr_competition_id\": \"sr:competition:515\",\n            \"country\": \"Poland\",\n            \"name\": \"II Liga\"\n        },\n        {\n            \"competition_id\": \"9a947f0f-261e-4765-a6be-4c97a5157f3e\",\n            \"sr_competition_id\": \"sr:competition:229\",\n            \"country\": \"Poland\",\n            \"name\": \"1. Liga\"\n        },\n        {\n            \"competition_id\": \"9a94ac6f-082b-441c-b16e-1c1ca4330577\",\n            \"sr_competition_id\": \"sr:competition:1335\",\n            \"country\": \"Colombia\",\n            \"name\": \"Copa Colombia\"\n        },\n        {\n            \"competition_id\": \"9e17a814-ab75-473d-920c-6151ae5977c2\",\n            \"sr_competition_id\": \"sr:competition:20780\",\n            \"country\": \"Algeria\",\n            \"name\": \"Supercoupe\"\n        },\n        {\n            \"competition_id\": \"9a9b1ee7-6949-46e4-8a14-d6b3620913cd\",\n            \"sr_competition_id\": \"sr:competition:1250\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CAF Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a9ab1e0-d545-44a9-8cd4-4d947f1af1a7\",\n            \"sr_competition_id\": \"sr:competition:1388\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie D, Group H\"\n        },\n        {\n            \"competition_id\": \"9a94a909-863c-4e1a-a75b-03fa56833f16\",\n            \"sr_competition_id\": \"sr:competition:856\",\n            \"country\": \"International Youth\",\n            \"name\": \"U19 Friendly Games\"\n        },\n        {\n            \"competition_id\": \"9a94c2d9-1dd3-4ea1-b5fc-74cc705e05de\",\n            \"sr_competition_id\": \"sr:competition:1542\",\n            \"country\": \"Gibraltar\",\n            \"name\": \"National League\"\n        },\n        {\n            \"competition_id\": \"9a94aa0a-fdb8-4173-ac78-33c86e52381e\",\n            \"sr_competition_id\": \"sr:competition:1024\",\n            \"country\": \"Argentina\",\n            \"name\": \"Copa Argentina\"\n        },\n        {\n            \"competition_id\": \"9f74179f-50af-4009-81d5-338bc5433c46\",\n            \"sr_competition_id\": \"sr:competition:47990\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Copa do Nordeste\"\n        },\n        {\n            \"competition_id\": \"9ea41bf5-d096-4643-a79c-20bbea852c5b\",\n            \"sr_competition_id\": \"sr:competition:46716\",\n            \"country\": \"Australia\",\n            \"name\": \"Tasmania Northern Championship\"\n        },\n        {\n            \"competition_id\": \"9b8a5f19-d751-4dd8-9338-241c3d5845ea\",\n            \"sr_competition_id\": \"sr:competition:33692\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 AFC Asian Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c87e-98fb-4691-b520-6d851bfba06a\",\n            \"sr_competition_id\": \"sr:competition:13685\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Brasileiro Serie A\"\n        },\n        {\n            \"competition_id\": \"9a94807b-7b49-466f-9e38-4fbbee9ecfc3\",\n            \"sr_competition_id\": \"sr:competition:26032\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 8\"\n        },\n        {\n            \"competition_id\": \"9a94c897-3bf4-4ce6-ab1e-7b02736bcd61\",\n            \"sr_competition_id\": \"sr:competition:25867\",\n            \"country\": \"Uganda\",\n            \"name\": \"Super 8\"\n        },\n        {\n            \"competition_id\": \"9a94aa1d-3414-438c-976e-9234b934ebc9\",\n            \"sr_competition_id\": \"sr:competition:2344\",\n            \"country\": \"Palestine\",\n            \"name\": \"Gaza Strip Premier League\"\n        },\n        {\n            \"competition_id\": \"9f9d8e02-0585-45e8-8a84-7e43517ac8d7\",\n            \"sr_competition_id\": \"sr:competition:1774\",\n            \"country\": \"India\",\n            \"name\": \"Calcutta Premier Div.\"\n        },\n        {\n            \"competition_id\": \"9a94aa15-9803-44e7-93d0-54e722f00bd2\",\n            \"sr_competition_id\": \"sr:competition:1238\",\n            \"country\": \"Colombia\",\n            \"name\": \"Primera B\"\n        },\n        {\n            \"competition_id\": \"9a947f0a-894a-4c14-a4d0-f7e703c57211\",\n            \"sr_competition_id\": \"sr:competition:709\",\n            \"country\": \"Azerbaijan\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9f738fad-2a88-4e1e-b9ae-be2e5e2007aa\",\n            \"sr_competition_id\": \"sr:competition:47530\",\n            \"country\": \"International\",\n            \"name\": \"ASEAN Championship, Women\"\n        },\n        {\n            \"competition_id\": \"9eb068da-5cc9-4ccb-b0da-3e45c0e533d8\",\n            \"sr_competition_id\": \"sr:competition:46758\",\n            \"country\": \"Paraguay\",\n            \"name\": \"Campeonato Femenino, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c2a1-f7b3-4693-889d-b90d61f0aea3\",\n            \"sr_competition_id\": \"sr:competition:674\",\n            \"country\": \"Faroe Islands\",\n            \"name\": \"1st deild\"\n        },\n        {\n            \"competition_id\": \"9f6fca24-15ed-405c-a2c6-b97a19bb50af\",\n            \"sr_competition_id\": \"sr:competition:47952\",\n            \"country\": \"Hungary\",\n            \"name\": \"NB III\"\n        },\n        {\n            \"competition_id\": \"9a94aa0b-864d-42dd-9506-7d08da238c37\",\n            \"sr_competition_id\": \"sr:competition:24864\",\n            \"country\": \"Spain\",\n            \"name\": \"Copa de SM La Reina\"\n        },\n        {\n            \"competition_id\": \"9f9f7763-d577-4091-8bc0-c107cff11e03\",\n            \"sr_competition_id\": \"sr:competition:44425\",\n            \"country\": \"Scotland\",\n            \"name\": \"Premier League 2, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7bc0a-b08f-45ba-a664-6f972e8c1077\",\n            \"sr_competition_id\": \"sr:competition:1018\",\n            \"country\": \"International\",\n            \"name\": \"Cyprus Women Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7bcd1-2046-47a1-ace1-cc7aa9dcf753\",\n            \"sr_competition_id\": \"sr:competition:775\",\n            \"country\": \"Belarus\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9f14ee1f-bb75-44eb-9856-13d62882efc2\",\n            \"sr_competition_id\": \"sr:competition:489\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga NOFV\"\n        },\n        {\n            \"competition_id\": \"9ad4ae13-d759-4bfc-9dcb-9311e5aef266\",\n            \"sr_competition_id\": \"sr:competition:41935\",\n            \"country\": \"Argentina\",\n            \"name\": \"Trofeo de Campeones, Reserves\"\n        },\n        {\n            \"competition_id\": \"9ad7ae76-1cdd-4bc7-bafc-6ce17d991e11\",\n            \"sr_competition_id\": \"sr:competition:19870\",\n            \"country\": \"Iran\",\n            \"name\": \"Hazfi Cup\"\n        },\n        {\n            \"competition_id\": \"9ed32900-9650-4f99-9ec7-68037ebc001f\",\n            \"sr_competition_id\": \"sr:competition:46651\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Mineiro, 1. Divisao\"\n        },\n        {\n            \"competition_id\": \"9abaa0a5-1fdf-4843-bf32-592507075274\",\n            \"sr_competition_id\": \"sr:competition:633\",\n            \"country\": \"Malta\",\n            \"name\": \"FA Trophy\"\n        },\n        {\n            \"competition_id\": \"9a94ac1e-abf3-49f4-9174-44eab0bd7c35\",\n            \"sr_competition_id\": \"sr:competition:737\",\n            \"country\": \"San Marino\",\n            \"name\": \"Coppa Titano\"\n        },\n        {\n            \"competition_id\": \"9a947f05-3f9f-48e1-826e-3624b4f03664\",\n            \"sr_competition_id\": \"sr:competition:27767\",\n            \"country\": \"Costa Rica\",\n            \"name\": \"Liga de Ascenso, Apertura\"\n        },\n        {\n            \"competition_id\": \"9ad7b010-7108-4f9e-ae14-d5fc76b8ee4a\",\n            \"sr_competition_id\": \"sr:competition:24662\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Regionalliga Playoffs\"\n        },\n        {\n            \"competition_id\": \"9cca4f34-283a-4bb0-adec-f6c2155e98fc\",\n            \"sr_competition_id\": \"sr:competition:43371\",\n            \"country\": \"Belgium\",\n            \"name\": \"Nationale 1 VV\"\n        },\n        {\n            \"competition_id\": \"9a94aa13-1b9e-468e-9276-df4e2da238ca\",\n            \"sr_competition_id\": \"sr:competition:1006\",\n            \"country\": \"Cameroon\",\n            \"name\": \"Elite One\"\n        },\n        {\n            \"competition_id\": \"9a94aa24-7d18-4196-babe-456dc5f18bb0\",\n            \"sr_competition_id\": \"sr:competition:1091\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Bayernliga South\"\n        },\n        {\n            \"competition_id\": \"9ad7ac6d-8a97-4741-85d9-9ff37174fe5d\",\n            \"sr_competition_id\": \"sr:competition:36943\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga, Playoffs\"\n        },\n        {\n            \"competition_id\": \"9a94c9d6-c57a-4fd3-a250-99c28f4c2301\",\n            \"sr_competition_id\": \"sr:competition:718\",\n            \"country\": \"North Macedonia\",\n            \"name\": \"2. MFL\"\n        },\n        {\n            \"competition_id\": \"9a94aa3d-f894-44df-b2ab-e260a7426da5\",\n            \"sr_competition_id\": \"sr:competition:19724\",\n            \"country\": \"Bahrain\",\n            \"name\": \"First Division\"\n        },\n        {\n            \"competition_id\": \"9fb68f88-2f71-408b-9099-b8802ff7577a\",\n            \"sr_competition_id\": \"sr:competition:48335\",\n            \"country\": \"Brazil\",\n            \"name\": \"Goiano, 3. Divisao\"\n        },\n        {\n            \"competition_id\": \"9a94c2f2-cc3b-4506-b460-18cb23b08d2b\",\n            \"sr_competition_id\": \"sr:competition:18270\",\n            \"country\": \"Australia\",\n            \"name\": \"Queensland NPL, Women\"\n        },\n        {\n            \"competition_id\": \"9a9a31e1-1602-4d98-8149-5b5c6dae8c4c\",\n            \"sr_competition_id\": \"sr:competition:209\",\n            \"country\": \"Scotland\",\n            \"name\": \"League 2\"\n        },\n        {\n            \"competition_id\": \"9a948070-b538-4fc2-bbd8-594a9d1ce035\",\n            \"sr_competition_id\": \"sr:competition:27725\",\n            \"country\": \"England Amateur\",\n            \"name\": \"FA Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa13-96f6-4623-a8af-59336a4f7d9f\",\n            \"sr_competition_id\": \"sr:competition:1131\",\n            \"country\": \"England Amateur\",\n            \"name\": \"Isthmian League, Pr. Div\"\n        },\n        {\n            \"competition_id\": \"9a94ac62-8b32-4cdd-94a6-2542dd81e136\",\n            \"sr_competition_id\": \"sr:competition:824\",\n            \"country\": \"Italy\",\n            \"name\": \"Coppa Italia Serie C\"\n        },\n        {\n            \"competition_id\": \"9ad7e04e-3165-424c-a10e-a048dc02446a\",\n            \"sr_competition_id\": \"sr:competition:36571\",\n            \"country\": \"International\",\n            \"name\": \"Copa America, Women\"\n        },\n        {\n            \"competition_id\": \"9f916037-595c-4049-bfac-a7f919a18d3a\",\n            \"sr_competition_id\": \"sr:competition:48179\",\n            \"country\": \"Norway\",\n            \"name\": \"U19 Nasjonal\"\n        },\n        {\n            \"competition_id\": \"9ad7c2cf-24c4-4e4a-b17e-638edb4af8a9\",\n            \"sr_competition_id\": \"sr:competition:19278\",\n            \"country\": \"International Youth\",\n            \"name\": \"U22 Southeast Asian Games\"\n        },\n        {\n            \"competition_id\": \"9a947f00-22ef-46de-81b9-de0ed5190572\",\n            \"sr_competition_id\": \"sr:competition:19248\",\n            \"country\": \"Myanmar\",\n            \"name\": \"National League\"\n        },\n        {\n            \"competition_id\": \"9ad7abc9-e27b-4de5-9570-0db838314e8a\",\n            \"sr_competition_id\": \"sr:competition:18464\",\n            \"country\": \"Argentina\",\n            \"name\": \"Primera Division, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f03-5587-43e8-8ff4-1db7b86b0889\",\n            \"sr_competition_id\": \"sr:competition:33980\",\n            \"country\": \"Bolivia\",\n            \"name\": \"Division Profesional\"\n        },\n        {\n            \"competition_id\": \"9b94ae47-3611-45db-942e-62fe741130b7\",\n            \"sr_competition_id\": \"sr:competition:878\",\n            \"country\": \"International\",\n            \"name\": \"Womens Euro, Qualif.\"\n        },\n        {\n            \"competition_id\": \"9f149f57-f346-4985-8fe3-c4d4cdb2f4a3\",\n            \"sr_competition_id\": \"sr:competition:47279\",\n            \"country\": \"Russia\",\n            \"name\": \"Super Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa45-e87e-426f-924b-3a51f0848d18\",\n            \"sr_competition_id\": \"sr:competition:23551\",\n            \"country\": \"Iran\",\n            \"name\": \"Azadegan League\"\n        },\n        {\n            \"competition_id\": \"9a947f0b-5ee0-4c3f-904d-ba66e78130a8\",\n            \"sr_competition_id\": \"sr:competition:40663\",\n            \"country\": \"Argentina\",\n            \"name\": \"Copa de la Liga, Women\"\n        },\n        {\n            \"competition_id\": \"9e8872eb-5a78-403e-a5f0-5370633d6105\",\n            \"sr_competition_id\": \"sr:competition:46587\",\n            \"country\": \"Sweden Amateur\",\n            \"name\": \"U21 Ligacupen Elit\"\n        },\n        {\n            \"competition_id\": \"9ad7aca2-62b4-47bf-8e3a-6de4f9511100\",\n            \"sr_competition_id\": \"sr:competition:2374\",\n            \"country\": \"International Youth\",\n            \"name\": \"U23 WAFF Championship\"\n        },\n        {\n            \"competition_id\": \"9ad7bba6-edca-4af8-aaec-3755fb0f5666\",\n            \"sr_competition_id\": \"sr:competition:27765\",\n            \"country\": \"Costa Rica\",\n            \"name\": \"Liga de Ascenso, Clausura\"\n        },\n        {\n            \"competition_id\": \"9a947f16-dee3-401c-a9f1-6ec4c6880d5f\",\n            \"sr_competition_id\": \"sr:competition:40471\",\n            \"country\": \"Slovakia\",\n            \"name\": \"3. Liga, West\"\n        },\n        {\n            \"competition_id\": \"9a947f05-5c4c-43c4-acaa-3b55734d4b99\",\n            \"sr_competition_id\": \"sr:competition:34990\",\n            \"country\": \"Netherlands\",\n            \"name\": \"U21, Divisie 1\"\n        },\n        {\n            \"competition_id\": \"9af1d952-9815-483d-a8a9-71d96ad35143\",\n            \"sr_competition_id\": \"sr:competition:505\",\n            \"country\": \"Turkiye\",\n            \"name\": \"Super Kupa\"\n        },\n        {\n            \"competition_id\": \"9a947f13-6378-4952-95d7-6005e6994b07\",\n            \"sr_competition_id\": \"sr:competition:809\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"A-Junioren-Bundesliga N/N-E\"\n        },\n        {\n            \"competition_id\": \"9a947f15-a388-4a82-97d1-0e39e200a89c\",\n            \"sr_competition_id\": \"sr:competition:40733\",\n            \"country\": \"Czechia\",\n            \"name\": \"Divize D\"\n        },\n        {\n            \"competition_id\": \"9ad7d92c-0b6b-4db7-99d3-e7a4bbe90104\",\n            \"sr_competition_id\": \"sr:competition:36497\",\n            \"country\": \"International\",\n            \"name\": \"CONMEBOL UEFA Cup of Champions\"\n        },\n        {\n            \"competition_id\": \"9f55b8c2-8665-416e-af3f-17a0f743bb96\",\n            \"sr_competition_id\": \"sr:competition:47532\",\n            \"country\": \"Brazil\",\n            \"name\": \"Catarinense, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7bdf7-af80-43e8-92a7-e69c998d48bb\",\n            \"sr_competition_id\": \"sr:competition:27747\",\n            \"country\": \"Brazil\",\n            \"name\": \"Mato-Grossense, 1. Divisao\"\n        },\n        {\n            \"competition_id\": \"9f0713f2-a5e3-48c9-b587-14ef11b12946\",\n            \"sr_competition_id\": \"sr:competition:47195\",\n            \"country\": \"Mexico\",\n            \"name\": \"Campeon de Campeones Liga Expansion MX\"\n        },\n        {\n            \"competition_id\": \"9fa87aaf-b0cf-42ba-baa7-fb89d29f5d4b\",\n            \"sr_competition_id\": \"sr:competition:48333\",\n            \"country\": \"Brazil\",\n            \"name\": \"Paranaense, 3. Divisao\"\n        },\n        {\n            \"competition_id\": \"9abbec3f-a3dc-43e1-aff3-376ee682d60c\",\n            \"sr_competition_id\": \"sr:competition:34228\",\n            \"country\": \"USA\",\n            \"name\": \"NCAA Division I National Championship\"\n        },\n        {\n            \"competition_id\": \"9ad7f198-e1d0-4082-9925-8e3fabe67e6a\",\n            \"sr_competition_id\": \"sr:competition:31699\",\n            \"country\": \"Brazil\",\n            \"name\": \"Supercopa do Brasil\"\n        },\n        {\n            \"competition_id\": \"9a947f08-341a-475b-9c40-e9544abf8f1f\",\n            \"sr_competition_id\": \"sr:competition:1894\",\n            \"country\": \"Australia\",\n            \"name\": \"A-League, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7ad48-f22a-4f35-9ee5-0feffd8c9304\",\n            \"sr_competition_id\": \"sr:competition:2438\",\n            \"country\": \"International\",\n            \"name\": \"SAFF Championship\"\n        },\n        {\n            \"competition_id\": \"9a947f1b-7324-42a3-baad-2c212d136958\",\n            \"sr_competition_id\": \"sr:competition:26386\",\n            \"country\": \"Turkiye Amateur\",\n            \"name\": \"3. Lig, Group 1\"\n        },\n        {\n            \"competition_id\": \"9a94ac47-fb69-44f1-868c-8c613439b1a7\",\n            \"sr_competition_id\": \"sr:competition:217\",\n            \"country\": \"Germany\",\n            \"name\": \"DFB Pokal\"\n        },\n        {\n            \"competition_id\": \"9a947f1a-13e1-4666-ab6a-696b5e55faf1\",\n            \"sr_competition_id\": \"sr:competition:1365\",\n            \"country\": \"Poland\",\n            \"name\": \"CLJ\"\n        },\n        {\n            \"competition_id\": \"9ad7ab72-a9ed-4461-aa9c-ba1566079e63\",\n            \"sr_competition_id\": \"sr:competition:453\",\n            \"country\": \"International Youth\",\n            \"name\": \"U20 World Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7fda8-2b4a-4a15-b6b1-ef95cdbf8999\",\n            \"sr_competition_id\": \"sr:competition:27999\",\n            \"country\": \"Uruguay\",\n            \"name\": \"Supercopa Uruguaya\"\n        },\n        {\n            \"competition_id\": \"9a94c862-693d-4213-89e2-60df157338d0\",\n            \"sr_competition_id\": \"sr:competition:195\",\n            \"country\": \"Ireland\",\n            \"name\": \"FAI Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f0a-8115-43fb-a2f5-ae89effc2d3f\",\n            \"sr_competition_id\": \"sr:competition:40387\",\n            \"country\": \"Mexico\",\n            \"name\": \"U23 Liga MX\"\n        },\n        {\n            \"competition_id\": \"9a9aa1de-df77-4a30-a434-1e18872d846e\",\n            \"sr_competition_id\": \"sr:competition:39789\",\n            \"country\": \"Brazil\",\n            \"name\": \"Baiano, Serie B\"\n        },\n        {\n            \"competition_id\": \"9bc91ab7-1463-45ee-bdc2-c6be15a9699b\",\n            \"sr_competition_id\": \"sr:competition:26912\",\n            \"country\": \"Chinese Taipei\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a94ac45-6f6f-4514-83a9-5279d6a45cc2\",\n            \"sr_competition_id\": \"sr:competition:328\",\n            \"country\": \"Italy\",\n            \"name\": \"Coppa Italia\"\n        },\n        {\n            \"competition_id\": \"9a94ac3b-827f-41ba-b764-0ee6ef39b358\",\n            \"sr_competition_id\": \"sr:competition:1386\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie D, Group G\"\n        },\n        {\n            \"competition_id\": \"9f6bf670-dacc-4e37-8806-61c5bed968b1\",\n            \"sr_competition_id\": \"sr:competition:43803\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Steiermark, Landesliga\"\n        },\n        {\n            \"competition_id\": \"9a94c8bd-ce11-4e56-9b76-d5d45584120d\",\n            \"sr_competition_id\": \"sr:competition:1221\",\n            \"country\": \"Chile\",\n            \"name\": \"Copa Chile\"\n        },\n        {\n            \"competition_id\": \"9a9f5f2f-a297-44d9-be9b-b36c57ee32c0\",\n            \"sr_competition_id\": \"sr:competition:740\",\n            \"country\": \"Azerbaijan\",\n            \"name\": \"Azerbaijan Cup\"\n        },\n        {\n            \"competition_id\": \"9f214782-9a13-4b11-85a6-50405975415d\",\n            \"sr_competition_id\": \"sr:competition:19240\",\n            \"country\": \"Uzbekistan\",\n            \"name\": \"Cup\"\n        },\n        {\n            \"competition_id\": \"9ed81af8-e018-49e6-9083-6fa772803010\",\n            \"sr_competition_id\": \"sr:competition:46949\",\n            \"country\": \"Greece\",\n            \"name\": \"Super League 2 Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a9aa1c9-78d8-486b-be46-b566d34271e9\",\n            \"sr_competition_id\": \"sr:competition:39761\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Gaucho, Serie A1\"\n        },\n        {\n            \"competition_id\": \"9ad7c0f2-9f11-4c71-aba6-151f9e1b2183\",\n            \"sr_competition_id\": \"sr:competition:27362\",\n            \"country\": \"International\",\n            \"name\": \"World Cup Qualification, Women, Inter-Confederation Playoffs\"\n        },\n        {\n            \"competition_id\": \"9a947f04-4a9e-482a-9b38-30e349840a58\",\n            \"sr_competition_id\": \"sr:competition:37635\",\n            \"country\": \"Burundi\",\n            \"name\": \"Ligue A\"\n        },\n        {\n            \"competition_id\": \"9a94aa40-4846-4e6e-bac5-ba69ed713840\",\n            \"sr_competition_id\": \"sr:competition:336\",\n            \"country\": \"Portugal\",\n            \"name\": \"Taca de Portugal\"\n        },\n        {\n            \"competition_id\": \"9a947f02-7aab-4400-9fc3-da7f3c91c380\",\n            \"sr_competition_id\": \"sr:competition:724\",\n            \"country\": \"Croatia\",\n            \"name\": \"Prva NL\"\n        },\n        {\n            \"competition_id\": \"9a94c312-12d5-4e43-a4d7-dbcd2517cb5d\",\n            \"sr_competition_id\": \"sr:competition:738\",\n            \"country\": \"San Marino\",\n            \"name\": \"Campionato Sammarinese\"\n        },\n        {\n            \"competition_id\": \"019902c9-db03-7249-8833-d0f2e7873398\",\n            \"sr_competition_id\": \"sr:competition:48543\",\n            \"country\": \"Ghana\",\n            \"name\": \"Champion of Champions\"\n        },\n        {\n            \"competition_id\": \"9a94c805-718d-4095-8206-7b8bfda1850f\",\n            \"sr_competition_id\": \"sr:competition:16904\",\n            \"country\": \"Australia\",\n            \"name\": \"Victoria NPL, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa18-e55a-4c4c-961b-4b939f5ba1c5\",\n            \"sr_competition_id\": \"sr:competition:295\",\n            \"country\": \"International\",\n            \"name\": \"World Cup Qualification, CONMEBOL\"\n        },\n        {\n            \"competition_id\": \"9a94aa45-b5c2-4c2b-8748-5f07ec0ba530\",\n            \"sr_competition_id\": \"sr:competition:1696\",\n            \"country\": \"England\",\n            \"name\": \"FA Cup, Qualification\"\n        },\n        {\n            \"competition_id\": \"9a947f1b-c5e2-42a6-8362-e13bbc55452b\",\n            \"sr_competition_id\": \"sr:competition:742\",\n            \"country\": \"Andorra\",\n            \"name\": \"Primera Divisio\"\n        },\n        {\n            \"competition_id\": \"9ad7c2a8-e3a0-49c7-8fc1-e32965e7c8a8\",\n            \"sr_competition_id\": \"sr:competition:25657\",\n            \"country\": \"Kuwait\",\n            \"name\": \"Emir Cup\"\n        },\n        {\n            \"competition_id\": \"9fa1faa5-1515-4c6a-8580-68daffedbb69\",\n            \"sr_competition_id\": \"sr:competition:48313\",\n            \"country\": \"United Arab Emirates\",\n            \"name\": \"U23 Pro League\"\n        },\n        {\n            \"competition_id\": \"9f6df92f-cdaa-4ba7-8c3b-329303b77ac7\",\n            \"sr_competition_id\": \"sr:competition:47656\",\n            \"country\": \"Bulgaria\",\n            \"name\": \"Treta Liga\"\n        },\n        {\n            \"competition_id\": \"9a94c247-4c7c-4852-8927-19b4171e11c4\",\n            \"sr_competition_id\": \"sr:competition:26006\",\n            \"country\": null,\n            \"name\": \"Asian Games, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f19-1466-4851-8d81-a64d801f8d23\",\n            \"sr_competition_id\": \"sr:competition:1099\",\n            \"country\": \"Russia\",\n            \"name\": \"2. Liga, Division B, Group 2\"\n        },\n        {\n            \"competition_id\": \"9a94ac39-99dc-443c-bb8d-2ffb78883130\",\n            \"sr_competition_id\": \"sr:competition:1376\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie D, Group B\"\n        },\n        {\n            \"competition_id\": \"9a94c828-1387-47d5-b214-be7ece67af22\",\n            \"sr_competition_id\": \"sr:competition:35795\",\n            \"country\": \"Brazil\",\n            \"name\": \"Paulista, Serie A4 U23\"\n        },\n        {\n            \"competition_id\": \"9ad7c2ea-9bba-4480-916f-89cc0b9dc67b\",\n            \"sr_competition_id\": \"sr:competition:39829\",\n            \"country\": \"International Youth\",\n            \"name\": \"U19 FIFA Youth Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7c177-4b4b-4d3e-bb97-2e2862a27017\",\n            \"sr_competition_id\": \"sr:competition:2511\",\n            \"country\": \"China\",\n            \"name\": \"FA Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa0e-fe03-423f-804f-9965dde1021f\",\n            \"sr_competition_id\": \"sr:competition:15281\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Paulista\"\n        },\n        {\n            \"competition_id\": \"9f96c028-5dee-40c7-a67e-260a3a16cbd6\",\n            \"sr_competition_id\": \"sr:competition:48181\",\n            \"country\": \"Denmark\",\n            \"name\": \"U19 Ligaen\"\n        },\n        {\n            \"competition_id\": \"9a94ac13-e05b-4616-a0ad-5c71c1127688\",\n            \"sr_competition_id\": \"sr:competition:39821\",\n            \"country\": \"International\",\n            \"name\": \"UEFA Nations League, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f11-33ec-4206-9031-95d1ee8f1b37\",\n            \"sr_competition_id\": \"sr:competition:19224\",\n            \"country\": \"Hong Kong, China\",\n            \"name\": \"1. Division\"\n        },\n        {\n            \"competition_id\": \"9eb043a5-5742-490d-a1e9-43efe3d127e1\",\n            \"sr_competition_id\": \"sr:competition:42695\",\n            \"country\": \"USA\",\n            \"name\": \"USL Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c78a-829a-4c6a-9814-462a90379523\",\n            \"sr_competition_id\": \"sr:competition:40511\",\n            \"country\": \"India\",\n            \"name\": \"Durand Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7c553-ef74-4c7d-9d95-b9f4d73034f5\",\n            \"sr_competition_id\": \"sr:competition:2053\",\n            \"country\": \"Lebanon\",\n            \"name\": \"Lebanon Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7ad21-34cf-4d7a-9bb7-ded84e31f820\",\n            \"sr_competition_id\": \"sr:competition:17504\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Playoffs\"\n        },\n        {\n            \"competition_id\": \"9ad7c2b1-9838-460c-b603-b1e3dcc79b19\",\n            \"sr_competition_id\": \"sr:competition:31965\",\n            \"country\": \"Egypt\",\n            \"name\": \"Supercup\"\n        },\n        {\n            \"competition_id\": \"9a947f0c-1ca4-409d-95bc-7bcf18491bdc\",\n            \"sr_competition_id\": \"sr:competition:25839\",\n            \"country\": \"Poland\",\n            \"name\": \"III Liga, Group 3\"\n        },\n        {\n            \"competition_id\": \"9a947f01-ee27-45ff-bfb9-4184226a002c\",\n            \"sr_competition_id\": \"sr:competition:19232\",\n            \"country\": \"Thailand\",\n            \"name\": \"Thai League 2\"\n        },\n        {\n            \"competition_id\": \"019905b8-9bf3-70bf-9fb9-ee7788abb4ca\",\n            \"sr_competition_id\": \"sr:competition:48515\",\n            \"country\": \"Singapore\",\n            \"name\": \"Premier League 2\"\n        },\n        {\n            \"competition_id\": \"9a94aa0c-eb37-41c9-9115-3b6c439ccc09\",\n            \"sr_competition_id\": \"sr:competition:308\",\n            \"country\": \"International\",\n            \"name\": \"AFC Asian Qualifiers 2026\"\n        },\n        {\n            \"competition_id\": \"9a94aa2d-2ccd-44ad-985b-08c6df0b0a63\",\n            \"sr_competition_id\": \"sr:competition:28163\",\n            \"country\": \"USA\",\n            \"name\": \"USL Championship\"\n        },\n        {\n            \"competition_id\": \"9b5ca985-296f-4283-9bd7-36e86816921d\",\n            \"sr_competition_id\": \"sr:competition:41941\",\n            \"country\": \"International\",\n            \"name\": \"Gold Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7c2ef-15c7-47ae-9ea4-b691361e6192\",\n            \"sr_competition_id\": \"sr:competition:917\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 European Women's Championship\"\n        },\n        {\n            \"competition_id\": \"9a94c2e3-7494-441d-9776-9e6fb0495f04\",\n            \"sr_competition_id\": \"sr:competition:686\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"DFB Pokal Women\"\n        },\n        {\n            \"competition_id\": \"9a947eff-472e-441e-96e1-b4a3a0c7c0b1\",\n            \"sr_competition_id\": \"sr:competition:13635\",\n            \"country\": \"Russia\",\n            \"name\": \"Superleague, Women\"\n        },\n        {\n            \"competition_id\": \"9a94abec-b492-4d62-b977-c10aac8e0ecd\",\n            \"sr_competition_id\": \"sr:competition:771\",\n            \"country\": \"Vietnam\",\n            \"name\": \"V-League 2\"\n        },\n        {\n            \"competition_id\": \"9a94aa66-2d13-4ac8-9024-a370014e0bbe\",\n            \"sr_competition_id\": \"sr:competition:406\",\n            \"country\": \"Peru\",\n            \"name\": \"Liga 1\"\n        },\n        {\n            \"competition_id\": \"9a94abec-4a80-4242-94c3-a2874b421892\",\n            \"sr_competition_id\": \"sr:competition:629\",\n            \"country\": \"Malta\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9ad7c1e8-9c75-4769-9a1d-69571b73b6f2\",\n            \"sr_competition_id\": \"sr:competition:31789\",\n            \"country\": \"International\",\n            \"name\": \"Tournoi de France, Women\"\n        },\n        {\n            \"competition_id\": \"9a94ac9f-f404-43e3-a4a6-3eb84f8d0cc0\",\n            \"sr_competition_id\": \"sr:competition:1339\",\n            \"country\": \"Hungary\",\n            \"name\": \"NB II\"\n        },\n        {\n            \"competition_id\": \"9a94ac05-c6df-4747-8618-0cecc6d4e313\",\n            \"sr_competition_id\": \"sr:competition:26554\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie C, Group A\"\n        },\n        {\n            \"competition_id\": \"9a9a297e-4747-4f92-b301-bff6172ec015\",\n            \"sr_competition_id\": \"sr:competition:14800\",\n            \"country\": \"International Clubs\",\n            \"name\": \"Florida Cup\"\n        },\n        {\n            \"competition_id\": \"019932a4-a2f2-7293-bea4-13cb594d17e4\",\n            \"sr_competition_id\": \"sr:competition:48721\",\n            \"country\": \"Brazil\",\n            \"name\": \"Sergipano, Serie A2\"\n        },\n        {\n            \"competition_id\": \"9a947f1c-0ade-46d2-82d2-9d27a52e160b\",\n            \"sr_competition_id\": \"sr:competition:20226\",\n            \"country\": \"Greece\",\n            \"name\": \"Super League, Women\"\n        },\n        {\n            \"competition_id\": \"9adb306f-0d5b-4d3f-aebd-7d8b39d44384\",\n            \"sr_competition_id\": \"sr:competition:32041\",\n            \"country\": \"Tunisia\",\n            \"name\": \"Supercoupe\"\n        },\n        {\n            \"competition_id\": \"9ad7c114-b1ae-4f15-b2d5-1c327cde291f\",\n            \"sr_competition_id\": \"sr:competition:381\",\n            \"country\": \"Brazil\",\n            \"name\": \"Goiano\"\n        },\n        {\n            \"competition_id\": \"9a94c2a4-5ae6-4379-b195-68fed7d8417f\",\n            \"sr_competition_id\": \"sr:competition:675\",\n            \"country\": \"Iceland\",\n            \"name\": \"1. deild\"\n        },\n        {\n            \"competition_id\": \"9a94aa28-f0ae-4fbc-85b2-2ac7b87ae645\",\n            \"sr_competition_id\": \"sr:competition:19492\",\n            \"country\": \"Egypt\",\n            \"name\": \"2. Division A\"\n        },\n        {\n            \"competition_id\": \"9a947f08-9181-4609-a90b-62501a5d62c8\",\n            \"sr_competition_id\": \"sr:competition:26176\",\n            \"country\": \"USA\",\n            \"name\": \"NCAA, Regular Season\"\n        },\n        {\n            \"competition_id\": \"9ac3d571-9ecb-4026-aae2-d2d485e7bc27\",\n            \"sr_competition_id\": \"sr:competition:1\",\n            \"country\": \"International\",\n            \"name\": \"UEFA Euro\"\n        },\n        {\n            \"competition_id\": \"9a94aa6b-ba67-44ab-b0f0-d4c8b539a179\",\n            \"sr_competition_id\": \"sr:competition:668\",\n            \"country\": \"International Clubs\",\n            \"name\": \"AFC Champions League Two\"\n        },\n        {\n            \"competition_id\": \"9ad7f14a-3d5c-4cf3-bb6e-6e19d74a8d6a\",\n            \"sr_competition_id\": \"sr:competition:213\",\n            \"country\": \"Spain\",\n            \"name\": \"Supercopa\"\n        },\n        {\n            \"competition_id\": \"9a947f00-1db2-4d2c-b839-53c625131889\",\n            \"sr_competition_id\": \"sr:competition:736\",\n            \"country\": \"Azerbaijan\",\n            \"name\": \"First Division\"\n        },\n        {\n            \"competition_id\": \"9a94aa6c-9382-410d-bf49-4faa28084ebd\",\n            \"sr_competition_id\": \"sr:competition:40983\",\n            \"country\": \"International Clubs\",\n            \"name\": \"African Football League\"\n        },\n        {\n            \"competition_id\": \"9a947f08-76fe-4f3a-836a-88bc2d17c364\",\n            \"sr_competition_id\": \"sr:competition:1772\",\n            \"country\": \"Republic of Korea\",\n            \"name\": \"WK-League\"\n        },\n        {\n            \"competition_id\": \"9ad7de79-f3b9-4abd-b633-3cc6923b1c0b\",\n            \"sr_competition_id\": \"sr:competition:622\",\n            \"country\": \"International\",\n            \"name\": \"Gulf Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7dcbf-ba3b-4270-95dd-bd8559922112\",\n            \"sr_competition_id\": \"sr:competition:16\",\n            \"country\": \"International\",\n            \"name\": \"World Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f08-2384-43b8-b4e9-efc7cbffc271\",\n            \"sr_competition_id\": \"sr:competition:34590\",\n            \"country\": \"Japan\",\n            \"name\": \"WE League, Women\"\n        },\n        {\n            \"competition_id\": \"9c7439f1-c41a-443f-a4a5-347d367e5cc4\",\n            \"sr_competition_id\": \"sr:competition:43189\",\n            \"country\": \"International Clubs\",\n            \"name\": \"NWSL x Liga MX Summer Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7b08e-6c75-4c1c-bf81-ee6b2652c188\",\n            \"sr_competition_id\": \"sr:competition:800\",\n            \"country\": \"Croatia\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c22b-fb01-4bef-b116-2e23489c0920\",\n            \"sr_competition_id\": \"sr:competition:1254\",\n            \"country\": \"Paraguay\",\n            \"name\": \"Segunda Division\"\n        },\n        {\n            \"competition_id\": \"9a94aa52-9e99-49e7-a986-bc051e2a6241\",\n            \"sr_competition_id\": \"sr:competition:27396\",\n            \"country\": \"Guatemala\",\n            \"name\": \"Liga Nacional. Apertura\"\n        },\n        {\n            \"competition_id\": \"9a947f11-cd33-43bb-85a1-77fe7769c3e2\",\n            \"sr_competition_id\": \"sr:competition:19202\",\n            \"country\": \"Italy\",\n            \"name\": \"Primavera 2\"\n        },\n        {\n            \"competition_id\": \"9a947f0c-f421-449f-a462-c7237ed70d85\",\n            \"sr_competition_id\": \"sr:competition:210\",\n            \"country\": \"Serbia\",\n            \"name\": \"Superliga\"\n        },\n        {\n            \"competition_id\": \"9a94c26c-4735-4434-839f-88c988d7ea39\",\n            \"sr_competition_id\": \"sr:competition:38\",\n            \"country\": \"Belgium\",\n            \"name\": \"Pro League\"\n        },\n        {\n            \"competition_id\": \"9e9883be-38ff-47b6-9ff4-8ba1777039d6\",\n            \"sr_competition_id\": \"sr:competition:19494\",\n            \"country\": \"Malawi\",\n            \"name\": \"Super League\"\n        },\n        {\n            \"competition_id\": \"9ad7fa86-be35-45e6-80e4-9b7ab9761bf1\",\n            \"sr_competition_id\": \"sr:competition:31787\",\n            \"country\": \"Ecuador\",\n            \"name\": \"Supercopa\"\n        },\n        {\n            \"competition_id\": \"9a94c229-e7aa-4426-be98-56955f3b5f24\",\n            \"sr_competition_id\": \"sr:competition:26174\",\n            \"country\": \"Argentina\",\n            \"name\": \"Primera C\"\n        },\n        {\n            \"competition_id\": \"9a9a296f-adee-4016-a83b-bd98cddd9a4e\",\n            \"sr_competition_id\": \"sr:competition:40055\",\n            \"country\": \"Brazil\",\n            \"name\": \"Cearense, Serie C\"\n        },\n        {\n            \"competition_id\": \"9a94ac16-05c6-4019-adcd-870282c22e03\",\n            \"sr_competition_id\": \"sr:competition:1380\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie D, Group D\"\n        },\n        {\n            \"competition_id\": \"9a947f08-3e89-46a1-8fd0-ee95bb421472\",\n            \"sr_competition_id\": \"sr:competition:410\",\n            \"country\": \"Republic of Korea\",\n            \"name\": \"K-League 1\"\n        },\n        {\n            \"competition_id\": \"01993983-4885-708d-a0f3-db1ae9b09f66\",\n            \"sr_competition_id\": \"sr:competition:48765\",\n            \"country\": \"Angola\",\n            \"name\": \"Supertaca\"\n        },\n        {\n            \"competition_id\": \"9ad4d8cf-de9c-4c2b-8f07-a3d243455ffc\",\n            \"sr_competition_id\": \"sr:competition:393\",\n            \"country\": \"Japan\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94ac3d-4b91-415c-86c4-d3481f9801ac\",\n            \"sr_competition_id\": \"sr:competition:185\",\n            \"country\": \"Greece\",\n            \"name\": \"Super League\"\n        },\n        {\n            \"competition_id\": \"9a94aa13-f59a-4ba6-85d5-94827decba25\",\n            \"sr_competition_id\": \"sr:competition:2112\",\n            \"country\": \"Nigeria\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a94c264-4b77-4eee-a019-b30caceb8a84\",\n            \"sr_competition_id\": \"sr:competition:384\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CONMEBOL Libertadores\"\n        },\n        {\n            \"competition_id\": \"9a94c28a-63a6-4de3-83a6-72cbe0cad900\",\n            \"sr_competition_id\": \"sr:competition:29918\",\n            \"country\": \"Switzerland\",\n            \"name\": \"Super League, Women\"\n        },\n        {\n            \"competition_id\": \"0198faa3-468f-701b-9065-493f1606e484\",\n            \"sr_competition_id\": \"sr:competition:48343\",\n            \"country\": \"Spain\",\n            \"name\": \"U19 Division de Honor Juvenil\"\n        },\n        {\n            \"competition_id\": \"9a947f03-26af-4354-ad40-866397e7d7fa\",\n            \"sr_competition_id\": \"sr:competition:20162\",\n            \"country\": \"Rwanda\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9b2f0a65-2d42-4bd1-88ee-527c32a0eab1\",\n            \"sr_competition_id\": \"sr:competition:42139\",\n            \"country\": \"Finland\",\n            \"name\": \"Ykkosliigacup\"\n        },\n        {\n            \"competition_id\": \"9ad7c2ac-418b-48de-a014-7ffa4331c6ba\",\n            \"sr_competition_id\": \"sr:competition:31377\",\n            \"country\": \"International\",\n            \"name\": \"Southeast Asian Games, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c2cd-b4bc-4c3b-ae68-eca7905e1f98\",\n            \"sr_competition_id\": \"sr:competition:34900\",\n            \"country\": \"Portugal\",\n            \"name\": \"Liga Portugal 3\"\n        },\n        {\n            \"competition_id\": \"9ad7df6c-5901-4a9b-b617-bc03f4be854d\",\n            \"sr_competition_id\": \"sr:competition:23803\",\n            \"country\": \"International Clubs\",\n            \"name\": \"Atlantic Cup\"\n        },\n        {\n            \"competition_id\": \"9cc41b22-164f-4752-b330-d16a62008cd0\",\n            \"sr_competition_id\": \"sr:competition:43373\",\n            \"country\": \"Belgium\",\n            \"name\": \"Nationale 1 ACFF\"\n        },\n        {\n            \"competition_id\": \"9a947f1a-7912-4846-a988-4b839c89992e\",\n            \"sr_competition_id\": \"sr:competition:97\",\n            \"country\": \"Turkiye Amateur\",\n            \"name\": \"2. Lig\"\n        },\n        {\n            \"competition_id\": \"9d70639d-0e15-4ec3-a690-c0ba561a61a7\",\n            \"sr_competition_id\": \"sr:competition:19228\",\n            \"country\": \"Qatar\",\n            \"name\": \"2. Division\"\n        },\n        {\n            \"competition_id\": \"9a94aa11-69d5-4028-a1c3-e2643d667a86\",\n            \"sr_competition_id\": \"sr:competition:41113\",\n            \"country\": \"Brazil\",\n            \"name\": \"Pernambucano, Serie A2\"\n        },\n        {\n            \"competition_id\": \"9a9a2c6d-9729-4f94-a4bd-50a9399bb9bc\",\n            \"sr_competition_id\": \"sr:competition:23785\",\n            \"country\": \"Congo\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9b1f06d2-3ee9-4ffd-8345-100642885a87\",\n            \"sr_competition_id\": \"sr:competition:33688\",\n            \"country\": \"International Youth\",\n            \"name\": \"Soccer.International Youth.U20 AFC Asian Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f10-a6f1-4c4b-9aea-b489d1933dfe\",\n            \"sr_competition_id\": \"sr:competition:692\",\n            \"country\": \"Cyprus\",\n            \"name\": \"2nd Division\"\n        },\n        {\n            \"competition_id\": \"9a94c268-cb53-4838-98c7-6f35c64400b8\",\n            \"sr_competition_id\": \"sr:competition:231\",\n            \"country\": \"Venezuela\",\n            \"name\": \"Primera Division\"\n        },\n        {\n            \"competition_id\": \"9a9a2951-18b3-4b05-9afa-291a565cab6c\",\n            \"sr_competition_id\": \"sr:competition:40053\",\n            \"country\": \"Brazil\",\n            \"name\": \"Alagoano, Serie B U23\"\n        },\n        {\n            \"competition_id\": \"9a9aa4fa-13db-449d-bc43-193a1c5f6d2e\",\n            \"sr_competition_id\": \"sr:competition:23745\",\n            \"country\": \"Malaysia\",\n            \"name\": \"FA Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa10-d639-40aa-aff2-ad1b7fdfcc9b\",\n            \"sr_competition_id\": \"sr:competition:40651\",\n            \"country\": \"Brazil\",\n            \"name\": \"Goiano, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa15-3737-4e5d-86f2-b076411cc776\",\n            \"sr_competition_id\": \"sr:competition:20178\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CONMEBOL Libertadores, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa08-10ad-49de-9895-944627a1bf59\",\n            \"sr_competition_id\": \"sr:competition:24073\",\n            \"country\": \"Jordan\",\n            \"name\": \"First Division\"\n        },\n        {\n            \"competition_id\": \"9a94c23a-406b-4bcb-abf0-b656357f703b\",\n            \"sr_competition_id\": \"sr:competition:26248\",\n            \"country\": \"Scotland\",\n            \"name\": \"Reserve League\"\n        },\n        {\n            \"competition_id\": \"9f69a626-3147-4781-b523-e3fbaa3aa717\",\n            \"sr_competition_id\": \"sr:competition:43643\",\n            \"country\": \"International Clubs\",\n            \"name\": \"Club Friendly Games, Women\"\n        },\n        {\n            \"competition_id\": \"9a94a436-f851-43a8-a408-bf53c8de9c1e\",\n            \"sr_competition_id\": \"sr:competition:26556\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie C, Group B\"\n        },\n        {\n            \"competition_id\": \"9a94aa11-bcda-489a-93a7-00d09c3ae8fd\",\n            \"sr_competition_id\": \"sr:competition:26\",\n            \"country\": \"International Youth\",\n            \"name\": \"U21 UEFA European Championship, Qualification\"\n        },\n        {\n            \"competition_id\": \"01990a5e-e107-70d7-a938-feeff610b774\",\n            \"sr_competition_id\": \"sr:competition:48619\",\n            \"country\": \"India\",\n            \"name\": \"Mizoram Premier League\"\n        },\n        {\n            \"competition_id\": \"9a94c8a2-59c6-441a-a9de-932a40180a82\",\n            \"sr_competition_id\": \"sr:competition:13995\",\n            \"country\": \"Peru\",\n            \"name\": \"Liga Femenina\"\n        },\n        {\n            \"competition_id\": \"01990a16-2602-713e-a414-071a094d54e2\",\n            \"sr_competition_id\": \"sr:competition:48615\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Carioca, Serie A2\"\n        },\n        {\n            \"competition_id\": \"9a947f0c-0a6e-4ada-813e-e6b5ff98d558\",\n            \"sr_competition_id\": \"sr:competition:1095\",\n            \"country\": \"Russia\",\n            \"name\": \"2. Liga, Division B, Group 3\"\n        },\n        {\n            \"competition_id\": \"9a947f12-b461-45ee-9ad2-a78e26aca5d9\",\n            \"sr_competition_id\": \"sr:competition:42\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Regionalliga North\"\n        },\n        {\n            \"competition_id\": \"9a94aa51-b11d-4b92-a164-ca3e1f7729db\",\n            \"sr_competition_id\": \"sr:competition:39173\",\n            \"country\": \"El Salvador\",\n            \"name\": \"Segunda Division\"\n        },\n        {\n            \"competition_id\": \"9a94c2e4-ea97-49a4-8981-98d876fb6eef\",\n            \"sr_competition_id\": \"sr:competition:634\",\n            \"country\": \"Singapore\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9b922368-4436-4c87-9a80-1ef15a57b696\",\n            \"sr_competition_id\": \"sr:competition:18294\",\n            \"country\": \"Estonia\",\n            \"name\": \"Meistriliiga Women\"\n        },\n        {\n            \"competition_id\": \"9a94ac75-adde-49ed-9235-bb523ac49e08\",\n            \"sr_competition_id\": \"sr:competition:2171\",\n            \"country\": \"Angola\",\n            \"name\": \"Girabola\"\n        },\n        {\n            \"competition_id\": \"9ad7bfaf-20d1-4253-86eb-72367a1bca8f\",\n            \"sr_competition_id\": \"sr:competition:27851\",\n            \"country\": \"Brazil\",\n            \"name\": \"Candango, Serie A\"\n        },\n        {\n            \"competition_id\": \"9f6bf66d-f50e-42fb-a136-7080f2d79ce7\",\n            \"sr_competition_id\": \"sr:competition:43781\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Karntner Liga\"\n        },\n        {\n            \"competition_id\": \"9ad7ea81-3717-4cf2-8d4a-57e23397f115\",\n            \"sr_competition_id\": \"sr:competition:29468\",\n            \"country\": \"South Africa\",\n            \"name\": \"Black Label Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7c108-3972-4ca4-bde7-23e3c03369e4\",\n            \"sr_competition_id\": \"sr:competition:24197\",\n            \"country\": \"India\",\n            \"name\": \"Indian Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa61-60b8-46f0-8add-2ff2fad8a2e0\",\n            \"sr_competition_id\": \"sr:competition:26080\",\n            \"country\": \"Portugal\",\n            \"name\": \"U23 Liga Revelacao\"\n        },\n        {\n            \"competition_id\": \"9a94aa76-8c69-4087-b12b-6094e0f0b4b9\",\n            \"sr_competition_id\": \"sr:competition:174\",\n            \"country\": \"England Amateur\",\n            \"name\": \"National League South\"\n        },\n        {\n            \"competition_id\": \"01998640-c71b-736f-b62e-a53f26bdf342\",\n            \"sr_competition_id\": \"sr:competition:48933\",\n            \"country\": \"Tanzania\",\n            \"name\": \"Championship League\"\n        },\n        {\n            \"competition_id\": \"9a9b013e-acb7-4edd-ae47-437fad5bf4fc\",\n            \"sr_competition_id\": \"sr:competition:765\",\n            \"country\": \"Luxembourg\",\n            \"name\": \"Coupe de Luxembourg\"\n        },\n        {\n            \"competition_id\": \"9a94aa1b-8484-418f-80ba-b237aad6fa8b\",\n            \"sr_competition_id\": \"sr:competition:40653\",\n            \"country\": \"Brazil\",\n            \"name\": \"Copa Santa Catarina\"\n        },\n        {\n            \"competition_id\": \"9ad7e058-e252-44f9-9058-9a1ba96c88d3\",\n            \"sr_competition_id\": \"sr:competition:477\",\n            \"country\": \"International\",\n            \"name\": \"UEFA Euro, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c804-0708-4495-919e-5697c2f796fc\",\n            \"sr_competition_id\": \"sr:competition:15644\",\n            \"country\": \"Brazil\",\n            \"name\": \"Copa Paulista\"\n        },\n        {\n            \"competition_id\": \"9a94c87c-0d84-4961-8391-7e347c4d5a85\",\n            \"sr_competition_id\": \"sr:competition:32559\",\n            \"country\": \"USA\",\n            \"name\": \"NWSL Challenge Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a9aa466-87d3-4bae-bc5b-9d4bbc6feedc\",\n            \"sr_competition_id\": \"sr:competition:37169\",\n            \"country\": \"USA\",\n            \"name\": \"USL W League\"\n        },\n        {\n            \"competition_id\": \"9a947f04-5169-430f-a696-d126ba929689\",\n            \"sr_competition_id\": \"sr:competition:27464\",\n            \"country\": \"Mexico\",\n            \"name\": \"Liga MX, Apertura\"\n        },\n        {\n            \"competition_id\": \"9ad67edf-33cc-43d3-be06-a46ad1cc0ec1\",\n            \"sr_competition_id\": \"sr:competition:881\",\n            \"country\": \"Andorra\",\n            \"name\": \"Copa Constitucio\"\n        },\n        {\n            \"competition_id\": \"9ad7ae13-0c2f-446e-bd27-a521cdd10d27\",\n            \"sr_competition_id\": \"sr:competition:24990\",\n            \"country\": \"International\",\n            \"name\": \"Intercontinental Cup\"\n        },\n        {\n            \"competition_id\": \"01995ca1-02be-7166-9404-b1ed85b21a6f\",\n            \"sr_competition_id\": \"sr:competition:31977\",\n            \"country\": \"India\",\n            \"name\": \"Goa Pro League\"\n        },\n        {\n            \"competition_id\": \"9a94ac87-99a6-40fc-b325-b325703287a6\",\n            \"sr_competition_id\": \"sr:competition:37\",\n            \"country\": \"Netherlands\",\n            \"name\": \"Eredivisie\"\n        },\n        {\n            \"competition_id\": \"9f4fa9c7-8bc8-4332-b967-e10f866e0fc2\",\n            \"sr_competition_id\": \"sr:competition:47570\",\n            \"country\": \"New Zealand\",\n            \"name\": \"Kate Sheppard Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f04-49b6-4ddd-85f1-8363287f184a\",\n            \"sr_competition_id\": \"sr:competition:278\",\n            \"country\": \"Uruguay\",\n            \"name\": \"Primera Division\"\n        },\n        {\n            \"competition_id\": \"9a94ac42-0ee3-4e9c-8ea4-86972a150344\",\n            \"sr_competition_id\": \"sr:competition:445\",\n            \"country\": \"Austria\",\n            \"name\": \"OFB Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f0d-28b8-4714-a2e7-f717413397b4\",\n            \"sr_competition_id\": \"sr:competition:29914\",\n            \"country\": \"Turkiye Amateur\",\n            \"name\": \"U19 Elit B\"\n        },\n        {\n            \"competition_id\": \"9a947f00-29c2-47d9-889e-8c006c989d47\",\n            \"sr_competition_id\": \"sr:competition:710\",\n            \"country\": \"Moldova\",\n            \"name\": \"Liga 1\"\n        },\n        {\n            \"competition_id\": \"9a94aa0b-5c3b-477e-a1ab-8cb3a52393eb\",\n            \"sr_competition_id\": \"sr:competition:1211\",\n            \"country\": \"Ivory Coast\",\n            \"name\": \"Ligue 1\"\n        },\n        {\n            \"competition_id\": \"9d24c01b-6b44-4cbc-8858-11a5bf1bca31\",\n            \"sr_competition_id\": \"sr:competition:26974\",\n            \"country\": \"Iraq\",\n            \"name\": \"Stars League\"\n        },\n        {\n            \"competition_id\": \"9a94aa09-0a95-4c05-b0a3-4b311bb82e6f\",\n            \"sr_competition_id\": \"sr:competition:186\",\n            \"country\": \"Greece\",\n            \"name\": \"Super League 2\"\n        },\n        {\n            \"competition_id\": \"9f93e51e-6c18-43b0-ad75-5ad80065606f\",\n            \"sr_competition_id\": \"sr:competition:48211\",\n            \"country\": \"Brazil\",\n            \"name\": \"Capixaba, Serie B\"\n        },\n        {\n            \"competition_id\": \"9a94ac11-af10-4380-a9a5-84cbf83e30b8\",\n            \"sr_competition_id\": \"sr:competition:348\",\n            \"country\": \"North Macedonia\",\n            \"name\": \"Macedonia Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n            \"sr_competition_id\": \"sr:competition:14864\",\n            \"country\": \"Uganda\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9f8c50ec-15ee-4c93-97e6-fe8b66357c92\",\n            \"sr_competition_id\": \"sr:competition:48150\",\n            \"country\": \"Gibraltar\",\n            \"name\": \"Pepe Reyes Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa09-0518-4251-b783-b1aac90bc88c\",\n            \"sr_competition_id\": \"sr:competition:282\",\n            \"country\": \"Czechia\",\n            \"name\": \"Czech Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f05-49ed-499b-9b7d-bc08164edcb3\",\n            \"sr_competition_id\": \"sr:competition:1906\",\n            \"country\": \"South Africa\",\n            \"name\": \"Championship\"\n        },\n        {\n            \"competition_id\": \"9a947efc-c952-4e0a-bcc0-2c4181ef2329\",\n            \"sr_competition_id\": \"sr:competition:27382\",\n            \"country\": \"Mexico\",\n            \"name\": \"Liga de Expansion MX, Apertura\"\n        },\n        {\n            \"competition_id\": \"9a94aa16-e449-42ba-9f85-2df204919d41\",\n            \"sr_competition_id\": \"sr:competition:854\",\n            \"country\": \"International Youth\",\n            \"name\": \"U21 Friendly Games\"\n        },\n        {\n            \"competition_id\": \"9ebf20b5-ba4d-44fa-9d70-ba6be2703a83\",\n            \"sr_competition_id\": \"sr:competition:46756\",\n            \"country\": \"Iceland\",\n            \"name\": \"4. deild\"\n        },\n        {\n            \"competition_id\": \"9a94aa0e-c7f4-494e-895e-30b382b63cdb\",\n            \"sr_competition_id\": \"sr:competition:27462\",\n            \"country\": \"Spain\",\n            \"name\": \"Copa Federacion\"\n        },\n        {\n            \"competition_id\": \"9a947f13-4216-47c6-9803-ea6b49be7487\",\n            \"sr_competition_id\": \"sr:competition:39\",\n            \"country\": \"Denmark\",\n            \"name\": \"Superliga\"\n        },\n        {\n            \"competition_id\": \"9a94c805-9bbb-46a5-be86-fdf05cf4754c\",\n            \"sr_competition_id\": \"sr:competition:1275\",\n            \"country\": \"Australia\",\n            \"name\": \"Victoria, NPL\"\n        },\n        {\n            \"competition_id\": \"9b538e25-f796-4f02-b0ad-4345d882168b\",\n            \"sr_competition_id\": \"sr:competition:42281\",\n            \"country\": \"Poland\",\n            \"name\": \"Puchar Polski, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f0f-9106-46f6-833b-44c5394335a6\",\n            \"sr_competition_id\": \"sr:competition:40729\",\n            \"country\": \"Czechia\",\n            \"name\": \"Divize B\"\n        },\n        {\n            \"competition_id\": \"9ad7b1f5-88ff-4017-8af4-fdfffb3b437b\",\n            \"sr_competition_id\": \"sr:competition:2177\",\n            \"country\": \"Ghana\",\n            \"name\": \"FA Cup\"\n        },\n        {\n            \"competition_id\": \"9ecd9529-6f8d-4abd-b7e7-2401fbe24b51\",\n            \"sr_competition_id\": \"sr:competition:32351\",\n            \"country\": \"Australia\",\n            \"name\": \"NSW NPL, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7d930-558e-480d-9491-d469b6ac4b4a\",\n            \"sr_competition_id\": \"sr:competition:28\",\n            \"country\": \"International\",\n            \"name\": \"AFC Asian Cup QF\"\n        },\n        {\n            \"competition_id\": \"9e093640-cb76-4d3e-bccc-fce5eb8f9f71\",\n            \"sr_competition_id\": \"sr:competition:20560\",\n            \"country\": \"Indonesia\",\n            \"name\": \"Championship\"\n        },\n        {\n            \"competition_id\": \"9a94c27f-c268-41fa-b445-eb6d966b9c28\",\n            \"sr_competition_id\": \"sr:competition:150\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga NOFV South\"\n        },\n        {\n            \"competition_id\": \"9ad7b077-e4b4-491a-98c1-89495ed4ddde\",\n            \"sr_competition_id\": \"sr:competition:14876\",\n            \"country\": \"Brazil\",\n            \"name\": \"Copa Verde\"\n        },\n        {\n            \"competition_id\": \"9a94aa2c-062a-4bed-ad91-670d0a2c0de9\",\n            \"sr_competition_id\": \"sr:competition:1347\",\n            \"country\": \"Argentina\",\n            \"name\": \"Primera B\"\n        },\n        {\n            \"competition_id\": \"9e41ada1-703d-479a-abad-43161baf7414\",\n            \"sr_competition_id\": \"sr:competition:19490\",\n            \"country\": \"Panama\",\n            \"name\": \"Liga Prom\"\n        },\n        {\n            \"competition_id\": \"9a94aa27-efbf-42bc-bda9-710da6594575\",\n            \"sr_competition_id\": \"sr:competition:36479\",\n            \"country\": \"USA\",\n            \"name\": \"MLS Next Pro\"\n        },\n        {\n            \"competition_id\": \"7a519036-2744-4678-8b2d-c65f281990db\",\n            \"sr_competition_id\": \"3c6d318a-6164-4290-9bbc-bf9bb21cc4b8\",\n            \"country\": \"USA\",\n            \"name\": \"National Football League\"\n        },\n        {\n            \"competition_id\": \"9a947f15-ccf6-44d4-a9cf-529cdf4f58e6\",\n            \"sr_competition_id\": \"sr:competition:65\",\n            \"country\": \"Denmark\",\n            \"name\": \"2nd Division\"\n        },\n        {\n            \"competition_id\": \"9f87bbea-ab0a-404a-a162-0fd66f97807c\",\n            \"sr_competition_id\": \"sr:competition:48058\",\n            \"country\": \"International Clubs\",\n            \"name\": \"ASEAN Club Championship\"\n        },\n        {\n            \"competition_id\": \"9a94c26c-310b-46ec-a135-a9803a60431d\",\n            \"sr_competition_id\": \"sr:competition:29\",\n            \"country\": \"Norway\",\n            \"name\": \"NM Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7bc94-43df-4197-bba2-e88ebc0a8928\",\n            \"sr_competition_id\": \"sr:competition:374\",\n            \"country\": \"Brazil\",\n            \"name\": \"Baiano, Serie A\"\n        },\n        {\n            \"competition_id\": \"9f738fb3-694a-4636-aca2-6d537419e8ce\",\n            \"sr_competition_id\": \"sr:competition:28155\",\n            \"country\": \"International Youth\",\n            \"name\": \"U23 ASEAN Championship\"\n        },\n        {\n            \"competition_id\": \"01999bb5-ffff-7365-be44-2b95c1dd2ef5\",\n            \"sr_competition_id\": \"sr:competition:48891\",\n            \"country\": \"Brazil\",\n            \"name\": \"Potiguar, 2. Divisao\"\n        },\n        {\n            \"competition_id\": \"9a94ac1d-2e8e-42a4-9d3c-2da859ace95e\",\n            \"sr_competition_id\": \"sr:competition:315\",\n            \"country\": \"Cyprus\",\n            \"name\": \"Cyprus Cup\"\n        },\n        {\n            \"competition_id\": \"9f95fbaf-057e-4ff1-bd9a-6105d759963f\",\n            \"sr_competition_id\": \"sr:competition:48233\",\n            \"country\": \"Poland\",\n            \"name\": \"1. Liga, Women\"\n        },\n        {\n            \"competition_id\": \"9a9a6a2f-f788-4581-a0a1-166579de701e\",\n            \"sr_competition_id\": \"sr:competition:690\",\n            \"country\": \"Luxembourg\",\n            \"name\": \"Division Nationale\"\n        },\n        {\n            \"competition_id\": \"9a947f21-1e79-4f18-beec-bc9ab7ebc252\",\n            \"sr_competition_id\": \"sr:competition:34834\",\n            \"country\": \"Spain\",\n            \"name\": \"Primera Federacion\"\n        },\n        {\n            \"competition_id\": \"9a947f0d-0813-4dd0-8600-bc9299f0326e\",\n            \"sr_competition_id\": \"sr:competition:402\",\n            \"country\": \"Japan\",\n            \"name\": \"J.League 2\"\n        },\n        {\n            \"competition_id\": \"9e4d0047-7d09-4d75-be49-9c244900ebc5\",\n            \"sr_competition_id\": \"sr:competition:1266\",\n            \"country\": \"Latvia\",\n            \"name\": \"Superkauss\"\n        },\n        {\n            \"competition_id\": \"9a94aa47-48d8-4ebe-9baf-c452f5c1e6ac\",\n            \"sr_competition_id\": \"sr:competition:29244\",\n            \"country\": \"Wales\",\n            \"name\": \"Cymru Championship, North\"\n        },\n        {\n            \"competition_id\": \"9a947f01-16b8-4e75-b003-da20fada10c5\",\n            \"sr_competition_id\": \"sr:competition:715\",\n            \"country\": \"Bosnia & Herzegovina\",\n            \"name\": \"Prva Liga, Rep of Srpska\"\n        },\n        {\n            \"competition_id\": \"9a94aa34-d4d4-423d-9525-8f38ef231bfc\",\n            \"sr_competition_id\": \"sr:competition:785\",\n            \"country\": \"Kazakhstan\",\n            \"name\": \"Pervaya Liga\"\n        },\n        {\n            \"competition_id\": \"9a94ac4d-42f2-40fc-a48b-ddcc88b72d2f\",\n            \"sr_competition_id\": \"sr:competition:19250\",\n            \"country\": \"Cambodia\",\n            \"name\": \"Cambodian Premier League\"\n        },\n        {\n            \"competition_id\": \"9a94aa17-74ee-4fac-bda2-0b2b5b41467f\",\n            \"sr_competition_id\": \"sr:competition:26042\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 13\"\n        },\n        {\n            \"competition_id\": \"9a94c932-c234-48ab-ae5b-3233be6a8c74\",\n            \"sr_competition_id\": \"sr:competition:1062\",\n            \"country\": \"Norway\",\n            \"name\": \"NM Cup Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa42-748f-4720-a216-7c8c6b139398\",\n            \"sr_competition_id\": \"sr:competition:19272\",\n            \"country\": \"Norway\",\n            \"name\": \"1st Division, Women\"\n        },\n        {\n            \"competition_id\": \"9a94abbe-52b2-479f-846c-1eb98be0b024\",\n            \"sr_competition_id\": \"sr:competition:8\",\n            \"country\": \"Spain\",\n            \"name\": \"LaLiga\"\n        },\n        {\n            \"competition_id\": \"01993dce-0680-73af-addf-4990414c94c6\",\n            \"sr_competition_id\": \"sr:competition:48767\",\n            \"country\": \"Tanzania\",\n            \"name\": \"Community Shield\"\n        },\n        {\n            \"competition_id\": \"9a947f1c-2702-4418-a235-37cf766821e4\",\n            \"sr_competition_id\": \"sr:competition:743\",\n            \"country\": \"Andorra\",\n            \"name\": \"Second Divisio\"\n        },\n        {\n            \"competition_id\": \"9a947f03-472b-4028-b51e-b733b3adf6af\",\n            \"sr_competition_id\": \"sr:competition:28538\",\n            \"country\": \"Argentina\",\n            \"name\": \"Copa de la Liga\"\n        },\n        {\n            \"competition_id\": \"9a947f08-eae6-4fda-bbda-ceb5597387cd\",\n            \"sr_competition_id\": \"sr:competition:841\",\n            \"country\": \"Algeria\",\n            \"name\": \"Ligue 1\"\n        },\n        {\n            \"competition_id\": \"9a94aa39-5cbd-445e-8de9-7252d500eaa7\",\n            \"sr_competition_id\": \"sr:competition:24644\",\n            \"country\": \"Norway\",\n            \"name\": \"3rd Division Group 2\"\n        },\n        {\n            \"competition_id\": \"9a9a6a3b-ea29-414a-a22c-1bfc6523f11a\",\n            \"sr_competition_id\": \"sr:competition:26278\",\n            \"country\": \"Netherlands\",\n            \"name\": \"Tweede Divisie\"\n        },\n        {\n            \"competition_id\": \"9a94ac9d-73ce-45f4-aeeb-4dfe43221749\",\n            \"sr_competition_id\": \"sr:competition:984\",\n            \"country\": \"Tunisia\",\n            \"name\": \"Ligue 1\"\n        },\n        {\n            \"competition_id\": \"9a94aa08-2200-4a80-a83c-4383d87e6a57\",\n            \"sr_competition_id\": \"sr:competition:303\",\n            \"country\": \"Slovakia\",\n            \"name\": \"Slovensky Pohar\"\n        },\n        {\n            \"competition_id\": \"9cb9b64f-0e4a-451f-9449-22f90306ac2e\",\n            \"sr_competition_id\": \"sr:competition:42983\",\n            \"country\": \"International Clubs\",\n            \"name\": \"AFC Challenge League\"\n        },\n        {\n            \"competition_id\": \"9ad7e055-cd8d-4f66-b567-14dba9ef39b3\",\n            \"sr_competition_id\": \"sr:competition:1954\",\n            \"country\": \"International\",\n            \"name\": \"CONCACAF Championship, Women\"\n        },\n        {\n            \"competition_id\": \"9b7eaaad-6212-4860-a0d3-c22366b7962a\",\n            \"sr_competition_id\": \"sr:competition:2332\",\n            \"country\": \"International Youth\",\n            \"name\": \"U20 African Games\"\n        },\n        {\n            \"competition_id\": \"9ad7f733-21c6-43a9-aba8-d41e5614d7df\",\n            \"sr_competition_id\": \"sr:competition:889\",\n            \"country\": \"Germany\",\n            \"name\": \"Telekom Cup\"\n        },\n        {\n            \"competition_id\": \"9ac482df-2d30-4d57-a189-20f64d257747\",\n            \"sr_competition_id\": \"sr:competition:339\",\n            \"country\": \"France\",\n            \"name\": \"Trophee des Champions\"\n        },\n        {\n            \"competition_id\": \"9a947f0a-a7a5-4857-9ba6-d085a46e711f\",\n            \"sr_competition_id\": \"sr:competition:1191\",\n            \"country\": \"Ghana\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a94aa49-0cec-4f9f-bac2-c13a68291901\",\n            \"sr_competition_id\": \"sr:competition:26056\",\n            \"country\": \"England Amateur\",\n            \"name\": \"Southern League Premier Central\"\n        },\n        {\n            \"competition_id\": \"9a94aa0e-f33f-44fb-80de-986da558acb2\",\n            \"sr_competition_id\": \"sr:competition:39285\",\n            \"country\": \"International Youth\",\n            \"name\": \"U21 Premier League International Cup\"\n        },\n        {\n            \"competition_id\": \"9a94ac84-b411-46cf-96bd-c00f4462655d\",\n            \"sr_competition_id\": \"sr:competition:583\",\n            \"country\": \"Bosnia & Herzegovina\",\n            \"name\": \"Kup BiH\"\n        },\n        {\n            \"competition_id\": \"9f8a22fb-7f1d-47f9-a84a-a0091097e3b0\",\n            \"sr_competition_id\": \"sr:competition:47986\",\n            \"country\": \"France\",\n            \"name\": \"National 2\"\n        },\n        {\n            \"competition_id\": \"9a94ac9c-abcd-414e-a2f1-8e0de584644a\",\n            \"sr_competition_id\": \"sr:competition:331\",\n            \"country\": \"Scotland\",\n            \"name\": \"Challenge Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f00-2d9c-4933-84ab-9906bc6991e2\",\n            \"sr_competition_id\": \"sr:competition:26922\",\n            \"country\": \"Syria\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9e43c7da-1cd8-409c-be28-fc00032dfbe3\",\n            \"sr_competition_id\": \"sr:competition:35811\",\n            \"country\": \"Uruguay\",\n            \"name\": \"Tercera Division, Reserves\"\n        },\n        {\n            \"competition_id\": \"9f98c331-84a2-400f-8a9c-56faceb91e99\",\n            \"sr_competition_id\": \"sr:competition:34978\",\n            \"country\": \"Ireland\",\n            \"name\": \"FAI Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7c0aa-bf80-4310-8337-3c383ae48ea8\",\n            \"sr_competition_id\": \"sr:competition:39507\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"A-Junioren-Bundesliga, Sonderspielrunde\"\n        },\n        {\n            \"competition_id\": \"9a947f07-2d50-4e9f-b3e3-6ed1220f8941\",\n            \"sr_competition_id\": \"sr:competition:14321\",\n            \"country\": \"Algeria\",\n            \"name\": \"Ligue 2\"\n        },\n        {\n            \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n            \"sr_competition_id\": \"sr:competition:47\",\n            \"country\": \"Denmark\",\n            \"name\": \"1. Division\"\n        },\n        {\n            \"competition_id\": \"9a94aa0c-fb73-4917-8bac-7815616bb225\",\n            \"sr_competition_id\": \"sr:competition:26044\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 14\"\n        },\n        {\n            \"competition_id\": \"9a947f14-7fd0-418e-8a1a-121bd52de71d\",\n            \"sr_competition_id\": \"sr:competition:811\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"A-Junioren-Bundesliga S/S-W\"\n        },\n        {\n            \"competition_id\": \"9a948074-f79d-4bcd-91cc-febde3e11a8f\",\n            \"sr_competition_id\": \"sr:competition:26022\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 3\"\n        },\n        {\n            \"competition_id\": \"9ad7bc86-6d2c-46b8-8245-f4f5e9896522\",\n            \"sr_competition_id\": \"sr:competition:19268\",\n            \"country\": \"Netherlands\",\n            \"name\": \"KNVB beker, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa47-3ce0-4fa7-b9bb-c75e2ada1aae\",\n            \"sr_competition_id\": \"sr:competition:30254\",\n            \"country\": \"Argentina\",\n            \"name\": \"Primera D Metropolitana\"\n        },\n        {\n            \"competition_id\": \"9a94c29c-4fd2-42ba-a5df-9914784876f2\",\n            \"sr_competition_id\": \"sr:competition:29242\",\n            \"country\": \"Wales\",\n            \"name\": \"Cymru Championship South\"\n        },\n        {\n            \"competition_id\": \"9a9a294c-9d60-46b3-9848-87661e8541f7\",\n            \"sr_competition_id\": \"sr:competition:332\",\n            \"country\": \"Scotland\",\n            \"name\": \"League Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa34-a135-453c-9d44-5f17bcbf7667\",\n            \"sr_competition_id\": \"sr:competition:14197\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Bundesliga, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa6f-7652-4ee8-ad19-5d0386bcac22\",\n            \"sr_competition_id\": \"sr:competition:2539\",\n            \"country\": \"Sweden Amateur\",\n            \"name\": \"U19 Allsvenskan\"\n        },\n        {\n            \"competition_id\": \"9a94ac1a-d519-418a-bc23-36bc606d61fe\",\n            \"sr_competition_id\": \"sr:competition:779\",\n            \"country\": \"Faroe Islands\",\n            \"name\": \"Logmanssteypid\"\n        },\n        {\n            \"competition_id\": \"9a94aa60-2b01-4687-8001-3807429208f3\",\n            \"sr_competition_id\": \"sr:competition:1015\",\n            \"country\": \"Indonesia\",\n            \"name\": \"Super League\"\n        },\n        {\n            \"competition_id\": \"9a94aa15-7037-40d0-a491-0625dc55fc48\",\n            \"sr_competition_id\": \"sr:competition:27\",\n            \"country\": \"International\",\n            \"name\": \"UEFA EURO, Qualification\"\n        },\n        {\n            \"competition_id\": \"9ad7c0f2-9ba0-4ce7-856e-342b97021686\",\n            \"sr_competition_id\": \"sr:competition:35957\",\n            \"country\": \"Argentina\",\n            \"name\": \"Trofeo de Campeones\"\n        },\n        {\n            \"competition_id\": \"9a947f1f-1479-464c-915a-a865de7afc90\",\n            \"sr_competition_id\": \"sr:competition:26026\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 5\"\n        },\n        {\n            \"competition_id\": \"9a947f0b-f482-4dfb-b739-9053128731b6\",\n            \"sr_competition_id\": \"sr:competition:224\",\n            \"country\": \"Slovakia\",\n            \"name\": \"2. Liga\"\n        },\n        {\n            \"competition_id\": \"9c513f1f-d494-478c-a27e-8e852cbd0c52\",\n            \"sr_competition_id\": \"sr:competition:43125\",\n            \"country\": \"Malaysia\",\n            \"name\": \"Liga A1\"\n        },\n        {\n            \"competition_id\": \"9a94aa5e-4e73-4bd0-b0be-7cdcc9529010\",\n            \"sr_competition_id\": \"sr:competition:1044\",\n            \"country\": \"England Amateur\",\n            \"name\": \"Super League Women\"\n        },\n        {\n            \"competition_id\": \"9a9a2981-87c8-4474-869a-0674c8f8ab92\",\n            \"sr_competition_id\": \"sr:competition:1806\",\n            \"country\": \"International Youth\",\n            \"name\": \"U19 NextGen Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c23f-9187-4f31-99e2-3362447b26ae\",\n            \"sr_competition_id\": \"sr:competition:19496\",\n            \"country\": \"Morocco\",\n            \"name\": \"Botola Pro D2\"\n        },\n        {\n            \"competition_id\": \"9a94aa0a-17c5-4d5f-83d2-ee7e8db82023\",\n            \"sr_competition_id\": \"sr:competition:532\",\n            \"country\": \"Slovenia\",\n            \"name\": \"2. Liga\"\n        },\n        {\n            \"competition_id\": \"9ad7bba1-e98a-450e-94a1-c8804f3eaa89\",\n            \"sr_competition_id\": \"sr:competition:1596\",\n            \"country\": \"Brazil\",\n            \"name\": \"Copa do Nordeste\"\n        },\n        {\n            \"competition_id\": \"9a94ac41-9146-447a-8fe7-a9a4d987d99a\",\n            \"sr_competition_id\": \"sr:competition:238\",\n            \"country\": \"Portugal\",\n            \"name\": \"Liga Portugal\"\n        },\n        {\n            \"competition_id\": \"9a94c25f-6fd9-47d4-9c2d-f9ca705e6e9c\",\n            \"sr_competition_id\": \"sr:competition:55\",\n            \"country\": \"Finland\",\n            \"name\": \"Ykkosliiga\"\n        },\n        {\n            \"competition_id\": \"9a94aa16-d3b4-4f45-bda5-f7a6e22bc3d7\",\n            \"sr_competition_id\": \"sr:competition:29003\",\n            \"country\": \"Paraguay\",\n            \"name\": \"Copa Paraguay\"\n        },\n        {\n            \"competition_id\": \"9a947eff-286d-4f9d-a97b-0dc10572b644\",\n            \"sr_competition_id\": \"sr:competition:753\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 European Championship, Women, Qualification\"\n        },\n        {\n            \"competition_id\": \"9a9aa1c8-44ed-4482-8ffe-897567ea565f\",\n            \"sr_competition_id\": \"sr:competition:39343\",\n            \"country\": \"Brazil\",\n            \"name\": \"Catarinense, Serie B\"\n        },\n        {\n            \"competition_id\": \"9ad7c1ae-5c16-4750-be97-486d7fe04f9d\",\n            \"sr_competition_id\": \"sr:competition:24702\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"U19 DFB Nachwuchsliga\"\n        },\n        {\n            \"competition_id\": \"9a94aa23-eb88-478b-aa33-cc3beaf2410b\",\n            \"sr_competition_id\": \"sr:competition:868\",\n            \"country\": \"Sweden\",\n            \"name\": \"Division 2, Norra Gotaland\"\n        },\n        {\n            \"competition_id\": \"01992ded-08a2-7094-b3d5-ff0ddd6ad84f\",\n            \"sr_competition_id\": \"sr:competition:48713\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Pernambucano\"\n        },\n        {\n            \"competition_id\": \"9ecc92c6-750f-4d52-b162-c33d94363a1f\",\n            \"sr_competition_id\": \"sr:competition:32369\",\n            \"country\": \"Australia\",\n            \"name\": \"Western Australia NPL, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa48-0216-4cc2-bf66-2e263f3efd6c\",\n            \"sr_competition_id\": \"sr:competition:254\",\n            \"country\": \"Wales\",\n            \"name\": \"Cymru Premier\"\n        },\n        {\n            \"competition_id\": \"9a94a447-59ca-444b-bb17-9b779acbfc4e\",\n            \"sr_competition_id\": \"sr:competition:172\",\n            \"country\": \"Czechia\",\n            \"name\": \"1. Liga\"\n        },\n        {\n            \"competition_id\": \"9a947efb-e3a7-46f9-a8eb-06f8b6471356\",\n            \"sr_competition_id\": \"sr:competition:19242\",\n            \"country\": \"Nicaragua\",\n            \"name\": \"Primera Division\"\n        },\n        {\n            \"competition_id\": \"9ad7da35-29bf-4db4-930a-639b085a63b1\",\n            \"sr_competition_id\": \"sr:competition:780\",\n            \"country\": \"International\",\n            \"name\": \"World Championship Qualification Women, Europe\"\n        },\n        {\n            \"competition_id\": \"9f821718-4b52-497a-a156-dded4449b8e4\",\n            \"sr_competition_id\": \"sr:competition:43789\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Oberosterreich, OO Liga\"\n        },\n        {\n            \"competition_id\": \"9ad7ac2e-7344-4193-833c-3f8d17f9568f\",\n            \"sr_competition_id\": \"sr:competition:2183\",\n            \"country\": \"International Youth\",\n            \"name\": \"Toulon Tournament\"\n        },\n        {\n            \"competition_id\": \"9a947f15-d831-4c3a-937f-04210c40e981\",\n            \"sr_competition_id\": \"sr:competition:40737\",\n            \"country\": \"Czechia\",\n            \"name\": \"Divize F\"\n        },\n        {\n            \"competition_id\": \"9ad7ad3c-a670-46cf-9a60-3046c298bf45\",\n            \"sr_competition_id\": \"sr:competition:33690\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 AFC Asian Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f1b-2d0d-40a0-9f78-63e0cb289eb9\",\n            \"sr_competition_id\": \"sr:competition:14758\",\n            \"country\": \"Portugal\",\n            \"name\": \"Campeonato de Portugal\"\n        },\n        {\n            \"competition_id\": \"019961fd-441a-73cf-859f-545ae7cf72dd\",\n            \"sr_competition_id\": \"sr:competition:48511\",\n            \"country\": \"Saudi Arabia\",\n            \"name\": \"Second Division\"\n        },\n        {\n            \"competition_id\": \"9a947f18-2bf6-41a6-a278-857d89cec6d5\",\n            \"sr_competition_id\": \"sr:competition:203\",\n            \"country\": \"Russia\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a948075-66c2-4d0c-bc65-10129fdd24ca\",\n            \"sr_competition_id\": \"sr:competition:187\",\n            \"country\": \"Hungary\",\n            \"name\": \"NB I\"\n        },\n        {\n            \"competition_id\": \"9a94c243-17c2-4a9f-b708-f41ec55cd153\",\n            \"sr_competition_id\": \"sr:competition:40261\",\n            \"country\": \"Belgium\",\n            \"name\": \"Nationale 1\"\n        },\n        {\n            \"competition_id\": \"9a948072-2949-4d87-afa8-3cdd3d550f94\",\n            \"sr_competition_id\": \"sr:competition:35\",\n            \"country\": \"Germany\",\n            \"name\": \"Bundesliga\"\n        },\n        {\n            \"competition_id\": \"9a947f09-85aa-4f58-a15c-43382217f5ae\",\n            \"sr_competition_id\": \"sr:competition:1908\",\n            \"country\": \"Uruguay\",\n            \"name\": \"Segunda Division\"\n        },\n        {\n            \"competition_id\": \"9a94aa42-11b9-4552-b8a2-887d53616c58\",\n            \"sr_competition_id\": \"sr:competition:731\",\n            \"country\": \"Estonia\",\n            \"name\": \"Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa13-974f-4777-a77c-f4fd45ccec72\",\n            \"sr_competition_id\": \"sr:competition:26558\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie C, Group C\"\n        },\n        {\n            \"competition_id\": \"9a94aa28-b3a3-4e08-af5f-ee92e4883f92\",\n            \"sr_competition_id\": \"sr:competition:721\",\n            \"country\": \"Serbia\",\n            \"name\": \"Prva Liga\"\n        },\n        {\n            \"competition_id\": \"9a9a2862-80f5-4b90-8b50-241217db282a\",\n            \"sr_competition_id\": \"sr:competition:28743\",\n            \"country\": \"USA\",\n            \"name\": \"USL League Two\"\n        },\n        {\n            \"competition_id\": \"0198fc7e-95e9-7270-b451-7f6c52f25bc2\",\n            \"sr_competition_id\": \"sr:competition:48337\",\n            \"country\": \"Brazil\",\n            \"name\": \"Taca FPF Paranaense\"\n        },\n        {\n            \"competition_id\": \"9a94ac32-d906-4f3a-9770-153c31661933\",\n            \"sr_competition_id\": \"sr:competition:314\",\n            \"country\": \"Serbia\",\n            \"name\": \"Serbian Cup\"\n        },\n        {\n            \"competition_id\": \"9b7f5ce0-d43a-46e5-bda9-5a7e54d880ed\",\n            \"sr_competition_id\": \"sr:competition:1618\",\n            \"country\": \"Argentina\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"01990d55-9d0b-703b-855a-424ef1a2ed09\",\n            \"sr_competition_id\": \"sr:competition:48231\",\n            \"country\": \"Portugal\",\n            \"name\": \"Supertaca, Women\"\n        },\n        {\n            \"competition_id\": \"9a947efe-1cf7-423e-9fbd-ca3a60014496\",\n            \"sr_competition_id\": \"sr:competition:594\",\n            \"country\": \"New Zealand\",\n            \"name\": \"National League\"\n        },\n        {\n            \"competition_id\": \"9f9fb4d2-6e1a-489e-a40c-d530dc6022e0\",\n            \"sr_competition_id\": \"sr:competition:48289\",\n            \"country\": \"Switzerland\",\n            \"name\": \"U19 Elite\"\n        },\n        {\n            \"competition_id\": \"9a947f02-c8db-45ea-b110-a88b1e002840\",\n            \"sr_competition_id\": \"sr:competition:38613\",\n            \"country\": \"Croatia\",\n            \"name\": \"Druga NL\"\n        },\n        {\n            \"competition_id\": \"9a947f0c-f66f-48b3-b4b7-10022d7f35fd\",\n            \"sr_competition_id\": \"sr:competition:26384\",\n            \"country\": \"Greece\",\n            \"name\": \"U19 Super League\"\n        },\n        {\n            \"competition_id\": \"9a947f0e-4c5c-438b-80ef-4b71ba0fc885\",\n            \"sr_competition_id\": \"sr:competition:211\",\n            \"country\": \"Slovakia\",\n            \"name\": \"Superliga\"\n        },\n        {\n            \"competition_id\": \"9ad7bc13-d6a1-4c35-bc20-5d357f17b0e0\",\n            \"sr_competition_id\": \"sr:competition:27983\",\n            \"country\": \"Brazil\",\n            \"name\": \"Amazonense\"\n        },\n        {\n            \"competition_id\": \"9a947eff-25e8-4180-9795-446afaecf78d\",\n            \"sr_competition_id\": \"sr:competition:822\",\n            \"country\": \"Czechia\",\n            \"name\": \"U19 1. Liga\"\n        },\n        {\n            \"competition_id\": \"9a947f12-22f3-4871-a2e6-1ca0750dd88a\",\n            \"sr_competition_id\": \"sr:competition:23\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie A\"\n        },\n        {\n            \"competition_id\": \"9ad7ab72-c9d0-460f-86ac-97f20a4405d0\",\n            \"sr_competition_id\": \"sr:competition:29684\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Eliteliga Vorarlberg\"\n        },\n        {\n            \"competition_id\": \"9a9b2220-11a8-4cf9-93c7-133ba1579266\",\n            \"sr_competition_id\": \"sr:competition:1924\",\n            \"country\": \"Armenia\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9b1e1b92-dd58-4cfd-bc02-04946e45f1a6\",\n            \"sr_competition_id\": \"sr:competition:31631\",\n            \"country\": \"International Youth\",\n            \"name\": \"CONMEBOL Pre-Olympic Tournament\"\n        },\n        {\n            \"competition_id\": \"9a94aa44-7203-484f-8dd3-6e3e1d4c9de5\",\n            \"sr_competition_id\": \"sr:competition:24652\",\n            \"country\": \"Norway\",\n            \"name\": \"3rd Division Group 6\"\n        },\n        {\n            \"competition_id\": \"9a9e79f8-d7b6-4266-9150-b95f8b9e4c9d\",\n            \"sr_competition_id\": \"sr:competition:291\",\n            \"country\": \"Slovenia\",\n            \"name\": \"Slovenia Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa3c-1b99-455d-ae24-1ec0d6f16082\",\n            \"sr_competition_id\": \"sr:competition:2032\",\n            \"country\": \"Oman\",\n            \"name\": \"Sultan Cup\"\n        },\n        {\n            \"competition_id\": \"9a94ac2f-f278-4fa7-8cda-57ae7fcf9aa6\",\n            \"sr_competition_id\": \"sr:competition:741\",\n            \"country\": \"Moldova\",\n            \"name\": \"Cupa Moldovei\"\n        },\n        {\n            \"competition_id\": \"9a9aa4f7-23a0-4eff-8af9-409b5439b277\",\n            \"sr_competition_id\": \"sr:competition:338\",\n            \"country\": \"Belgium\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9d705b03-b4bb-473e-a4f8-bd9707f321c7\",\n            \"sr_competition_id\": \"sr:competition:45047\",\n            \"country\": \"New Zealand\",\n            \"name\": \"National League, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7be57-b3a8-4a6c-853b-6d0baf2b4bf8\",\n            \"sr_competition_id\": \"sr:competition:28049\",\n            \"country\": \"Iceland\",\n            \"name\": \"League Cup A, Women\"\n        },\n        {\n            \"competition_id\": \"9a94ac2f-b65f-4c40-af1e-7f408b5485a9\",\n            \"sr_competition_id\": \"sr:competition:355\",\n            \"country\": \"Romania\",\n            \"name\": \"Romania Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c819-e188-4dbf-8cb8-066873eef315\",\n            \"sr_competition_id\": \"sr:competition:812\",\n            \"country\": \"Lithuania\",\n            \"name\": \"LFF Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aca5-4bf0-4f9e-b853-dd7996d2e452\",\n            \"sr_competition_id\": \"sr:competition:1592\",\n            \"country\": \"England Amateur\",\n            \"name\": \"Premier League Cup\"\n        },\n        {\n            \"competition_id\": \"9a947eff-402f-4d72-9510-c479ad6ebc3f\",\n            \"sr_competition_id\": \"sr:competition:704\",\n            \"country\": \"Georgia\",\n            \"name\": \"Erovnuli Liga\"\n        },\n        {\n            \"competition_id\": \"9a94c23d-841a-4e46-aa97-73f334f7b4e2\",\n            \"sr_competition_id\": \"sr:competition:723\",\n            \"country\": \"Luxembourg\",\n            \"name\": \"Promotion d'Honneur\"\n        },\n        {\n            \"competition_id\": \"9ef1c9b9-052a-4b2e-86af-d0adbc8eff08\",\n            \"sr_competition_id\": \"sr:competition:47091\",\n            \"country\": \"Bosnia & Herzegovina\",\n            \"name\": \"Super Kup\"\n        },\n        {\n            \"competition_id\": \"9a94a909-a928-4032-a0e7-4c77a69aa74e\",\n            \"sr_competition_id\": \"sr:competition:755\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 UEFA European Championship, Qualification\"\n        },\n        {\n            \"competition_id\": \"9a94aa71-c6bd-40fb-964b-ea84ffe54825\",\n            \"sr_competition_id\": \"sr:competition:46\",\n            \"country\": \"Sweden\",\n            \"name\": \"Superettan\"\n        },\n        {\n            \"competition_id\": \"9ad7a697-6c74-4970-94cb-3ade756dfa3f\",\n            \"sr_competition_id\": \"sr:competition:19276\",\n            \"country\": \"Iceland\",\n            \"name\": \"Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f02-675b-4a2c-965a-c81c1ad1086f\",\n            \"sr_competition_id\": \"sr:competition:247\",\n            \"country\": \"Bulgaria\",\n            \"name\": \"Parva Liga\"\n        },\n        {\n            \"competition_id\": \"01998540-8dc4-709b-b87c-1412c426b8a4\",\n            \"sr_competition_id\": \"sr:competition:48507\",\n            \"country\": \"Australia\",\n            \"name\": \"Australian Championship\"\n        },\n        {\n            \"competition_id\": \"9a94c93e-4a36-4d41-addf-10dbc1b5b4d1\",\n            \"sr_competition_id\": \"sr:competition:220\",\n            \"country\": \"Finland\",\n            \"name\": \"Suomen Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c2eb-a2ee-4e70-a2b3-af612db1e24c\",\n            \"sr_competition_id\": \"sr:competition:154\",\n            \"country\": \"Montenegro\",\n            \"name\": \"1. CFL\"\n        },\n        {\n            \"competition_id\": \"9a94aa44-046e-4855-aacb-8d76f99a27d6\",\n            \"sr_competition_id\": \"sr:competition:26040\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 12\"\n        },\n        {\n            \"competition_id\": \"9a94aa0c-c3c1-4851-b2cc-c5c1c606bc84\",\n            \"sr_competition_id\": \"sr:competition:1058\",\n            \"country\": \"Sweden\",\n            \"name\": \"Svenska Cup Women\"\n        },\n        {\n            \"competition_id\": \"9a947f1c-4dab-4448-8a34-b5b4c9304d32\",\n            \"sr_competition_id\": \"sr:competition:40469\",\n            \"country\": \"Slovakia\",\n            \"name\": \"3. Liga, East\"\n        },\n        {\n            \"competition_id\": \"9bc716d3-b111-4c50-a54c-18bb2e642f9f\",\n            \"sr_competition_id\": \"sr:competition:42631\",\n            \"country\": \"Chinese Taipei\",\n            \"name\": \"Mulan Football League, Women\"\n        },\n        {\n            \"competition_id\": \"9a94ac13-1d52-4e06-8da7-f945acbaea57\",\n            \"sr_competition_id\": \"sr:competition:2515\",\n            \"country\": \"International\",\n            \"name\": \"AFC Olympic Qualification, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c252-ebe7-46e6-8361-9d487edaebd6\",\n            \"sr_competition_id\": \"sr:competition:1115\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CAF Confederations Cup\"\n        },\n        {\n            \"competition_id\": \"9ea414ec-c261-4a7a-9533-6bbd008452cc\",\n            \"sr_competition_id\": \"sr:competition:32355\",\n            \"country\": \"Australia\",\n            \"name\": \"NSW League One\"\n        },\n        {\n            \"competition_id\": \"9ad7bf98-64eb-4357-a9a4-fe0f6995874c\",\n            \"sr_competition_id\": \"sr:competition:1246\",\n            \"country\": \"International Youth\",\n            \"name\": \"Viareggio Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7bd76-0daf-4995-97f0-3af93391cedb\",\n            \"sr_competition_id\": \"sr:competition:1234\",\n            \"country\": \"Brazil\",\n            \"name\": \"Paulista, Serie A2\"\n        },\n        {\n            \"competition_id\": \"9a947f1e-f6c7-4d12-bdce-04799a8cbdd6\",\n            \"sr_competition_id\": \"sr:competition:24638\",\n            \"country\": \"Norway\",\n            \"name\": \"2nd Division Group 1\"\n        },\n        {\n            \"competition_id\": \"9a947f05-47fe-4b51-80d3-b81dbea9cd4f\",\n            \"sr_competition_id\": \"sr:competition:2340\",\n            \"country\": \"Italy\",\n            \"name\": \"Primavera 1\"\n        },\n        {\n            \"competition_id\": \"9a94c2eb-7abc-4ad7-ba60-5fa192be9a24\",\n            \"sr_competition_id\": \"sr:competition:2494\",\n            \"country\": \"International\",\n            \"name\": \"CONCACAF Olympic Qualifications, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7ac09-d01a-42c8-a137-4745e9fb0932\",\n            \"sr_competition_id\": \"sr:competition:26560\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie C,  Promotion Playoffs\"\n        },\n        {\n            \"competition_id\": \"9a94aa2f-ad8a-4209-9d4a-4fd3c65eda8d\",\n            \"sr_competition_id\": \"sr:competition:15219\",\n            \"country\": \"Hong Kong, China\",\n            \"name\": \"FA Cup\"\n        },\n        {\n            \"competition_id\": \"9a94a435-624b-4d24-a0ba-49b567f534d5\",\n            \"sr_competition_id\": \"sr:competition:281\",\n            \"country\": \"Poland\",\n            \"name\": \"Puchar Polski\"\n        },\n        {\n            \"competition_id\": \"9b9ad40d-27ba-45c2-b695-b7a15945fdd4\",\n            \"sr_competition_id\": \"sr:competition:14\",\n            \"country\": \"International\",\n            \"name\": \"World Cup Qualification CONCACAF\"\n        },\n        {\n            \"competition_id\": \"9a9a31dc-17bc-4646-9d4c-88659a7da581\",\n            \"sr_competition_id\": \"sr:competition:1518\",\n            \"country\": \"Qatar\",\n            \"name\": \"QSL Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c243-b548-4c0d-9750-a7c330fb9cae\",\n            \"sr_competition_id\": \"sr:competition:2090\",\n            \"country\": \"Scotland\",\n            \"name\": \"Premier League, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7b16b-53be-4c07-87ec-71796d3cb9f4\",\n            \"sr_competition_id\": \"sr:competition:1682\",\n            \"country\": \"Tunisia\",\n            \"name\": \"Tunisian Cup\"\n        },\n        {\n            \"competition_id\": \"9f888b6a-6b8d-4f41-8848-8b53f448d63a\",\n            \"sr_competition_id\": \"sr:competition:47994\",\n            \"country\": \"Czechia\",\n            \"name\": \"2. Liga, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7c035-9203-47d9-816b-ca755a46425e\",\n            \"sr_competition_id\": \"sr:competition:32037\",\n            \"country\": \"Brazil\",\n            \"name\": \"Roraimense\"\n        },\n        {\n            \"competition_id\": \"9fb892a4-ca75-4ce7-aabc-a95493f921ab\",\n            \"sr_competition_id\": \"sr:competition:48339\",\n            \"country\": \"Brazil\",\n            \"name\": \"Carioca, Serie B2\"\n        },\n        {\n            \"competition_id\": \"9a94aa13-caf7-4001-8eb3-6f6e9a39a598\",\n            \"sr_competition_id\": \"sr:competition:26058\",\n            \"country\": \"England Amateur\",\n            \"name\": \"Southern League Premier South\"\n        },\n        {\n            \"competition_id\": \"9fa3a8b5-bb0a-4e51-88e8-e5b5232bad51\",\n            \"sr_competition_id\": \"sr:competition:48329\",\n            \"country\": \"Brazil\",\n            \"name\": \"Baiano, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa46-bd67-40cf-9e9a-bfb467531e20\",\n            \"sr_competition_id\": \"sr:competition:334\",\n            \"country\": \"England\",\n            \"name\": \"EFL Trophy\"\n        },\n        {\n            \"competition_id\": \"9a947f16-d7e0-478b-8345-f9d6607e5015\",\n            \"sr_competition_id\": \"sr:competition:41490\",\n            \"country\": \"International Clubs\",\n            \"name\": \"AFC Club Championship, Women\"\n        },\n        {\n            \"competition_id\": \"9a947efe-3754-4db8-89ac-3b5f57adae48\",\n            \"sr_competition_id\": \"sr:competition:279\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 FIFA World Cup\"\n        },\n        {\n            \"competition_id\": \"9a94abbd-c337-4e95-862c-e8cb2cf29a61\",\n            \"sr_competition_id\": \"sr:competition:17\",\n            \"country\": \"England\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9efa8df3-9b63-4706-bf51-67197a91b25e\",\n            \"sr_competition_id\": \"sr:competition:47123\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Alagoano, Serie A1\"\n        },\n        {\n            \"competition_id\": \"9a94aa36-e429-451a-a912-204a0d90ad90\",\n            \"sr_competition_id\": \"sr:competition:672\",\n            \"country\": \"Armenia\",\n            \"name\": \"First League\"\n        },\n        {\n            \"competition_id\": \"9d5007ba-4134-48ac-acf2-b46bbbf369af\",\n            \"sr_competition_id\": \"sr:competition:1850\",\n            \"country\": \"International Youth\",\n            \"name\": \"U19 Friendly Games, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7c701-f169-4800-a5cf-71815812c6ac\",\n            \"sr_competition_id\": \"sr:competition:36079\",\n            \"country\": \"International\",\n            \"name\": \"Arnold Clark Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa24-0b88-41a7-88bf-3c3177ea6478\",\n            \"sr_competition_id\": \"sr:competition:1079\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Regionalliga Southwest\"\n        },\n        {\n            \"competition_id\": \"9a94ac34-4253-46bc-8d41-2ccf1283f645\",\n            \"sr_competition_id\": \"sr:competition:717\",\n            \"country\": \"Montenegro\",\n            \"name\": \"2. CFL\"\n        },\n        {\n            \"competition_id\": \"9ad7b627-3608-4b2f-9f9e-a05e943e21d4\",\n            \"sr_competition_id\": \"sr:competition:1588\",\n            \"country\": \"Algeria\",\n            \"name\": \"Coupe d'Algerie\"\n        },\n        {\n            \"competition_id\": \"9ad7c46d-b2b0-4b69-bd8e-3f2e600006ec\",\n            \"sr_competition_id\": \"sr:competition:767\",\n            \"country\": \"Northern Ireland\",\n            \"name\": \"Irish Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f10-738f-40de-a708-1524442b5acd\",\n            \"sr_competition_id\": \"sr:competition:98\",\n            \"country\": \"Turkiye\",\n            \"name\": \"1. Lig\"\n        },\n        {\n            \"competition_id\": \"9a94ac62-8c41-444f-8bb6-71c7923a8fdb\",\n            \"sr_competition_id\": \"sr:competition:41488\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CAF Champions League, Women\"\n        },\n        {\n            \"competition_id\": \"9d0fd9b2-84cb-4797-9f84-f3d79efaa82b\",\n            \"sr_competition_id\": \"sr:competition:44289\",\n            \"country\": \"International Clubs\",\n            \"name\": \"FIFA Intercontinental Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa2a-eb3e-434e-a989-5e0c96433341\",\n            \"sr_competition_id\": \"sr:competition:703\",\n            \"country\": \"Argentina\",\n            \"name\": \"Primera Nacional\"\n        },\n        {\n            \"competition_id\": \"9ebea7a6-06f1-4af8-9e82-0f5784fce811\",\n            \"sr_competition_id\": \"sr:competition:36193\",\n            \"country\": \"Egypt\",\n            \"name\": \"League Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7bb92-943c-448e-b379-d1e498507ebc\",\n            \"sr_competition_id\": \"sr:competition:372\",\n            \"country\": \"Brazil\",\n            \"name\": \"Paulista, Serie A1\"\n        },\n        {\n            \"competition_id\": \"9ad7ded9-f56d-4034-9673-2fbebfbeddc5\",\n            \"sr_competition_id\": \"sr:competition:2296\",\n            \"country\": \"Saudi Arabia\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa4a-ad0e-4634-89c7-713fdd31723a\",\n            \"sr_competition_id\": \"sr:competition:1848\",\n            \"country\": \"International\",\n            \"name\": \"Africa Cup of Nations Qualification\"\n        },\n        {\n            \"competition_id\": \"9a94c8bd-be08-4427-89cf-07e3b805cd49\",\n            \"sr_competition_id\": \"sr:competition:207\",\n            \"country\": \"Scotland\",\n            \"name\": \"League 1\"\n        },\n        {\n            \"competition_id\": \"9a9ab81a-2f90-4f65-a0be-2d575226ca48\",\n            \"sr_competition_id\": \"sr:competition:1460\",\n            \"country\": \"Cyprus\",\n            \"name\": \"3rd Division\"\n        },\n        {\n            \"competition_id\": \"9a94c296-f2ed-4c2b-8e05-8015b2baed27\",\n            \"sr_competition_id\": \"sr:competition:18340\",\n            \"country\": \"Australia\",\n            \"name\": \"South Australia NPL, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c88f-472d-403e-91fb-dfa7ee725fb6\",\n            \"sr_competition_id\": \"sr:competition:146\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga Westfalen\"\n        },\n        {\n            \"competition_id\": \"9a9a2aad-831f-471e-81b2-86f5010e12a2\",\n            \"sr_competition_id\": \"sr:competition:2161\",\n            \"country\": \"International\",\n            \"name\": \"COSAFA Cup\"\n        },\n        {\n            \"competition_id\": \"9c24e7ef-a363-4126-b16b-2e204022c5d1\",\n            \"sr_competition_id\": \"sr:competition:346\",\n            \"country\": \"England\",\n            \"name\": \"Community Shield\"\n        },\n        {\n            \"competition_id\": \"9a94aa48-6bfd-4bd0-a282-12e19a23f7d5\",\n            \"sr_competition_id\": \"sr:competition:1111\",\n            \"country\": \"England Amateur\",\n            \"name\": \"Northern Premier League Premier\"\n        },\n        {\n            \"competition_id\": \"9ad7bcdb-2b5c-4693-8b27-e14c36a83ebf\",\n            \"sr_competition_id\": \"sr:competition:378\",\n            \"country\": \"Brazil\",\n            \"name\": \"Cearense, Serie A\"\n        },\n        {\n            \"competition_id\": \"9ad7ad1e-0f43-4178-a0d0-88618fe80ddd\",\n            \"sr_competition_id\": \"sr:competition:13681\",\n            \"country\": \"Canada\",\n            \"name\": \"Canadian Championship\"\n        },\n        {\n            \"competition_id\": \"9a94aa78-4e61-4e73-8e6b-00e35cee29f8\",\n            \"sr_competition_id\": \"sr:competition:182\",\n            \"country\": \"France\",\n            \"name\": \"Ligue 2\"\n        },\n        {\n            \"competition_id\": \"9ad7e049-c478-4155-a858-4266f2aa6fa3\",\n            \"sr_competition_id\": \"sr:competition:392\",\n            \"country\": \"International\",\n            \"name\": \"EAFF E-1 Football Championship\"\n        },\n        {\n            \"competition_id\": \"9a94ac37-5c2f-46fd-8513-51e359f3ce65\",\n            \"sr_competition_id\": \"sr:competition:1374\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie D, Group A\"\n        },\n        {\n            \"competition_id\": \"9a948089-3a9f-46fb-ba3e-4fd9ccb693ef\",\n            \"sr_competition_id\": \"sr:competition:512\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga Schleswig-Holstein\"\n        },\n        {\n            \"competition_id\": \"9ad7bba1-975c-42d5-84af-c400728b6e53\",\n            \"sr_competition_id\": \"sr:competition:37589\",\n            \"country\": \"England Amateur\",\n            \"name\": \"Premier League 2, Div. 2\"\n        },\n        {\n            \"competition_id\": \"9ad7b054-b250-4991-ad91-abf419648fec\",\n            \"sr_competition_id\": \"sr:competition:17028\",\n            \"country\": \"Northern Ireland\",\n            \"name\": \"NIFL Charity Shield\"\n        },\n        {\n            \"competition_id\": \"9a947f18-1df0-49a4-803a-bf30817c8d34\",\n            \"sr_competition_id\": \"sr:competition:2322\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"2. Bundesliga, Women\"\n        },\n        {\n            \"competition_id\": \"9eccd141-de75-40e5-bd56-b9115d6600d9\",\n            \"sr_competition_id\": \"sr:competition:46881\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Catarinense, Serie A\"\n        },\n        {\n            \"competition_id\": \"9a948079-51ca-461a-a14e-308917436acc\",\n            \"sr_competition_id\": \"sr:competition:26024\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 4\"\n        },\n        {\n            \"competition_id\": \"9a947f11-9cec-47af-8216-bdd3feef8484\",\n            \"sr_competition_id\": \"sr:competition:37195\",\n            \"country\": \"Denmark Amateur\",\n            \"name\": \"Danmarksserien\"\n        },\n        {\n            \"competition_id\": \"9a947f05-ec0b-4036-a28e-db8500b626d2\",\n            \"sr_competition_id\": \"sr:competition:777\",\n            \"country\": \"Republic of Korea\",\n            \"name\": \"K-League 2\"\n        },\n        {\n            \"competition_id\": \"9ad7abc5-276a-4fb2-8771-08a8c41a3941\",\n            \"sr_competition_id\": \"sr:competition:27070\",\n            \"country\": \"Colombia\",\n            \"name\": \"Primera A, Apertura\"\n        },\n        {\n            \"competition_id\": \"9a94808d-94ac-4d49-87e1-c2ecf6a2308e\",\n            \"sr_competition_id\": \"sr:competition:1105\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Mittelrheinliga\"\n        },\n        {\n            \"competition_id\": \"9a94c27c-b201-44aa-8d84-14634e34a3b2\",\n            \"sr_competition_id\": \"sr:competition:1268\",\n            \"country\": \"Australia\",\n            \"name\": \"Queensland NPL\"\n        },\n        {\n            \"competition_id\": \"9a94c258-c6d8-41f1-b6ad-e30c16d770d2\",\n            \"sr_competition_id\": \"sr:competition:480\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CONMEBOL Sudamericana\"\n        },\n        {\n            \"competition_id\": \"9a947f05-a2f3-438d-9239-c8ab3aafb924\",\n            \"sr_competition_id\": \"sr:competition:242\",\n            \"country\": \"USA\",\n            \"name\": \"MLS\"\n        },\n        {\n            \"competition_id\": \"9a9a2956-9b24-49e3-86a5-0163475c8257\",\n            \"sr_competition_id\": \"sr:competition:27821\",\n            \"country\": \"Bangladesh\",\n            \"name\": \"Football League\"\n        },\n        {\n            \"competition_id\": \"9fa677b3-da2a-4788-899b-335a0082753e\",\n            \"sr_competition_id\": \"sr:competition:48062\",\n            \"country\": \"Brazil\",\n            \"name\": \"Candango, Serie B\"\n        },\n        {\n            \"competition_id\": \"9ad7f14f-aaf7-497e-b147-8d0ab4c840a8\",\n            \"sr_competition_id\": \"sr:competition:31863\",\n            \"country\": \"Spain\",\n            \"name\": \"Supercopa, Women\"\n        },\n        {\n            \"competition_id\": \"9a9a2aae-2187-418f-ae01-eb14d78a399f\",\n            \"sr_competition_id\": \"sr:competition:39439\",\n            \"country\": \"Brazil\",\n            \"name\": \"Paranaense, 2. Divisao\"\n        },\n        {\n            \"competition_id\": \"9a947f10-d3d6-4e24-8055-87d032a753f5\",\n            \"sr_competition_id\": \"sr:competition:135\",\n            \"country\": \"Austria\",\n            \"name\": \"2. Liga\"\n        },\n        {\n            \"competition_id\": \"9a94aa4d-b246-4cea-949c-1d57afb4cf4c\",\n            \"sr_competition_id\": \"sr:competition:1390\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie D, Group I\"\n        },\n        {\n            \"competition_id\": \"9a947f16-aaf0-4546-96e0-57f18144786d\",\n            \"sr_competition_id\": \"sr:competition:726\",\n            \"country\": \"Georgia\",\n            \"name\": \"Erovnuli Liga 2\"\n        },\n        {\n            \"competition_id\": \"9ad7bb92-87c7-4daa-a81d-4f6b3e944c6c\",\n            \"sr_competition_id\": \"sr:competition:2505\",\n            \"country\": \"International\",\n            \"name\": \"SheBelieves Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f12-b009-4f6a-a0fb-24bda7d731aa\",\n            \"sr_competition_id\": \"sr:competition:947\",\n            \"country\": \"Hong Kong, China\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a948091-18bb-45e6-a31f-2f309527b502\",\n            \"sr_competition_id\": \"sr:competition:26048\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 16\"\n        },\n        {\n            \"competition_id\": \"9a94c272-35ff-43fa-9096-ae0f4477c581\",\n            \"sr_competition_id\": \"sr:competition:1786\",\n            \"country\": \"Australia\",\n            \"name\": \"Australia Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f04-63ed-478e-8e38-63187737d504\",\n            \"sr_competition_id\": \"sr:competition:853\",\n            \"country\": \"International Clubs\",\n            \"name\": \"Club Friendly Games\"\n        },\n        {\n            \"competition_id\": \"9ad7ab67-ee90-4e14-b6dd-71d33fdeef2e\",\n            \"sr_competition_id\": \"sr:competition:1568\",\n            \"country\": \"International Youth\",\n            \"name\": \"U20 CONCACAF Championship, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f07-b10b-4226-beb0-3f4aac91d6aa\",\n            \"sr_competition_id\": \"sr:competition:325\",\n            \"country\": \"Brazil\",\n            \"name\": \"Brasileiro Serie A\"\n        },\n        {\n            \"competition_id\": \"9a94aa25-79e4-4051-9d14-4a562e07f2c5\",\n            \"sr_competition_id\": \"sr:competition:74\",\n            \"country\": \"Sweden\",\n            \"name\": \"Division 2, Sodra Svealand\"\n        },\n        {\n            \"competition_id\": \"9a94aa37-d4b6-435e-9c3c-87969cd39a7a\",\n            \"sr_competition_id\": \"sr:competition:1369\",\n            \"country\": \"United Arab Emirates\",\n            \"name\": \"Pro League Cup\"\n        },\n        {\n            \"competition_id\": \"9a948074-d1b7-42e5-87b6-bd2ee47bbca0\",\n            \"sr_competition_id\": \"sr:competition:19238\",\n            \"country\": \"United Arab Emirates\",\n            \"name\": \"First Division\"\n        },\n        {\n            \"competition_id\": \"9a947f05-b4cc-43d7-ba97-575a9d4f10ac\",\n            \"sr_competition_id\": \"sr:competition:2094\",\n            \"country\": \"Japan\",\n            \"name\": \"J3 League\"\n        },\n        {\n            \"competition_id\": \"01994798-b1de-704e-befc-45a3e9696fa0\",\n            \"sr_competition_id\": \"sr:competition:48741\",\n            \"country\": \"Turkiye\",\n            \"name\": \"Super Lig, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aca2-0248-49f2-a7fc-708141deb690\",\n            \"sr_competition_id\": \"sr:competition:2075\",\n            \"country\": \"Egypt\",\n            \"name\": \"Egypt Cup\"\n        },\n        {\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"sr_competition_id\": \"sr:competition:679\",\n            \"country\": \"International Clubs\",\n            \"name\": \"UEFA Europa League\"\n        },\n        {\n            \"competition_id\": \"9ad7bbe3-14d7-4d6f-acc6-74545b768560\",\n            \"sr_competition_id\": \"sr:competition:83\",\n            \"country\": \"Finland\",\n            \"name\": \"Liigacup\"\n        },\n        {\n            \"competition_id\": \"9e6ace13-3d88-41d9-9eea-fb2b2624daa5\",\n            \"sr_competition_id\": \"sr:competition:46211\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Brasileiro Serie B\"\n        },\n        {\n            \"competition_id\": \"9a94ac65-7d24-4e8e-b55f-9238db1fb4d6\",\n            \"sr_competition_id\": \"sr:competition:1240\",\n            \"country\": \"Chile\",\n            \"name\": \"Primera B\"\n        },\n        {\n            \"competition_id\": \"01990b30-fd33-728f-8cd2-6cd72814b6f4\",\n            \"sr_competition_id\": \"sr:competition:48341\",\n            \"country\": \"Brazil\",\n            \"name\": \"Alagoano, Women\"\n        },\n        {\n            \"competition_id\": \"9a94ac1e-1179-4cd2-bf63-a4ea2c1b7601\",\n            \"sr_competition_id\": \"sr:competition:40297\",\n            \"country\": \"Brazil\",\n            \"name\": \"Gaucho, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f09-6a6b-4d39-a016-dd765614c954\",\n            \"sr_competition_id\": \"sr:competition:851\",\n            \"country\": \"International\",\n            \"name\": \"Int. Friendly Games\"\n        },\n        {\n            \"competition_id\": \"9ad7be6b-aa8b-471b-92a3-3e986643dbab\",\n            \"sr_competition_id\": \"sr:competition:15227\",\n            \"country\": \"Brazil\",\n            \"name\": \"Alagoano, Serie A\"\n        },\n        {\n            \"competition_id\": \"9a94aa24-f05d-4ebd-b501-700c0278ff4e\",\n            \"sr_competition_id\": \"sr:competition:813\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga Niedersachsen\"\n        },\n        {\n            \"competition_id\": \"9a947f0b-3a67-4533-9d72-08d78fa62aa4\",\n            \"sr_competition_id\": \"sr:competition:937\",\n            \"country\": \"Morocco\",\n            \"name\": \"Botola Pro D1\"\n        },\n        {\n            \"competition_id\": \"9ad7c274-aeae-4f1d-8770-f78eccf47c04\",\n            \"sr_competition_id\": \"sr:competition:1020\",\n            \"country\": \"South Africa\",\n            \"name\": \"FA Cup\"\n        },\n        {\n            \"competition_id\": \"9a94a909-6619-40fa-b98e-808e89d31b63\",\n            \"sr_competition_id\": \"sr:competition:27072\",\n            \"country\": \"Colombia\",\n            \"name\": \"Primera A, Clausura\"\n        },\n        {\n            \"competition_id\": \"9a94ac06-b87f-4cdb-8faf-5310690e1170\",\n            \"sr_competition_id\": \"sr:competition:7\",\n            \"country\": \"International Clubs\",\n            \"name\": \"UEFA Champions League\"\n        },\n        {\n            \"competition_id\": \"9cf7e0c2-02d4-4be0-a035-f5fe054be432\",\n            \"sr_competition_id\": \"sr:competition:2376\",\n            \"country\": \"Lebanon\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f0c-4a28-479a-b7b1-d84eeaa95288\",\n            \"sr_competition_id\": \"sr:competition:25841\",\n            \"country\": \"Poland\",\n            \"name\": \"III Liga, Group 4\"\n        },\n        {\n            \"competition_id\": \"9ad7a9f1-f83c-480d-83c5-a3b4604a9157\",\n            \"sr_competition_id\": \"sr:competition:799\",\n            \"country\": \"Germany\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9f615140-e771-4c11-a4ec-f15d82ffffab\",\n            \"sr_competition_id\": \"sr:competition:47658\",\n            \"country\": \"Finland\",\n            \"name\": \"U20 SM\"\n        },\n        {\n            \"competition_id\": \"9ad7d65e-9b3d-48bf-bea3-533c101a5c6e\",\n            \"sr_competition_id\": \"sr:competition:534\",\n            \"country\": \"Denmark Amateur\",\n            \"name\": \"Danmarksserien, Pulje 2\"\n        },\n        {\n            \"competition_id\": \"9a94a436-6dc8-4659-9803-1af50ef96f70\",\n            \"sr_competition_id\": \"sr:competition:9\",\n            \"country\": \"Belgium\",\n            \"name\": \"Challenger Pro League\"\n        },\n        {\n            \"competition_id\": \"9a94ac0a-edbe-4b37-be34-af5c0e51e8a4\",\n            \"sr_competition_id\": \"sr:competition:176\",\n            \"country\": \"England Amateur\",\n            \"name\": \"National League North\"\n        },\n        {\n            \"competition_id\": \"9a94c886-b6c1-4376-a2df-95c362d0ee64\",\n            \"sr_competition_id\": \"sr:competition:15091\",\n            \"country\": \"Brazil\",\n            \"name\": \"Brasileiro A1, Women\"\n        },\n        {\n            \"competition_id\": \"019909f1-84a8-706f-bbd2-ec365d42094d\",\n            \"sr_competition_id\": \"sr:competition:48617\",\n            \"country\": \"Hong Kong, China\",\n            \"name\": \"Senior Shield\"\n        },\n        {\n            \"competition_id\": \"9a94ac81-e918-4e39-8fc9-6ec4c444d14a\",\n            \"sr_competition_id\": \"sr:competition:40817\",\n            \"country\": \"Mali\",\n            \"name\": \"Ligue 1\"\n        },\n        {\n            \"competition_id\": \"9a9b1bea-b295-4d91-a6fc-84641d871d85\",\n            \"sr_competition_id\": \"sr:competition:504\",\n            \"country\": \"Iceland\",\n            \"name\": \"Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7ab6e-0e83-454d-9229-378990e1664b\",\n            \"sr_competition_id\": \"sr:competition:27094\",\n            \"country\": \"Costa Rica\",\n            \"name\": \"Primera Division, Clausura\"\n        },\n        {\n            \"competition_id\": \"9a94aa66-e078-4926-9171-c6d8bf751e80\",\n            \"sr_competition_id\": \"sr:competition:808\",\n            \"country\": \"Egypt\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9b900afa-39f2-45df-8cac-c41195684f08\",\n            \"sr_competition_id\": \"sr:competition:42421\",\n            \"country\": \"Costa Rica\",\n            \"name\": \"Primera Division, Women\"\n        },\n        {\n            \"competition_id\": \"9bc61b4a-6628-4123-b59a-3a43fe71fcfd\",\n            \"sr_competition_id\": \"sr:competition:42629\",\n            \"country\": \"International Clubs\",\n            \"name\": \"Qatar-UAE Super Shield\"\n        },\n        {\n            \"competition_id\": \"0199925a-ac73-7288-8368-9655905d2f45\",\n            \"sr_competition_id\": \"sr:competition:48975\",\n            \"country\": \"International Clubs\",\n            \"name\": \"FIFA Champions Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7bc38-9860-4ed1-ac76-d73145cc2a45\",\n            \"sr_competition_id\": \"sr:competition:38883\",\n            \"country\": \"Brazil\",\n            \"name\": \"Copa Alagoas\"\n        },\n        {\n            \"competition_id\": \"9a94c282-8048-4447-b1bb-c5ff1013dfad\",\n            \"sr_competition_id\": \"sr:competition:22\",\n            \"country\": \"Norway\",\n            \"name\": \"1st Division\"\n        },\n        {\n            \"competition_id\": \"9ad7bce9-9c32-461b-9c12-e2572974d73f\",\n            \"sr_competition_id\": \"sr:competition:27811\",\n            \"country\": \"Brazil\",\n            \"name\": \"Sul-Mato-Grossense\"\n        },\n        {\n            \"competition_id\": \"9a947f0e-cb00-4462-b95f-b9ccaa8fe382\",\n            \"sr_competition_id\": \"sr:competition:170\",\n            \"country\": \"Croatia\",\n            \"name\": \"HNL\"\n        },\n        {\n            \"competition_id\": \"9a94aa44-bde3-4bee-82d7-a5de7829f5d4\",\n            \"sr_competition_id\": \"sr:competition:25\",\n            \"country\": \"England\",\n            \"name\": \"League Two\"\n        },\n        {\n            \"competition_id\": \"9a94a93e-6eec-460c-a73d-1fedef0e96d2\",\n            \"sr_competition_id\": \"sr:competition:748\",\n            \"country\": \"International Youth\",\n            \"name\": \"U19 European Championship, Qualification\"\n        },\n        {\n            \"competition_id\": \"9a94a445-b675-4046-8e85-c6cc80116a1c\",\n            \"sr_competition_id\": \"sr:competition:2436\",\n            \"country\": \"Tanzania\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a948083-b489-4f92-b5d7-1152be645ee6\",\n            \"sr_competition_id\": \"sr:competition:26050\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 17\"\n        },\n        {\n            \"competition_id\": \"9a94c848-a050-4372-bb07-6a08bb3da400\",\n            \"sr_competition_id\": \"sr:competition:1258\",\n            \"country\": \"Australia\",\n            \"name\": \"South Australia NPL\"\n        },\n        {\n            \"competition_id\": \"9ad7e5d5-21f9-43be-9771-a26dc5374e12\",\n            \"sr_competition_id\": \"sr:competition:38885\",\n            \"country\": \"Brazil\",\n            \"name\": \"Recopa Catarinense\"\n        },\n        {\n            \"competition_id\": \"9bc53e05-cdb7-4139-a0b3-2ed321e07f47\",\n            \"sr_competition_id\": \"sr:competition:42627\",\n            \"country\": \"International Clubs\",\n            \"name\": \"Qatar-UAE Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a9a2951-a187-40e5-a04f-a541ed47f330\",\n            \"sr_competition_id\": \"sr:competition:40057\",\n            \"country\": \"Brazil\",\n            \"name\": \"Taca Fares Lopes\"\n        },\n        {\n            \"competition_id\": \"9b986cb0-9ac6-43a8-8bea-fba313064c61\",\n            \"sr_competition_id\": \"sr:competition:42371\",\n            \"country\": \"International\",\n            \"name\": \"CAF Olympic Qualification, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7b1d5-a4a4-43c0-8832-093d952340d5\",\n            \"sr_competition_id\": \"sr:competition:2244\",\n            \"country\": \"Mexico\",\n            \"name\": \"Trofeo de Campeon de Campeones\"\n        },\n        {\n            \"competition_id\": \"9a94aa0c-0bc7-4d94-aafe-c3846ad5f56f\",\n            \"sr_competition_id\": \"sr:competition:1072\",\n            \"country\": \"International Youth\",\n            \"name\": \"U23 Friendly Games\"\n        },\n        {\n            \"competition_id\": \"9a94a90a-686e-42b4-b093-2eca72ad4d07\",\n            \"sr_competition_id\": \"sr:competition:101\",\n            \"country\": \"Japan\",\n            \"name\": \"J.League Cup\"\n        },\n        {\n            \"competition_id\": \"9abab780-1de9-4e51-a80b-584a3a020ff9\",\n            \"sr_competition_id\": \"sr:competition:939\",\n            \"country\": \"Kuwait\",\n            \"name\": \"Crown Prince Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c806-9b41-41b2-9c9c-2ed8bf387c49\",\n            \"sr_competition_id\": \"sr:competition:14045\",\n            \"country\": \"Israel\",\n            \"name\": \"League Cup, National\"\n        },\n        {\n            \"competition_id\": \"9a94c806-346e-44cd-b2a8-863ee9396f8e\",\n            \"sr_competition_id\": \"sr:competition:32367\",\n            \"country\": \"Australia\",\n            \"name\": \"Victoria Premier League 1\"\n        },\n        {\n            \"competition_id\": \"9f6ba8d5-9c15-4043-aa4f-69b25243c229\",\n            \"sr_competition_id\": \"sr:competition:47950\",\n            \"country\": \"Costa Rica\",\n            \"name\": \"Recopa\"\n        },\n        {\n            \"competition_id\": \"9ad7ad4a-3ad4-4550-9fb7-2bb2cf914df6\",\n            \"sr_competition_id\": \"sr:competition:25729\",\n            \"country\": \"International\",\n            \"name\": \"Central American and Caribbean Games, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7af1c-e7b3-4835-ae74-f61b6e300a38\",\n            \"sr_competition_id\": \"sr:competition:766\",\n            \"country\": \"Georgia\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c806-1449-4721-a82b-17f26b0f4ef0\",\n            \"sr_competition_id\": \"sr:competition:1274\",\n            \"country\": \"Australia\",\n            \"name\": \"NSW NPL 1\"\n        },\n        {\n            \"competition_id\": \"9a94aa3b-3f2d-4f5d-bae3-1e6136164c47\",\n            \"sr_competition_id\": \"sr:competition:70\",\n            \"country\": \"Sweden\",\n            \"name\": \"Division 2, Norra Svealand\"\n        },\n        {\n            \"competition_id\": \"9a94a448-8406-4234-a8ed-4850a8ca678d\",\n            \"sr_competition_id\": \"sr:competition:929\",\n            \"country\": \"Jordan\",\n            \"name\": \"Jordan League\"\n        },\n        {\n            \"competition_id\": \"9a947f03-21cc-462d-8307-8ded47583deb\",\n            \"sr_competition_id\": \"sr:competition:823\",\n            \"country\": \"Czechia\",\n            \"name\": \"1. Liga, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7bbd9-e178-4c4a-96df-496b01785562\",\n            \"sr_competition_id\": \"sr:competition:16358\",\n            \"country\": null,\n            \"name\": \"U20 Liga MX\"\n        },\n        {\n            \"competition_id\": \"9c4675fb-4dc4-4c82-a59d-6d27b4b01902\",\n            \"sr_competition_id\": \"sr:competition:19282\",\n            \"country\": \"Venezuela\",\n            \"name\": \"Copa Venezuela\"\n        },\n        {\n            \"competition_id\": \"9b9e0a57-7caa-445c-bf71-55e2c3c96cd3\",\n            \"sr_competition_id\": \"sr:competition:436\",\n            \"country\": \"International\",\n            \"name\": \"Olympic Tournament\"\n        },\n        {\n            \"competition_id\": \"9ad7c0c9-8f84-4055-bc91-12145deb0a75\",\n            \"sr_competition_id\": \"sr:competition:27749\",\n            \"country\": \"Brazil\",\n            \"name\": \"Paraense, Serie A\"\n        },\n        {\n            \"competition_id\": \"9ed13b59-6afc-41b8-af38-202686b8dde0\",\n            \"sr_competition_id\": \"sr:competition:19486\",\n            \"country\": \"Northern Ireland\",\n            \"name\": \"Premiership, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7bbbc-f5a3-410a-9d2f-364d19096c35\",\n            \"sr_competition_id\": \"sr:competition:27819\",\n            \"country\": \"Brazil\",\n            \"name\": \"Piauiense\"\n        },\n        {\n            \"competition_id\": \"9f4d6c74-2569-441d-97b5-942518b9bcd3\",\n            \"sr_competition_id\": \"sr:competition:47534\",\n            \"country\": \"Brazil\",\n            \"name\": \"Mato-Grossense, 2. Divisao\"\n        },\n        {\n            \"competition_id\": \"9a9a31de-118d-424a-a449-6e22f381b289\",\n            \"sr_competition_id\": \"sr:competition:19\",\n            \"country\": \"England\",\n            \"name\": \"FA Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7b6dc-c072-4757-a6b6-af7026c44b75\",\n            \"sr_competition_id\": \"sr:competition:27398\",\n            \"country\": \"Guatemala\",\n            \"name\": \"Liga Nacional, Clausura\"\n        },\n        {\n            \"competition_id\": \"9a947f0f-4ccc-4dc1-99a6-331314464f08\",\n            \"sr_competition_id\": \"sr:competition:40727\",\n            \"country\": \"Czechia\",\n            \"name\": \"Divize A\"\n        },\n        {\n            \"competition_id\": \"9a947f02-38c5-47b9-ae4d-9877fd1ac3d1\",\n            \"sr_competition_id\": \"sr:competition:1135\",\n            \"country\": \"Bulgaria\",\n            \"name\": \"Vtora Liga\"\n        },\n        {\n            \"competition_id\": \"9ad7ab64-d9fe-4b95-8aba-c672b4dae4d8\",\n            \"sr_competition_id\": \"sr:competition:36281\",\n            \"country\": \"Colombia\",\n            \"name\": \"Liga Femenina\"\n        },\n        {\n            \"competition_id\": \"9a94aa23-6e93-4dd5-b290-2b921a7d70bf\",\n            \"sr_competition_id\": \"sr:competition:34822\",\n            \"country\": \"Denmark\",\n            \"name\": \"3rd Division\"\n        },\n        {\n            \"competition_id\": \"9a94ac0e-e83f-451d-83fb-b9b1214ccba1\",\n            \"sr_competition_id\": \"sr:competition:40249\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CONCACAF Central American Cup\"\n        },\n        {\n            \"competition_id\": \"9f826ce1-a22e-4c14-b221-99da061cdf40\",\n            \"sr_competition_id\": \"sr:competition:47660\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie A Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c23c-8726-45a3-a47f-b78946bc869b\",\n            \"sr_competition_id\": \"sr:competition:28879\",\n            \"country\": \"Iceland\",\n            \"name\": \"3. deild\"\n        },\n        {\n            \"competition_id\": \"9a94ac49-9287-4495-86dc-a38896d44148\",\n            \"sr_competition_id\": \"sr:competition:399\",\n            \"country\": \"Switzerland\",\n            \"name\": \"Schweizer Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7c137-4f5b-4e75-b97d-63e980a41221\",\n            \"sr_competition_id\": \"sr:competition:31793\",\n            \"country\": \"Brazil\",\n            \"name\": \"Campeonato Tocantinense\"\n        },\n        {\n            \"competition_id\": \"9a94ac32-d965-4825-9517-3f9df5324afb\",\n            \"sr_competition_id\": \"sr:competition:199\",\n            \"country\": \"North Macedonia\",\n            \"name\": \"1. MFL\"\n        },\n        {\n            \"competition_id\": \"9ad7ac09-f013-4b92-a146-662c27a9a8fd\",\n            \"sr_competition_id\": \"sr:competition:32039\",\n            \"country\": \"Brazil\",\n            \"name\": \"Brasileiro Serie A2, Women\"\n        },\n        {\n            \"competition_id\": \"9f97e20c-b309-436a-8029-3fa0c0a6774f\",\n            \"sr_competition_id\": \"sr:competition:47988\",\n            \"country\": \"Netherlands\",\n            \"name\": \"Derde Divisie\"\n        },\n        {\n            \"competition_id\": \"9a94ac3e-c071-4a62-8ebb-69a6b6c174f5\",\n            \"sr_competition_id\": \"sr:competition:1129\",\n            \"country\": \"England Amateur\",\n            \"name\": \"U21 Premier League 2\"\n        },\n        {\n            \"competition_id\": \"9a94ac3c-d70a-417c-8348-7689e3ad8fe9\",\n            \"sr_competition_id\": \"sr:competition:20\",\n            \"country\": \"Norway\",\n            \"name\": \"Eliteserien\"\n        },\n        {\n            \"competition_id\": \"9ad7b08e-6cae-49ec-ab11-fe486dbf816c\",\n            \"sr_competition_id\": \"sr:competition:511\",\n            \"country\": \"Poland\",\n            \"name\": \"Superpuchar Polski\"\n        },\n        {\n            \"competition_id\": \"9a947f06-6c49-413c-b9bf-960d08940b27\",\n            \"sr_competition_id\": \"sr:competition:196\",\n            \"country\": \"Japan\",\n            \"name\": \"J.League\"\n        },\n        {\n            \"competition_id\": \"9ad7ba20-febf-4efa-9922-588a0feb1ba0\",\n            \"sr_competition_id\": \"sr:competition:698\",\n            \"country\": \"Romania\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9b196284-304e-4c17-a6ce-7d888e1c4113\",\n            \"sr_competition_id\": \"sr:competition:42093\",\n            \"country\": \"India\",\n            \"name\": \"I-League 2\"\n        },\n        {\n            \"competition_id\": \"9a9a31e1-05d9-4415-8247-62410bf334b2\",\n            \"sr_competition_id\": \"sr:competition:41278\",\n            \"country\": \"Brazil\",\n            \"name\": \"Cearense, Women\"\n        },\n        {\n            \"competition_id\": \"9a94abe9-5a6c-4b88-a2da-1eb7cf46a1b1\",\n            \"sr_competition_id\": \"sr:competition:39033\",\n            \"country\": \"Bolivia\",\n            \"name\": \"Copa Bolivia\"\n        },\n        {\n            \"competition_id\": \"9ad7d65e-a7a1-4085-88d8-442f7376c3d7\",\n            \"sr_competition_id\": \"sr:competition:14229\",\n            \"country\": \"Denmark Amateur\",\n            \"name\": \"Danmarksserien, Pulje 4\"\n        },\n        {\n            \"competition_id\": \"9a94c80c-5237-4fe2-86fa-b1e9979961ca\",\n            \"sr_competition_id\": \"sr:competition:1638\",\n            \"country\": \"Australia\",\n            \"name\": \"Northern NSW NPL\"\n        },\n        {\n            \"competition_id\": \"9accd3ff-6322-49e1-b7ce-ec098b95c583\",\n            \"sr_competition_id\": \"sr:competition:377\",\n            \"country\": \"Brazil\",\n            \"name\": \"Gaucho, Serie A1\"\n        },\n        {\n            \"competition_id\": \"9a9b1ec9-91f7-4455-b38d-b5b210fddcc4\",\n            \"sr_competition_id\": \"sr:competition:1343\",\n            \"country\": \"San Marino\",\n            \"name\": \"Supercup\"\n        },\n        {\n            \"competition_id\": \"9a94aa71-788e-42d4-8c93-32a6e2722b82\",\n            \"sr_competition_id\": \"sr:competition:266\",\n            \"country\": \"Israel\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9ad7bc68-b0e9-4c14-ab7d-04274d9ede45\",\n            \"sr_competition_id\": \"sr:competition:27090\",\n            \"country\": \"El Salvador\",\n            \"name\": \"Primera Division, Clausura\"\n        },\n        {\n            \"competition_id\": \"9a94aa24-e4e9-479c-b16e-98d083f50073\",\n            \"sr_competition_id\": \"sr:competition:493\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Regionalliga West\"\n        },\n        {\n            \"competition_id\": \"9a94ac7d-9207-4b14-a6ef-bedc4b2982e9\",\n            \"sr_competition_id\": \"sr:competition:26388\",\n            \"country\": \"Turkiye Amateur\",\n            \"name\": \"3. Lig, Group 2\"\n        },\n        {\n            \"competition_id\": \"9a947f03-4d57-4a03-877c-51e841cb0bda\",\n            \"sr_competition_id\": \"sr:competition:1970\",\n            \"country\": \"Israel\",\n            \"name\": \"Liga Alef\"\n        },\n        {\n            \"competition_id\": \"9ec487a2-d845-4b48-8e04-db6dad220525\",\n            \"sr_competition_id\": \"sr:competition:46851\",\n            \"country\": \"Uruguay\",\n            \"name\": \"Primera Division, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f1f-4b9a-4c8d-af87-52167cc888c8\",\n            \"sr_competition_id\": \"sr:competition:677\",\n            \"country\": \"Latvia\",\n            \"name\": \"1.Liga\"\n        },\n        {\n            \"competition_id\": \"9a9a296d-de73-428b-bd71-b72c04f90f1e\",\n            \"sr_competition_id\": \"sr:competition:29118\",\n            \"country\": \"Brazil\",\n            \"name\": \"Amapaense\"\n        },\n        {\n            \"competition_id\": \"9a94aa21-7874-4723-bf87-5d1e6becf617\",\n            \"sr_competition_id\": \"sr:competition:167\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Regionalliga West\"\n        },\n        {\n            \"competition_id\": \"9ad7bc38-9785-483f-a489-c7427570b86c\",\n            \"sr_competition_id\": \"sr:competition:15231\",\n            \"country\": \"Brazil\",\n            \"name\": \"Paraibano\"\n        },\n        {\n            \"competition_id\": \"9a947f06-57bb-4cee-8f72-7f926e4da123\",\n            \"sr_competition_id\": \"sr:competition:562\",\n            \"country\": \"Romania\",\n            \"name\": \"Liga 2\"\n        },\n        {\n            \"competition_id\": \"9a94aa24-9369-404d-95d1-b95e665312d5\",\n            \"sr_competition_id\": \"sr:competition:24648\",\n            \"country\": \"Norway\",\n            \"name\": \"3rd Division Group 4\"\n        },\n        {\n            \"competition_id\": \"9a94aa3f-a309-4ee3-aeb7-88e8df354576\",\n            \"sr_competition_id\": \"sr:competition:1117\",\n            \"country\": \"Belgium\",\n            \"name\": \"U21 Pro League\"\n        },\n        {\n            \"competition_id\": \"9ebc7900-94fd-4469-8630-c796643476ae\",\n            \"sr_competition_id\": \"sr:competition:46811\",\n            \"country\": \"Brazil\",\n            \"name\": \"Copa Espirito Santo\"\n        },\n        {\n            \"competition_id\": \"9a94c8bd-ce11-4dcb-a742-d5721726fa55\",\n            \"sr_competition_id\": \"sr:competition:373\",\n            \"country\": \"Brazil\",\n            \"name\": \"Copa do Brasil\"\n        },\n        {\n            \"competition_id\": \"9a94aa12-4f55-4d10-804c-a9170e100a6e\",\n            \"sr_competition_id\": \"sr:competition:329\",\n            \"country\": \"Spain\",\n            \"name\": \"Copa del Rey\"\n        },\n        {\n            \"competition_id\": \"9a94c25c-12f2-46bf-85e7-f38f3681c355\",\n            \"sr_competition_id\": \"sr:competition:26552\",\n            \"country\": \"International Clubs\",\n            \"name\": \"Campeones Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa6a-a81a-4261-816c-fef112d0e366\",\n            \"sr_competition_id\": \"sr:competition:198\",\n            \"country\": \"Lithuania\",\n            \"name\": \"A Lyga\"\n        },\n        {\n            \"competition_id\": \"9ad7bba1-a909-4ac2-9ba2-3f248dab165c\",\n            \"sr_competition_id\": \"sr:competition:30991\",\n            \"country\": \"Belgium\",\n            \"name\": \"Coupe U21 Pro League\"\n        },\n        {\n            \"competition_id\": \"9ae27b3f-3af1-4f08-afd6-f9873e187d15\",\n            \"sr_competition_id\": \"sr:competition:341\",\n            \"country\": \"Italy\",\n            \"name\": \"Supercoppa\"\n        },\n        {\n            \"competition_id\": \"9a94aa2f-a3ec-4bf1-8fa9-8dda378fc723\",\n            \"sr_competition_id\": \"sr:competition:782\",\n            \"country\": \"China\",\n            \"name\": \"China League 1\"\n        },\n        {\n            \"competition_id\": \"9b56757e-70ba-4c2c-af56-fb76293ea44c\",\n            \"sr_competition_id\": \"sr:competition:38887\",\n            \"country\": \"Brazil\",\n            \"name\": \"Recopa Gaucha\"\n        },\n        {\n            \"competition_id\": \"9a947f0c-6e1f-4f16-aeeb-e9ca0539bf87\",\n            \"sr_competition_id\": \"sr:competition:19274\",\n            \"country\": \"Portugal\",\n            \"name\": \"Campeonato Nacional, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7bbf1-87b8-47d0-ab1a-2c6ee06ab62a\",\n            \"sr_competition_id\": \"sr:competition:36159\",\n            \"country\": \"Gibraltar\",\n            \"name\": \"Rock Cup\"\n        },\n        {\n            \"competition_id\": \"9b0adab2-3604-43d9-839a-f274de76213e\",\n            \"sr_competition_id\": \"sr:competition:1632\",\n            \"country\": \"Ireland\",\n            \"name\": \"FAI Presidents Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7be48-ba56-4994-9303-bae0913f820e\",\n            \"sr_competition_id\": \"sr:competition:92\",\n            \"country\": \"Brazil\",\n            \"name\": \"Carioca, Serie A\"\n        },\n        {\n            \"competition_id\": \"9a94aa38-d7c9-46af-85c1-5d3cb319becb\",\n            \"sr_competition_id\": \"sr:competition:68\",\n            \"country\": \"Sweden\",\n            \"name\": \"Ettan, Sodra\"\n        },\n        {\n            \"competition_id\": \"9f9f9f47-c2b2-4292-9f51-e36499017186\",\n            \"sr_competition_id\": \"sr:competition:48291\",\n            \"country\": \"Serbia\",\n            \"name\": \"U19 League\"\n        },\n        {\n            \"competition_id\": \"9a94ac0e-810e-4345-83e9-14610154cab7\",\n            \"sr_competition_id\": \"sr:competition:40251\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CONCACAF Caribbean Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa3c-4ff2-4858-ac47-a7d3fb34b351\",\n            \"sr_competition_id\": \"sr:competition:14193\",\n            \"country\": \"Denmark\",\n            \"name\": \"A Liga, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c8c9-32fb-4cf3-a29b-1aeb4803668e\",\n            \"sr_competition_id\": \"sr:competition:2537\",\n            \"country\": \"Vietnam\",\n            \"name\": \"Vietnam Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f15-82be-4728-b39a-183d380b96bf\",\n            \"sr_competition_id\": \"sr:competition:166\",\n            \"country\": \"Austria Amateur\",\n            \"name\": \"Regionalliga Ost\"\n        },\n        {\n            \"competition_id\": \"9a94ac8b-8cba-42a9-bd22-2117ee22a2cf\",\n            \"sr_competition_id\": \"sr:competition:578\",\n            \"country\": \"Belarus\",\n            \"name\": \"Belarus Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7adf5-f517-4087-8983-b6eb432e4795\",\n            \"sr_competition_id\": \"sr:competition:27416\",\n            \"country\": \"Honduras\",\n            \"name\": \"Liga Nacional. Clausura\"\n        },\n        {\n            \"competition_id\": \"9fa3484b-d4f1-4b97-8431-10240c9bf321\",\n            \"sr_competition_id\": \"sr:competition:48235\",\n            \"country\": \"Romania\",\n            \"name\": \"Superliga, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa21-690f-4662-944f-05239c01a37e\",\n            \"sr_competition_id\": \"sr:competition:1139\",\n            \"country\": \"France\",\n            \"name\": \"Premiere Ligue, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c87e-b7af-4064-af62-4f0f6872de3e\",\n            \"sr_competition_id\": \"sr:competition:16356\",\n            \"country\": \"International\",\n            \"name\": \"Kings Cup\"\n        },\n        {\n            \"competition_id\": \"0199d1a4-3e42-711d-b323-556d321cc7a2\",\n            \"sr_competition_id\": \"sr:competition:48905\",\n            \"country\": \"Japan\",\n            \"name\": \"WE League Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a94ac98-9965-4f62-a880-ff210ac4add6\",\n            \"sr_competition_id\": \"sr:competition:749\",\n            \"country\": \"Kazakhstan\",\n            \"name\": \"Kazakhstan Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa6f-8dd8-42d9-8d25-93747177b4bb\",\n            \"sr_competition_id\": \"sr:competition:41366\",\n            \"country\": \"International Youth\",\n            \"name\": \"U23 Pan American Games\"\n        },\n        {\n            \"competition_id\": \"01993614-44bc-7093-bd68-fc20bf698a2a\",\n            \"sr_competition_id\": \"sr:competition:48513\",\n            \"country\": \"Saudi Arabia\",\n            \"name\": \"U21 Elite League\"\n        },\n        {\n            \"competition_id\": \"9ad7abff-2f76-476c-b371-bef212f6ccd9\",\n            \"sr_competition_id\": \"sr:competition:1654\",\n            \"country\": \"Philippines\",\n            \"name\": \"Philippines Footb. League\"\n        },\n        {\n            \"competition_id\": \"9a94c800-9506-4a31-b254-1e34a23a58e6\",\n            \"sr_competition_id\": \"sr:competition:80\",\n            \"country\": \"Sweden\",\n            \"name\": \"Svenska Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f04-2ca6-4990-974b-d02db96b4b00\",\n            \"sr_competition_id\": \"sr:competition:390\",\n            \"country\": \"Brazil\",\n            \"name\": \"Brasileiro Serie B\"\n        },\n        {\n            \"competition_id\": \"9a94ac1c-ad80-4340-910d-d7662b5b37e9\",\n            \"sr_competition_id\": \"sr:competition:761\",\n            \"country\": \"Latvia\",\n            \"name\": \"Latvijas Kauss\"\n        },\n        {\n            \"competition_id\": \"9ad7da38-20ba-4bb1-982f-c5aaeda45539\",\n            \"sr_competition_id\": \"sr:competition:638\",\n            \"country\": \"International Youth\",\n            \"name\": \"U20 CONCACAF Championship\"\n        },\n        {\n            \"competition_id\": \"9a94a44b-39bc-4575-9f04-b5612e1706ad\",\n            \"sr_competition_id\": \"sr:competition:778\",\n            \"country\": \"Armenia\",\n            \"name\": \"Armenian Cup\"\n        },\n        {\n            \"competition_id\": \"9a94abff-3e6f-47f2-a358-a1b2fc39ae5a\",\n            \"sr_competition_id\": \"sr:competition:655\",\n            \"country\": \"Singapore\",\n            \"name\": \"Singapore Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7cad1-ec35-4b3d-a171-9acde8f27559\",\n            \"sr_competition_id\": \"sr:competition:1262\",\n            \"country\": \"Lithuania\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94ac1d-a10d-41f8-bec8-064a03ccfe7e\",\n            \"sr_competition_id\": \"sr:competition:29398\",\n            \"country\": null,\n            \"name\": \"Pan American Games, Women\"\n        },\n        {\n            \"competition_id\": \"9a9b21f5-3b00-4b0f-92cd-2f422e855f13\",\n            \"sr_competition_id\": \"sr:competition:465\",\n            \"country\": \"International Clubs\",\n            \"name\": \"UEFA Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa22-6df0-4979-abc9-744cc9f00d2e\",\n            \"sr_competition_id\": \"sr:competition:73\",\n            \"country\": \"Sweden\",\n            \"name\": \"Division 2, Vastra Gotaland\"\n        },\n        {\n            \"competition_id\": \"9a947f21-0248-4cda-acd5-4a30b6272688\",\n            \"sr_competition_id\": \"sr:competition:145\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga NOFV North\"\n        },\n        {\n            \"competition_id\": \"9a9a2a4d-483e-4f4f-ba30-f99ad2b22125\",\n            \"sr_competition_id\": \"sr:competition:36551\",\n            \"country\": \"Jordan\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7ac2f-3eb8-4225-8a6a-911fb1557638\",\n            \"sr_competition_id\": \"sr:competition:36887\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Bayernliga Relegation/Promotion\"\n        },\n        {\n            \"competition_id\": \"9ad7bba1-a4d3-40c5-95b2-07da06b394f8\",\n            \"sr_competition_id\": \"sr:competition:31795\",\n            \"country\": \"Brazil\",\n            \"name\": \"Campeonato Capixaba\"\n        },\n        {\n            \"competition_id\": \"9ad7d831-b042-4a90-be9f-4a07a9673bf4\",\n            \"sr_competition_id\": \"sr:competition:25615\",\n            \"country\": \"Poland\",\n            \"name\": \"U18 CLJ\"\n        },\n        {\n            \"competition_id\": \"9aff261f-9b97-4c2a-a3cf-dec7fb1e41c5\",\n            \"sr_competition_id\": \"sr:competition:42015\",\n            \"country\": \"Italy\",\n            \"name\": \"Supercoppa, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa10-36f6-49d8-9643-fd69d24a494c\",\n            \"sr_competition_id\": \"sr:competition:1327\",\n            \"country\": \"Slovakia\",\n            \"name\": \"U19 1. Liga\"\n        },\n        {\n            \"competition_id\": \"9ad7ec2c-9a4b-44b2-b054-c81ade98f5f2\",\n            \"sr_competition_id\": \"sr:competition:38917\",\n            \"country\": \"Brazil\",\n            \"name\": \"Recopa Mineira\"\n        },\n        {\n            \"competition_id\": \"9a947f12-750e-4504-be95-3df8ee85ac04\",\n            \"sr_competition_id\": \"sr:competition:776\",\n            \"country\": \"Belarus\",\n            \"name\": \"Pervaya Liga\"\n        },\n        {\n            \"competition_id\": \"9ad7d852-2e1a-419b-83bc-e73ceaa2526e\",\n            \"sr_competition_id\": \"sr:competition:533\",\n            \"country\": \"Denmark Amateur\",\n            \"name\": \"Danmarksserien, Pulje 1\"\n        },\n        {\n            \"competition_id\": \"9a94c246-cc52-48e1-833c-b43a4d4ff2a0\",\n            \"sr_competition_id\": \"sr:competition:1862\",\n            \"country\": \"International Youth\",\n            \"name\": \"Asian Games\"\n        },\n        {\n            \"competition_id\": \"9a94c265-cbe8-4c5c-baa1-431828276abb\",\n            \"sr_competition_id\": \"sr:competition:180\",\n            \"country\": \"Finland\",\n            \"name\": \"Kakkonen, Group B\"\n        },\n        {\n            \"competition_id\": \"9a947f03-5319-4a55-93d1-e532c225f0be\",\n            \"sr_competition_id\": \"sr:competition:240\",\n            \"country\": \"Ecuador\",\n            \"name\": \"LigaPro Primera A\"\n        },\n        {\n            \"competition_id\": \"9ad7bb92-a8b2-4898-9ece-80c17d7bfe8e\",\n            \"sr_competition_id\": \"sr:competition:2114\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 CONCACAF Championship\"\n        },\n        {\n            \"competition_id\": \"9fae1849-ffa6-4849-b3bd-1c0dfd1d7e8b\",\n            \"sr_competition_id\": \"sr:competition:48064\",\n            \"country\": \"Brazil\",\n            \"name\": \"Mineiro, Segunda Divisao\"\n        },\n        {\n            \"competition_id\": \"9a94aa25-2647-4b39-b1af-952852bc7631\",\n            \"sr_competition_id\": \"sr:competition:2270\",\n            \"country\": \"Netherlands\",\n            \"name\": \"Eredivisie, Women\"\n        },\n        {\n            \"competition_id\": \"9a9b26e9-fcae-4fd8-b290-f312c0d937b1\",\n            \"sr_competition_id\": \"sr:competition:33632\",\n            \"country\": \"Andorra\",\n            \"name\": \"Supercopa\"\n        },\n        {\n            \"competition_id\": \"9a947f13-0900-4492-bf7e-694723016c19\",\n            \"sr_competition_id\": \"sr:competition:358\",\n            \"country\": \"South Africa\",\n            \"name\": \"Premiership\"\n        },\n        {\n            \"competition_id\": \"9a94c258-73a0-44b5-a6d1-e3ac72fdecb4\",\n            \"sr_competition_id\": \"sr:competition:188\",\n            \"country\": \"Iceland\",\n            \"name\": \"Besta deild\"\n        },\n        {\n            \"competition_id\": \"9a94aa78-5cd1-4a1f-978b-55bad7f8eeb2\",\n            \"sr_competition_id\": \"sr:competition:367\",\n            \"country\": \"Wales\",\n            \"name\": \"League Cup\"\n        },\n        {\n            \"competition_id\": \"9a94a909-8e89-4512-a5c5-1760dca77311\",\n            \"sr_competition_id\": \"sr:competition:15027\",\n            \"country\": \"Ecuador\",\n            \"name\": \"Serie B\"\n        },\n        {\n            \"competition_id\": \"9ef8a97c-a081-43b1-94d6-42ea32a473ae\",\n            \"sr_competition_id\": \"sr:competition:47121\",\n            \"country\": \"Brazil\",\n            \"name\": \"Amazonense, Serie B\"\n        },\n        {\n            \"competition_id\": \"9a94ac08-e687-4784-ae21-a5f2ddd984bd\",\n            \"sr_competition_id\": \"sr:competition:24\",\n            \"country\": \"England\",\n            \"name\": \"League One\"\n        },\n        {\n            \"competition_id\": \"9a94aa46-8e52-4929-94e3-b313e6c5ee6a\",\n            \"sr_competition_id\": \"sr:competition:30913\",\n            \"country\": \"Brazil\",\n            \"name\": \"Paulista, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f11-b9c1-4dfb-a758-4531e5c47063\",\n            \"sr_competition_id\": \"sr:competition:44\",\n            \"country\": \"Germany\",\n            \"name\": \"2. Bundesliga\"\n        },\n        {\n            \"competition_id\": \"9b7600ec-2b63-4682-8fd8-25fcd35ecc40\",\n            \"sr_competition_id\": \"sr:competition:42285\",\n            \"country\": \"Chile\",\n            \"name\": \"Primera Division, Women\"\n        },\n        {\n            \"competition_id\": \"9e9da217-3bde-426a-91f7-3314ea975dea\",\n            \"sr_competition_id\": \"sr:competition:46671\",\n            \"country\": \"Finland\",\n            \"name\": \"Kolmonen\"\n        },\n        {\n            \"competition_id\": \"9f4fa8e8-9a94-4423-b4ca-d12b7bc06c44\",\n            \"sr_competition_id\": \"sr:competition:47568\",\n            \"country\": \"New Zealand\",\n            \"name\": \"Chatham Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c23d-6de5-4d51-8c88-73aeabc003b3\",\n            \"sr_competition_id\": \"sr:competition:40059\",\n            \"country\": \"Brazil\",\n            \"name\": \"Goiano, 2. Divisao\"\n        },\n        {\n            \"competition_id\": \"9a94ac40-5e5f-468d-be10-a5268e6a7d40\",\n            \"sr_competition_id\": \"sr:competition:347\",\n            \"country\": \"Scotland\",\n            \"name\": \"Scottish Cup\"\n        },\n        {\n            \"competition_id\": \"9ad7bc13-fd4e-4928-938d-ea97d0fad15d\",\n            \"sr_competition_id\": \"sr:competition:31849\",\n            \"country\": \"International\",\n            \"name\": \"Pinatar Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa6e-806a-4fba-abfe-95cedbb23a1d\",\n            \"sr_competition_id\": \"sr:competition:171\",\n            \"country\": \"Cyprus\",\n            \"name\": \"1st Division\"\n        },\n        {\n            \"competition_id\": \"9a947f09-e45a-4e95-b3a2-d190284a2a67\",\n            \"sr_competition_id\": \"sr:competition:218\",\n            \"country\": \"Ukraine\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a94c80a-80f9-46f9-9c25-2b67e4c018f9\",\n            \"sr_competition_id\": \"sr:competition:33890\",\n            \"country\": \"Uzbekistan\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa14-36ff-4cbe-a594-9de86339c6fb\",\n            \"sr_competition_id\": \"sr:competition:855\",\n            \"country\": \"International Youth\",\n            \"name\": \"U20 Friendly Games\"\n        },\n        {\n            \"competition_id\": \"9a94aa1d-79aa-4f92-afff-68aa6505ba92\",\n            \"sr_competition_id\": \"sr:competition:40649\",\n            \"country\": \"Argentina\",\n            \"name\": \"Copa Proyeccion, Reserves\"\n        },\n        {\n            \"competition_id\": \"9a94c242-44b0-440b-8c91-02ecf901c5b2\",\n            \"sr_competition_id\": \"sr:competition:201\",\n            \"country\": \"Norway\",\n            \"name\": \"Toppserien, Women\"\n        },\n        {\n            \"competition_id\": \"9a947f17-fc93-414f-bab6-e7b06531505c\",\n            \"sr_competition_id\": \"sr:competition:18188\",\n            \"country\": \"Poland\",\n            \"name\": \"Ekstraliga, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c865-51f9-4e4f-905e-64bfb2846d56\",\n            \"sr_competition_id\": \"sr:competition:34\",\n            \"country\": \"France\",\n            \"name\": \"Ligue 1\"\n        },\n        {\n            \"competition_id\": \"9a94ac02-9305-4ff6-9fa8-a6f7260b260b\",\n            \"sr_competition_id\": \"sr:competition:2324\",\n            \"country\": \"International Youth\",\n            \"name\": \"UEFA Youth League\"\n        },\n        {\n            \"competition_id\": \"9a94ac38-5ab7-4762-8006-ec7078533b44\",\n            \"sr_competition_id\": \"sr:competition:1378\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie D, Group C\"\n        },\n        {\n            \"competition_id\": \"9a94aa23-963a-428e-83c7-ecbafc3906c3\",\n            \"sr_competition_id\": \"sr:competition:142\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga Baden-Wurttemberg\"\n        },\n        {\n            \"competition_id\": \"9fb60ed8-8e9b-4700-83a8-82f926f3e004\",\n            \"sr_competition_id\": \"sr:competition:47992\",\n            \"country\": \"France\",\n            \"name\": \"Seconde Ligue, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7c125-c428-405d-a722-370b52b59a95\",\n            \"sr_competition_id\": \"sr:competition:31737\",\n            \"country\": \"Qatar\",\n            \"name\": \"Qatar Cup\"\n        },\n        {\n            \"competition_id\": \"9ea65f5c-659f-4621-93ce-d5355b613dbb\",\n            \"sr_competition_id\": \"sr:competition:46742\",\n            \"country\": \"Tanzania\",\n            \"name\": \"Federation Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa5c-5d55-4e37-870f-eaa6e4f2f96b\",\n            \"sr_competition_id\": \"sr:competition:26052\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 18\"\n        },\n        {\n            \"competition_id\": \"9a9a2947-cc6c-417f-a938-982b8a76f774\",\n            \"sr_competition_id\": \"sr:competition:695\",\n            \"country\": \"International Youth\",\n            \"name\": \"U19 UEFA European Championship, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7b091-a91b-4fa1-83b1-3651068e1bb9\",\n            \"sr_competition_id\": \"sr:competition:23755\",\n            \"country\": \"International\",\n            \"name\": \"UEFA Nations League\"\n        },\n        {\n            \"competition_id\": \"9a94aa0b-6144-4ccf-b29f-c01ba85c1736\",\n            \"sr_competition_id\": \"sr:competition:28432\",\n            \"country\": \"Canada\",\n            \"name\": \"Canadian Premier League\"\n        },\n        {\n            \"competition_id\": \"9f89b7b3-5aec-42b1-904e-daae8bc51901\",\n            \"sr_competition_id\": \"sr:competition:47998\",\n            \"country\": \"Slovenia\",\n            \"name\": \"3. SNL\"\n        },\n        {\n            \"competition_id\": \"9a94c2e4-f98d-4d46-a371-5a1d93f951b6\",\n            \"sr_competition_id\": \"sr:competition:15335\",\n            \"country\": \"Brazil\",\n            \"name\": \"Brasileiro Serie D\"\n        },\n        {\n            \"competition_id\": \"9a94c254-f7cf-4a44-a959-77ec826bb8cf\",\n            \"sr_competition_id\": \"sr:competition:216\",\n            \"country\": \"Switzerland\",\n            \"name\": \"Challenge League\"\n        },\n        {\n            \"competition_id\": \"9a94ac49-d2e3-4077-8768-25cb46995455\",\n            \"sr_competition_id\": \"sr:competition:330\",\n            \"country\": \"Netherlands\",\n            \"name\": \"KNVB beker\"\n        },\n        {\n            \"competition_id\": \"9a94aa5e-e0a2-4f34-9c82-c760ed3af4f1\",\n            \"sr_competition_id\": \"sr:competition:18350\",\n            \"country\": \"England Amateur\",\n            \"name\": \"Super League 2, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7ac31-f6d0-46e7-b237-093d7deb5ace\",\n            \"sr_competition_id\": \"sr:competition:429\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 European Championship\"\n        },\n        {\n            \"competition_id\": \"9a948070-bda2-4ca5-ad43-30aaa56ff8ca\",\n            \"sr_competition_id\": \"sr:competition:26020\",\n            \"country\": \"Spain Amateur\",\n            \"name\": \"Tercera Federacion, Group 2\"\n        },\n        {\n            \"competition_id\": \"9ceac6d8-e1f5-432e-92e6-4fdbe1b0398e\",\n            \"sr_competition_id\": \"sr:competition:309\",\n            \"country\": \"International\",\n            \"name\": \"FIFA World Cup Qualification OFC\"\n        },\n        {\n            \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n            \"sr_competition_id\": \"sr:competition:772\",\n            \"country\": \"Uzbekistan\",\n            \"name\": \"Superliga\"\n        },\n        {\n            \"competition_id\": \"9a94808c-44d4-42c6-ae77-bc42ae04f2d5\",\n            \"sr_competition_id\": \"sr:competition:29842\",\n            \"country\": \"England Amateur\",\n            \"name\": \"U21 Professional Development League\"\n        },\n        {\n            \"competition_id\": \"9a94c802-eb91-43a8-b69e-839004be5063\",\n            \"sr_competition_id\": \"sr:competition:1910\",\n            \"country\": \"Italy\",\n            \"name\": \"Supercoppa Primavera\"\n        },\n        {\n            \"competition_id\": \"9a94aa20-09a2-4c0b-acb6-692e7ed1a2bc\",\n            \"sr_competition_id\": \"sr:competition:1101\",\n            \"country\": \"Switzerland\",\n            \"name\": \"Promotion League\"\n        },\n        {\n            \"competition_id\": \"9a947f1f-ef6b-48a5-9fbe-cc11e93e0687\",\n            \"sr_competition_id\": \"sr:competition:24636\",\n            \"country\": \"Norway\",\n            \"name\": \"2nd Division Group 2\"\n        },\n        {\n            \"competition_id\": \"9a94aa3f-11bf-4689-8f9a-4df4943a6e69\",\n            \"sr_competition_id\": \"sr:competition:720\",\n            \"country\": \"Albania\",\n            \"name\": \"Kategoria Superiore\"\n        },\n        {\n            \"competition_id\": \"9a9a2aac-a587-4440-b313-381f5a3dc441\",\n            \"sr_competition_id\": \"sr:competition:39459\",\n            \"country\": \"Brazil\",\n            \"name\": \"U20 Carioca, Serie A\"\n        },\n        {\n            \"competition_id\": \"9a9a297b-e194-4cd4-9500-3957d11af2c5\",\n            \"sr_competition_id\": \"sr:competition:36485\",\n            \"country\": \"Brazil\",\n            \"name\": \"Carioca, Serie A2\"\n        },\n        {\n            \"competition_id\": \"9f98c315-8559-4261-8a58-b9a14f83ca6d\",\n            \"sr_competition_id\": \"sr:competition:48060\",\n            \"country\": \"Croatia\",\n            \"name\": \"U19 Prva NL Juniori\"\n        },\n        {\n            \"competition_id\": \"9a947f07-c5d6-4dbe-bc20-1c9252a5dcc9\",\n            \"sr_competition_id\": \"sr:competition:27665\",\n            \"country\": \"Chile\",\n            \"name\": \"Primera Division\"\n        },\n        {\n            \"competition_id\": \"9bc53e05-3f67-488d-838a-a587f1507b57\",\n            \"sr_competition_id\": \"sr:competition:42291\",\n            \"country\": \"Finland\",\n            \"name\": \"Ykkonen\"\n        },\n        {\n            \"competition_id\": \"9ad7bf1e-543f-4e37-80fd-1be19a1822d3\",\n            \"sr_competition_id\": \"sr:competition:31833\",\n            \"country\": \"Brazil\",\n            \"name\": \"Campeonato Rondoniense\"\n        },\n        {\n            \"competition_id\": \"9ad7bb92-c0b4-41f0-80bd-b9ecfea7ef54\",\n            \"sr_competition_id\": \"sr:competition:23455\",\n            \"country\": \"Colombia\",\n            \"name\": \"Superliga\"\n        },\n        {\n            \"competition_id\": \"9a94aa18-9dc6-4a48-8885-23e7fc3701ae\",\n            \"sr_competition_id\": \"sr:competition:192\",\n            \"country\": \"Ireland\",\n            \"name\": \"Premier Division\"\n        },\n        {\n            \"competition_id\": \"9a94c867-1c3c-47ab-b2f6-021e73062738\",\n            \"sr_competition_id\": \"sr:competition:1281\",\n            \"country\": \"Brazil\",\n            \"name\": \"Brasileiro Serie C\"\n        },\n        {\n            \"competition_id\": \"9a948071-a134-4c09-9170-c7f548fa5370\",\n            \"sr_competition_id\": \"sr:competition:971\",\n            \"country\": \"United Arab Emirates\",\n            \"name\": \"Arabian Gulf League\"\n        },\n        {\n            \"competition_id\": \"9ea41bf4-286c-4b60-ba28-4aa1ef926f8e\",\n            \"sr_competition_id\": \"sr:competition:46720\",\n            \"country\": \"Australia\",\n            \"name\": \"Western Australia State League 1\"\n        },\n        {\n            \"competition_id\": \"9ad7bc95-0b7b-4e5e-8bb8-a570c3ea8df9\",\n            \"sr_competition_id\": \"sr:competition:27739\",\n            \"country\": \"Brazil\",\n            \"name\": \"Potiguar, 1. Divisao\"\n        },\n        {\n            \"competition_id\": \"9a9c6188-1ddd-493d-8e27-694d03c2173e\",\n            \"sr_competition_id\": \"sr:competition:19252\",\n            \"country\": \"Trinidad and Tobago\",\n            \"name\": \"TT Premier League\"\n        },\n        {\n            \"competition_id\": \"9a94aa4f-9390-4532-9bfa-118030c1e774\",\n            \"sr_competition_id\": \"sr:competition:1662\",\n            \"country\": \"Finland\",\n            \"name\": \"Kansallinen Liiga, Women\"\n        },\n        {\n            \"competition_id\": \"9a94aa22-4e0b-4805-92a1-dfed80fe06d9\",\n            \"sr_competition_id\": \"sr:competition:72\",\n            \"country\": \"Sweden\",\n            \"name\": \"Division 2, Sodra Gotaland\"\n        },\n        {\n            \"competition_id\": \"9a947f14-972f-4d04-aa74-6b376886d055\",\n            \"sr_competition_id\": \"sr:competition:1085\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Regionalliga Bavaria\"\n        },\n        {\n            \"competition_id\": \"9ad7ad80-b635-4001-a427-5ef834d23682\",\n            \"sr_competition_id\": \"sr:competition:25731\",\n            \"country\": \"International Youth\",\n            \"name\": \"Central American and Caribbean Games\"\n        },\n        {\n            \"competition_id\": \"9a947f06-cd70-4188-a7ed-43960f235899\",\n            \"sr_competition_id\": \"sr:competition:15123\",\n            \"country\": \"Republic of Korea\",\n            \"name\": \"K3 League\"\n        },\n        {\n            \"competition_id\": \"9a947f24-dec8-4cf8-b81a-b2ff68d64e26\",\n            \"sr_competition_id\": \"sr:competition:14231\",\n            \"country\": \"Kosovo\",\n            \"name\": \"Liga e Pare\"\n        },\n        {\n            \"competition_id\": \"9ad7bc1b-3138-4f7b-841b-379dd7423217\",\n            \"sr_competition_id\": \"sr:competition:376\",\n            \"country\": \"Brazil\",\n            \"name\": \"Catarinense, Serie A\"\n        },\n        {\n            \"competition_id\": \"9a94aa0a-1f00-4ec8-9d0c-1d24a6f2b6fe\",\n            \"sr_competition_id\": \"sr:competition:965\",\n            \"country\": \"Oman\",\n            \"name\": \"Omani League\"\n        },\n        {\n            \"competition_id\": \"9ad7af53-81f0-441b-8ff1-c7692d43f593\",\n            \"sr_competition_id\": \"sr:competition:27102\",\n            \"country\": \"Panama\",\n            \"name\": \"Liga Panamena, Apertura\"\n        },\n        {\n            \"competition_id\": \"9a947f09-79ca-4ec2-b9a0-a1b69afcbc2c\",\n            \"sr_competition_id\": \"sr:competition:19264\",\n            \"country\": \"China\",\n            \"name\": \"Chinese Super League, Women\"\n        },\n        {\n            \"competition_id\": \"9a94c2ab-448d-4b99-be95-07d682964256\",\n            \"sr_competition_id\": \"sr:competition:181\",\n            \"country\": \"Finland\",\n            \"name\": \"Kakkonen, Group C\"\n        },\n        {\n            \"competition_id\": \"9a9b251a-6de4-4f39-8b3b-79f2e9d99b97\",\n            \"sr_competition_id\": \"sr:competition:40985\",\n            \"country\": \"International Youth\",\n            \"name\": \"U20 Intercontinental Cup\"\n        },\n        {\n            \"competition_id\": \"9acbfd6c-6fca-43d6-89b8-83009beccfed\",\n            \"sr_competition_id\": \"sr:competition:133\",\n            \"country\": \"International\",\n            \"name\": \"Copa America\"\n        },\n        {\n            \"competition_id\": \"9a94aa25-e4b8-4e27-b164-80f98eba9c57\",\n            \"sr_competition_id\": \"sr:competition:30106\",\n            \"country\": \"Argentina\",\n            \"name\": \"Torneo Federal A\"\n        },\n        {\n            \"competition_id\": \"9a94ac85-4785-403a-ac15-27c233e2656f\",\n            \"sr_competition_id\": \"sr:competition:41410\",\n            \"country\": \"Brazil\",\n            \"name\": \"Paranaense, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7b10c-a4ca-42e1-8c46-fe8e84d292b8\",\n            \"sr_competition_id\": \"sr:competition:1222\",\n            \"country\": \"International Clubs\",\n            \"name\": \"OFC Champions League\"\n        },\n        {\n            \"competition_id\": \"9ad7bcdc-059b-45b2-b414-990fdb1eeb99\",\n            \"sr_competition_id\": \"sr:competition:24359\",\n            \"country\": \"Brazil\",\n            \"name\": \"Maranhense, Serie A\"\n        },\n        {\n            \"competition_id\": \"9a94ac01-b0b3-422c-85fa-1696bdf14f62\",\n            \"sr_competition_id\": \"sr:competition:858\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 Friendly Games\"\n        },\n        {\n            \"competition_id\": \"9ad7c87e-3b96-4c88-88e2-1146f8f46347\",\n            \"sr_competition_id\": \"sr:competition:356\",\n            \"country\": \"Estonia\",\n            \"name\": \"Super Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f1a-4389-4dac-a883-ceaddf65b30d\",\n            \"sr_competition_id\": \"sr:competition:2142\",\n            \"country\": \"Zambia\",\n            \"name\": \"Super League\"\n        },\n        {\n            \"competition_id\": \"9ad7ab64-dc60-4988-9a0d-007067765d00\",\n            \"sr_competition_id\": \"sr:competition:27098\",\n            \"country\": \"Paraguay\",\n            \"name\": \"Division de Honor, Apertura\"\n        },\n        {\n            \"competition_id\": \"9a94c2a4-7666-4a4d-885b-002702349f9e\",\n            \"sr_competition_id\": \"sr:competition:1260\",\n            \"country\": \"Australia\",\n            \"name\": \"Capital NPL 1\"\n        },\n        {\n            \"competition_id\": \"9a9a294a-4000-420d-a608-d58fadee42af\",\n            \"sr_competition_id\": \"sr:competition:36945\",\n            \"country\": \"Argentina\",\n            \"name\": \"Primera LPF, Reserves\"\n        },\n        {\n            \"competition_id\": \"9a947f12-b701-4293-bffa-956884d46d9d\",\n            \"sr_competition_id\": \"sr:competition:19246\",\n            \"country\": \"Slovakia\",\n            \"name\": \"1. League Women\"\n        },\n        {\n            \"competition_id\": \"9a94c804-59b2-482b-9e7a-9ac9bfc5878f\",\n            \"sr_competition_id\": \"sr:competition:29472\",\n            \"country\": \"International Clubs\",\n            \"name\": \"Leagues Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f1d-42b5-45c0-8f73-b57c2d27ab74\",\n            \"sr_competition_id\": \"sr:competition:1093\",\n            \"country\": \"Russia\",\n            \"name\": \"2. Liga, Division B, Group 1\"\n        },\n        {\n            \"competition_id\": \"9a94ac37-9e57-4470-a6cc-cb0ae10cc0c2\",\n            \"sr_competition_id\": \"sr:competition:2110\",\n            \"country\": \"Saudi Arabia\",\n            \"name\": \"Kings Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa6c-64ee-4d30-b5e2-109109ae0d65\",\n            \"sr_competition_id\": \"sr:competition:1900\",\n            \"country\": \"India\",\n            \"name\": \"Indian Super League\"\n        },\n        {\n            \"competition_id\": \"9a947f00-8880-4c32-9ddc-01570cd6d25d\",\n            \"sr_competition_id\": \"sr:competition:1032\",\n            \"country\": \"Thailand\",\n            \"name\": \"Thai League 1\"\n        },\n        {\n            \"competition_id\": \"9a94aa51-4978-4511-9d9f-636a26eacb5f\",\n            \"sr_competition_id\": \"sr:competition:1205\",\n            \"country\": \"South Africa\",\n            \"name\": \"Knockout Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f04-3f4f-44a9-ba8a-c95335b3ca44\",\n            \"sr_competition_id\": \"sr:competition:40533\",\n            \"country\": \"Mexico\",\n            \"name\": \"Liga Premier Serie A\"\n        },\n        {\n            \"competition_id\": \"9a947f17-c19d-4f14-972a-deb7d5be0713\",\n            \"sr_competition_id\": \"sr:competition:197\",\n            \"country\": \"Latvia\",\n            \"name\": \"Virsliga\"\n        },\n        {\n            \"competition_id\": \"9a94aa40-c08a-4e06-b27b-c5e263c60409\",\n            \"sr_competition_id\": \"sr:competition:857\",\n            \"country\": \"International Youth\",\n            \"name\": \"U18 Friendly Games\"\n        },\n        {\n            \"competition_id\": \"9ad7e4c2-8cbe-4517-a161-cad8b4a6f40b\",\n            \"sr_competition_id\": \"sr:competition:25669\",\n            \"country\": null,\n            \"name\": \"International Champions Cup, Women\"\n        },\n        {\n            \"competition_id\": \"9f9bc7ca-1de2-4816-9145-95b34ab26004\",\n            \"sr_competition_id\": \"sr:competition:48213\",\n            \"country\": \"Serbia\",\n            \"name\": \"Srpska Liga\"\n        },\n        {\n            \"competition_id\": \"9a94aa36-e9a3-47bc-8fed-e1e55bdcf443\",\n            \"sr_competition_id\": \"sr:competition:26910\",\n            \"country\": \"Finland\",\n            \"name\": \"Kakkonen Playoffs\"\n        },\n        {\n            \"competition_id\": \"9ed7eff7-7ea6-43c7-81f1-a75641325c61\",\n            \"sr_competition_id\": \"sr:competition:46945\",\n            \"country\": \"Brazil\",\n            \"name\": \"Brasileiro A3, Women\"\n        },\n        {\n            \"competition_id\": \"9a9a6cd7-843b-4679-ae9a-58a23479c9b6\",\n            \"sr_competition_id\": \"sr:competition:20578\",\n            \"country\": \"Tunisia\",\n            \"name\": \"Ligue 2\"\n        },\n        {\n            \"competition_id\": \"9a94c28d-af42-4958-a20c-1fa41499a0ec\",\n            \"sr_competition_id\": \"sr:competition:1626\",\n            \"country\": \"Australia\",\n            \"name\": \"Tasmania NPL\"\n        },\n        {\n            \"competition_id\": \"9ad7d64a-b103-40ce-8cc8-036b1acb715d\",\n            \"sr_competition_id\": \"sr:competition:1530\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 CONCACAF Championship, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7ad9f-cfac-418f-8cad-7c272961d8e9\",\n            \"sr_competition_id\": \"sr:competition:1434\",\n            \"country\": \"Morocco\",\n            \"name\": \"Coupe du Trone\"\n        },\n        {\n            \"competition_id\": \"9a94aa76-6cd3-4c99-9daf-9f44b84bf2f0\",\n            \"sr_competition_id\": \"sr:competition:53\",\n            \"country\": \"Italy\",\n            \"name\": \"Serie B\"\n        },\n        {\n            \"competition_id\": \"9fa80215-9806-4a90-9d39-8cd1e8b16265\",\n            \"sr_competition_id\": \"sr:competition:36195\",\n            \"country\": \"Israel\",\n            \"name\": \"U19 Premier League\"\n        },\n        {\n            \"competition_id\": \"9a947f13-c394-4bf7-8b28-5789ae0b4b22\",\n            \"sr_competition_id\": \"sr:competition:1097\",\n            \"country\": \"Russia\",\n            \"name\": \"2. Liga, Division B, Group 4\"\n        },\n        {\n            \"competition_id\": \"9a947f04-5cbf-4789-82b2-9c3f3621ae64\",\n            \"sr_competition_id\": \"sr:competition:40535\",\n            \"country\": \"Mexico\",\n            \"name\": \"Liga Premier Serie B\"\n        },\n        {\n            \"competition_id\": \"9a94ac25-4ffc-496f-a4a0-5ea50db29986\",\n            \"sr_competition_id\": \"sr:competition:26390\",\n            \"country\": \"Turkiye Amateur\",\n            \"name\": \"3. Lig, Group 3\"\n        },\n        {\n            \"competition_id\": \"9a94aa25-6410-424b-8df1-4006bbe30535\",\n            \"sr_competition_id\": \"sr:competition:1103\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Oberliga Niederrhein\"\n        },\n        {\n            \"competition_id\": \"9a9a2962-141d-4281-a74b-48c6d072d06b\",\n            \"sr_competition_id\": \"sr:competition:30014\",\n            \"country\": \"International Clubs\",\n            \"name\": \"Arab Club Champions Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f15-669c-479b-9b60-66c21f396472\",\n            \"sr_competition_id\": \"sr:competition:26276\",\n            \"country\": \"France\",\n            \"name\": \"U19 National\"\n        },\n        {\n            \"competition_id\": \"9a94aa08-2328-42b6-ad82-b62f442e7ad3\",\n            \"sr_competition_id\": \"sr:competition:1016\",\n            \"country\": \"Sweden Amateur\",\n            \"name\": \"U21 Allsvenskan\"\n        },\n        {\n            \"competition_id\": \"9ad7bf24-428b-4119-9a9d-48e9308452f0\",\n            \"sr_competition_id\": \"sr:competition:382\",\n            \"country\": \"Brazil\",\n            \"name\": \"Paranaense, 1. Divisao\"\n        },\n        {\n            \"competition_id\": \"9a947f19-01a0-4113-bcd1-1ae0811b35a7\",\n            \"sr_competition_id\": \"sr:competition:239\",\n            \"country\": \"Portugal\",\n            \"name\": \"Liga Portugal 2\"\n        },\n        {\n            \"competition_id\": \"9fb61630-d0a9-44b7-a6ca-4181721ca090\",\n            \"sr_competition_id\": \"sr:competition:48509\",\n            \"country\": \"Qatar\",\n            \"name\": \"U23 Olympic League\"\n        },\n        {\n            \"competition_id\": \"9a94c238-8eeb-45f6-8df3-a6ffa23a4343\",\n            \"sr_competition_id\": \"sr:competition:2152\",\n            \"country\": \"International Youth\",\n            \"name\": \"U23 AFC Championship, Qualification\"\n        },\n        {\n            \"competition_id\": \"01997571-cdc9-7082-9022-8193a841a78e\",\n            \"sr_competition_id\": \"sr:competition:27254\",\n            \"country\": \"Bangladesh\",\n            \"name\": \"Federation Cup\"\n        },\n        {\n            \"competition_id\": \"9a947f11-dbf9-4c27-a1e7-467c54e47d85\",\n            \"sr_competition_id\": \"sr:competition:40731\",\n            \"country\": \"Czechia\",\n            \"name\": \"Divize C\"\n        },\n        {\n            \"competition_id\": \"9ad7c1cc-b65c-4035-8479-ac7fb6eb3f0d\",\n            \"sr_competition_id\": \"sr:competition:2043\",\n            \"country\": \"International Youth\",\n            \"name\": \"U17 CONMEBOL Championship\"\n        },\n        {\n            \"competition_id\": \"9a947f12-b23a-4764-93f0-628f6ea98e08\",\n            \"sr_competition_id\": \"sr:competition:232\",\n            \"country\": \"Germany Amateur\",\n            \"name\": \"Women Bundesliga\"\n        },\n        {\n            \"competition_id\": \"9a9aa1ca-b72b-4388-9393-ec362a5a4f73\",\n            \"sr_competition_id\": \"sr:competition:140\",\n            \"country\": \"International\",\n            \"name\": \"CONCACAF Gold Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa22-022d-4bac-aed3-d5373b8da4c8\",\n            \"sr_competition_id\": \"sr:competition:214\",\n            \"country\": \"Sweden\",\n            \"name\": \"Damallsvenskan\"\n        },\n        {\n            \"competition_id\": \"9a9b00c1-cc2e-4ee9-90f8-08fe728b41b9\",\n            \"sr_competition_id\": \"sr:competition:45\",\n            \"country\": \"Austria\",\n            \"name\": \"Bundesliga\"\n        },\n        {\n            \"competition_id\": \"9a947f0e-7926-4be0-a696-160e341887c6\",\n            \"sr_competition_id\": \"sr:competition:178\",\n            \"country\": \"Estonia\",\n            \"name\": \"Premium Liiga\"\n        },\n        {\n            \"competition_id\": \"9a947eff-33e2-4ee7-8b19-3f14af01abd2\",\n            \"sr_competition_id\": \"sr:competition:691\",\n            \"country\": \"Ukraine\",\n            \"name\": \"Persha Liga\"\n        },\n        {\n            \"competition_id\": \"9a94c274-3574-4e37-aece-4ce611fe39c3\",\n            \"sr_competition_id\": \"sr:competition:215\",\n            \"country\": \"Switzerland\",\n            \"name\": \"Super League\"\n        },\n        {\n            \"competition_id\": \"9ad7d865-7a2e-4763-b8fd-4dfa73acc764\",\n            \"sr_competition_id\": \"sr:competition:29208\",\n            \"country\": \"Ecuador\",\n            \"name\": \"Copa Ecuador\"\n        },\n        {\n            \"competition_id\": \"9ad7c701-f78d-4909-9bfd-c96caa482c47\",\n            \"sr_competition_id\": \"sr:competition:38453\",\n            \"country\": \"International\",\n            \"name\": \"CONMEBOL UEFA Cup of Champions, Women\"\n        },\n        {\n            \"competition_id\": \"9ad7d099-a3ee-44cb-9272-6c57bd39a413\",\n            \"sr_competition_id\": \"sr:competition:490\",\n            \"country\": \"International Clubs\",\n            \"name\": \"CONMEBOL Recopa\"\n        },\n        {\n            \"competition_id\": \"019985c0-9d3b-7066-a3a0-1bc7f09bd4df\",\n            \"sr_competition_id\": \"sr:competition:48935\",\n            \"country\": \"Kenya\",\n            \"name\": \"Super League\"\n        },\n        {\n            \"competition_id\": \"9a94aa71-1abd-41a1-9ec6-bb43ffa14068\",\n            \"sr_competition_id\": \"sr:competition:40\",\n            \"country\": \"Sweden\",\n            \"name\": \"Allsvenskan\"\n        },\n        {\n            \"competition_id\": \"9a94aa69-4280-40ea-8468-c2c3bfe9955b\",\n            \"sr_competition_id\": \"sr:competition:825\",\n            \"country\": \"Qatar\",\n            \"name\": \"Stars League\"\n        },\n        {\n            \"competition_id\": \"9a94aa39-44d2-4619-86a8-51ea78cfee34\",\n            \"sr_competition_id\": \"sr:competition:24642\",\n            \"country\": \"Norway\",\n            \"name\": \"3rd Division Group 1\"\n        },\n        {\n            \"competition_id\": \"9a94aa76-6496-4e8d-ad07-d123ccc5cb0a\",\n            \"sr_competition_id\": \"sr:competition:682\",\n            \"country\": \"Kazakhstan\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a947f1e-5222-4fa7-96d7-dfa9c8d14646\",\n            \"sr_competition_id\": \"sr:competition:544\",\n            \"country\": \"Spain\",\n            \"name\": \"Segunda Federacion\"\n        },\n        {\n            \"competition_id\": \"9a9a2862-9328-415a-8073-3ecad5623b2c\",\n            \"sr_competition_id\": \"sr:competition:155\",\n            \"country\": \"Argentina\",\n            \"name\": \"Primera LPF\"\n        },\n        {\n            \"competition_id\": \"9a94a437-8003-4fb1-af57-aab6d1e4dd3f\",\n            \"sr_competition_id\": \"sr:competition:1892\",\n            \"country\": \"Jamaica\",\n            \"name\": \"Premier League\"\n        },\n        {\n            \"competition_id\": \"9a947efe-2011-461e-88aa-7b02b2b14498\",\n            \"sr_competition_id\": \"sr:competition:879\",\n            \"country\": \"Russia\",\n            \"name\": \"MFL, Division A\"\n        },\n        {\n            \"competition_id\": \"9a94aa0c-29ac-4df4-a604-19109297c263\",\n            \"sr_competition_id\": \"sr:competition:23979\",\n            \"country\": \"Israel\",\n            \"name\": \"Liga Al, Women\"\n        },\n        {\n            \"competition_id\": \"9f5fc226-672c-4aeb-83de-a0e410b05165\",\n            \"sr_competition_id\": \"sr:competition:47740\",\n            \"country\": \"Brazil\",\n            \"name\": \"Copa Governo do Estado de Sergipe\"\n        },\n        {\n            \"competition_id\": \"9a947f00-2d22-449a-b879-b1776e3227ac\",\n            \"sr_competition_id\": \"sr:competition:36189\",\n            \"country\": \"Algeria\",\n            \"name\": \"Ligue 1, Reserves\"\n        },\n        {\n            \"competition_id\": \"9f2c1fec-dacf-415d-a472-f025e9386be7\",\n            \"sr_competition_id\": \"sr:competition:35591\",\n            \"country\": \"International\",\n            \"name\": \"AFC Asian Cup, Women, Qualification\"\n        },\n        {\n            \"competition_id\": \"9b70956d-46f6-496a-9f39-de995d164bf6\",\n            \"sr_competition_id\": \"sr:competition:32341\",\n            \"country\": \"Australia\",\n            \"name\": \"Queensland Premier League 1\"\n        },\n        {\n            \"competition_id\": \"9ad7ad44-5456-47f2-8f54-75a0cf6b1d6e\",\n            \"sr_competition_id\": \"sr:competition:981\",\n            \"country\": \"International Youth\",\n            \"name\": \"U23 Africa Cup of Nations\"\n        },\n        {\n            \"competition_id\": \"9ea41bf6-e7b3-4f95-ac56-2cf13e9c996d\",\n            \"sr_competition_id\": \"sr:competition:33954\",\n            \"country\": \"Australia\",\n            \"name\": \"South Australia State League 1\"\n        },\n        {\n            \"competition_id\": \"9ad86cb8-377a-43f4-bd2f-64ac4fac6e6e\",\n            \"sr_competition_id\": \"sr:competition:19270\",\n            \"country\": \"Thailand\",\n            \"name\": \"FA Cup\"\n        },\n        {\n            \"competition_id\": \"9a94c89f-6c35-409d-ba16-59fa756f4410\",\n            \"sr_competition_id\": \"sr:competition:21\",\n            \"country\": \"England\",\n            \"name\": \"EFL Cup\"\n        },\n        {\n            \"competition_id\": \"9a94aa23-9170-4eaa-8a90-8280c783e67f\",\n            \"sr_competition_id\": \"sr:competition:491\",\n            \"country\": \"Germany\",\n            \"name\": \"3. Liga\"\n        },\n        {\n            \"competition_id\": \"9a947efe-2654-47bb-be50-71cb69a5d095\",\n            \"sr_competition_id\": \"sr:competition:39533\",\n            \"country\": \"Romania\",\n            \"name\": \"Liga 3\"\n        },\n        {\n            \"competition_id\": \"01991878-b5be-716d-9cca-9f795162f0d5\",\n            \"sr_competition_id\": \"sr:competition:48663\",\n            \"country\": \"South Africa\",\n            \"name\": \"Diski Challenge, Reserves\"\n        },\n        {\n            \"competition_id\": \"9a94ac2f-d8aa-48ad-b1aa-ac234538dad6\",\n            \"sr_competition_id\": \"sr:competition:305\",\n            \"country\": \"Hungary\",\n            \"name\": \"Magyar Kupa\"\n        },\n        {\n            \"competition_id\": \"9fb64f51-278b-4b27-a6f4-ca561d1d2672\",\n            \"sr_competition_id\": \"sr:competition:47548\",\n            \"country\": \"Spain\",\n            \"name\": \"Primera Federacion, Women\"\n        },\n        {\n            \"competition_id\": \"9a9a29c4-8a04-4b66-b86f-c3accd80f5bb\",\n            \"sr_competition_id\": \"sr:competition:1295\",\n            \"country\": \"International Clubs\",\n            \"name\": \"Emirates Cup\"\n        }\n    ],\n    \"meta\": {\n        \"results\": 1073\n    }\n}"}],"_postman_id":"44ffde6e-5c16-409f-a5f7-2a9848723f7c"},{"name":"featured-bet-builders","event":[{"listen":"test","script":{"id":"abb178fa-d677-4a31-8d75-6b9c768c5bde","exec":["// 1. Status Code Test","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Test","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","// 3. JSON Schema Validation Test","pm.test(\"Response matches expected schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"id\", \"competition_id\", \"competition_name\", \"competition_logo\", \"sport_radar_competition_id\", \"competition_coverage\", \"competition_tab_key\", \"kick_off\", \"country\", \"teams\"],","                    properties: {","                        id: { type: \"string\" },","                        competition_id: { type: \"string\" },","                        competition_name: { type: \"string\" },","                        competition_logo: { type: \"string\" },","                        sport_radar_competition_id: { type: \"string\" },","                        competition_coverage: {","                            type: \"object\",","                            properties: {","                                continental: { type: \"string\" }","                            }","                        },","                        competition_tab_key: { type: \"string\" },","                        kick_off: { type: \"string\" },","                        country: {","                            type: \"object\",","                            properties: {","                                name: { type: \"string\" },","                                flag: { type: [\"string\", \"null\"] }","                            }","                        },","                        teams: {","                            type: \"object\",","                            properties: {","                                home: {","                                    type: \"object\",","                                    properties: {","                                        id: { type: \"string\" },","                                        name: { type: \"string\" },","                                        badge: { type: \"string\" },","                                        abbreviation: { type: \"string\" }","                                    }","                                },","                                away: {","                                    type: \"object\",","                                    properties: {","                                        id: { type: \"string\" },","                                        name: { type: \"string\" },","                                        badge: { type: \"string\" },","                                        abbreviation: { type: \"string\" }","                                    }","                                }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"timezone\", \"filtering\"],","                properties: {","                    results: { type: \"integer\" },","                    timezone: { type: \"string\" },","                    filtering: {","                        type: \"object\",","                        properties: {","                            day: { type: \"integer\" },","                            utc_dates: {","                                type: \"array\",","                                items: { type: \"string\" }","                            },","                            start_of_day_utc: { type: \"string\" },","                            end_of_day_utc: { type: \"string\" }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"193c821d-4847-4d2a-ba10-4c2aae2dc970","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"179d59a4-0e75-464f-b1bc-7e67f8425994","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"fixture_ids\": [\"019d0b1e-3860-71c5-84c1-480c48adc044\"],\n  \"no_shared_selections\": true,\n  \"bet_builders\": [\n    {\n      \"name\": \"banker\",\n      \"legs\": 4,\n      \"fallback_legs\": 3,\n      \"min_hit_rate\": 80,\n      \"odds_bands\": [\n        {\"min\": 1.14, \"max\": 1.30, \"selections\": 2},\n        {\"min\": 1.31, \"max\": 1.50, \"selections\": 2}\n      ]\n    },\n    {\n      \"name\": \"value\",\n      \"legs\": 4,\n      \"fallback_legs\": 3,\n      \"min_hit_rate\": 60,\n      \"odds_bands\": [\n        {\"min\": 1.51, \"max\": 2.00, \"selections\": 2},\n        {\"min\": 2.01, \"max\": 3.00, \"selections\": 2}\n      ]\n    },\n    {\n      \"name\": \"longshot\",\n      \"legs\": 5,\n      \"fallback_legs\": 4,\n      \"min_hit_rate\": 40,\n      \"odds_bands\": [\n        {\"min\": 3.01, \"max\": 5.00, \"selections\": 2},\n        {\"min\": 5.01, \"max\": 10.00, \"selections\": 3}\n      ]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"/featured-bet-builders","description":"<h3 id=\"get-bet-builder-fixtures\">GET /bet-builder-fixtures</h3>\n<p>This endpoint retrieves bet builder fixtures for the specified day.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>/bet-builder-fixtures</code></p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li><code>day</code> (integer, required): Specifies the day for which fixtures are to be retrieved.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response is in JSON format and follows the schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"data\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"id\": {\"type\": \"string\"},\n          \"competition_id\": {\"type\": \"string\"},\n          \"competition_name\": {\"type\": \"string\"},\n          \"competition_logo\": {\"type\": \"string\"},\n          \"sport_radar_competition_id\": {\"type\": \"string\"},\n          \"competition_coverage\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"continental\": {\"type\": \"string\"}\n            }\n          },\n          \"competition_tab_key\": {\"type\": \"string\"},\n          \"kick_off\": {\"type\": \"string\"},\n          \"country\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"name\": {\"type\": \"string\"},\n              \"flag\": {\"type\": \"string\"}\n            }\n          },\n          \"teams\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"home\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              },\n              \"away\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              }\n            }\n          }\n        }\n      }\n    },\n    \"meta\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"results\": {\"type\": \"integer\"},\n        \"timezone\": {\"type\": \"string\"},\n        \"filtering\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"day\": {\"type\": \"integer\"},\n            \"utc_dates\": {\n              \"type\": \"array\",\n              \"items\": {\"type\": \"string\"}\n            },\n            \"start_of_day_utc\": {\"type\": \"string\"},\n            \"end_of_day_utc\": {\"type\": \"string\"}\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["featured-bet-builders"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"10e8c01e-88e6-4e8d-8aeb-9107e9c1134f","name":"banker, value, longshot, no shared selections","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"fixture_ids\": [\"019d0b1e-3860-71c5-84c1-480c48adc044\"],\n  \"no_shared_selections\": true,\n  \"bet_builders\": [\n    {\n      \"name\": \"banker\",\n      \"legs\": 4,\n      \"fallback_legs\": 3,\n      \"min_hit_rate\": 80,\n      \"odds_bands\": [\n        {\"min\": 1.14, \"max\": 1.30, \"selections\": 2},\n        {\"min\": 1.31, \"max\": 1.50, \"selections\": 2}\n      ]\n    },\n    {\n      \"name\": \"value\",\n      \"legs\": 4,\n      \"fallback_legs\": 3,\n      \"min_hit_rate\": 60,\n      \"odds_bands\": [\n        {\"min\": 1.51, \"max\": 2.00, \"selections\": 2},\n        {\"min\": 2.01, \"max\": 3.00, \"selections\": 2}\n      ]\n    },\n    {\n      \"name\": \"longshot\",\n      \"legs\": 5,\n      \"fallback_legs\": 4,\n      \"min_hit_rate\": 40,\n      \"odds_bands\": [\n        {\"min\": 3.01, \"max\": 5.00, \"selections\": 2},\n        {\"min\": 5.01, \"max\": 10.00, \"selections\": 3}\n      ]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"/featured-bet-builders"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Thu, 23 Oct 2025 10:26:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"24205"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"a8403b25-ce1d-49af-9463-ae4f94aa0033"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S5ViGGj-DoEEgWQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fa02d9-205872a37aa0857b2626fe70;Parent=7d63e33e0a177b30;Sampled=0;Lineage=1:ba673fab:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c37e-206a-45a6-bcdc-3461ea3d71e0\",\n                    \"name\": \"Malmo\",\n                    \"badge\": \"sr-competitor-1892.png\",\n                    \"abbreviation\": \"MAL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9833-43fc-9f72-95dcaf01e5e5\",\n                    \"name\": \"Dinamo Zagreb\",\n                    \"badge\": \"sr-competitor-2032.png\",\n                    \"abbreviation\": \"DIN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c92a-08ed-4793-8537-29197bc6aed5\",\n                    \"name\": \"Brann\",\n                    \"badge\": \"sr-competitor-1159.png\",\n                    \"abbreviation\": \"SKB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e4ad-4e44-95dd-e5e31a7606f1\",\n                    \"name\": \"Rangers\",\n                    \"badge\": \"sr-competitor-2351.png\",\n                    \"abbreviation\": \"RFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace7-6c66-42e6-a3be-e64241cdf113\",\n                    \"name\": \"Shkendija Tetovo\",\n                    \"badge\": \"sr-competitor-5413.png\",\n                    \"abbreviation\": \"SHK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c312-9e51-4beb-8299-ed120dfa6d68\",\n                    \"name\": \"Shelbourne\",\n                    \"badge\": \"sr-competitor-3174.png\",\n                    \"abbreviation\": \"SHE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-78cf-44a2-bb88-a088b17a347c\",\n                    \"name\": \"Feyenoord\",\n                    \"badge\": \"sr-competitor-2959.png\",\n                    \"abbreviation\": \"FEY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9950-48c1-b5d4-f761812d85f5\",\n                    \"name\": \"Panathinaikos\",\n                    \"badge\": \"sr-competitor-3248.png\",\n                    \"abbreviation\": \"PAN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace1-ae78-417e-8a38-90812f49f8fd\",\n                    \"name\": \"Shamrock\",\n                    \"badge\": \"sr-competitor-3177.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94aceb-a5a0-4955-bc7d-a595b0faedd7\",\n                    \"name\": \"NK Celje\",\n                    \"badge\": \"sr-competitor-2413.png\",\n                    \"abbreviation\": \"CEL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d15-714c-9a8a-b661fe2b3ba5\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd8-c48a-4756-8275-2293293e66d1\",\n                    \"name\": \"Braga\",\n                    \"badge\": \"sr-competitor-2999.png\",\n                    \"abbreviation\": \"BRA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-baa7-4b20-a111-8202a82c0b1b\",\n                    \"name\": \"Crvena Zvezda\",\n                    \"badge\": \"sr-competitor-5149.png\",\n                    \"abbreviation\": \"CZV\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-46af-4c43-9af9-2e4bfee5307c\",\n                    \"name\": \"Strasbourg\",\n                    \"badge\": \"sr-competitor-1659.png\",\n                    \"abbreviation\": \"RCS\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a439-b254-4d01-b869-4186d5da11b0\",\n                    \"name\": \"Jagiellonia\",\n                    \"badge\": \"sr-competitor-7691.png\",\n                    \"abbreviation\": \"JAG\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-1ee1-4248-87a0-36b9b9697790\",\n                    \"name\": \"Breidablik\",\n                    \"badge\": \"sr-competitor-1901.png\",\n                    \"abbreviation\": \"KOP\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2a5e-e517-4b98-ad40-dd22f53162e7\",\n                    \"name\": \"Kuopion Palloseura\",\n                    \"badge\": \"sr-competitor-2244.png\",\n                    \"abbreviation\": \"KUPS\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-e0e4-4f8c-aa59-b1c409abdfa8\",\n                    \"name\": \"SK Rapid\",\n                    \"badge\": \"sr-competitor-2055.png\",\n                    \"abbreviation\": \"SCR\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace1-e90d-47f2-8a13-71819ceae79f\",\n                    \"name\": \"Fiorentina\",\n                    \"badge\": \"sr-competitor-2693.png\",\n                    \"abbreviation\": \"FIO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c31f-a70a-4dc7-a068-879f9e1077b5\",\n                    \"name\": \"Celta Vigo\",\n                    \"badge\": \"sr-competitor-2821.png\",\n                    \"abbreviation\": \"RCC\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2add-8a74-4c53-bfc8-58faec11d78e\",\n                    \"name\": \"Nice\",\n                    \"badge\": \"sr-competitor-1661.png\",\n                    \"abbreviation\": \"NIC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c368-ed2b-4782-aa0b-5706f0b1854c\",\n                    \"name\": \"Lincoln Red Imps\",\n                    \"badge\": \"sr-competitor-126304.png\",\n                    \"abbreviation\": \"LIN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45c-75f8-4a1d-b38c-bf970b93c517\",\n                    \"name\": \"Lech Poznan\",\n                    \"badge\": \"sr-competitor-3121.png\",\n                    \"abbreviation\": \"LPO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2ab8-4a4a-4fcc-8f79-9c733e7475dd\",\n                    \"name\": \"Mainz\",\n                    \"badge\": \"sr-competitor-2556.png\",\n                    \"abbreviation\": \"M05\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-b7f8-4088-9b31-8a756e9e2518\",\n                    \"name\": \"Zrinjski Mostar\",\n                    \"badge\": \"sr-competitor-5178.png\",\n                    \"abbreviation\": \"ZRI\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace6-03a6-400e-ad56-1856f450f30b\",\n                    \"name\": \"Salzburg\",\n                    \"badge\": \"sr-competitor-2046.png\",\n                    \"abbreviation\": \"RBS\"\n                },\n                \"away\": {\n                    \"id\": \"9a948083-c54e-465a-9ec7-bd19c7f13b84\",\n                    \"name\": \"Ferencvarosi\",\n                    \"badge\": \"sr-competitor-1925.png\",\n                    \"abbreviation\": \"FTC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2a9b-4c37-4624-bede-a3b5062f61cd\",\n                    \"name\": \"Lyon\",\n                    \"badge\": \"sr-competitor-1649.png\",\n                    \"abbreviation\": \"OL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c318-6afc-4bbe-aa0d-c89ba86d905d\",\n                    \"name\": \"Basel\",\n                    \"badge\": \"sr-competitor-2501.png\",\n                    \"abbreviation\": \"FCB\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-c018-4f71-be22-9ed851229f5a\",\n                    \"name\": \"GA Eagles\",\n                    \"badge\": \"sr-competitor-2979.png\",\n                    \"abbreviation\": \"GAE\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                    \"name\": \"Aston Villa\",\n                    \"badge\": \"sr-competitor-40.png\",\n                    \"abbreviation\": \"AVL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-313d-4db3-a792-f229601726dc\",\n                    \"name\": \"Alkmaar\",\n                    \"badge\": \"sr-competitor-2950.png\",\n                    \"abbreviation\": \"AZA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94accf-e1cd-4950-8b4f-30836314c790\",\n                    \"name\": \"Slovan Bratislava\",\n                    \"badge\": \"sr-competitor-2404.png\",\n                    \"abbreviation\": \"SLO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd7f-0ed0-7038-bc17-471a1f6473ae\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0d7c-4c80-ad39-b9ff5677e038\",\n                    \"name\": \"Maccabi Tel Aviv\",\n                    \"badge\": \"sr-competitor-5198.png\",\n                    \"abbreviation\": \"MTA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-e08b-43f0-8c2c-cc6aafc8f8d8\",\n                    \"name\": \"Midtjylland\",\n                    \"badge\": \"sr-competitor-1289.png\",\n                    \"abbreviation\": \"FCM\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-731e-4a04-9f97-5aa9ebf6b8ce\",\n                    \"name\": \"Shakhtar\",\n                    \"badge\": \"sr-competitor-3313.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45d-4fbe-4b9f-b9fa-f68b1df54bfa\",\n                    \"name\": \"Legia Warszawa\",\n                    \"badge\": \"sr-competitor-3106.png\",\n                    \"abbreviation\": \"LEG\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94aced-14f3-428b-b8a8-4b55e21e8205\",\n                    \"name\": \"Rijeka\",\n                    \"badge\": \"sr-competitor-2039.png\",\n                    \"abbreviation\": \"RIJ\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e085-48f8-a9ff-57e86235ad64\",\n                    \"name\": \"Sparta Prague\",\n                    \"badge\": \"sr-competitor-2218.png\",\n                    \"abbreviation\": \"SPA\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0b6a-477c-8180-fade01c34755\",\n                    \"name\": \"Hacken Gothenburg\",\n                    \"badge\": \"sr-competitor-1760.png\",\n                    \"abbreviation\": \"HAC\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acec-6b1f-482b-a5af-ad4243e92e57\",\n                    \"name\": \"Rayo Vallecano\",\n                    \"badge\": \"sr-competitor-2818.png\",\n                    \"abbreviation\": \"RVC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-314e-4a5f-90d1-e065020c17df\",\n                    \"name\": \"Fenerbahce\",\n                    \"badge\": \"sr-competitor-3052.png\",\n                    \"abbreviation\": \"FEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-2b99-4a62-b9c5-bedb6b95f11c\",\n                    \"name\": \"Stuttgart\",\n                    \"badge\": \"sr-competitor-2677.png\",\n                    \"abbreviation\": \"VFB\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acec-c098-43e0-a33e-777cbd27e1e4\",\n                    \"name\": \"KF Drita\",\n                    \"badge\": \"sr-competitor-277835.png\",\n                    \"abbreviation\": \"DRI\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-88df-4eaf-bf53-99de0096666e\",\n                    \"name\": \"Omonia Nicosia\",\n                    \"badge\": \"sr-competitor-3395.png\",\n                    \"abbreviation\": \"OMO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c946-e50a-41d9-b986-d0e1ea2126f7\",\n                    \"name\": \"Crystal Palace\",\n                    \"badge\": \"sr-competitor-7.png\",\n                    \"abbreviation\": \"CRY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c93c-c743-4768-ab99-f65f8045c8f6\",\n                    \"name\": \"Larnaca\",\n                    \"badge\": \"sr-competitor-3404.png\",\n                    \"abbreviation\": \"ALA\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-2714-4ca2-b04c-d7eb2c062896\",\n                    \"name\": \"Nottm Forest\",\n                    \"badge\": \"sr-competitor-14.png\",\n                    \"abbreviation\": \"NFO\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-ddba-47a9-9581-30f18c4f2c9d\",\n                    \"name\": \"Porto\",\n                    \"badge\": \"sr-competitor-3002.png\",\n                    \"abbreviation\": \"FCP\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-9ae1-4b48-b861-5ab84c15a5bb\",\n                    \"name\": \"FCSB\",\n                    \"badge\": \"sr-competitor-3301.png\",\n                    \"abbreviation\": \"FCSB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c314-1fe5-4448-a022-245bf92accf8\",\n                    \"name\": \"Bologna\",\n                    \"badge\": \"sr-competitor-2685.png\",\n                    \"abbreviation\": \"BFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-a29c-4bcf-819d-b49a494f045a\",\n                    \"name\": \"Uni Craiova\",\n                    \"badge\": \"sr-competitor-116223.png\",\n                    \"abbreviation\": \"CSU\"\n                },\n                \"away\": {\n                    \"id\": \"9a947f2c-36b3-4cdf-bd6e-c5fe79bdbac3\",\n                    \"name\": \"Noah Yerevan\",\n                    \"badge\": \"sr-competitor-364474.png\",\n                    \"abbreviation\": \"FCN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace8-fc14-477e-8325-d8b1a5ba9ca1\",\n                    \"name\": \"AEK Athens\",\n                    \"badge\": \"sr-competitor-3250.png\",\n                    \"abbreviation\": \"AEK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-df16-4ea7-9489-105bf25e61b8\",\n                    \"name\": \"Aberdeen\",\n                    \"badge\": \"sr-competitor-2355.png\",\n                    \"abbreviation\": \"ABE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-9e01-4535-86ef-e0b7cd4720b6\",\n                    \"name\": \"Celtic\",\n                    \"badge\": \"sr-competitor-2352.png\",\n                    \"abbreviation\": \"CEL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd3-5234-4395-9efd-8f791301c234\",\n                    \"name\": \"Sturm Graz\",\n                    \"badge\": \"sr-competitor-2051.png\",\n                    \"abbreviation\": \"STU\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-32c2-4905-bc2d-c2368a95716f\",\n                    \"name\": \"Lille\",\n                    \"badge\": \"sr-competitor-1643.png\",\n                    \"abbreviation\": \"LIL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-e714-40ed-bd4c-d5f716e61655\",\n                    \"name\": \"PAOK\",\n                    \"badge\": \"sr-competitor-3251.png\",\n                    \"abbreviation\": \"PAOK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-c286-4850-8b3c-8d2ced1a700f\",\n                    \"name\": \"Young Boys\",\n                    \"badge\": \"sr-competitor-2445.png\",\n                    \"abbreviation\": \"YB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-357c-4df0-b91a-cc63af783378\",\n                    \"name\": \"Ludogorets\",\n                    \"badge\": \"sr-competitor-43840.png\",\n                    \"abbreviation\": \"LUD\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-98db-4f3a-96f4-2e038d26d4f7\",\n                    \"name\": \"Roma\",\n                    \"badge\": \"sr-competitor-2702.png\",\n                    \"abbreviation\": \"ROM\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-889b-4040-a16d-93a204c8bf93\",\n                    \"name\": \"Plzen\",\n                    \"badge\": \"sr-competitor-4502.png\",\n                    \"abbreviation\": \"VIK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-d368-406b-b39c-0b6aaebcf1d0\",\n                    \"name\": \"Genk\",\n                    \"badge\": \"sr-competitor-2890.png\",\n                    \"abbreviation\": \"GEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-f63a-4b15-95f8-be1d2f972757\",\n                    \"name\": \"Real Betis\",\n                    \"badge\": \"sr-competitor-2816.png\",\n                    \"abbreviation\": \"RBB\"\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 32,\n        \"timezone\": \"UTC\",\n        \"filtering\": {\n            \"day\": 0,\n            \"utc_dates\": [\n                \"2025-10-23\"\n            ],\n            \"start_of_day_utc\": \"2025-10-23T00:00:00Z\",\n            \"end_of_day_utc\": \"2025-10-23T23:59:59Z\"\n        }\n    }\n}"}],"_postman_id":"179d59a4-0e75-464f-b1bc-7e67f8425994"},{"name":"featured-bet-builders","event":[{"listen":"test","script":{"id":"abb178fa-d677-4a31-8d75-6b9c768c5bde","exec":["// 1. Status Code Test","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Test","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})","","// 3. JSON Schema Validation Test","pm.test(\"Response matches expected schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"id\", \"competition_id\", \"competition_name\", \"competition_logo\", \"sport_radar_competition_id\", \"competition_coverage\", \"competition_tab_key\", \"kick_off\", \"country\", \"teams\"],","                    properties: {","                        id: { type: \"string\" },","                        competition_id: { type: \"string\" },","                        competition_name: { type: \"string\" },","                        competition_logo: { type: \"string\" },","                        sport_radar_competition_id: { type: \"string\" },","                        competition_coverage: {","                            type: \"object\",","                            properties: {","                                continental: { type: \"string\" }","                            }","                        },","                        competition_tab_key: { type: \"string\" },","                        kick_off: { type: \"string\" },","                        country: {","                            type: \"object\",","                            properties: {","                                name: { type: \"string\" },","                                flag: { type: [\"string\", \"null\"] }","                            }","                        },","                        teams: {","                            type: \"object\",","                            properties: {","                                home: {","                                    type: \"object\",","                                    properties: {","                                        id: { type: \"string\" },","                                        name: { type: \"string\" },","                                        badge: { type: \"string\" },","                                        abbreviation: { type: \"string\" }","                                    }","                                },","                                away: {","                                    type: \"object\",","                                    properties: {","                                        id: { type: \"string\" },","                                        name: { type: \"string\" },","                                        badge: { type: \"string\" },","                                        abbreviation: { type: \"string\" }","                                    }","                                }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"timezone\", \"filtering\"],","                properties: {","                    results: { type: \"integer\" },","                    timezone: { type: \"string\" },","                    filtering: {","                        type: \"object\",","                        properties: {","                            day: { type: \"integer\" },","                            utc_dates: {","                                type: \"array\",","                                items: { type: \"string\" }","                            },","                            start_of_day_utc: { type: \"string\" },","                            end_of_day_utc: { type: \"string\" }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"193c821d-4847-4d2a-ba10-4c2aae2dc970","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a0d1f0ad-7ad6-43ec-9bd7-d0aed55b4201","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/featured-bet-builders?fixture_id=019d8f82-db84-73a5-a1fd-ecaaea5b5184","description":"<h3 id=\"get-bet-builder-fixtures\">GET /bet-builder-fixtures</h3>\n<p>This endpoint retrieves bet builder fixtures for the specified day.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>/bet-builder-fixtures</code></p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li><code>day</code> (integer, required): Specifies the day for which fixtures are to be retrieved.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response is in JSON format and follows the schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"data\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"id\": {\"type\": \"string\"},\n          \"competition_id\": {\"type\": \"string\"},\n          \"competition_name\": {\"type\": \"string\"},\n          \"competition_logo\": {\"type\": \"string\"},\n          \"sport_radar_competition_id\": {\"type\": \"string\"},\n          \"competition_coverage\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"continental\": {\"type\": \"string\"}\n            }\n          },\n          \"competition_tab_key\": {\"type\": \"string\"},\n          \"kick_off\": {\"type\": \"string\"},\n          \"country\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"name\": {\"type\": \"string\"},\n              \"flag\": {\"type\": \"string\"}\n            }\n          },\n          \"teams\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"home\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              },\n              \"away\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"id\": {\"type\": \"string\"},\n                  \"name\": {\"type\": \"string\"},\n                  \"badge\": {\"type\": \"string\"},\n                  \"abbreviation\": {\"type\": \"string\"}\n                }\n              }\n            }\n          }\n        }\n      }\n    },\n    \"meta\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"results\": {\"type\": \"integer\"},\n        \"timezone\": {\"type\": \"string\"},\n        \"filtering\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"day\": {\"type\": \"integer\"},\n            \"utc_dates\": {\n              \"type\": \"array\",\n              \"items\": {\"type\": \"string\"}\n            },\n            \"start_of_day_utc\": {\"type\": \"string\"},\n            \"end_of_day_utc\": {\"type\": \"string\"}\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["featured-bet-builders"],"host":[""],"query":[{"key":"fixture_id","value":"019d8f82-db84-73a5-a1fd-ecaaea5b5184"}],"variable":[]}},"response":[{"id":"2e7bdd5a-fec6-4b63-9429-8243a075fcd5","name":"2 Bet Builders, 1 Longshot","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"/featured-bet-builders?fixture_id=019d8f82-db84-73a5-a1fd-ecaaea5b5184","host":[""],"path":["featured-bet-builders"],"query":[{"key":"fixture_id","value":"019d8f82-db84-73a5-a1fd-ecaaea5b5184"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Thu, 23 Oct 2025 10:26:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"24205"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"a8403b25-ce1d-49af-9463-ae4f94aa0033"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S5ViGGj-DoEEgWQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fa02d9-205872a37aa0857b2626fe70;Parent=7d63e33e0a177b30;Sampled=0;Lineage=1:ba673fab:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0198fd91-537e-7313-87b5-4f3703c73056\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c37e-206a-45a6-bcdc-3461ea3d71e0\",\n                    \"name\": \"Malmo\",\n                    \"badge\": \"sr-competitor-1892.png\",\n                    \"abbreviation\": \"MAL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9833-43fc-9f72-95dcaf01e5e5\",\n                    \"name\": \"Dinamo Zagreb\",\n                    \"badge\": \"sr-competitor-2032.png\",\n                    \"abbreviation\": \"DIN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1a-707d-b5f0-2073b32a56bf\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c92a-08ed-4793-8537-29197bc6aed5\",\n                    \"name\": \"Brann\",\n                    \"badge\": \"sr-competitor-1159.png\",\n                    \"abbreviation\": \"SKB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e4ad-4e44-95dd-e5e31a7606f1\",\n                    \"name\": \"Rangers\",\n                    \"badge\": \"sr-competitor-2351.png\",\n                    \"abbreviation\": \"RFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-4143-701b-8cc7-7f76fbf71407\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace7-6c66-42e6-a3be-e64241cdf113\",\n                    \"name\": \"Shkendija Tetovo\",\n                    \"badge\": \"sr-competitor-5413.png\",\n                    \"abbreviation\": \"SHK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c312-9e51-4beb-8299-ed120dfa6d68\",\n                    \"name\": \"Shelbourne\",\n                    \"badge\": \"sr-competitor-3174.png\",\n                    \"abbreviation\": \"SHE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d2f-70e9-a216-4036715bcc04\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 14:30:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-78cf-44a2-bb88-a088b17a347c\",\n                    \"name\": \"Feyenoord\",\n                    \"badge\": \"sr-competitor-2959.png\",\n                    \"abbreviation\": \"FEY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-9950-48c1-b5d4-f761812d85f5\",\n                    \"name\": \"Panathinaikos\",\n                    \"badge\": \"sr-competitor-3248.png\",\n                    \"abbreviation\": \"PAN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3191-72ec-bf88-d3351715c701\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace1-ae78-417e-8a38-90812f49f8fd\",\n                    \"name\": \"Shamrock\",\n                    \"badge\": \"sr-competitor-3177.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94aceb-a5a0-4955-bc7d-a595b0faedd7\",\n                    \"name\": \"NK Celje\",\n                    \"badge\": \"sr-competitor-2413.png\",\n                    \"abbreviation\": \"CEL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d15-714c-9a8a-b661fe2b3ba5\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd8-c48a-4756-8275-2293293e66d1\",\n                    \"name\": \"Braga\",\n                    \"badge\": \"sr-competitor-2999.png\",\n                    \"abbreviation\": \"BRA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-baa7-4b20-a111-8202a82c0b1b\",\n                    \"name\": \"Crvena Zvezda\",\n                    \"badge\": \"sr-competitor-5149.png\",\n                    \"abbreviation\": \"CZV\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d0e-7325-892e-75a5618d359e\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-46af-4c43-9af9-2e4bfee5307c\",\n                    \"name\": \"Strasbourg\",\n                    \"badge\": \"sr-competitor-1659.png\",\n                    \"abbreviation\": \"RCS\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a439-b254-4d01-b869-4186d5da11b0\",\n                    \"name\": \"Jagiellonia\",\n                    \"badge\": \"sr-competitor-7691.png\",\n                    \"abbreviation\": \"JAG\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-5e5c-738b-8d81-3e8889c4cdc8\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-1ee1-4248-87a0-36b9b9697790\",\n                    \"name\": \"Breidablik\",\n                    \"badge\": \"sr-competitor-1901.png\",\n                    \"abbreviation\": \"KOP\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2a5e-e517-4b98-ad40-dd22f53162e7\",\n                    \"name\": \"Kuopion Palloseura\",\n                    \"badge\": \"sr-competitor-2244.png\",\n                    \"abbreviation\": \"KUPS\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d07-73e0-9ec3-6920cb3dfd25\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Conference League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acd1-e0e4-4f8c-aa59-b1c409abdfa8\",\n                    \"name\": \"SK Rapid\",\n                    \"badge\": \"sr-competitor-2055.png\",\n                    \"abbreviation\": \"SCR\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace1-e90d-47f2-8a13-71819ceae79f\",\n                    \"name\": \"Fiorentina\",\n                    \"badge\": \"sr-competitor-2693.png\",\n                    \"abbreviation\": \"FIO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-400e-7285-994f-a5dd6630fc7a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c31f-a70a-4dc7-a068-879f9e1077b5\",\n                    \"name\": \"Celta Vigo\",\n                    \"badge\": \"sr-competitor-2821.png\",\n                    \"abbreviation\": \"RCC\"\n                },\n                \"away\": {\n                    \"id\": \"9a9a2add-8a74-4c53-bfc8-58faec11d78e\",\n                    \"name\": \"Nice\",\n                    \"badge\": \"sr-competitor-1661.png\",\n                    \"abbreviation\": \"NIC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2659-71f1-9d16-c1642f8aaf9a\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c368-ed2b-4782-aa0b-5706f0b1854c\",\n                    \"name\": \"Lincoln Red Imps\",\n                    \"badge\": \"sr-competitor-126304.png\",\n                    \"abbreviation\": \"LIN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45c-75f8-4a1d-b38c-bf970b93c517\",\n                    \"name\": \"Lech Poznan\",\n                    \"badge\": \"sr-competitor-3121.png\",\n                    \"abbreviation\": \"LPO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-2ad2-7152-ba45-cdc3cef953e4\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2ab8-4a4a-4fcc-8f79-9c733e7475dd\",\n                    \"name\": \"Mainz\",\n                    \"badge\": \"sr-competitor-2556.png\",\n                    \"abbreviation\": \"M05\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-b7f8-4088-9b31-8a756e9e2518\",\n                    \"name\": \"Zrinjski Mostar\",\n                    \"badge\": \"sr-competitor-5178.png\",\n                    \"abbreviation\": \"ZRI\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d4f-7274-91fe-36f8bfc7891e\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace6-03a6-400e-ad56-1856f450f30b\",\n                    \"name\": \"Salzburg\",\n                    \"badge\": \"sr-competitor-2046.png\",\n                    \"abbreviation\": \"RBS\"\n                },\n                \"away\": {\n                    \"id\": \"9a948083-c54e-465a-9ec7-bd19c7f13b84\",\n                    \"name\": \"Ferencvarosi\",\n                    \"badge\": \"sr-competitor-1925.png\",\n                    \"abbreviation\": \"FTC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d45-7228-8164-a45b1d164848\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a9a2a9b-4c37-4624-bede-a3b5062f61cd\",\n                    \"name\": \"Lyon\",\n                    \"badge\": \"sr-competitor-1649.png\",\n                    \"abbreviation\": \"OL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c318-6afc-4bbe-aa0d-c89ba86d905d\",\n                    \"name\": \"Basel\",\n                    \"badge\": \"sr-competitor-2501.png\",\n                    \"abbreviation\": \"FCB\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d37-7128-8e05-78b5ed9aa1f6\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-c018-4f71-be22-9ed851229f5a\",\n                    \"name\": \"GA Eagles\",\n                    \"badge\": \"sr-competitor-2979.png\",\n                    \"abbreviation\": \"GAE\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                    \"name\": \"Aston Villa\",\n                    \"badge\": \"sr-competitor-40.png\",\n                    \"abbreviation\": \"AVL\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-44f3-71a6-8f03-f2f2d2780fcd\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-313d-4db3-a792-f229601726dc\",\n                    \"name\": \"Alkmaar\",\n                    \"badge\": \"sr-competitor-2950.png\",\n                    \"abbreviation\": \"AZA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94accf-e1cd-4950-8b4f-30836314c790\",\n                    \"name\": \"Slovan Bratislava\",\n                    \"badge\": \"sr-competitor-2404.png\",\n                    \"abbreviation\": \"SLO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd7f-0ed0-7038-bc17-471a1f6473ae\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0d7c-4c80-ad39-b9ff5677e038\",\n                    \"name\": \"Maccabi Tel Aviv\",\n                    \"badge\": \"sr-competitor-5198.png\",\n                    \"abbreviation\": \"MTA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-e08b-43f0-8c2c-cc6aafc8f8d8\",\n                    \"name\": \"Midtjylland\",\n                    \"badge\": \"sr-competitor-1289.png\",\n                    \"abbreviation\": \"FCM\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd5a-a4ca-71a7-a158-197be414ca46\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-731e-4a04-9f97-5aa9ebf6b8ce\",\n                    \"name\": \"Shakhtar\",\n                    \"badge\": \"sr-competitor-3313.png\",\n                    \"abbreviation\": \"SHA\"\n                },\n                \"away\": {\n                    \"id\": \"9a94a45d-4fbe-4b9f-b9fa-f68b1df54bfa\",\n                    \"name\": \"Legia Warszawa\",\n                    \"badge\": \"sr-competitor-3106.png\",\n                    \"abbreviation\": \"LEG\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d1d-7180-91d1-be8b4d18aca2\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94aced-14f3-428b-b8a8-4b55e21e8205\",\n                    \"name\": \"Rijeka\",\n                    \"badge\": \"sr-competitor-2039.png\",\n                    \"abbreviation\": \"RIJ\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-e085-48f8-a9ff-57e86235ad64\",\n                    \"name\": \"Sparta Prague\",\n                    \"badge\": \"sr-competitor-2218.png\",\n                    \"abbreviation\": \"SPA\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-7d58-72bf-8f14-75d044175a77\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-0b6a-477c-8180-fade01c34755\",\n                    \"name\": \"Hacken Gothenburg\",\n                    \"badge\": \"sr-competitor-1760.png\",\n                    \"abbreviation\": \"HAC\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acec-6b1f-482b-a5af-ad4243e92e57\",\n                    \"name\": \"Rayo Vallecano\",\n                    \"badge\": \"sr-competitor-2818.png\",\n                    \"abbreviation\": \"RVC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d26-708b-a7d0-b8d8ee205155\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-314e-4a5f-90d1-e065020c17df\",\n                    \"name\": \"Fenerbahce\",\n                    \"badge\": \"sr-competitor-3052.png\",\n                    \"abbreviation\": \"FEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-2b99-4a62-b9c5-bedb6b95f11c\",\n                    \"name\": \"Stuttgart\",\n                    \"badge\": \"sr-competitor-2677.png\",\n                    \"abbreviation\": \"VFB\"\n                }\n            }\n        },\n        {\n            \"id\": \"019907b9-60d7-71f1-bb0e-f1fb91d8b9e1\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acec-c098-43e0-a33e-777cbd27e1e4\",\n                    \"name\": \"KF Drita\",\n                    \"badge\": \"sr-competitor-277835.png\",\n                    \"abbreviation\": \"DRI\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace0-88df-4eaf-bf53-99de0096666e\",\n                    \"name\": \"Omonia Nicosia\",\n                    \"badge\": \"sr-competitor-3395.png\",\n                    \"abbreviation\": \"OMO\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-6bb7-721d-90cb-11be46ac3a34\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c946-e50a-41d9-b986-d0e1ea2126f7\",\n                    \"name\": \"Crystal Palace\",\n                    \"badge\": \"sr-competitor-7.png\",\n                    \"abbreviation\": \"CRY\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c93c-c743-4768-ab99-f65f8045c8f6\",\n                    \"name\": \"Larnaca\",\n                    \"badge\": \"sr-competitor-3404.png\",\n                    \"abbreviation\": \"ALA\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-5789-702e-bbd2-c0258bd9d5ea\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-2714-4ca2-b04c-d7eb2c062896\",\n                    \"name\": \"Nottm Forest\",\n                    \"badge\": \"sr-competitor-14.png\",\n                    \"abbreviation\": \"NFO\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ad05-ddba-47a9-9581-30f18c4f2c9d\",\n                    \"name\": \"Porto\",\n                    \"badge\": \"sr-competitor-3002.png\",\n                    \"abbreviation\": \"FCP\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d20-727f-8d9c-0d45068e8e4c\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94acf0-9ae1-4b48-b861-5ab84c15a5bb\",\n                    \"name\": \"FCSB\",\n                    \"badge\": \"sr-competitor-3301.png\",\n                    \"abbreviation\": \"FCSB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94c314-1fe5-4448-a022-245bf92accf8\",\n                    \"name\": \"Bologna\",\n                    \"badge\": \"sr-competitor-2685.png\",\n                    \"abbreviation\": \"BFC\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-388e-71b9-a7d7-fc2656de4d89\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c314-a29c-4bcf-819d-b49a494f045a\",\n                    \"name\": \"Uni Craiova\",\n                    \"badge\": \"sr-competitor-116223.png\",\n                    \"abbreviation\": \"CSU\"\n                },\n                \"away\": {\n                    \"id\": \"9a947f2c-36b3-4cdf-bd6e-c5fe79bdbac3\",\n                    \"name\": \"Noah Yerevan\",\n                    \"badge\": \"sr-competitor-364474.png\",\n                    \"abbreviation\": \"FCN\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d01-70ba-aa1a-b7e884875fe3\",\n            \"competition_id\": \"9a94ac1c-2b3f-464c-887c-56c1b3a24705\",\n            \"competition_name\": \"UEFA Conference League\",\n            \"competition_logo\": \"sr-competition-34480.png\",\n            \"sport_radar_competition_id\": \"sr:competition:34480\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace8-fc14-477e-8325-d8b1a5ba9ca1\",\n                    \"name\": \"AEK Athens\",\n                    \"badge\": \"sr-competitor-3250.png\",\n                    \"abbreviation\": \"AEK\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-df16-4ea7-9489-105bf25e61b8\",\n                    \"name\": \"Aberdeen\",\n                    \"badge\": \"sr-competitor-2355.png\",\n                    \"abbreviation\": \"ABE\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-471c-737a-b6c4-d504e6e1277b\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-9e01-4535-86ef-e0b7cd4720b6\",\n                    \"name\": \"Celtic\",\n                    \"badge\": \"sr-competitor-2352.png\",\n                    \"abbreviation\": \"CEL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd3-5234-4395-9efd-8f791301c234\",\n                    \"name\": \"Sturm Graz\",\n                    \"badge\": \"sr-competitor-2051.png\",\n                    \"abbreviation\": \"STU\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-4f3b-707f-86be-a84f37c15e3a\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-32c2-4905-bc2d-c2368a95716f\",\n                    \"name\": \"Lille\",\n                    \"badge\": \"sr-competitor-1643.png\",\n                    \"abbreviation\": \"LIL\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-e714-40ed-bd4c-d5f716e61655\",\n                    \"name\": \"PAOK\",\n                    \"badge\": \"sr-competitor-3251.png\",\n                    \"abbreviation\": \"PAOK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-4586-7288-9187-b0f28491df54\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"continental\": \"UEFA Competitions\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-c286-4850-8b3c-8d2ced1a700f\",\n                    \"name\": \"Young Boys\",\n                    \"badge\": \"sr-competitor-2445.png\",\n                    \"abbreviation\": \"YB\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-357c-4df0-b91a-cc63af783378\",\n                    \"name\": \"Ludogorets\",\n                    \"badge\": \"sr-competitor-43840.png\",\n                    \"abbreviation\": \"LUD\"\n                }\n            }\n        },\n        {\n            \"id\": \"0198fd91-3bf1-7235-a7e7-a894a8566273\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Competitions\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 19:00:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-98db-4f3a-96f4-2e038d26d4f7\",\n                    \"name\": \"Roma\",\n                    \"badge\": \"sr-competitor-2702.png\",\n                    \"abbreviation\": \"ROM\"\n                },\n                \"away\": {\n                    \"id\": \"9a94acd1-889b-4040-a16d-93a204c8bf93\",\n                    \"name\": \"Plzen\",\n                    \"badge\": \"sr-competitor-4502.png\",\n                    \"abbreviation\": \"VIK\"\n                }\n            }\n        },\n        {\n            \"id\": \"0199f9c7-2d3e-71d1-9d67-16560400a7c9\",\n            \"competition_id\": \"9a94ac1b-344d-4ea9-a6f2-831ddf806925\",\n            \"competition_name\": \"UEFA Europa League\",\n            \"competition_logo\": \"sr-competition-679.png\",\n            \"sport_radar_competition_id\": \"sr:competition:679\",\n            \"competition_coverage\": {\n                \"domestic\": \"Domestic Leagues\",\n                \"continental\": \"UEFA Europa League\",\n                \"all\": \"Both\"\n            },\n            \"competition_tab_key\": \"continental\",\n            \"kick_off\": \"2025-10-23 16:45:00\",\n            \"country\": {\n                \"name\": \"International Clubs\",\n                \"flag\": null\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ace9-d368-406b-b39c-0b6aaebcf1d0\",\n                    \"name\": \"Genk\",\n                    \"badge\": \"sr-competitor-2890.png\",\n                    \"abbreviation\": \"GEN\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-f63a-4b15-95f8-be1d2f972757\",\n                    \"name\": \"Real Betis\",\n                    \"badge\": \"sr-competitor-2816.png\",\n                    \"abbreviation\": \"RBB\"\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 32,\n        \"timezone\": \"UTC\",\n        \"filtering\": {\n            \"day\": 0,\n            \"utc_dates\": [\n                \"2025-10-23\"\n            ],\n            \"start_of_day_utc\": \"2025-10-23T00:00:00Z\",\n            \"end_of_day_utc\": \"2025-10-23T23:59:59Z\"\n        }\n    }\n}"}],"_postman_id":"a0d1f0ad-7ad6-43ec-9bd7-d0aed55b4201"},{"name":"featured-horses","event":[{"listen":"test","script":{"id":"de2287ca-843d-4812-ad56-adb736358d81","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response time is less than 4000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","pm.test(\"Response matches expected JSON schema\", function () {","    const propositionsSchema = {","        type: \"object\",","        properties: {","            WIN: { type: \"number\" },","            TOP_2_FINISH: { type: \"number\" },","            TOP_3_FINISH: { type: \"number\" },","            TOP_4_FINISH: { type: \"number\" },","            TOP_5_FINISH: { type: \"number\" },","            TOP_6_FINISH: { type: \"number\" },","            TOP_7_FINISH: { type: \"number\" },","            TOP_8_FINISH: { type: \"number\" },","            TOP_9_FINISH: { type: \"number\" },","            TOP_10_FINISH: { type: \"number\" }","        }","    };","","    const hitRateCategorySchema = {","        type: \"object\",","        required: [\"propositions\", \"numberOfRaces\"],","        properties: {","            propositions: propositionsSchema,","            numberOfRaces: { type: \"number\" }","        }","    };","","    const horseSchema = {","        type: \"object\",","        required: [\"id\", \"name\", \"status\", \"age\", \"weight\", \"all_time_starts\", \"rating\", \"cloth_number\", \"silk\", \"jockey_name\", \"trainer_name\", \"hit_rates\", \"race_id\", \"start_datetime\", \"racecourse\"],","        properties: {","            id: { type: \"string\" },","            name: { type: \"string\" },","            status: { type: \"string\" },","            age: { type: \"number\" },","            weight: { type: \"number\" },","            all_time_starts: { type: \"number\" },","            rating: { type: \"number\" },","            cloth_number: { type: \"number\" },","            stall: { type: [\"string\", \"null\"] },","            silk: { type: \"string\" },","            jockey_name: { type: \"string\" },","            trainer_name: { type: \"string\" },","            hit_rates: {","                type: \"object\",","                required: [\"unfiltered\", \"currentGoing\", \"currentDistance\"],","                properties: {","                    unfiltered: hitRateCategorySchema,","                    currentGoing: hitRateCategorySchema,","                    currentDistance: hitRateCategorySchema","                }","            },","            race_id: { type: \"string\" },","            start_datetime: { type: \"string\" },","            racecourse: { type: \"string\" }","        }","    };","","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: horseSchema","            },","            meta: {","                type: \"object\",","                required: [\"limit\", \"filtering\"],","                properties: {","                    limit: { type: \"number\" },","                    filtering: {","                        type: \"object\",","                        required: [\"day\", \"type\"],","                        properties: {","                            day: { type: \"number\" },","                            type: { type: \"string\" }","                        }","                    }","                }","            }","        }","    };","","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"09831c56-cd8f-4dbb-b5da-bc8a41eabbfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/featured-horses?day=0&type=highest-rated","description":"<h1 id=\"get-featured-horses\">Get Featured Horses</h1>\n<p>This endpoint retrieves a list of featured horses based on the specified criteria.</p>\n<h2 id=\"request\">Request</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>GET /featured-horses</code></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<ul>\n<li><p><code>day</code> (integer): The day for which the featured horses are to be retrieved.</p>\n</li>\n<li><p><code>type</code> (string): The type of featured horses to be retrieved, e.g., \"highest-rated\".</p>\n</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<ul>\n<li><p>Status: 200</p>\n</li>\n<li><p>Content-Type: application/json</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": [\n        {\n            \"id\": \"\",\n            \"name\": \"\",\n            \"status\": \"\",\n            \"age\": 0,\n            \"weight\": 0,\n            \"all_time_starts\": 0,\n            \"rating\": 0,\n            \"cloth_number\": 0,\n            \"stall\": \"\",\n            \"silk\": \"\",\n            \"jockey_name\": \"\",\n            \"trainer_name\": \"\",\n            \"hit_rates\": {\n                \"unfiltered\": {\n                    \"propositions\": {\n                        \"WIN\": 0,\n                        \"TOP_2_FINISH\": 0,\n                        \"TOP_3_FINISH\": 0,\n                        \"TOP_4_FINISH\": 0,\n                        \"TOP_5_FINISH\": 0,\n                        \"TOP_6_FINISH\": 0,\n                        \"TOP_7_FINISH\": 0,\n                        \"TOP_8_FINISH\": 0,\n                        \"TOP_9_FINISH\": 0,\n                        \"TOP_10_FINISH\": 0\n                    },\n                    \"numberOfRaces\": 0\n                },\n                \"currentGoing\": {\n                    \"propositions\": {\n                        \"WIN\": 0,\n                        \"TOP_2_FINISH\": 0,\n                        \"TOP_3_FINISH\": 0,\n                        \"TOP_4_FINISH\": 0,\n                        \"TOP_5_FINISH\": 0,\n                        \"TOP_6_FINISH\": 0,\n                        \"TOP_7_FINISH\": 0,\n                        \"TOP_8_FINISH\": 0,\n                        \"TOP_9_FINISH\": 0,\n                        \"TOP_10_FINISH\": 0\n                    },\n                    \"numberOfRaces\": 0\n                },\n                \"currentDistance\": {\n                    \"propositions\": {\n                        \"WIN\": 0,\n                        \"TOP_2_FINISH\": 0,\n                        \"TOP_3_FINISH\": 0,\n                        \"TOP_4_FINISH\": 0,\n                        \"TOP_5_FINISH\": 0,\n                        \"TOP_6_FINISH\": 0,\n                        \"TOP_7_FINISH\": 0,\n                        \"TOP_8_FINISH\": 0,\n                        \"TOP_9_FINISH\": 0,\n                        \"TOP_10_FINISH\": 0\n                    },\n                    \"numberOfRaces\": 0\n                }\n            },\n            \"race_id\": \"\",\n            \"start_datetime\": \"\",\n            \"racecourse\": \"\"\n        }\n    ],\n    \"meta\": {\n        \"limit\": 0,\n        \"filtering\": {\n            \"day\": 0,\n            \"type\": \"\"\n        }\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["featured-horses"],"host":[""],"query":[{"key":"day","value":"0"},{"key":"type","value":"highest-rated"}],"variable":[]}},"response":[{"id":"9a17cffe-4569-4bd3-9ac6-c224db8e3e7a","name":"featured-horses","originalRequest":{"method":"GET","header":[],"url":{"raw":"/featured-horses?day=0&type=highest-rated","host":[""],"path":["featured-horses"],"query":[{"key":"day","value":"0"},{"key":"type","value":"highest-rated"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:21:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"5904"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"569f0f6e-3084-4011-9823-ba424cfbeb41"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8wjmFjWDoEET9g="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb6149-1e44a5d30e426d752b222866;Parent=3cc361e2a30522ec;Sampled=0;Lineage=1:045f4a6e:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"9a9a293a-76b4-479e-a08b-bb84811b8f1f\",\n            \"name\": \"East India Express\",\n            \"status\": \"Runner\",\n            \"age\": 6,\n            \"weight\": 168,\n            \"all_time_starts\": 9,\n            \"rating\": 9,\n            \"cloth_number\": 1,\n            \"stall\": null,\n            \"silk\": \"20251024che131501.svg\",\n            \"jockey_name\": \"Freddie Gordon\",\n            \"trainer_name\": \"N J Henderson\",\n            \"hit_rates\": {\n                \"unfiltered\": {\n                    \"propositions\": {\n                        \"WIN\": 44,\n                        \"TOP_2_FINISH\": 44,\n                        \"TOP_3_FINISH\": 44,\n                        \"TOP_4_FINISH\": 44,\n                        \"TOP_5_FINISH\": 44,\n                        \"TOP_6_FINISH\": 44,\n                        \"TOP_7_FINISH\": 55,\n                        \"TOP_8_FINISH\": 55,\n                        \"TOP_9_FINISH\": 55,\n                        \"TOP_10_FINISH\": 55\n                    },\n                    \"numberOfRaces\": 9\n                },\n                \"currentGoing\": {\n                    \"propositions\": {\n                        \"WIN\": 57,\n                        \"TOP_2_FINISH\": 57,\n                        \"TOP_3_FINISH\": 57,\n                        \"TOP_4_FINISH\": 57,\n                        \"TOP_5_FINISH\": 57,\n                        \"TOP_6_FINISH\": 57,\n                        \"TOP_7_FINISH\": 71,\n                        \"TOP_8_FINISH\": 71,\n                        \"TOP_9_FINISH\": 71,\n                        \"TOP_10_FINISH\": 71\n                    },\n                    \"numberOfRaces\": 7\n                },\n                \"currentDistance\": {\n                    \"propositions\": {\n                        \"WIN\": 25,\n                        \"TOP_2_FINISH\": 25,\n                        \"TOP_3_FINISH\": 25,\n                        \"TOP_4_FINISH\": 25,\n                        \"TOP_5_FINISH\": 25,\n                        \"TOP_6_FINISH\": 25,\n                        \"TOP_7_FINISH\": 50,\n                        \"TOP_8_FINISH\": 50,\n                        \"TOP_9_FINISH\": 50,\n                        \"TOP_10_FINISH\": 50\n                    },\n                    \"numberOfRaces\": 4\n                }\n            },\n            \"race_id\": \"019a0b54-3b34-73ad-9bf2-f394f517d3c7\",\n            \"start_datetime\": \"2025-10-24 12:15:00\",\n            \"racecourse\": \"Cheltenham\"\n        },\n        {\n            \"id\": \"9b656f30-a9b6-4d31-a94a-c129ff753fb2\",\n            \"name\": \"Country Mile\",\n            \"status\": \"Runner\",\n            \"age\": 6,\n            \"weight\": 158,\n            \"all_time_starts\": 6,\n            \"rating\": 8.7,\n            \"cloth_number\": 6,\n            \"stall\": null,\n            \"silk\": \"20251024che135006.svg\",\n            \"jockey_name\": \"Harry Skelton\",\n            \"trainer_name\": \"D Skelton\",\n            \"hit_rates\": {\n                \"unfiltered\": {\n                    \"propositions\": {\n                        \"WIN\": 42,\n                        \"TOP_2_FINISH\": 71,\n                        \"TOP_3_FINISH\": 71,\n                        \"TOP_4_FINISH\": 71,\n                        \"TOP_5_FINISH\": 85,\n                        \"TOP_6_FINISH\": 85,\n                        \"TOP_7_FINISH\": 85,\n                        \"TOP_8_FINISH\": 85,\n                        \"TOP_9_FINISH\": 85,\n                        \"TOP_10_FINISH\": 85\n                    },\n                    \"numberOfRaces\": 7\n                },\n                \"currentGoing\": {\n                    \"propositions\": {\n                        \"WIN\": 42,\n                        \"TOP_2_FINISH\": 71,\n                        \"TOP_3_FINISH\": 71,\n                        \"TOP_4_FINISH\": 71,\n                        \"TOP_5_FINISH\": 85,\n                        \"TOP_6_FINISH\": 85,\n                        \"TOP_7_FINISH\": 85,\n                        \"TOP_8_FINISH\": 85,\n                        \"TOP_9_FINISH\": 85,\n                        \"TOP_10_FINISH\": 85\n                    },\n                    \"numberOfRaces\": 7\n                },\n                \"currentDistance\": {\n                    \"propositions\": {\n                        \"WIN\": 50,\n                        \"TOP_2_FINISH\": 83,\n                        \"TOP_3_FINISH\": 83,\n                        \"TOP_4_FINISH\": 83,\n                        \"TOP_5_FINISH\": 83,\n                        \"TOP_6_FINISH\": 83,\n                        \"TOP_7_FINISH\": 83,\n                        \"TOP_8_FINISH\": 83,\n                        \"TOP_9_FINISH\": 83,\n                        \"TOP_10_FINISH\": 83\n                    },\n                    \"numberOfRaces\": 6\n                }\n            },\n            \"race_id\": \"019a0b54-8029-705b-b00e-6a5f1256eeb3\",\n            \"start_datetime\": \"2025-10-24 12:50:00\",\n            \"racecourse\": \"Cheltenham\"\n        },\n        {\n            \"id\": \"9c1c6b0c-715f-4c3a-a57e-39b8c2344255\",\n            \"name\": \"Accrual\",\n            \"status\": \"Runner\",\n            \"age\": 4,\n            \"weight\": 131,\n            \"all_time_starts\": 9,\n            \"rating\": 8.4,\n            \"cloth_number\": 5,\n            \"stall\": \"4\",\n            \"silk\": \"20251024sth175505.svg\",\n            \"jockey_name\": \"D Egan\",\n            \"trainer_name\": \"D & C Kubler\",\n            \"hit_rates\": {\n                \"unfiltered\": {\n                    \"propositions\": {\n                        \"WIN\": 12,\n                        \"TOP_2_FINISH\": 25,\n                        \"TOP_3_FINISH\": 25,\n                        \"TOP_4_FINISH\": 25,\n                        \"TOP_5_FINISH\": 25,\n                        \"TOP_6_FINISH\": 25,\n                        \"TOP_7_FINISH\": 37,\n                        \"TOP_8_FINISH\": 50,\n                        \"TOP_9_FINISH\": 50,\n                        \"TOP_10_FINISH\": 50\n                    },\n                    \"numberOfRaces\": 8\n                },\n                \"currentGoing\": {\n                    \"propositions\": {\n                        \"WIN\": 33,\n                        \"TOP_2_FINISH\": 33,\n                        \"TOP_3_FINISH\": 33,\n                        \"TOP_4_FINISH\": 33,\n                        \"TOP_5_FINISH\": 33,\n                        \"TOP_6_FINISH\": 33,\n                        \"TOP_7_FINISH\": 33,\n                        \"TOP_8_FINISH\": 33,\n                        \"TOP_9_FINISH\": 33,\n                        \"TOP_10_FINISH\": 33\n                    },\n                    \"numberOfRaces\": 3\n                },\n                \"currentDistance\": {\n                    \"propositions\": {\n                        \"WIN\": 14,\n                        \"TOP_2_FINISH\": 28,\n                        \"TOP_3_FINISH\": 28,\n                        \"TOP_4_FINISH\": 28,\n                        \"TOP_5_FINISH\": 28,\n                        \"TOP_6_FINISH\": 28,\n                        \"TOP_7_FINISH\": 28,\n                        \"TOP_8_FINISH\": 42,\n                        \"TOP_9_FINISH\": 42,\n                        \"TOP_10_FINISH\": 42\n                    },\n                    \"numberOfRaces\": 7\n                }\n            },\n            \"race_id\": \"019a0b55-6303-738a-8bd2-ca91e5ce57ed\",\n            \"start_datetime\": \"2025-10-24 16:55:00\",\n            \"racecourse\": \"Southwell\"\n        },\n        {\n            \"id\": \"9b0b4bb1-d587-4141-a389-3717e09d38d8\",\n            \"name\": \"Christian David\",\n            \"status\": \"Runner\",\n            \"age\": 4,\n            \"weight\": 136,\n            \"all_time_starts\": 12,\n            \"rating\": 8.1,\n            \"cloth_number\": 4,\n            \"stall\": \"9\",\n            \"silk\": \"20251024nbu163504.svg\",\n            \"jockey_name\": \"S M Levey\",\n            \"trainer_name\": \"R Hannon\",\n            \"hit_rates\": {\n                \"unfiltered\": {\n                    \"propositions\": {\n                        \"WIN\": 25,\n                        \"TOP_2_FINISH\": 25,\n                        \"TOP_3_FINISH\": 58,\n                        \"TOP_4_FINISH\": 75,\n                        \"TOP_5_FINISH\": 75,\n                        \"TOP_6_FINISH\": 83,\n                        \"TOP_7_FINISH\": 91,\n                        \"TOP_8_FINISH\": 91,\n                        \"TOP_9_FINISH\": 91,\n                        \"TOP_10_FINISH\": 91\n                    },\n                    \"numberOfRaces\": 12\n                },\n                \"currentGoing\": {\n                    \"propositions\": {\n                        \"WIN\": 25,\n                        \"TOP_2_FINISH\": 25,\n                        \"TOP_3_FINISH\": 75,\n                        \"TOP_4_FINISH\": 75,\n                        \"TOP_5_FINISH\": 75,\n                        \"TOP_6_FINISH\": 100,\n                        \"TOP_7_FINISH\": 100,\n                        \"TOP_8_FINISH\": 100,\n                        \"TOP_9_FINISH\": 100,\n                        \"TOP_10_FINISH\": 100\n                    },\n                    \"numberOfRaces\": 4\n                },\n                \"currentDistance\": {\n                    \"propositions\": {\n                        \"WIN\": 27,\n                        \"TOP_2_FINISH\": 27,\n                        \"TOP_3_FINISH\": 54,\n                        \"TOP_4_FINISH\": 72,\n                        \"TOP_5_FINISH\": 72,\n                        \"TOP_6_FINISH\": 81,\n                        \"TOP_7_FINISH\": 90,\n                        \"TOP_8_FINISH\": 90,\n                        \"TOP_9_FINISH\": 90,\n                        \"TOP_10_FINISH\": 90\n                    },\n                    \"numberOfRaces\": 11\n                }\n            },\n            \"race_id\": \"019a0b53-df58-7115-80ff-1fc783b8d0cc\",\n            \"start_datetime\": \"2025-10-24 15:35:00\",\n            \"racecourse\": \"Newbury\"\n        },\n        {\n            \"id\": \"9aba6d99-de01-4065-98b7-ec7c3865dff9\",\n            \"name\": \"King William Rufus\",\n            \"status\": \"Runner\",\n            \"age\": 8,\n            \"weight\": 157,\n            \"all_time_starts\": 18,\n            \"rating\": 8.1,\n            \"cloth_number\": 5,\n            \"stall\": null,\n            \"silk\": \"20251024che142505.svg\",\n            \"jockey_name\": \"Freddie Gordon\",\n            \"trainer_name\": \"C Gordon\",\n            \"hit_rates\": {\n                \"unfiltered\": {\n                    \"propositions\": {\n                        \"WIN\": 15,\n                        \"TOP_2_FINISH\": 47,\n                        \"TOP_3_FINISH\": 52,\n                        \"TOP_4_FINISH\": 52,\n                        \"TOP_5_FINISH\": 52,\n                        \"TOP_6_FINISH\": 68,\n                        \"TOP_7_FINISH\": 73,\n                        \"TOP_8_FINISH\": 73,\n                        \"TOP_9_FINISH\": 73,\n                        \"TOP_10_FINISH\": 73\n                    },\n                    \"numberOfRaces\": 19\n                },\n                \"currentGoing\": {\n                    \"propositions\": {\n                        \"WIN\": 16,\n                        \"TOP_2_FINISH\": 50,\n                        \"TOP_3_FINISH\": 55,\n                        \"TOP_4_FINISH\": 55,\n                        \"TOP_5_FINISH\": 55,\n                        \"TOP_6_FINISH\": 72,\n                        \"TOP_7_FINISH\": 77,\n                        \"TOP_8_FINISH\": 77,\n                        \"TOP_9_FINISH\": 77,\n                        \"TOP_10_FINISH\": 77\n                    },\n                    \"numberOfRaces\": 18\n                },\n                \"currentDistance\": {\n                    \"propositions\": {\n                        \"WIN\": 17,\n                        \"TOP_2_FINISH\": 41,\n                        \"TOP_3_FINISH\": 47,\n                        \"TOP_4_FINISH\": 47,\n                        \"TOP_5_FINISH\": 47,\n                        \"TOP_6_FINISH\": 64,\n                        \"TOP_7_FINISH\": 70,\n                        \"TOP_8_FINISH\": 70,\n                        \"TOP_9_FINISH\": 70,\n                        \"TOP_10_FINISH\": 70\n                    },\n                    \"numberOfRaces\": 17\n                }\n            },\n            \"race_id\": \"019a0b54-8a52-7314-9ddb-892ca2d0f5f1\",\n            \"start_datetime\": \"2025-10-24 13:25:00\",\n            \"racecourse\": \"Cheltenham\"\n        }\n    ],\n    \"meta\": {\n        \"limit\": 5,\n        \"filtering\": {\n            \"day\": 0,\n            \"type\": \"highest-rated\"\n        }\n    }\n}"}],"_postman_id":"09831c56-cd8f-4dbb-b5da-bc8a41eabbfc"},{"name":"fixtures-centre-featured-matches","event":[{"id":"8a26fbbf-bedf-411f-9aa0-d32f31ba1522","listen":"test","script":{"id":"8c144668-3cc8-45fe-acd4-71dcd82030ed","exec":["// 1. HTTP 200 Status Check","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Check","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// 3. JSON Schema Validation","pm.test(\"Response matches expected schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"id\", \"competition_name\", \"abbreviated_competition_name\", \"competition_id\", \"sport_radar_competition_id\", \"competition_logo\", \"kick_off\", \"country\", \"teams\"],","                    properties: {","                        id: { type: \"string\" },","                        competition_name: { type: \"string\" },","                        abbreviated_competition_name: { type: \"string\" },","                        competition_id: { type: \"string\" },","                        sport_radar_competition_id: { type: \"string\" },","                        competition_logo: { type: \"string\" },","                        kick_off: { type: \"string\" },","                        tv_channel: { type: [\"string\", \"null\"] },","                        tv_channel_logo: { type: [\"string\", \"null\"] },","                        country: {","                            type: \"object\",","                            required: [\"name\", \"flag\"],","                            properties: {","                                name: { type: \"string\" },","                                flag: { type: \"string\" }","                            }","                        },","                        teams: {","                            type: \"object\",","                            required: [\"home\", \"away\"],","                            properties: {","                                home: {","                                    type: \"object\",","                                    required: [\"id\", \"name\", \"abbreviated_name\", \"badge\"],","                                    properties: {","                                        id: { type: \"string\" },","                                        name: { type: \"string\" },","                                        abbreviated_name: { type: \"string\" },","                                        badge: { type: \"string\" },","                                        flag: { type: [\"string\", \"null\"] }","                                    }","                                },","                                away: {","                                    type: \"object\",","                                    required: [\"id\", \"name\", \"abbreviated_name\", \"badge\"],","                                    properties: {","                                        id: { type: \"string\" },","                                        name: { type: \"string\" },","                                        abbreviated_name: { type: \"string\" },","                                        badge: { type: \"string\" },","                                        flag: { type: [\"string\", \"null\"] }","                                    }","                                }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"total_results\", \"limit\", \"timezone\", \"dates_checked\"],","                properties: {","                    results: { type: \"number\" },","                    total_results: { type: \"number\" },","                    limit: { type: \"number\" },","                    timezone: { type: \"string\" },","                    dates_checked: {","                        type: \"array\",","                        items: { type: \"string\" }","                    }","                }","            }","        }","    };","","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"5d092c24-c1d2-4e23-9de2-bdbc160a22b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/fixtures-centre-featured-matches?timezone=Europe/London","description":"<h3 id=\"get-featured-matches\">Get Featured Matches</h3>\n<p>This endpoint retrieves the featured matches from the fixtures centre based on the specified timezone.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><code>timezone</code> (query parameter, required): The timezone for which the featured matches are to be retrieved.</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon a successful request, the server returns a JSON object with the following structure:</p>\n<ul>\n<li><p><code>data</code> (array): An array of featured match objects, each containing details such as ID, competition name, competition ID, kick-off time, TV channel, country, and details of home and away teams.</p>\n</li>\n<li><p><code>meta</code> (object): An object containing metadata including the number of results, total results, timezone, and the dates checked.</p>\n</li>\n</ul>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": [\n        {\n            \"id\": \"\",\n            \"competition_name\": \"\",\n            \"competition_id\": \"\",\n            \"sport_radar_competition_id\": \"\",\n            \"competition_logo\": \"\",\n            \"kick_off\": \"\",\n            \"tv_channel\": null,\n            \"tv_channel_logo\": null,\n            \"country\": {\n                \"name\": \"\",\n                \"flag\": \"\"\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"\",\n                    \"name\": \"\",\n                    \"badge\": \"\"\n                },\n                \"away\": {\n                    \"id\": \"\",\n                    \"name\": \"\",\n                    \"badge\": \"\"\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 0,\n        \"total_results\": 0,\n        \"timezone\": \"\",\n        \"dates_checked\": [\"\"]\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["fixtures-centre-featured-matches"],"host":[""],"query":[{"key":"timezone","value":"Europe/London"}],"variable":[]}},"response":[{"id":"1a92bdc6-2d39-484a-9cd7-81fdc9b5e547","name":"fixtures-centre-featured-matches","originalRequest":{"method":"GET","header":[],"url":{"raw":"/fixtures-centre-featured-matches?timezone=Europe/London","host":[""],"path":["fixtures-centre-featured-matches"],"query":[{"key":"timezone","value":"Europe/London"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:22:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3800"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"da2bb7d3-a458-48a1-aea6-3cab9c837d5f"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8wlkGbXjoEEvZQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb6156-56fa60042e3ab091057d0848;Parent=25a52b1ca970f13a;Sampled=0;Lineage=1:9a8f47b0:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"9fae436a-e5cd-49c4-9830-be1a0c2b2200\",\n            \"competition_name\": \"Premier League\",\n            \"abbreviated_competition_name\": \"competition\",\n            \"competition_id\": \"9a94abbd-c337-4e95-862c-e8cb2cf29a61\",\n            \"sport_radar_competition_id\": \"sr:competition:17\",\n            \"competition_logo\": \"sr-competition-17.png\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"tv_channel\": null,\n            \"tv_channel_logo\": null,\n            \"country\": {\n                \"name\": \"England\",\n                \"flag\": \"ENG.png\"\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a948073-83aa-4323-afe8-a6070cb27f53\",\n                    \"name\": \"Leeds\",\n                    \"abbreviated_name\": \"LEE\",\n                    \"badge\": \"sr-competitor-34.png\",\n                    \"flag\": null\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-eb61-4da3-ac38-12c06d6903e5\",\n                    \"name\": \"West Ham\",\n                    \"abbreviated_name\": \"WHU\",\n                    \"badge\": \"sr-competitor-37.png\",\n                    \"flag\": null\n                }\n            }\n        },\n        {\n            \"id\": \"9f8265bc-188f-46cc-9cea-c1e45044e0f9\",\n            \"competition_name\": \"Championship\",\n            \"abbreviated_competition_name\": \"competition\",\n            \"competition_id\": \"9a948071-86c4-4a88-8312-d13234c1a137\",\n            \"sport_radar_competition_id\": \"sr:competition:18\",\n            \"competition_logo\": \"sr-competition-18.png\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"tv_channel\": null,\n            \"tv_channel_logo\": null,\n            \"country\": {\n                \"name\": \"England\",\n                \"flag\": \"ENG.png\"\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a948076-e878-403e-8473-712e693c8c7a\",\n                    \"name\": \"Preston\",\n                    \"abbreviated_name\": \"PNE\",\n                    \"badge\": \"sr-competitor-21.png\",\n                    \"flag\": null\n                },\n                \"away\": {\n                    \"id\": \"9a94c9ac-2311-4179-945d-3f7aa4861a64\",\n                    \"name\": \"Sheffield Utd\",\n                    \"abbreviated_name\": \"SHU\",\n                    \"badge\": \"sr-competitor-15.png\",\n                    \"flag\": null\n                }\n            }\n        },\n        {\n            \"id\": \"0199812c-a204-7009-a7ba-7f55644bdb1f\",\n            \"competition_name\": \"LaLiga\",\n            \"abbreviated_competition_name\": \"competition\",\n            \"competition_id\": \"9a94abbe-52b2-479f-846c-1eb98be0b024\",\n            \"sport_radar_competition_id\": \"sr:competition:8\",\n            \"competition_logo\": \"sr-competition-8.png\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"tv_channel\": null,\n            \"tv_channel_logo\": null,\n            \"country\": {\n                \"name\": \"Spain\",\n                \"flag\": \"ESP.png\"\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad06-2bb8-44a8-9e89-3b1e5a5cebd3\",\n                    \"name\": \"Real Sociedad\",\n                    \"abbreviated_name\": \"RSO\",\n                    \"badge\": \"sr-competitor-2824.png\",\n                    \"flag\": null\n                },\n                \"away\": {\n                    \"id\": \"9a94ad06-8bf7-4c1d-bfe2-7895f4a19321\",\n                    \"name\": \"Sevilla\",\n                    \"abbreviated_name\": \"SEV\",\n                    \"badge\": \"sr-competitor-2833.png\",\n                    \"flag\": null\n                }\n            }\n        },\n        {\n            \"id\": \"9f67afe9-c2dd-490c-ae3a-edbef2297fce\",\n            \"competition_name\": \"Serie A\",\n            \"abbreviated_competition_name\": \"competition\",\n            \"competition_id\": \"9a947f12-22f3-4871-a2e6-1ca0750dd88a\",\n            \"sport_radar_competition_id\": \"sr:competition:23\",\n            \"competition_logo\": \"sr-competition-23.png\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"tv_channel\": null,\n            \"tv_channel_logo\": null,\n            \"country\": {\n                \"name\": \"Italy\",\n                \"flag\": \"ITA.png\"\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad05-99c0-428f-ba39-f265bde10139\",\n                    \"name\": \"Milan\",\n                    \"abbreviated_name\": \"ACM\",\n                    \"badge\": \"sr-competitor-2692.png\",\n                    \"flag\": null\n                },\n                \"away\": {\n                    \"id\": \"9a94ace5-d61e-4728-a711-90c0a223dfd8\",\n                    \"name\": \"Pisa\",\n                    \"abbreviated_name\": \"PIS\",\n                    \"badge\": \"sr-competitor-2737.png\",\n                    \"flag\": null\n                }\n            }\n        },\n        {\n            \"id\": \"019914f4-fced-7085-bbb3-67ebdd1ec7f3\",\n            \"competition_name\": \"Bundesliga\",\n            \"abbreviated_competition_name\": \"competition\",\n            \"competition_id\": \"9a948072-2949-4d87-afa8-3cdd3d550f94\",\n            \"sport_radar_competition_id\": \"sr:competition:35\",\n            \"competition_logo\": \"sr-competition-35.png\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"tv_channel\": null,\n            \"tv_channel_logo\": null,\n            \"country\": {\n                \"name\": \"Germany\",\n                \"flag\": \"DEU.png\"\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c94f-dfd7-4f77-99d5-21116ed9c20e\",\n                    \"name\": \"Bremen\",\n                    \"abbreviated_name\": \"SVW\",\n                    \"badge\": \"sr-competitor-2534.png\",\n                    \"flag\": null\n                },\n                \"away\": {\n                    \"id\": \"9a94acf0-1908-4a25-b0a4-2372969253c5\",\n                    \"name\": \"Union Berlin\",\n                    \"abbreviated_name\": \"UNI\",\n                    \"badge\": \"sr-competitor-2547.png\",\n                    \"flag\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 5,\n        \"total_results\": 5,\n        \"limit\": 5,\n        \"timezone\": \"Europe/London\",\n        \"dates_checked\": [\n            \"2025-10-24\",\n            \"2025-10-25\",\n            \"2025-10-26\",\n            \"2025-10-27\"\n        ]\n    }\n}"}],"_postman_id":"5d092c24-c1d2-4e23-9de2-bdbc160a22b5"},{"name":"fixtures-centre-matches","event":[{"id":"9d9a0bd6-ba4c-4305-8f64-6656bfd8a33e","listen":"test","script":{"id":"578375cd-0a45-4ce1-a152-a2b1d0b1fafb","exec":["// 1. HTTP 200 Status Check","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Check","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// 3. JSON Schema Validation","pm.test(\"Response matches expected schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"object\",","                required: [\"day\", \"date\", \"fixtures\"],","                properties: {","                    day: { type: \"string\" },","                    date: { type: \"string\" },","                    fixtures: {","                        type: \"array\",","                        items: {","                            type: \"object\",","                            required: [\"id\", \"competition_name\", \"competition_id\", \"sport_radar_competition_id\", \"competition_groups\", \"competition_logo\", \"kick_off\", \"country\", \"teams\"],","                            properties: {","                                id: { type: \"string\" },","                                competition_name: { type: \"string\" },","                                competition_id: { type: \"string\" },","                                sport_radar_competition_id: { type: \"string\" },","                                competition_groups: {","                                    type: \"array\",","                                    items: { type: \"string\" }","                                },","                                competition_logo: { type: \"string\" },","                                kick_off: { type: \"string\" },","                                country: {","                                    type: \"object\",","                                    required: [\"name\", \"flag\"],","                                    properties: {","                                        name: { type: \"string\" },","                                        flag: { type: \"string\" }","                                    }","                                },","                                teams: {","                                    type: \"object\",","                                    required: [\"home\", \"away\"],","                                    properties: {","                                        home: {","                                            type: \"object\",","                                            required: [\"id\", \"name\", \"badge\"],","                                            properties: {","                                                id: { type: \"string\" },","                                                name: { type: \"string\" },","                                                badge: { type: \"string\" },","                                                flag: { type: [\"string\", \"null\"] }","                                            }","                                        },","                                        away: {","                                            type: \"object\",","                                            required: [\"id\", \"name\", \"badge\"],","                                            properties: {","                                                id: { type: \"string\" },","                                                name: { type: \"string\" },","                                                badge: { type: \"string\" },","                                                flag: { type: [\"string\", \"null\"] }","                                            }","                                        }","                                    }","                                }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"timezone\", \"day\", \"day_offset\", \"utc_dates_fetched\", \"local_date_displayed\"],","                properties: {","                    results: { type: \"number\" },","                    timezone: { type: \"string\" },","                    day: { type: \"string\" },","                    day_offset: { type: \"number\" },","                    utc_dates_fetched: {","                        type: \"array\",","                        items: { type: \"string\" }","                    },","                    local_date_displayed: { type: \"string\" }","                }","            }","        }","    };","","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"object\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"00041de4-6abc-46b8-9dc4-6507a71a7cda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/fixtures-centre-matches?timezone=Europe/London&day=2","description":"<h3 id=\"get-fixtures-centre-matches\">GET /fixtures-centre-matches</h3>\n<p>This endpoint retrieves fixture matches with the specified timezone.</p>\n<h4 id=\"response\">Response</h4>\n<p>The response will be a JSON object with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"day\": \"\",\n    \"date\": \"\",\n    \"fixtures\": [\n      {\n        \"id\": \"\",\n        \"competition_name\": \"\",\n        \"competition_id\": \"\",\n        \"sport_radar_competition_id\": \"\",\n        \"competition_groups\": [\"\"],\n        \"competition_logo\": \"\",\n        \"kick_off\": \"\",\n        \"country\": {\n          \"name\": \"\",\n          \"flag\": \"\"\n        },\n        \"teams\": {\n          \"home\": {\n            \"id\": \"\",\n            \"name\": \"\",\n            \"badge\": \"\"\n          },\n          \"away\": {\n            \"id\": \"\",\n            \"name\": \"\",\n            \"badge\": \"\"\n          }\n        }\n      }\n    ]\n  },\n  \"meta\": {\n    \"results\": 0,\n    \"timezone\": \"\",\n    \"day\": \"\",\n    \"day_offset\": 0,\n    \"utc_dates_fetched\": [\"\"],\n    \"local_date_displayed\": \"\"\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["fixtures-centre-matches"],"host":[""],"query":[{"key":"timezone","value":"Europe/London"},{"key":"day","value":"2"}],"variable":[]}},"response":[{"id":"2ef9e76c-89bb-4ab8-89b5-7914d96c76b3","name":"fixtures-centre-matches","originalRequest":{"method":"GET","header":[],"url":{"raw":"/fixtures-centre-matches?timezone=Europe/London","host":[""],"path":["fixtures-centre-matches"],"query":[{"key":"timezone","value":"Europe/London"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:22:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"86997"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"b46055d6-c2e2-4139-9632-1190ddacc612"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8wnDFyjjoEEbyQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb615f-7951947b419e77444e15d43c;Parent=36ea6474acdbc51d;Sampled=0;Lineage=1:6d193295:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"day\": \"Today\",\n        \"date\": \"2025-10-24\",\n        \"fixtures\": [\n            {\n                \"id\": \"9f6950f8-1801-42e3-b892-fddbbfcb6034\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a94c2e4-ea97-49a4-8981-98d876fb6eef\",\n                \"sport_radar_competition_id\": \"sr:competition:634\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-634.png\",\n                \"kick_off\": \"2025-10-24 12:30:00\",\n                \"country\": {\n                    \"name\": \"Singapore\",\n                    \"flag\": \"SGP.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace4-e449-4828-9b02-076587e874d8\",\n                        \"name\": \"Balestier Khalsa\",\n                        \"badge\": \"sr-competitor-3039.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace4-f284-4de8-9d61-74aed6c7d4f5\",\n                        \"name\": \"Tanjong Pagar United\",\n                        \"badge\": \"sr-competitor-3038.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199ce00-12b3-7175-8a68-0d30431466c5\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a947eff-6907-401f-a4e5-365be4c56137\",\n                \"sport_radar_competition_id\": \"sr:competition:671\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-671.png\",\n                \"kick_off\": \"2025-10-24 12:30:00\",\n                \"country\": {\n                    \"name\": \"Armenia\",\n                    \"flag\": \"ARM.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acdf-0633-47ed-8231-6e413f94151c\",\n                        \"name\": \"Alashkert Yerevan\",\n                        \"badge\": \"sr-competitor-67966.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2c-5a0e-45e8-b20b-a9fbe0a38035\",\n                        \"name\": \"Van\",\n                        \"badge\": \"sr-competitor-609308.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9e1368e3-08d8-431b-ad70-3812ecae69c6\",\n                \"competition_name\": \"Chinese Super League\",\n                \"competition_id\": \"9a94aa37-cf4b-4302-80b3-4313047a565d\",\n                \"sport_radar_competition_id\": \"sr:competition:649\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-649.png\",\n                \"kick_off\": \"2025-10-24 12:35:00\",\n                \"country\": {\n                    \"name\": \"China\",\n                    \"flag\": \"CHN.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd7-6c7d-4f7f-b7fd-ba50ce9693ac\",\n                        \"name\": \"Meizhou Hakka\",\n                        \"badge\": \"sr-competitor-245357.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acdc-3eb8-4a5c-bf27-fd2642f07ec0\",\n                        \"name\": \"Yunnan Yukun\",\n                        \"badge\": \"sr-competitor-1009011.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9e1368ea-0256-4cd5-b75f-21b4b67a8476\",\n                \"competition_name\": \"Chinese Super League\",\n                \"competition_id\": \"9a94aa37-cf4b-4302-80b3-4313047a565d\",\n                \"sport_radar_competition_id\": \"sr:competition:649\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-649.png\",\n                \"kick_off\": \"2025-10-24 12:35:00\",\n                \"country\": {\n                    \"name\": \"China\",\n                    \"flag\": \"CHN.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acde-b445-4ece-88be-f9fd080c6f27\",\n                        \"name\": \"Wuhan Three Towns FC\",\n                        \"badge\": \"sr-competitor-475928.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acda-5e52-46f6-a30b-1e2226a19962\",\n                        \"name\": \"Shenzhen Peng City\",\n                        \"badge\": \"sr-competitor-422227.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9fb1ddfa-730a-430f-9c71-7f8d3f913a0c\",\n                \"competition_name\": \"Thai League 1\",\n                \"competition_id\": \"9a947f00-8880-4c32-9ddc-01570cd6d25d\",\n                \"sport_radar_competition_id\": \"sr:competition:1032\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-1032.png\",\n                \"kick_off\": \"2025-10-24 13:00:00\",\n                \"country\": {\n                    \"name\": \"Thailand\",\n                    \"flag\": \"THA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94aceb-13ca-4c26-af09-88be5b045bf0\",\n                        \"name\": \"Port FC\",\n                        \"badge\": \"sr-competitor-40661.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ad00-6bfc-4a29-bc4b-cd2a50b283ac\",\n                        \"name\": \"Muang Thong\",\n                        \"badge\": \"sr-competitor-39946.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-1bb1-71ae-98f8-09e3f0ea8fd4\",\n                \"competition_name\": \"Super League\",\n                \"competition_id\": \"9a94aa60-2b01-4687-8001-3807429208f3\",\n                \"sport_radar_competition_id\": \"sr:competition:1015\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-1015.png\",\n                \"kick_off\": \"2025-10-24 13:00:00\",\n                \"country\": {\n                    \"name\": \"Indonesia\",\n                    \"flag\": \"IDN.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace1-c18d-4d20-8218-cbc77e196733\",\n                        \"name\": \"Madura United\",\n                        \"badge\": \"sr-competitor-86578.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acf5-1df5-4f41-9672-7ff0870f742f\",\n                        \"name\": \"Persija\",\n                        \"badge\": \"sr-competitor-64295.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01990aa8-5529-733e-9089-f6ab9640f9bb\",\n                \"competition_name\": \"Parva Liga\",\n                \"competition_id\": \"9a947f02-675b-4a2c-965a-c81c1ad1086f\",\n                \"sport_radar_competition_id\": \"sr:competition:247\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-247.png\",\n                \"kick_off\": \"2025-10-24 13:00:00\",\n                \"country\": {\n                    \"name\": \"Bulgaria\",\n                    \"flag\": \"BGR.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acea-f583-4ee4-9031-274ba3488d71\",\n                        \"name\": \"Montana\",\n                        \"badge\": \"sr-competitor-32642.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94aceb-41de-4821-97eb-ccb9925d1ac9\",\n                        \"name\": \"Arda Kardzhali\",\n                        \"badge\": \"sr-competitor-364786.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf7e-f2c8-7387-bc69-41b3143d6d72\",\n                \"competition_name\": \"Kategoria Superiore\",\n                \"competition_id\": \"9a94aa3f-11bf-4689-8f9a-4df4943a6e69\",\n                \"sport_radar_competition_id\": \"sr:competition:720\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-720.png\",\n                \"kick_off\": \"2025-10-24 13:00:00\",\n                \"country\": {\n                    \"name\": \"Albania\",\n                    \"flag\": \"ALB.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acda-c6e8-49b6-8ab1-94d60b6c75ef\",\n                        \"name\": \"FK Vora\",\n                        \"badge\": \"sr-competitor-173810.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acda-92b9-4733-827f-96daf6d0fb2c\",\n                        \"name\": \"Dinamo City\",\n                        \"badge\": \"sr-competitor-5217.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199e1e0-b6bc-7325-acae-7f3741e8c3c9\",\n                \"competition_name\": \"1. MFL\",\n                \"competition_id\": \"9a94ac32-d965-4825-9517-3f9df5324afb\",\n                \"sport_radar_competition_id\": \"sr:competition:199\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-199.png\",\n                \"kick_off\": \"2025-10-24 13:30:00\",\n                \"country\": {\n                    \"name\": \"North Macedonia\",\n                    \"flag\": \"MKD.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace7-7ba2-4676-b7b9-e0194a90c9bc\",\n                        \"name\": \"Baskhimi\",\n                        \"badge\": \"sr-competitor-5400.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace7-6d28-468d-a882-96897501bb36\",\n                        \"name\": \"Shkupi Cair\",\n                        \"badge\": \"sr-competitor-136548.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199e1e0-d7ac-730c-a40b-8df9ed87f14a\",\n                \"competition_name\": \"1. MFL\",\n                \"competition_id\": \"9a94ac32-d965-4825-9517-3f9df5324afb\",\n                \"sport_radar_competition_id\": \"sr:competition:199\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-199.png\",\n                \"kick_off\": \"2025-10-24 13:30:00\",\n                \"country\": {\n                    \"name\": \"North Macedonia\",\n                    \"flag\": \"MKD.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace7-7bc5-459d-b895-b980bb55c7cb\",\n                        \"name\": \"GFK Tikvesh 1930\",\n                        \"badge\": \"sr-competitor-43576.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c31d-4d3c-4740-81c4-f2f426ec3e1c\",\n                        \"name\": \"Arsimi 1973\",\n                        \"badge\": \"sr-competitor-924577.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"019996d8-da0a-7232-ad83-b6ce7831ec50\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a947f09-e45a-4e95-b3a2-d190284a2a67\",\n                \"sport_radar_competition_id\": \"sr:competition:218\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-218.png\",\n                \"kick_off\": \"2025-10-24 13:30:00\",\n                \"country\": {\n                    \"name\": \"Ukraine\",\n                    \"flag\": \"UKR.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acfd-e46d-49a1-bc6f-f60e9f8d349e\",\n                        \"name\": \"Oleksandriya\",\n                        \"badge\": \"sr-competitor-25479.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2c-1725-444d-9816-85aa0dfb5148\",\n                        \"name\": \"Epitsentr Kamianets-Podilskyi\",\n                        \"badge\": \"sr-competitor-602316.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-3360-7206-87f4-d05ae6b4f4ee\",\n                \"competition_name\": \"1. Lig\",\n                \"competition_id\": \"9a947f10-738f-40de-a708-1524442b5acd\",\n                \"sport_radar_competition_id\": \"sr:competition:98\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-98.png\",\n                \"kick_off\": \"2025-10-24 14:00:00\",\n                \"country\": {\n                    \"name\": \"Turkiye\",\n                    \"flag\": \"TUR.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace4-dd3b-4c01-9c14-48808cefe52a\",\n                        \"name\": \"Erzurumspor\",\n                        \"badge\": \"sr-competitor-55603.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acec-1ca5-488f-9adf-9ce9f30b3cd9\",\n                        \"name\": \"Umraniyespor\",\n                        \"badge\": \"sr-competitor-55625.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9fb3e0e6-95c0-485c-acbf-6d284b50e84e\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a947f0a-894a-4c14-a4d0-f7e703c57211\",\n                \"sport_radar_competition_id\": \"sr:competition:709\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-709.png\",\n                \"kick_off\": \"2025-10-24 14:00:00\",\n                \"country\": {\n                    \"name\": \"Azerbaijan\",\n                    \"flag\": \"AZE.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f29-046a-4d7e-bbb5-5eaa1f81352a\",\n                        \"name\": \"Kapaz\",\n                        \"badge\": \"sr-competitor-37750.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f27-5363-4b40-b383-e3c0bae9b064\",\n                        \"name\": \"Imisli FK\",\n                        \"badge\": \"sr-competitor-951655.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199ce6c-04fc-7286-b5b4-5e15a33bb1d4\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a94a445-b675-4046-8e85-c6cc80116a1c\",\n                \"sport_radar_competition_id\": \"sr:competition:2436\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-2436.png\",\n                \"kick_off\": \"2025-10-24 14:00:00\",\n                \"country\": {\n                    \"name\": \"Tanzania\",\n                    \"flag\": \"TZA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9ad7adcf-a34d-4ddb-be60-cd6ba14e1fb6\",\n                        \"name\": \"Mbeya City\",\n                        \"badge\": \"sr-competitor-238660.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace7-3247-4c7a-afc5-307feaa4bab0\",\n                        \"name\": \"Jkt Tanzania\",\n                        \"badge\": \"sr-competitor-495358.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199ce6c-192c-70d2-9f24-c65f7b9a2720\",\n                \"competition_name\": \"Prva NL\",\n                \"competition_id\": \"9a947f02-7aab-4400-9fc3-da7f3c91c380\",\n                \"sport_radar_competition_id\": \"sr:competition:724\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-724.png\",\n                \"kick_off\": \"2025-10-24 14:00:00\",\n                \"country\": {\n                    \"name\": \"Croatia\",\n                    \"flag\": \"HRV.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a948098-c1ec-4641-894c-baaf3a06a7d3\",\n                        \"name\": \"NK Sesvete\",\n                        \"badge\": \"sr-competitor-54297.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace0-cb9e-478d-b96d-0b2c56c2ab59\",\n                        \"name\": \"Rudes Zagreb\",\n                        \"badge\": \"sr-competitor-35226.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199ce6c-1403-72f5-bdfb-504a510030e2\",\n                \"competition_name\": \"Prva NL\",\n                \"competition_id\": \"9a947f02-7aab-4400-9fc3-da7f3c91c380\",\n                \"sport_radar_competition_id\": \"sr:competition:724\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-724.png\",\n                \"kick_off\": \"2025-10-24 14:00:00\",\n                \"country\": {\n                    \"name\": \"Croatia\",\n                    \"flag\": \"HRV.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94aced-101e-4311-8d58-8f99705256d0\",\n                        \"name\": \"Cibalia\",\n                        \"badge\": \"sr-competitor-2031.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f27-e0dd-4df1-8d93-8a8ba652da30\",\n                        \"name\": \"NK Hrvace\",\n                        \"badge\": \"sr-competitor-6670.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199ce6c-0bfa-70c8-91d9-fec9614b64a6\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n                \"sport_radar_competition_id\": \"sr:competition:14864\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-14864.png\",\n                \"kick_off\": \"2025-10-24 14:00:00\",\n                \"country\": {\n                    \"name\": \"Uganda\",\n                    \"flag\": \"UGA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9e008f25-994f-4f19-a62c-dec800c30e3d\",\n                        \"name\": \"Airtel Kitara\",\n                        \"badge\": \"sr-competitor-424753.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd7-8a21-40ee-a5cc-d95989547b1a\",\n                        \"name\": \"Mbarara FC\",\n                        \"badge\": \"sr-competitor-325273.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199ddcd-0122-72fd-8bdf-65a33db73ad8\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a94aa11-0521-403a-80e8-8834c2f73583\",\n                \"sport_radar_competition_id\": \"sr:competition:33656\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-33656.png\",\n                \"kick_off\": \"2025-10-24 14:00:00\",\n                \"country\": {\n                    \"name\": \"Ethiopia\",\n                    \"flag\": \"ETH.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd1-bd2e-409a-80e2-6803c7d5c896\",\n                        \"name\": \"Hadiya Hossana\",\n                        \"badge\": \"sr-competitor-669303.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9ad7adb8-0485-45c7-9423-86c7ca56bc9d\",\n                        \"name\": \"Ethiopia Electricity\",\n                        \"badge\": \"sr-competitor-392500.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199ce6c-188a-7262-9c16-b9353c512c5b\",\n                \"competition_name\": \"CAF Champions League\",\n                \"competition_id\": \"9a94c248-17a9-4728-a2bc-6f8bc81372cf\",\n                \"sport_radar_competition_id\": \"sr:competition:1054\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-1054.png\",\n                \"kick_off\": \"2025-10-24 14:00:00\",\n                \"country\": {\n                    \"name\": \"International Clubs\",\n                    \"flag\": \"default.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd0-27b3-473a-a419-5941fc3c453a\",\n                        \"name\": \"Power Dynamos\",\n                        \"badge\": \"sr-competitor-195258.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f29-5140-4e68-a551-d1c7692768c3\",\n                        \"name\": \"Vipers\",\n                        \"badge\": \"sr-competitor-218704.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199ce6c-0e16-7098-8711-b5371e35030d\",\n                \"competition_name\": \"Prva NL\",\n                \"competition_id\": \"9a947f02-7aab-4400-9fc3-da7f3c91c380\",\n                \"sport_radar_competition_id\": \"sr:competition:724\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-724.png\",\n                \"kick_off\": \"2025-10-24 14:00:00\",\n                \"country\": {\n                    \"name\": \"Croatia\",\n                    \"flag\": \"HRV.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94aceb-0695-4b0e-b6e1-2e65f3969ce2\",\n                        \"name\": \"Orijent Rijeka\",\n                        \"badge\": \"sr-competitor-25539.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c310-1e18-478b-9de0-a96fa6b6506f\",\n                        \"name\": \"Dugopolje\",\n                        \"badge\": \"sr-competitor-43918.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-2fd1-7254-ba73-161b6e2dd3bd\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a947f03-26af-4354-ad40-866397e7d7fa\",\n                \"sport_radar_competition_id\": \"sr:competition:20162\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-20162.png\",\n                \"kick_off\": \"2025-10-24 14:00:00\",\n                \"country\": {\n                    \"name\": \"Rwanda\",\n                    \"flag\": \"RWA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9ad7e6bc-9697-4a82-8cf4-ef6aac5c27b4\",\n                        \"name\": \"Gicumbi FC\",\n                        \"badge\": \"sr-competitor-380054.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c384-8439-4959-9256-bd053794ee9e\",\n                        \"name\": \"Gasogi United\",\n                        \"badge\": \"sr-competitor-528591.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f594c53-4b3a-45bb-addf-d70b914c6662\",\n                \"competition_name\": \"Superliga\",\n                \"competition_id\": \"9a947f0c-f421-449f-a462-c7237ed70d85\",\n                \"sport_radar_competition_id\": \"sr:competition:210\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-210.png\",\n                \"kick_off\": \"2025-10-24 15:00:00\",\n                \"country\": {\n                    \"name\": \"Serbia\",\n                    \"flag\": \"SRB.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acec-a063-4943-bddf-32cd331f9e95\",\n                        \"name\": \"Napredak\",\n                        \"badge\": \"sr-competitor-7674.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c31e-14a0-46bb-a064-bd02968d9a75\",\n                        \"name\": \"Vojvodina Novi Sad\",\n                        \"badge\": \"sr-competitor-5150.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cea3-3a8d-7002-965e-845ff66d74ff\",\n                \"competition_name\": \"Jordan League\",\n                \"competition_id\": \"9a94a448-8406-4234-a8ed-4850a8ca678d\",\n                \"sport_radar_competition_id\": \"sr:competition:929\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-929.png\",\n                \"kick_off\": \"2025-10-24 15:00:00\",\n                \"country\": {\n                    \"name\": \"Jordan\",\n                    \"flag\": \"JOR.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acdf-b709-45e0-ae8a-55a62ad66ac7\",\n                        \"name\": \"Al Jazeera\",\n                        \"badge\": \"sr-competitor-54587.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acdf-b667-4ad5-9ed5-7dec42f2196d\",\n                        \"name\": \"Shabab AL Ordun\",\n                        \"badge\": \"sr-competitor-40646.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199d437-52d7-73b2-b06b-2960aea77da9\",\n                \"competition_name\": \"CAF Confederations Cup\",\n                \"competition_id\": \"9a94c252-ebe7-46e6-8361-9d487edaebd6\",\n                \"sport_radar_competition_id\": \"sr:competition:1115\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-1115.png\",\n                \"kick_off\": \"2025-10-24 15:00:00\",\n                \"country\": {\n                    \"name\": \"International Clubs\",\n                    \"flag\": \"default.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94a448-0b8d-4a7f-9994-76a4951cc4e1\",\n                        \"name\": \"Azam\",\n                        \"badge\": \"sr-competitor-238650.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c97b-cc8c-4d79-9ca3-45411d6d85bc\",\n                        \"name\": \"KMKM\",\n                        \"badge\": \"sr-competitor-134290.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199c97c-d7b5-701c-8dc4-f6a5cf15a9cf\",\n                \"competition_name\": \"Superliga\",\n                \"competition_id\": \"9a947f04-6c71-4c62-a89e-a0919545afc1\",\n                \"sport_radar_competition_id\": \"sr:competition:772\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-772.png\",\n                \"kick_off\": \"2025-10-24 15:00:00\",\n                \"country\": {\n                    \"name\": \"Uzbekistan\",\n                    \"flag\": \"UZB.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a948084-a207-493e-8223-1462f7830991\",\n                        \"name\": \"Qizilqum\",\n                        \"badge\": \"sr-competitor-40265.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace7-3167-43ed-97fe-0edd59ad3e3a\",\n                        \"name\": \"Dinamo\",\n                        \"badge\": \"sr-competitor-40259.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199dcf1-205c-71e6-abef-02029def9e2e\",\n                \"competition_name\": \"Superliga\",\n                \"competition_id\": \"9a94aa3f-505c-41dd-8c45-c5e729ee24ff\",\n                \"sport_radar_competition_id\": \"sr:competition:152\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-152.png\",\n                \"kick_off\": \"2025-10-24 15:30:00\",\n                \"country\": {\n                    \"name\": \"Romania\",\n                    \"flag\": \"ROU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f29-4bb5-4ae3-bcc4-08a260d0f906\",\n                        \"name\": \"FK Csikszereda Miercurea Ciuc\",\n                        \"badge\": \"sr-competitor-391688.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ae09-4534-423a-97b5-b117ff5e4104\",\n                        \"name\": \"Petrolul Ploiesti\",\n                        \"badge\": \"sr-competitor-25856.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01990aa8-6087-72e5-ba61-eddf6684debd\",\n                \"competition_name\": \"Parva Liga\",\n                \"competition_id\": \"9a947f02-675b-4a2c-965a-c81c1ad1086f\",\n                \"sport_radar_competition_id\": \"sr:competition:247\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-247.png\",\n                \"kick_off\": \"2025-10-24 15:30:00\",\n                \"country\": {\n                    \"name\": \"Bulgaria\",\n                    \"flag\": \"BGR.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acdf-52ef-443f-89ea-546af2937ae0\",\n                        \"name\": \"Spartak Varna\",\n                        \"badge\": \"sr-competitor-3278.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd6-4468-4d45-a68b-974aac6a5815\",\n                        \"name\": \"Botev Plovdiv\",\n                        \"badge\": \"sr-competitor-5241.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-335d-71e3-bc4d-a665f3870277\",\n                \"competition_name\": \"Saudi Pro League\",\n                \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n                \"sport_radar_competition_id\": \"sr:competition:955\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-955.png\",\n                \"kick_off\": \"2025-10-24 15:45:00\",\n                \"country\": {\n                    \"name\": \"Saudi Arabia\",\n                    \"flag\": \"SAU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94aceb-7e9f-47b4-9df8-222b67f2e261\",\n                        \"name\": \"Al-Fateh\",\n                        \"badge\": \"sr-competitor-56023.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acef-792d-4aa1-abaf-de9be01958bb\",\n                        \"name\": \"Al-Ittifaq\",\n                        \"badge\": \"sr-competitor-34318.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"019971b9-a6e6-739c-9f63-772dade191f7\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a947f0a-a7a5-4857-9ba6-d085a46e711f\",\n                \"sport_radar_competition_id\": \"sr:competition:1191\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-1191.png\",\n                \"kick_off\": \"2025-10-24 16:00:00\",\n                \"country\": {\n                    \"name\": \"Ghana\",\n                    \"flag\": \"GHA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace0-4444-4973-83b4-21ae63764a40\",\n                        \"name\": \"Heart of Lions\",\n                        \"badge\": \"sr-competitor-42613.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9ca79459-f479-4f67-8443-8f8bc737419b\",\n                        \"name\": \"Basake Holy Stars\",\n                        \"badge\": \"sr-competitor-949957.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf7e-eb69-735d-902d-088274437ec0\",\n                \"competition_name\": \"Kategoria Superiore\",\n                \"competition_id\": \"9a94aa3f-11bf-4689-8f9a-4df4943a6e69\",\n                \"sport_radar_competition_id\": \"sr:competition:720\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-720.png\",\n                \"kick_off\": \"2025-10-24 16:00:00\",\n                \"country\": {\n                    \"name\": \"Albania\",\n                    \"flag\": \"ALB.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acea-b143-419f-9477-aa52489b329e\",\n                        \"name\": \"Vllaznia Shkoder\",\n                        \"badge\": \"sr-competitor-5418.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd8-953c-4f7d-9940-cb421ef027a7\",\n                        \"name\": \"Tirana\",\n                        \"badge\": \"sr-competitor-5195.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cedc-0e49-716a-a861-1a6744db34fd\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a94aa13-f59a-4ba6-85d5-94827decba25\",\n                \"sport_radar_competition_id\": \"sr:competition:2112\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-2112.png\",\n                \"kick_off\": \"2025-10-24 16:00:00\",\n                \"country\": {\n                    \"name\": \"Nigeria\",\n                    \"flag\": \"NGA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a9ab894-6b0b-471c-aebe-1bb775947caa\",\n                        \"name\": \"Katsina United FC\",\n                        \"badge\": \"sr-competitor-308036.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9ad7ca6e-ee6f-475f-b0f8-0b92f35487c3\",\n                        \"name\": \"El Kanemi Warriors\",\n                        \"badge\": \"sr-competitor-193318.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-3f6f-704e-9051-b5115dabebd0\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a94aa11-0521-403a-80e8-8834c2f73583\",\n                \"sport_radar_competition_id\": \"sr:competition:33656\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-33656.png\",\n                \"kick_off\": \"2025-10-24 16:00:00\",\n                \"country\": {\n                    \"name\": \"Ethiopia\",\n                    \"flag\": \"ETH.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd1-b705-4443-b5c3-7139c3221cc4\",\n                        \"name\": \"Ethiopia Nigd Bank\",\n                        \"badge\": \"sr-competitor-307288.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9cf21f62-5887-410e-bdef-8b3c3ddc2768\",\n                        \"name\": \"Shire Endaselassie FC\",\n                        \"badge\": \"sr-competitor-524392.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-3369-724c-bfb4-e2225e25e2ea\",\n                \"competition_name\": \"Virsliga\",\n                \"competition_id\": \"9a947f17-c19d-4f14-972a-deb7d5be0713\",\n                \"sport_radar_competition_id\": \"sr:competition:197\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-197.png\",\n                \"kick_off\": \"2025-10-24 16:00:00\",\n                \"country\": {\n                    \"name\": \"Latvia\",\n                    \"flag\": \"LVA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f2b-57dd-4d07-93f5-f6685b4f10fc\",\n                        \"name\": \"Riga FC\",\n                        \"badge\": \"sr-competitor-162368.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2b-5951-4b37-bf4f-d6498d974d64\",\n                        \"name\": \"Tukums 2000\",\n                        \"badge\": \"sr-competitor-36080.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"019996d8-e072-733b-bf40-cf672e3049c3\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a947f09-e45a-4e95-b3a2-d190284a2a67\",\n                \"sport_radar_competition_id\": \"sr:competition:218\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-218.png\",\n                \"kick_off\": \"2025-10-24 16:00:00\",\n                \"country\": {\n                    \"name\": \"Ukraine\",\n                    \"flag\": \"UKR.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace2-970c-4109-a241-3c61166ad842\",\n                        \"name\": \"Rivne\",\n                        \"badge\": \"sr-competitor-213180.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd0-bd3a-4943-b540-c4eb6efd66a7\",\n                        \"name\": \"Lugansk\",\n                        \"badge\": \"sr-competitor-5987.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf7e-eee8-708f-8883-f6677eee9ab7\",\n                \"competition_name\": \"Kategoria Superiore\",\n                \"competition_id\": \"9a94aa3f-11bf-4689-8f9a-4df4943a6e69\",\n                \"sport_radar_competition_id\": \"sr:competition:720\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-720.png\",\n                \"kick_off\": \"2025-10-24 16:00:00\",\n                \"country\": {\n                    \"name\": \"Albania\",\n                    \"flag\": \"ALB.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd7-46f6-4123-9d60-37ec609fee94\",\n                        \"name\": \"Af Elbasani\",\n                        \"badge\": \"sr-competitor-1021051.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acda-c8d3-4885-a537-1a9d129b4f3c\",\n                        \"name\": \"Bylis Ballsh\",\n                        \"badge\": \"sr-competitor-37123.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-3fb7-711d-b8a1-62cc15cad216\",\n                \"competition_name\": \"Saudi Pro League\",\n                \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n                \"sport_radar_competition_id\": \"sr:competition:955\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-955.png\",\n                \"kick_off\": \"2025-10-24 16:30:00\",\n                \"country\": {\n                    \"name\": \"Saudi Arabia\",\n                    \"flag\": \"SAU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9cb5db49-71e3-4746-ac63-dd605401366d\",\n                        \"name\": \"Neom SC\",\n                        \"badge\": \"sr-competitor-529781.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace8-74d6-4718-8daa-cf2e8cc5a6e3\",\n                        \"name\": \"Al-Khaleej\",\n                        \"badge\": \"sr-competitor-167228.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f594c4c-46ff-4b9c-bfb4-142ec0a7c9c9\",\n                \"competition_name\": \"Superliga\",\n                \"competition_id\": \"9a947f0c-f421-449f-a462-c7237ed70d85\",\n                \"sport_radar_competition_id\": \"sr:competition:210\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-210.png\",\n                \"kick_off\": \"2025-10-24 16:30:00\",\n                \"country\": {\n                    \"name\": \"Serbia\",\n                    \"flag\": \"SRB.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd6-f655-4841-a90f-cc6d36b03a22\",\n                        \"name\": \"Partizan Belgrade\",\n                        \"badge\": \"sr-competitor-5152.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acec-91a5-484c-8449-8da8947919c0\",\n                        \"name\": \"Mladost Lucani\",\n                        \"badge\": \"sr-competitor-7771.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f594c48-f4b6-46d6-baff-89b8d2dabc91\",\n                \"competition_name\": \"Superliga\",\n                \"competition_id\": \"9a947f0c-f421-449f-a462-c7237ed70d85\",\n                \"sport_radar_competition_id\": \"sr:competition:210\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-210.png\",\n                \"kick_off\": \"2025-10-24 16:30:00\",\n                \"country\": {\n                    \"name\": \"Serbia\",\n                    \"flag\": \"SRB.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f29-59c1-4112-8479-24727e06f43d\",\n                        \"name\": \"Novi Pazar\",\n                        \"badge\": \"sr-competitor-25736.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ad04-9f20-4d29-8219-f4dcb04209bb\",\n                        \"name\": \"Javor\",\n                        \"badge\": \"sr-competitor-5144.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"019a02c9-cd9c-72d1-bf0b-dba91651a0ae\",\n                \"competition_name\": \"Premijer Liga\",\n                \"competition_id\": \"9a948073-3682-4e2c-939c-cf84662d723a\",\n                \"sport_radar_competition_id\": \"sr:competition:222\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-222.png\",\n                \"kick_off\": \"2025-10-24 17:00:00\",\n                \"country\": {\n                    \"name\": \"Bosnia & Herzegovina\",\n                    \"flag\": \"BIH.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acdb-9a94-4d2d-86b4-c7795ed0dc3e\",\n                        \"name\": \"Sarajevo\",\n                        \"badge\": \"sr-competitor-5237.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c30f-825e-4216-89af-5a191f7b8775\",\n                        \"name\": \"Sloga\",\n                        \"badge\": \"sr-competitor-37064.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f2ebf0a-2771-47e7-b11d-c9e8a2d991f9\",\n                \"competition_name\": \"HNL\",\n                \"competition_id\": \"9a947f0e-cb00-4462-b95f-b9ccaa8fe382\",\n                \"sport_radar_competition_id\": \"sr:competition:170\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-170.png\",\n                \"kick_off\": \"2025-10-24 17:00:00\",\n                \"country\": {\n                    \"name\": \"Croatia\",\n                    \"flag\": \"HRV.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f29-ca48-40d8-8d26-44cc0c966028\",\n                        \"name\": \"Gorica\",\n                        \"badge\": \"sr-competitor-43917.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd2-5c88-47b4-8da2-25f7275f2261\",\n                        \"name\": \"Hajduk\",\n                        \"badge\": \"sr-competitor-2036.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f6a7d5e-7f67-4c68-a307-f85eb9d126b0\",\n                \"competition_name\": \"Ekstraklasa\",\n                \"competition_id\": \"9a947f0e-e06b-4e83-9808-3b0e903f088f\",\n                \"sport_radar_competition_id\": \"sr:competition:202\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-202.png\",\n                \"kick_off\": \"2025-10-24 17:00:00\",\n                \"country\": {\n                    \"name\": \"Poland\",\n                    \"flag\": \"POL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd2-f716-4176-93ab-201b7468a5b4\",\n                        \"name\": \"Nieciecza\",\n                        \"badge\": \"sr-competitor-36851.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acfe-0460-4c4c-a142-d9b3c9126c80\",\n                        \"name\": \"Zaglebie Lubin\",\n                        \"badge\": \"sr-competitor-3113.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f5385ef-9703-4026-ab35-bf5eb9144ec6\",\n                \"competition_name\": \"2. Liga\",\n                \"competition_id\": \"9a947f10-d3d6-4e24-8055-87d032a753f5\",\n                \"sport_radar_competition_id\": \"sr:competition:135\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-135.png\",\n                \"kick_off\": \"2025-10-24 17:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acfc-b780-468f-acbb-983b197a859f\",\n                        \"name\": \"SW Bregenz\",\n                        \"badge\": \"sr-competitor-7786.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c319-3530-444a-87ba-c1256939bae4\",\n                        \"name\": \"KSV 1919\",\n                        \"badge\": \"sr-competitor-2067.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f5385df-0d09-42fc-8d1a-2532e5be7c59\",\n                \"competition_name\": \"2. Liga\",\n                \"competition_id\": \"9a947f10-d3d6-4e24-8055-87d032a753f5\",\n                \"sport_radar_competition_id\": \"sr:competition:135\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-135.png\",\n                \"kick_off\": \"2025-10-24 17:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c312-2e59-4858-bc1c-192f14f43109\",\n                        \"name\": \"Liefering\",\n                        \"badge\": \"sr-competitor-7790.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace1-f810-4861-83c1-9c454d86686a\",\n                        \"name\": \"St. Polten\",\n                        \"badge\": \"sr-competitor-2119.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f53859e-7bc7-46de-b520-be93123bd140\",\n                \"competition_name\": \"2. Liga\",\n                \"competition_id\": \"9a947f10-d3d6-4e24-8055-87d032a753f5\",\n                \"sport_radar_competition_id\": \"sr:competition:135\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-135.png\",\n                \"kick_off\": \"2025-10-24 17:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f2a-30cc-4811-b5e7-d87832625d56\",\n                        \"name\": \"First Vienna\",\n                        \"badge\": \"sr-competitor-2054.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2a-364a-4abc-864e-17bc5c47c0d5\",\n                        \"name\": \"Admira Wacker\",\n                        \"badge\": \"sr-competitor-2050.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f310981-f91d-4d86-b381-9704ea569dd3\",\n                \"competition_name\": \"FNL\",\n                \"competition_id\": \"9a947f0b-a8f4-4ed8-8184-e4fc5b1efeb8\",\n                \"sport_radar_competition_id\": \"sr:competition:205\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-205.png\",\n                \"kick_off\": \"2025-10-24 17:00:00\",\n                \"country\": {\n                    \"name\": \"Czechia\",\n                    \"flag\": \"CZE.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c320-bb50-49f8-85cf-ee77abe30c2f\",\n                        \"name\": \"Ceske Budejovice\",\n                        \"badge\": \"sr-competitor-2221.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2a-246e-4757-a467-dac2f55424aa\",\n                        \"name\": \"Prostejov\",\n                        \"badge\": \"sr-competitor-76775.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f5384da-568c-4136-849a-2d9d563fd702\",\n                \"competition_name\": \"2. Liga\",\n                \"competition_id\": \"9a947f10-d3d6-4e24-8055-87d032a753f5\",\n                \"sport_radar_competition_id\": \"sr:competition:135\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-135.png\",\n                \"kick_off\": \"2025-10-24 17:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd3-57c3-4c96-927a-ddff19a7be6e\",\n                        \"name\": \"Austria Klagenfurt\",\n                        \"badge\": \"sr-competitor-43254.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2a-42be-4424-8e6b-1f7fbf133c37\",\n                        \"name\": \"Sturm II\",\n                        \"badge\": \"sr-competitor-2103.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f5385ff-748c-4e5c-a96f-188ec1ef8053\",\n                \"competition_name\": \"2. Liga\",\n                \"competition_id\": \"9a947f10-d3d6-4e24-8055-87d032a753f5\",\n                \"sport_radar_competition_id\": \"sr:competition:135\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-135.png\",\n                \"kick_off\": \"2025-10-24 17:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f2a-3bd7-4fae-96fc-2101bdebe56f\",\n                        \"name\": \"Stripfing\",\n                        \"badge\": \"sr-competitor-218138.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd4-0769-49d4-8da9-a72c550e1c2b\",\n                        \"name\": \"Hogo Wels\",\n                        \"badge\": \"sr-competitor-459941.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f371278-ba83-4efe-9ee4-0ab029dcdf3f\",\n                \"competition_name\": \"1. Liga\",\n                \"competition_id\": \"9a947f0f-261e-4765-a6be-4c97a5157f3e\",\n                \"sport_radar_competition_id\": \"sr:competition:229\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-229.png\",\n                \"kick_off\": \"2025-10-24 17:00:00\",\n                \"country\": {\n                    \"name\": \"Poland\",\n                    \"flag\": \"POL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f29-ca3a-4f66-8a06-d83333031c2e\",\n                        \"name\": \"Znicz Pruszkow\",\n                        \"badge\": \"sr-competitor-7923.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f29-ce93-4492-8edb-f2c321088b31\",\n                        \"name\": \"Niepołomice\",\n                        \"badge\": \"sr-competitor-38729.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"019972cc-5d22-71c4-b115-05f25be621ee\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a94abec-4a80-4242-94c3-a2874b421892\",\n                \"sport_radar_competition_id\": \"sr:competition:629\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-629.png\",\n                \"kick_off\": \"2025-10-24 17:15:00\",\n                \"country\": {\n                    \"name\": \"Malta\",\n                    \"flag\": \"MLT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acfd-3236-44f8-bce5-15de1e7e0fff\",\n                        \"name\": \"Mosta\",\n                        \"badge\": \"sr-competitor-33572.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace6-1b40-4917-a1d7-c05b090528c7\",\n                        \"name\": \"Zabbar Saint Patrick FC\",\n                        \"badge\": \"sr-competitor-33578.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01991f9d-6636-7310-868f-31ade70e838f\",\n                \"competition_name\": \"2. Bundesliga\",\n                \"competition_id\": \"9a947f11-b9c1-4dfb-a758-4531e5c47063\",\n                \"sport_radar_competition_id\": \"sr:competition:44\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-44.png\",\n                \"kick_off\": \"2025-10-24 17:30:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acf0-149d-414c-9996-4b25671393ce\",\n                        \"name\": \"Greuther Furth\",\n                        \"badge\": \"sr-competitor-2551.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd1-42f9-42d7-9293-e2a664868a50\",\n                        \"name\": \"Karlsruhe\",\n                        \"badge\": \"sr-competitor-2553.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01991faf-7855-7358-8988-61f788a677ae\",\n                \"competition_name\": \"2. Bundesliga\",\n                \"competition_id\": \"9a947f11-b9c1-4dfb-a758-4531e5c47063\",\n                \"sport_radar_competition_id\": \"sr:competition:44\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-44.png\",\n                \"kick_off\": \"2025-10-24 17:30:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f2a-6728-47c7-98b0-3a8128a84e2e\",\n                        \"name\": \"Schalke\",\n                        \"badge\": \"sr-competitor-2530.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c9ac-cf52-4b18-a4e7-066dda785998\",\n                        \"name\": \"Darmstadt\",\n                        \"badge\": \"sr-competitor-2576.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199d437-6b00-71cf-b93c-abc77d3e8a8b\",\n                \"competition_name\": \"Jordan League\",\n                \"competition_id\": \"9a94a448-8406-4234-a8ed-4850a8ca678d\",\n                \"sport_radar_competition_id\": \"sr:competition:929\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-929.png\",\n                \"kick_off\": \"2025-10-24 17:30:00\",\n                \"country\": {\n                    \"name\": \"Jordan\",\n                    \"flag\": \"JOR.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94a44b-0392-424e-a24c-d22b2d269e4b\",\n                        \"name\": \"AL Salt\",\n                        \"badge\": \"sr-competitor-321509.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace8-59ed-46fc-bd6f-2844ebe4a55c\",\n                        \"name\": \"Ramtha\",\n                        \"badge\": \"sr-competitor-54595.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf11-22d5-7369-a0eb-b2af60486ebe\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a947f03-26af-4354-ad40-866397e7d7fa\",\n                \"sport_radar_competition_id\": \"sr:competition:20162\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-20162.png\",\n                \"kick_off\": \"2025-10-24 17:30:00\",\n                \"country\": {\n                    \"name\": \"Rwanda\",\n                    \"flag\": \"RWA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd0-5066-4496-bcd5-81a6fd2b9266\",\n                        \"name\": \"Rayon Sports\",\n                        \"badge\": \"sr-competitor-134272.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94accf-f418-4aba-ba02-9e091d86692e\",\n                        \"name\": \"Amagaju\",\n                        \"badge\": \"sr-competitor-380062.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f19042a-3c9f-4907-8990-e18719cb4cab\",\n                \"competition_name\": \"Superliga\",\n                \"competition_id\": \"9a947f13-4216-47c6-9803-ea6b49be7487\",\n                \"sport_radar_competition_id\": \"sr:competition:39\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-39.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Denmark\",\n                    \"flag\": \"DNK.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acee-4034-43d0-845c-31f070c8f76f\",\n                        \"name\": \"Aarhus\",\n                        \"badge\": \"sr-competitor-1291.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace9-dd81-4e64-8556-d952568f489d\",\n                        \"name\": \"Nordsjaelland\",\n                        \"badge\": \"sr-competitor-1292.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01993d70-b3d7-70f3-ab62-03cd0d4c6d01\",\n                \"competition_name\": \"Regionalliga Bavaria\",\n                \"competition_id\": \"9a947f14-972f-4d04-aa74-6b376886d055\",\n                \"sport_radar_competition_id\": \"sr:competition:1085\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-1085.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd9-4e50-4d1e-9436-ad0b98686f30\",\n                        \"name\": \"Burghausen\",\n                        \"badge\": \"sr-competitor-2559.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2a-dfa0-43ac-9dcf-3b9e920afd69\",\n                        \"name\": \"Wurzburg\",\n                        \"badge\": \"sr-competitor-23947.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf47-d7db-716d-84ef-2169cdf0b927\",\n                \"competition_name\": \"Regionalliga Centre\",\n                \"competition_id\": \"9a94aa21-220a-4565-bba1-91da1aa59f63\",\n                \"sport_radar_competition_id\": \"sr:competition:168\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-168.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd4-08cc-48c8-bdf5-9c14cadaef02\",\n                        \"name\": \"Weiz\",\n                        \"badge\": \"sr-competitor-2143.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9ad7aed3-12d0-4648-9578-dd9200be719f\",\n                        \"name\": \"Atus Velden\",\n                        \"badge\": \"sr-competitor-600490.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01993881-375b-700c-9b28-6a6e7ee203b9\",\n                \"competition_name\": \"3. Liga\",\n                \"competition_id\": \"9a94aa23-9170-4eaa-8a90-8280c783e67f\",\n                \"sport_radar_competition_id\": \"sr:competition:491\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-491.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd1-2fbd-4e95-8d58-89f7ea879710\",\n                        \"name\": \"Wiesbaden\",\n                        \"badge\": \"sr-competitor-2597.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c31d-dbd1-4b5a-a79b-e84cde3e0bee\",\n                        \"name\": \"Aachen\",\n                        \"badge\": \"sr-competitor-2546.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"019943f3-23f8-7104-92f6-6bd0c6496d61\",\n                \"competition_name\": \"Regionalliga Northeast\",\n                \"competition_id\": \"9a94aa3e-1996-4920-af23-ccbb22347467\",\n                \"sport_radar_competition_id\": \"sr:competition:1083\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-1083.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd8-6e07-42b3-8a24-aee19470ca09\",\n                        \"name\": \"Luckenwalde\",\n                        \"badge\": \"sr-competitor-36358.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c328-8836-42b5-8b61-4d704edd1135\",\n                        \"name\": \"Babelsberg\",\n                        \"badge\": \"sr-competitor-2549.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf47-c64e-71ff-821a-916bc88b36d8\",\n                \"competition_name\": \"Regionalliga Centre\",\n                \"competition_id\": \"9a94aa21-220a-4565-bba1-91da1aa59f63\",\n                \"sport_radar_competition_id\": \"sr:competition:168\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-168.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd4-0d8b-4c80-9923-e2a28a667695\",\n                        \"name\": \"Deutschlandsb. SC\",\n                        \"badge\": \"sr-competitor-73883.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ad03-0de6-4717-8033-44210ec6dd85\",\n                        \"name\": \"Junge Wikinger Ried\",\n                        \"badge\": \"sr-competitor-460243.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf47-b656-714b-9090-876ef8591361\",\n                \"competition_name\": \"Regionalliga Centre\",\n                \"competition_id\": \"9a94aa21-220a-4565-bba1-91da1aa59f63\",\n                \"sport_radar_competition_id\": \"sr:competition:168\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-168.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd4-033e-4a3f-a8e0-8d91a7ef7780\",\n                        \"name\": \"SV Wallern\",\n                        \"badge\": \"sr-competitor-36094.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9c5ff8b5-64d3-4b55-8a4e-028d87f9f3b2\",\n                        \"name\": \"Oedt\",\n                        \"badge\": \"sr-competitor-35671.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf47-bf90-737f-b6fb-a1d07ae18161\",\n                \"competition_name\": \"Regionalliga Centre\",\n                \"competition_id\": \"9a94aa21-220a-4565-bba1-91da1aa59f63\",\n                \"sport_radar_competition_id\": \"sr:competition:168\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-168.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f2a-4236-406b-978d-b43d4888c04a\",\n                        \"name\": \"Lafnitz\",\n                        \"badge\": \"sr-competitor-105969.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd3-f5be-431e-a0c5-317c67c07134\",\n                        \"name\": \"St. Anna\",\n                        \"badge\": \"sr-competitor-364778.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01990aa8-728b-72f4-8fe8-de77c9b7cefd\",\n                \"competition_name\": \"Parva Liga\",\n                \"competition_id\": \"9a947f02-675b-4a2c-965a-c81c1ad1086f\",\n                \"sport_radar_competition_id\": \"sr:competition:247\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-247.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Bulgaria\",\n                    \"flag\": \"BGR.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f29-1627-4414-b959-4ddd6c9c5d24\",\n                        \"name\": \"Lok Sofia\",\n                        \"badge\": \"sr-competitor-3277.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f29-12ed-4699-abff-b41b47f77ba2\",\n                        \"name\": \"Lok Plovdiv\",\n                        \"badge\": \"sr-competitor-3272.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-5266-70b3-b55b-1c38cf146a35\",\n                \"competition_name\": \"1. Lig\",\n                \"competition_id\": \"9a947f10-738f-40de-a708-1524442b5acd\",\n                \"sport_radar_competition_id\": \"sr:competition:98\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-98.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Turkiye\",\n                    \"flag\": \"TUR.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acfd-4afc-4de1-b1b9-7f0ef920667d\",\n                        \"name\": \"Sivasspor\",\n                        \"badge\": \"sr-competitor-3076.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acef-7a08-4f32-85cc-2df134f0f91f\",\n                        \"name\": \"Hatayspor\",\n                        \"badge\": \"sr-competitor-3091.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01994cbf-4639-72dc-aedf-18c214ca1208\",\n                \"competition_name\": \"Super Lig\",\n                \"competition_id\": \"9a947f10-3518-41af-94cf-13124d7898ec\",\n                \"sport_radar_competition_id\": \"sr:competition:52\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-52.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Turkiye\",\n                    \"flag\": \"TUR.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94807a-e6ab-43a4-8e38-d503c62665ac\",\n                        \"name\": \"Karagümrük\",\n                        \"badge\": \"sr-competitor-4954.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2b-28ee-4edf-8430-506e731257ae\",\n                        \"name\": \"Kayserispor\",\n                        \"badge\": \"sr-competitor-3072.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01993059-f253-70a2-bf1b-d66dd21b8946\",\n                \"competition_name\": \"1. Division\",\n                \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n                \"sport_radar_competition_id\": \"sr:competition:47\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-47.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Denmark\",\n                    \"flag\": \"DNK.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f2a-ab71-4095-97a4-586bbf2f6f29\",\n                        \"name\": \"B93 Copenhagen\",\n                        \"badge\": \"sr-competitor-1298.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2a-9fd2-47a9-b201-4b6217e9c6dd\",\n                        \"name\": \"Horsens\",\n                        \"badge\": \"sr-competitor-1297.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf10-cc26-7146-9087-779dff1f696d\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a947f03-57fb-4aca-b1d3-ffc4196f447a\",\n                \"sport_radar_competition_id\": \"sr:competition:14864\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-14864.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Uganda\",\n                    \"flag\": \"UGA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace0-fa5d-4e78-b8e5-15a562c2e69a\",\n                        \"name\": \"SC Villa\",\n                        \"badge\": \"sr-competitor-375412.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9ad7f625-bdca-4c4b-bd31-4fd50a3c5c4e\",\n                        \"name\": \"Uganda Police FC\",\n                        \"badge\": \"sr-competitor-375398.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199616d-a024-7337-851b-204d8ed2ab35\",\n                \"competition_name\": \"Regionalliga North\",\n                \"competition_id\": \"9a947f12-b461-45ee-9ad2-a78e26aca5d9\",\n                \"sport_radar_competition_id\": \"sr:competition:42\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-42.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c33b-c62d-470d-86e1-5ae7da4b22b4\",\n                        \"name\": \"Meppen\",\n                        \"badge\": \"sr-competitor-5804.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94a45b-fb0e-4626-8c26-f4a784f714d4\",\n                        \"name\": \"Drochtersen/Assel\",\n                        \"badge\": \"sr-competitor-24148.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-525f-709c-bb47-5e700d550000\",\n                \"competition_name\": \"Regionalliga Bavaria\",\n                \"competition_id\": \"9a947f14-972f-4d04-aa74-6b376886d055\",\n                \"sport_radar_competition_id\": \"sr:competition:1085\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-1085.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd4-28e4-4f07-bd00-759a88ee4429\",\n                        \"name\": \"Buchbach\",\n                        \"badge\": \"sr-competitor-23949.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2a-d7a9-4665-a26b-8690c4b8e17a\",\n                        \"name\": \"Nuremberg II\",\n                        \"badge\": \"sr-competitor-5872.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9dcd1d0f-df18-4ceb-a08e-a6d54d38afa9\",\n                \"competition_name\": \"Superettan\",\n                \"competition_id\": \"9a94aa71-c6bd-40fb-964b-ea84ffe54825\",\n                \"sport_radar_competition_id\": \"sr:competition:46\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-46.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Sweden\",\n                    \"flag\": \"SWE.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acee-3d1a-40d8-8ddf-af430d69f693\",\n                        \"name\": \"Orgryte\",\n                        \"badge\": \"sr-competitor-1766.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c313-5915-4f04-a715-c63966e3ea1b\",\n                        \"name\": \"Vasteraas\",\n                        \"badge\": \"sr-competitor-1775.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199591e-d782-7061-bb8b-c6b57971b78e\",\n                \"competition_name\": \"Regionalliga North\",\n                \"competition_id\": \"9a947f12-b461-45ee-9ad2-a78e26aca5d9\",\n                \"sport_radar_competition_id\": \"sr:competition:42\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-42.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd0-9b02-46c9-90cf-3c6ee25643be\",\n                        \"name\": \"Altona\",\n                        \"badge\": \"sr-competitor-6183.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd8-9d49-44db-aeda-2f13724974c7\",\n                        \"name\": \"Phonix Lubeck\",\n                        \"badge\": \"sr-competitor-447507.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f76c66e-90a9-451e-a935-c61af8ecded9\",\n                \"competition_name\": \"Regionalliga Ost\",\n                \"competition_id\": \"9a947f15-82be-4728-b39a-183d380b96bf\",\n                \"sport_radar_competition_id\": \"sr:competition:166\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-166.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a9a2aa1-aeeb-4d8a-9ac9-bbeef629ea42\",\n                        \"name\": \"Parndorf\",\n                        \"badge\": \"sr-competitor-2090.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace1-4e77-42b4-9ad1-46d881138462\",\n                        \"name\": \"Donaufeld\",\n                        \"badge\": \"sr-competitor-2100.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cdc7-55fe-7348-b7bb-e927066c5bda\",\n                \"competition_name\": \"Regionalliga Ost\",\n                \"competition_id\": \"9a947f15-82be-4728-b39a-183d380b96bf\",\n                \"sport_radar_competition_id\": \"sr:competition:166\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-166.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9ad7b956-6103-4d46-adaa-37d897c053d7\",\n                        \"name\": \"SV Donau\",\n                        \"badge\": \"sr-competitor-5040.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c318-816a-4dc8-b007-01008d269eaa\",\n                        \"name\": \"Wiener Sport-Club\",\n                        \"badge\": \"sr-competitor-2066.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01994ce3-f0ed-720c-9a2a-62cbada98a8f\",\n                \"competition_name\": \"1. Division\",\n                \"competition_id\": \"9a947f13-abac-46cb-b114-19e85c682899\",\n                \"sport_radar_competition_id\": \"sr:competition:47\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-47.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Denmark\",\n                    \"flag\": \"DNK.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acf3-d4dd-4fe9-bf05-4e2f4d86f053\",\n                        \"name\": \"Kolding IF\",\n                        \"badge\": \"sr-competitor-22162.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd8-150f-470b-bf7e-f66fea270db8\",\n                        \"name\": \"Middelfart\",\n                        \"badge\": \"sr-competitor-22163.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199d437-2a7c-70fd-8594-c2ee0b2a23cf\",\n                \"competition_name\": \"CAF Confederations Cup\",\n                \"competition_id\": \"9a94c252-ebe7-46e6-8361-9d487edaebd6\",\n                \"sport_radar_competition_id\": \"sr:competition:1115\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-1115.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"International Clubs\",\n                    \"flag\": \"default.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f29-9b0b-4bfa-a95b-b15c4a86e8fa\",\n                        \"name\": \"Belouizdad\",\n                        \"badge\": \"sr-competitor-42207.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a9b2536-06a3-443c-81a0-cd189e8f8567\",\n                        \"name\": \"Hafia FC\",\n                        \"badge\": \"sr-competitor-412603.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf47-cf77-7322-b362-cdcad1e3f76b\",\n                \"competition_name\": \"Regionalliga Centre\",\n                \"competition_id\": \"9a94aa21-220a-4565-bba1-91da1aa59f63\",\n                \"sport_radar_competition_id\": \"sr:competition:168\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-168.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd4-0338-4112-8225-133be03fc3b7\",\n                        \"name\": \"Gleisdorf\",\n                        \"badge\": \"sr-competitor-6280.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a9a2a99-b236-4295-bb97-892e8831de30\",\n                        \"name\": \"Treibach\",\n                        \"badge\": \"sr-competitor-2164.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-46f5-7013-86ec-95b09b3e27dd\",\n                \"competition_name\": \"2nd Division\",\n                \"competition_id\": \"9a947f15-ccf6-44d4-a9cf-529cdf4f58e6\",\n                \"sport_radar_competition_id\": \"sr:competition:65\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-65.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Denmark\",\n                    \"flag\": \"DNK.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd8-6543-422d-8d4e-9966daf04768\",\n                        \"name\": \"Vendsyssel\",\n                        \"badge\": \"sr-competitor-1314.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2b-13a9-4faa-a2a0-ddb5c2c4c86e\",\n                        \"name\": \"Fremad Amager\",\n                        \"badge\": \"sr-competitor-35412.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-5257-72c5-9e95-2cee66e27494\",\n                \"competition_name\": \"Regionalliga Bavaria\",\n                \"competition_id\": \"9a947f14-972f-4d04-aa74-6b376886d055\",\n                \"sport_radar_competition_id\": \"sr:competition:1085\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-1085.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd7-e3ac-4a96-a936-cd2bd4ca6210\",\n                        \"name\": \"Bayreuth\",\n                        \"badge\": \"sr-competitor-5050.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2a-d26d-4b52-a8c7-08be21507d33\",\n                        \"name\": \"Augsburg II\",\n                        \"badge\": \"sr-competitor-70944.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"019947e1-fba4-716f-aa64-d11abd0be6dc\",\n                \"competition_name\": \"Regionalliga Northeast\",\n                \"competition_id\": \"9a94aa3e-1996-4920-af23-ccbb22347467\",\n                \"sport_radar_competition_id\": \"sr:competition:1083\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-1083.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c31b-7604-4be7-8d74-68d07d1f522c\",\n                        \"name\": \"Halle\",\n                        \"badge\": \"sr-competitor-2582.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ad06-2a0e-4a29-a0a8-ca3f4ac883b5\",\n                        \"name\": \"Lok Leipzig\",\n                        \"badge\": \"sr-competitor-24093.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-46f0-7176-99a7-c294f230c4ff\",\n                \"competition_name\": \"2nd Division\",\n                \"competition_id\": \"9a947f15-ccf6-44d4-a9cf-529cdf4f58e6\",\n                \"sport_radar_competition_id\": \"sr:competition:65\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-65.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Denmark\",\n                    \"flag\": \"DNK.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f2a-b1cb-427e-a683-ecef47e85bc3\",\n                        \"name\": \"Helsingoer\",\n                        \"badge\": \"sr-competitor-6392.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c941-37f8-4f8e-ae35-5a347692f1c5\",\n                        \"name\": \"Thisted FC\",\n                        \"badge\": \"sr-competitor-1403.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf4a-060e-72ef-a547-5f949e502259\",\n                \"competition_name\": \"Regionalliga Centre\",\n                \"competition_id\": \"9a94aa21-220a-4565-bba1-91da1aa59f63\",\n                \"sport_radar_competition_id\": \"sr:competition:168\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-168.png\",\n                \"kick_off\": \"2025-10-24 18:00:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9ad7afc3-ad9d-48de-980d-366e2b2755c1\",\n                        \"name\": \"Kalsdorf\",\n                        \"badge\": \"sr-competitor-2158.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd4-0719-4423-a92c-e3e93c676d2f\",\n                        \"name\": \"Union Gurten\",\n                        \"badge\": \"sr-competitor-162364.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f76c671-bf83-47e1-be54-b14b85554655\",\n                \"competition_name\": \"Regionalliga Ost\",\n                \"competition_id\": \"9a947f15-82be-4728-b39a-183d380b96bf\",\n                \"sport_radar_competition_id\": \"sr:competition:166\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-166.png\",\n                \"kick_off\": \"2025-10-24 18:10:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd4-0d02-4363-b39f-cc0470530bb4\",\n                        \"name\": \"Favoritner AC\",\n                        \"badge\": \"sr-competitor-43848.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd4-0c2a-423c-a71c-780511607bca\",\n                        \"name\": \"SV Oberwart\",\n                        \"badge\": \"sr-competitor-2139.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f36d20a-0c6d-4b38-ba17-bcd0a012814a\",\n                \"competition_name\": \"Challenge League\",\n                \"competition_id\": \"9a94c254-f7cf-4a44-a959-77ec826bb8cf\",\n                \"sport_radar_competition_id\": \"sr:competition:216\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-216.png\",\n                \"kick_off\": \"2025-10-24 18:30:00\",\n                \"country\": {\n                    \"name\": \"Switzerland\",\n                    \"flag\": \"CHE.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c371-64ba-47f5-a031-fa6c82aa4d71\",\n                        \"name\": \"Stade Nyonnais\",\n                        \"badge\": \"sr-competitor-2490.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c367-6c8d-4454-b135-461894481bcc\",\n                        \"name\": \"Yverdon-Sport\",\n                        \"badge\": \"sr-competitor-2460.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f36d20b-579a-461e-86d0-d75bd077d508\",\n                \"competition_name\": \"Challenge League\",\n                \"competition_id\": \"9a94c254-f7cf-4a44-a959-77ec826bb8cf\",\n                \"sport_radar_competition_id\": \"sr:competition:216\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-216.png\",\n                \"kick_off\": \"2025-10-24 18:30:00\",\n                \"country\": {\n                    \"name\": \"Switzerland\",\n                    \"flag\": \"CHE.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c31a-26ad-46ab-af6f-203612030e3e\",\n                        \"name\": \"Neuchatel Xamax\",\n                        \"badge\": \"sr-competitor-2451.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acdb-6214-436b-b9ff-062d085bde8b\",\n                        \"name\": \"Rapperswil-Jona\",\n                        \"badge\": \"sr-competitor-37390.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199616d-9971-722d-b77f-75f8c793361e\",\n                \"competition_name\": \"Regionalliga North\",\n                \"competition_id\": \"9a947f12-b461-45ee-9ad2-a78e26aca5d9\",\n                \"sport_radar_competition_id\": \"sr:competition:42\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-42.png\",\n                \"kick_off\": \"2025-10-24 18:30:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c320-467b-4b97-9bd1-25537692ee62\",\n                        \"name\": \"Lubeck\",\n                        \"badge\": \"sr-competitor-2560.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd4-8364-450b-b811-0f1fa1f059ca\",\n                        \"name\": \"Emden\",\n                        \"badge\": \"sr-competitor-5047.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f76c675-116a-4d18-807e-ba2b327f3fce\",\n                \"competition_name\": \"Regionalliga Ost\",\n                \"competition_id\": \"9a947f15-82be-4728-b39a-183d380b96bf\",\n                \"sport_radar_competition_id\": \"sr:competition:166\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-166.png\",\n                \"kick_off\": \"2025-10-24 18:30:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd4-0389-40b8-97c9-2d69f8b6f204\",\n                        \"name\": \"Traiskirchen\",\n                        \"badge\": \"sr-competitor-214588.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2a-f63d-4b30-a8c2-102c50ee1203\",\n                        \"name\": \"FC Marchfeld Donauauen\",\n                        \"badge\": \"sr-competitor-459943.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f3e968f-921e-4ec3-86ee-f7bac89645a2\",\n                \"competition_name\": \"Regionalliga Ost\",\n                \"competition_id\": \"9a947f15-82be-4728-b39a-183d380b96bf\",\n                \"sport_radar_competition_id\": \"sr:competition:166\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-166.png\",\n                \"kick_off\": \"2025-10-24 18:30:00\",\n                \"country\": {\n                    \"name\": \"Austria\",\n                    \"flag\": \"AUT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f2b-0f17-4c77-a311-db505c4e08b1\",\n                        \"name\": \"Krems\",\n                        \"badge\": \"sr-competitor-2106.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f2a-3846-47f7-8802-daf242f83747\",\n                        \"name\": \"Horn\",\n                        \"badge\": \"sr-competitor-2111.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f5bd01c-af76-49b2-b4fa-5bf15edf373f\",\n                \"competition_name\": \"Superliga\",\n                \"competition_id\": \"9a94aa3f-505c-41dd-8c45-c5e729ee24ff\",\n                \"sport_radar_competition_id\": \"sr:competition:152\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-152.png\",\n                \"kick_off\": \"2025-10-24 18:30:00\",\n                \"country\": {\n                    \"name\": \"Romania\",\n                    \"flag\": \"ROU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f29-3809-4f5b-959b-73baf558f047\",\n                        \"name\": \"Champions FC Arges\",\n                        \"badge\": \"sr-competitor-116221.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ad03-2cf7-463c-a3a9-4bb70ae12996\",\n                        \"name\": \"Dinamo Bucuresti\",\n                        \"badge\": \"sr-competitor-3292.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cd59-4fd5-73d4-a1b5-246745ff67d6\",\n                \"competition_name\": \"Liga Portugal 2\",\n                \"competition_id\": \"9a947f19-01a0-4113-bcd1-1ae0811b35a7\",\n                \"sport_radar_competition_id\": \"sr:competition:239\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-239.png\",\n                \"kick_off\": \"2025-10-24 18:45:00\",\n                \"country\": {\n                    \"name\": \"Portugal\",\n                    \"flag\": \"PRT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f2c-8cd0-4b68-b53d-6aec30ea663d\",\n                        \"name\": \"SCU Torreense\",\n                        \"badge\": \"sr-competitor-25787.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acfd-f196-4390-bc14-64f180c6324e\",\n                        \"name\": \"Oliveirense\",\n                        \"badge\": \"sr-competitor-21831.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f42d5a7-3c34-4bfb-b13b-923a0316a760\",\n                \"competition_name\": \"Ligue 2\",\n                \"competition_id\": \"9a94aa78-4e61-4e73-8e6b-00e35cee29f8\",\n                \"sport_radar_competition_id\": \"sr:competition:182\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-182.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"France\",\n                    \"flag\": \"FRA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c31b-fba2-48b4-801d-c5e22a2e378e\",\n                        \"name\": \"Pau\",\n                        \"badge\": \"sr-competitor-1685.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c370-fb3c-40c4-8b33-d3f3437faffe\",\n                        \"name\": \"Dunkerque\",\n                        \"badge\": \"sr-competitor-6918.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f42d5af-f49f-4e17-833b-0f8d5e9d7567\",\n                \"competition_name\": \"Ligue 2\",\n                \"competition_id\": \"9a94aa78-4e61-4e73-8e6b-00e35cee29f8\",\n                \"sport_radar_competition_id\": \"sr:competition:182\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-182.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"France\",\n                    \"flag\": \"FRA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a9a2a9b-78f4-4e6e-88d9-d15dd764be95\",\n                        \"name\": \"Reims\",\n                        \"badge\": \"sr-competitor-1682.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c31c-31e3-4570-b727-fcf0f59f29e3\",\n                        \"name\": \"Troyes\",\n                        \"badge\": \"sr-competitor-1652.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f42d5a9-e4c4-4c44-8351-c1e9a660d254\",\n                \"competition_name\": \"Ligue 2\",\n                \"competition_id\": \"9a94aa78-4e61-4e73-8e6b-00e35cee29f8\",\n                \"sport_radar_competition_id\": \"sr:competition:182\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-182.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"France\",\n                    \"flag\": \"FRA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad05-8cd5-46a4-88ac-1222ada21db5\",\n                        \"name\": \"Guingamp\",\n                        \"badge\": \"sr-competitor-1654.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c963-59c0-4232-8e42-4c94bb974149\",\n                        \"name\": \"Clermont Foot\",\n                        \"badge\": \"sr-competitor-1680.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-56db-70b9-93da-88ceada0f406\",\n                \"competition_name\": \"Eerste Divisie\",\n                \"competition_id\": \"9a94aa73-d3c6-487e-a7aa-0597bb3f593b\",\n                \"sport_radar_competition_id\": \"sr:competition:131\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-131.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Netherlands\",\n                    \"flag\": \"NLD.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a9a2aa0-fb88-41bc-ae0a-27e7499ec959\",\n                        \"name\": \"Waalwijk\",\n                        \"badge\": \"sr-competitor-2956.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acff-2674-4a46-a514-3e4949f79a0f\",\n                        \"name\": \"Cambuur\",\n                        \"badge\": \"sr-competitor-2970.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01991ac0-1391-7177-a7bf-2e63ca9c9356\",\n                \"competition_name\": \"Eerste Divisie\",\n                \"competition_id\": \"9a94aa73-d3c6-487e-a7aa-0597bb3f593b\",\n                \"sport_radar_competition_id\": \"sr:competition:131\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-131.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Netherlands\",\n                    \"flag\": \"NLD.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acf0-c131-4822-80c5-da1b81418975\",\n                        \"name\": \"Vitesse\",\n                        \"badge\": \"sr-competitor-2958.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ad00-30f6-4c38-9f74-62c056a442d2\",\n                        \"name\": \"Roda\",\n                        \"badge\": \"sr-competitor-2954.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f42d5ac-f295-4f22-943c-f466550506b1\",\n                \"competition_name\": \"Ligue 2\",\n                \"competition_id\": \"9a94aa78-4e61-4e73-8e6b-00e35cee29f8\",\n                \"sport_radar_competition_id\": \"sr:competition:182\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-182.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"France\",\n                    \"flag\": \"FRA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94a450-c4a8-4d30-84ef-97938797260b\",\n                        \"name\": \"Red Star\",\n                        \"badge\": \"sr-competitor-52874.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c31b-fd66-4c52-adda-ebe54462f03f\",\n                        \"name\": \"Grenoble\",\n                        \"badge\": \"sr-competitor-1671.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-56c1-73d6-9d83-c927e1170fca\",\n                \"competition_name\": \"Eerste Divisie\",\n                \"competition_id\": \"9a94aa73-d3c6-487e-a7aa-0597bb3f593b\",\n                \"sport_radar_competition_id\": \"sr:competition:131\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-131.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Netherlands\",\n                    \"flag\": \"NLD.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace1-76cb-44bb-b755-ac74621e1eeb\",\n                        \"name\": \"FC Eindhoven\",\n                        \"badge\": \"sr-competitor-2994.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acf0-d26b-4531-abfc-71d44451d446\",\n                        \"name\": \"Venlo\",\n                        \"badge\": \"sr-competitor-2980.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-69ca-72af-a76d-c5598a4d4dad\",\n                \"competition_name\": \"Saudi Pro League\",\n                \"competition_id\": \"9a947f0a-31d2-41a4-bfed-c804ef9cba57\",\n                \"sport_radar_competition_id\": \"sr:competition:955\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-955.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Saudi Arabia\",\n                    \"flag\": \"SAU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace0-139e-4bc4-84c4-0f8896a0f596\",\n                        \"name\": \"Al-Ittihad\",\n                        \"badge\": \"sr-competitor-34315.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a947f28-ebac-459f-9970-c5c12456057a\",\n                        \"name\": \"Al Hilal\",\n                        \"badge\": \"sr-competitor-21895.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f531fb7-af85-42bf-815b-f495640b5486\",\n                \"competition_name\": \"Challenger Pro League\",\n                \"competition_id\": \"9a94a436-6dc8-4659-9803-1af50ef96f70\",\n                \"sport_radar_competition_id\": \"sr:competition:9\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-9.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Belgium\",\n                    \"flag\": \"BEL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a9a2ab3-58f1-485c-9e21-d86ae110930f\",\n                        \"name\": \"Seraing\",\n                        \"badge\": \"sr-competitor-34985.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c963-9a11-4ea0-b37a-719dc0beca7d\",\n                        \"name\": \"Lierse Kempenzonen\",\n                        \"badge\": \"sr-competitor-116075.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-56d4-710f-9afb-45d4055c1fcb\",\n                \"competition_name\": \"Eerste Divisie\",\n                \"competition_id\": \"9a94aa73-d3c6-487e-a7aa-0597bb3f593b\",\n                \"sport_radar_competition_id\": \"sr:competition:131\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-131.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Netherlands\",\n                    \"flag\": \"NLD.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace1-437d-4dd2-8e4a-b6e6e7d51f89\",\n                        \"name\": \"Utrecht\",\n                        \"badge\": \"sr-competitor-53067.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace1-3f33-413d-9eda-77259adc8b71\",\n                        \"name\": \"Oss\",\n                        \"badge\": \"sr-competitor-2978.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-56bb-726e-9510-609c326e03ae\",\n                \"competition_name\": \"Eerste Divisie\",\n                \"competition_id\": \"9a94aa73-d3c6-487e-a7aa-0597bb3f593b\",\n                \"sport_radar_competition_id\": \"sr:competition:131\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-131.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Netherlands\",\n                    \"flag\": \"NLD.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace1-518d-4ba6-89e8-28f1fe5ae915\",\n                        \"name\": \"De Graafschap\",\n                        \"badge\": \"sr-competitor-2949.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd5-6efe-40c3-a90f-8d98cb524b5d\",\n                        \"name\": \"PSV\",\n                        \"badge\": \"sr-competitor-46168.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-56c8-729b-936f-8877500e8f6c\",\n                \"competition_name\": \"Eerste Divisie\",\n                \"competition_id\": \"9a94aa73-d3c6-487e-a7aa-0597bb3f593b\",\n                \"sport_radar_competition_id\": \"sr:competition:131\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-131.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Netherlands\",\n                    \"flag\": \"NLD.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace1-65cc-4e0e-9b62-2797974f4fdf\",\n                        \"name\": \"Helmond\",\n                        \"badge\": \"sr-competitor-2974.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace1-6899-4279-825c-12025b2eb186\",\n                        \"name\": \"Dordrecht\",\n                        \"badge\": \"sr-competitor-2973.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f531fb3-ca49-4ff9-824d-b32f137099e4\",\n                \"competition_name\": \"Challenger Pro League\",\n                \"competition_id\": \"9a94a436-6dc8-4659-9803-1af50ef96f70\",\n                \"sport_radar_competition_id\": \"sr:competition:9\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-9.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Belgium\",\n                    \"flag\": \"BEL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a9b04b7-2508-411b-845f-8510553410de\",\n                        \"name\": \"Royal Francs Borains\",\n                        \"badge\": \"sr-competitor-280181.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c9aa-2c99-445d-b10a-f911f56d4965\",\n                        \"name\": \"KAA Gent\",\n                        \"badge\": \"sr-competitor-76451.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-56b5-71c5-9048-74de7e57a250\",\n                \"competition_name\": \"Eerste Divisie\",\n                \"competition_id\": \"9a94aa73-d3c6-487e-a7aa-0597bb3f593b\",\n                \"sport_radar_competition_id\": \"sr:competition:131\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-131.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Netherlands\",\n                    \"flag\": \"NLD.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acf0-b4de-4f17-aee0-2a2da653ac7f\",\n                        \"name\": \"Almere\",\n                        \"badge\": \"sr-competitor-2990.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace1-4e13-4229-af75-f2b572cf2d26\",\n                        \"name\": \"Alkmaar\",\n                        \"badge\": \"sr-competitor-46161.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-56cd-7287-8f11-488f06c2fc73\",\n                \"competition_name\": \"Eerste Divisie\",\n                \"competition_id\": \"9a94aa73-d3c6-487e-a7aa-0597bb3f593b\",\n                \"sport_radar_competition_id\": \"sr:competition:131\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-131.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Netherlands\",\n                    \"flag\": \"NLD.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace1-5ea4-468e-a03b-08286dfa4416\",\n                        \"name\": \"Ajax\",\n                        \"badge\": \"sr-competitor-46160.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace1-7b40-40dc-8b22-49acb9287502\",\n                        \"name\": \"Emmen\",\n                        \"badge\": \"sr-competitor-2965.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f42d5ae-7e4a-41bc-8c9a-3e5dedaf6d4b\",\n                \"competition_name\": \"Ligue 2\",\n                \"competition_id\": \"9a94aa78-4e61-4e73-8e6b-00e35cee29f8\",\n                \"sport_radar_competition_id\": \"sr:competition:182\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-182.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"France\",\n                    \"flag\": \"FRA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c31b-f63b-4baa-b59f-aecb9cfe18d6\",\n                        \"name\": \"Bastia\",\n                        \"badge\": \"sr-competitor-1655.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace1-e52a-46bb-85c5-e98a6b83c5dd\",\n                        \"name\": \"Stade Lavallois\",\n                        \"badge\": \"sr-competitor-1673.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f956ca3-783b-4cce-a49f-3f69d4898e54\",\n                \"competition_name\": \"Ligue 2\",\n                \"competition_id\": \"9a94aa78-4e61-4e73-8e6b-00e35cee29f8\",\n                \"sport_radar_competition_id\": \"sr:competition:182\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-182.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"France\",\n                    \"flag\": \"FRA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94a44b-42be-4f17-90e3-0ea6b0561e07\",\n                        \"name\": \"Le Mans\",\n                        \"badge\": \"sr-competitor-1672.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a9aa4ae-7f5a-461a-a783-696028363d91\",\n                        \"name\": \"US Boulogne\",\n                        \"badge\": \"sr-competitor-1711.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-56af-711e-8571-93e78330e435\",\n                \"competition_name\": \"Eredivisie\",\n                \"competition_id\": \"9a94ac87-99a6-40fc-b325-b325703287a6\",\n                \"sport_radar_competition_id\": \"sr:competition:37\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-37.png\",\n                \"kick_off\": \"2025-10-24 19:00:00\",\n                \"country\": {\n                    \"name\": \"Netherlands\",\n                    \"flag\": \"NLD.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acf0-ce02-4f67-a3e7-ec02b88a3d55\",\n                        \"name\": \"Heerenveen\",\n                        \"badge\": \"sr-competitor-2964.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acf0-d93a-45a1-815c-fbcddb8069d7\",\n                        \"name\": \"Breda\",\n                        \"badge\": \"sr-competitor-2947.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f36d207-0c37-446f-8a9f-ef961b7e2fc4\",\n                \"competition_name\": \"Challenge League\",\n                \"competition_id\": \"9a94c254-f7cf-4a44-a959-77ec826bb8cf\",\n                \"sport_radar_competition_id\": \"sr:competition:216\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-216.png\",\n                \"kick_off\": \"2025-10-24 19:15:00\",\n                \"country\": {\n                    \"name\": \"Switzerland\",\n                    \"flag\": \"CHE.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c312-3d3d-4f92-b58b-354988b3ee61\",\n                        \"name\": \"Aarau\",\n                        \"badge\": \"sr-competitor-2447.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c371-6853-4e5d-8dda-3ba1715132d3\",\n                        \"name\": \"Wil\",\n                        \"badge\": \"sr-competitor-2455.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f4a124b-6c8d-49e6-859f-65e71bad9dc7\",\n                \"competition_name\": \"LaLiga 2\",\n                \"competition_id\": \"9a94aa2b-fb57-4b58-b108-2472f03a7201\",\n                \"sport_radar_competition_id\": \"sr:competition:54\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-54.png\",\n                \"kick_off\": \"2025-10-24 19:30:00\",\n                \"country\": {\n                    \"name\": \"Spain\",\n                    \"flag\": \"ESP.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c31b-46b8-417d-890a-254beb0b785e\",\n                        \"name\": \"Huesca\",\n                        \"badge\": \"sr-competitor-24265.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c31f-a0c2-418b-8573-1f86ae7874b4\",\n                        \"name\": \"Las Palmas\",\n                        \"badge\": \"sr-competitor-6577.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f6a7d65-42c9-42e0-84a3-30e00f6b6287\",\n                \"competition_name\": \"Ekstraklasa\",\n                \"competition_id\": \"9a947f0e-e06b-4e83-9808-3b0e903f088f\",\n                \"sport_radar_competition_id\": \"sr:competition:202\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-202.png\",\n                \"kick_off\": \"2025-10-24 19:30:00\",\n                \"country\": {\n                    \"name\": \"Poland\",\n                    \"flag\": \"POL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f29-cee4-43b9-baf0-bf5f6c8d99fa\",\n                        \"name\": \"Motor Lublin\",\n                        \"badge\": \"sr-competitor-7915.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94a43c-7152-466b-a8d9-c9f82dcd12bc\",\n                        \"name\": \"Widzew Lodz\",\n                        \"badge\": \"sr-competitor-3115.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01993f4c-d6ec-70be-af12-78b380cad174\",\n                \"competition_name\": \"Serie C, Group C\",\n                \"competition_id\": \"9a94aa13-974f-4777-a77c-f4fd45ccec72\",\n                \"sport_radar_competition_id\": \"sr:competition:26558\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-26558.png\",\n                \"kick_off\": \"2025-10-24 19:30:00\",\n                \"country\": {\n                    \"name\": \"Italy\",\n                    \"flag\": \"ITA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace9-6d79-4cb4-9f3b-aba305b6eb48\",\n                        \"name\": \"Foggia\",\n                        \"badge\": \"sr-competitor-2803.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a9ab1ff-04a7-4f81-8853-262843ae6207\",\n                        \"name\": \"Asd Team Altamura\",\n                        \"badge\": \"sr-competitor-368724.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"019914f4-fced-7085-bbb3-67ebdd1ec7f3\",\n                \"competition_name\": \"Bundesliga\",\n                \"competition_id\": \"9a948072-2949-4d87-afa8-3cdd3d550f94\",\n                \"sport_radar_competition_id\": \"sr:competition:35\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-35.png\",\n                \"kick_off\": \"2025-10-24 19:30:00\",\n                \"country\": {\n                    \"name\": \"Germany\",\n                    \"flag\": \"DEU.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c94f-dfd7-4f77-99d5-21116ed9c20e\",\n                        \"name\": \"Bremen\",\n                        \"badge\": \"sr-competitor-2534.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acf0-1908-4a25-b0a4-2372969253c5\",\n                        \"name\": \"Union Berlin\",\n                        \"badge\": \"sr-competitor-2547.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f854676-5b78-48e2-8e12-788c77f31564\",\n                \"competition_name\": \"Serie B\",\n                \"competition_id\": \"9a94aa76-6cd3-4c99-9daf-9f44b84bf2f0\",\n                \"sport_radar_competition_id\": \"sr:competition:53\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-53.png\",\n                \"kick_off\": \"2025-10-24 19:30:00\",\n                \"country\": {\n                    \"name\": \"Italy\",\n                    \"flag\": \"ITA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace5-c62f-4efa-a46a-240a209dc53b\",\n                        \"name\": \"Modena\",\n                        \"badge\": \"sr-competitor-2706.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace1-ed56-44ef-8a9a-d314832effa9\",\n                        \"name\": \"Empoli\",\n                        \"badge\": \"sr-competitor-2705.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-69e7-735c-a076-0778d50dbe4b\",\n                \"competition_name\": \"Serie C, Group A\",\n                \"competition_id\": \"9a94ac05-c6df-4747-8618-0cecc6d4e313\",\n                \"sport_radar_competition_id\": \"sr:competition:26554\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-26554.png\",\n                \"kick_off\": \"2025-10-24 19:30:00\",\n                \"country\": {\n                    \"name\": \"Italy\",\n                    \"flag\": \"ITA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace6-2164-4987-8157-ec71a4ba4b35\",\n                        \"name\": \"Novara\",\n                        \"badge\": \"sr-competitor-2767.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace5-ddb0-4575-9a35-2e93142019e1\",\n                        \"name\": \"Virtus Verona\",\n                        \"badge\": \"sr-competitor-113761.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f371270-9086-4305-b93f-bcdbd2d5f1e0\",\n                \"competition_name\": \"1. Liga\",\n                \"competition_id\": \"9a947f0f-261e-4765-a6be-4c97a5157f3e\",\n                \"sport_radar_competition_id\": \"sr:competition:229\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-229.png\",\n                \"kick_off\": \"2025-10-24 19:30:00\",\n                \"country\": {\n                    \"name\": \"Poland\",\n                    \"flag\": \"POL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c312-6921-4d96-8ec7-7b7b6e9edc22\",\n                        \"name\": \"Opole\",\n                        \"badge\": \"sr-competitor-7916.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c314-1b7c-4c50-8849-3eff17675968\",\n                        \"name\": \"Ruch Chorzow\",\n                        \"badge\": \"sr-competitor-3105.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f67afe9-c2dd-490c-ae3a-edbef2297fce\",\n                \"competition_name\": \"Serie A\",\n                \"competition_id\": \"9a947f12-22f3-4871-a2e6-1ca0750dd88a\",\n                \"sport_radar_competition_id\": \"sr:competition:23\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-23.png\",\n                \"kick_off\": \"2025-10-24 19:45:00\",\n                \"country\": {\n                    \"name\": \"Italy\",\n                    \"flag\": \"ITA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad05-99c0-428f-ba39-f265bde10139\",\n                        \"name\": \"Milan\",\n                        \"badge\": \"sr-competitor-2692.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace5-d61e-4728-a711-90c0a223dfd8\",\n                        \"name\": \"Pisa\",\n                        \"badge\": \"sr-competitor-2737.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-6a5c-715f-a6c4-2df186246be1\",\n                \"competition_name\": \"FA Trophy\",\n                \"competition_id\": \"9a94ac40-ec22-47fc-b1d5-cf0dc538cfa3\",\n                \"sport_radar_competition_id\": \"sr:competition:628\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"uk\"\n                ],\n                \"competition_logo\": \"sr-competition-628.png\",\n                \"kick_off\": \"2025-10-24 19:45:00\",\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"ENG.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a9a2aa2-9e3e-4f28-8798-3aa7335fb593\",\n                        \"name\": \"Dunston Uts\",\n                        \"badge\": \"sr-competitor-46967.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a9a2a99-f67b-4b7a-9275-1e6f63241043\",\n                        \"name\": \"Hebburn Town\",\n                        \"badge\": \"sr-competitor-47044.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9dc0fcf6-4c44-4916-8d89-5e03e852fba0\",\n                \"competition_name\": \"Premier Division\",\n                \"competition_id\": \"9a94aa18-9dc6-4a48-8885-23e7fc3701ae\",\n                \"sport_radar_competition_id\": \"sr:competition:192\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-192.png\",\n                \"kick_off\": \"2025-10-24 19:45:00\",\n                \"country\": {\n                    \"name\": \"Ireland\",\n                    \"flag\": \"IRL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c312-a0ce-4074-a65f-992695166383\",\n                        \"name\": \"Galway Utd\",\n                        \"badge\": \"sr-competitor-3172.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c312-94f6-46a7-8462-3fd86b3b6035\",\n                        \"name\": \"Drogheda United\",\n                        \"badge\": \"sr-competitor-3180.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cf7e-ce60-7180-9fcd-38e935dc578d\",\n                \"competition_name\": \"Championship\",\n                \"competition_id\": \"9a9ab1e5-f8ec-4769-9f58-2f51d51ab3bf\",\n                \"sport_radar_competition_id\": \"sr:competition:701\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"uk\"\n                ],\n                \"competition_logo\": \"sr-competition-701.png\",\n                \"kick_off\": \"2025-10-24 19:45:00\",\n                \"country\": {\n                    \"name\": \"Northern Ireland\",\n                    \"flag\": \"NIR.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad04-d2c2-40a4-b3de-d48935a4150d\",\n                        \"name\": \"Annagh United\",\n                        \"badge\": \"sr-competitor-39224.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a9a2b40-1ce2-4231-9ab0-13bc54fec47c\",\n                        \"name\": \"Warrenpoint Town\",\n                        \"badge\": \"sr-competitor-43204.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01991faf-909d-733b-9103-ed144b71a4f6\",\n                \"competition_name\": \"Ligue 1\",\n                \"competition_id\": \"9a94c865-51f9-4e4f-905e-64bfb2846d56\",\n                \"sport_radar_competition_id\": \"sr:competition:34\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-34.png\",\n                \"kick_off\": \"2025-10-24 19:45:00\",\n                \"country\": {\n                    \"name\": \"France\",\n                    \"flag\": \"FRA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c377-4839-4062-9cae-53d189f1a8c2\",\n                        \"name\": \"Paris FC\",\n                        \"badge\": \"sr-competitor-6070.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ca19-14b8-4b6d-9ac6-06a04c3aad56\",\n                        \"name\": \"Nantes\",\n                        \"badge\": \"sr-competitor-1647.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9dc0fcf8-9733-4fc3-86c8-601653993f0a\",\n                \"competition_name\": \"Premier Division\",\n                \"competition_id\": \"9a94aa18-9dc6-4a48-8885-23e7fc3701ae\",\n                \"sport_radar_competition_id\": \"sr:competition:192\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-192.png\",\n                \"kick_off\": \"2025-10-24 19:45:00\",\n                \"country\": {\n                    \"name\": \"Ireland\",\n                    \"flag\": \"IRL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace1-9efb-42de-92e3-aa9d06f5a892\",\n                        \"name\": \"St. Patrick´s\",\n                        \"badge\": \"sr-competitor-3169.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c323-724a-46de-a205-f16cbcb41e34\",\n                        \"name\": \"Waterford\",\n                        \"badge\": \"sr-competitor-3194.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f5d8465-acb5-4c5b-ac32-1c8a523c5992\",\n                \"competition_name\": \"Cymru Premier\",\n                \"competition_id\": \"9a94aa48-0216-4cc2-bf66-2e263f3efd6c\",\n                \"sport_radar_competition_id\": \"sr:competition:254\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"uk\"\n                ],\n                \"competition_logo\": \"sr-competition-254.png\",\n                \"kick_off\": \"2025-10-24 19:45:00\",\n                \"country\": {\n                    \"name\": \"Wales\",\n                    \"flag\": \"WAL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd4-cbaa-4f45-a63c-2a4a876cb53e\",\n                        \"name\": \"Llanelli Town\",\n                        \"badge\": \"sr-competitor-4916.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acdd-4ebf-42fa-9174-273919bb7269\",\n                        \"name\": \"New Saints\",\n                        \"badge\": \"sr-competitor-4921.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199bb65-8cb8-7263-95d7-069f35d260c8\",\n                \"competition_name\": \"League 1\",\n                \"competition_id\": \"9a94c8bd-be08-4427-89cf-07e3b805cd49\",\n                \"sport_radar_competition_id\": \"sr:competition:207\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"uk\"\n                ],\n                \"competition_logo\": \"sr-competition-207.png\",\n                \"kick_off\": \"2025-10-24 19:45:00\",\n                \"country\": {\n                    \"name\": \"Scotland\",\n                    \"flag\": \"SCO.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a9a2a9a-4ca4-447d-a11b-0d94c6de255f\",\n                        \"name\": \"Hamilton\",\n                        \"badge\": \"sr-competitor-2376.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a9a2ae6-8201-4c03-9d5d-ee2ccb5c9557\",\n                        \"name\": \"Queen of The South\",\n                        \"badge\": \"sr-competitor-2368.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f333761-648f-4ed5-a423-ad884df5d852\",\n                \"competition_name\": \"Pro League\",\n                \"competition_id\": \"9a94c26c-4735-4434-839f-88c988d7ea39\",\n                \"sport_radar_competition_id\": \"sr:competition:38\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-38.png\",\n                \"kick_off\": \"2025-10-24 19:45:00\",\n                \"country\": {\n                    \"name\": \"Belgium\",\n                    \"flag\": \"BEL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a9a2a9b-7cf9-488b-9fd5-815b705e1748\",\n                        \"name\": \"Charleroi\",\n                        \"badge\": \"sr-competitor-2898.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c935-6eba-435b-ac04-16eb0a194c94\",\n                        \"name\": \"Anderlecht\",\n                        \"badge\": \"sr-competitor-2900.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199d437-802e-7396-9ad6-73930fde7491\",\n                \"competition_name\": \"CAF Confederations Cup\",\n                \"competition_id\": \"9a94c252-ebe7-46e6-8361-9d487edaebd6\",\n                \"sport_radar_competition_id\": \"sr:competition:1115\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"row\"\n                ],\n                \"competition_logo\": \"sr-competition-1115.png\",\n                \"kick_off\": \"2025-10-24 20:00:00\",\n                \"country\": {\n                    \"name\": \"International Clubs\",\n                    \"flag\": \"default.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ace9-464b-4488-bc60-afdf528181ca\",\n                        \"name\": \"Wydad\",\n                        \"badge\": \"sr-competitor-36268.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd4-9972-481d-b278-14913efc32a1\",\n                        \"name\": \"Asante\",\n                        \"badge\": \"sr-competitor-41755.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9fae436a-e5cd-49c4-9830-be1a0c2b2200\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a94abbd-c337-4e95-862c-e8cb2cf29a61\",\n                \"sport_radar_competition_id\": \"sr:competition:17\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"uk\"\n                ],\n                \"competition_logo\": \"sr-competition-17.png\",\n                \"kick_off\": \"2025-10-24 20:00:00\",\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"ENG.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a948073-83aa-4323-afe8-a6070cb27f53\",\n                        \"name\": \"Leeds\",\n                        \"badge\": \"sr-competitor-34.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace8-eb61-4da3-ac38-12c06d6903e5\",\n                        \"name\": \"West Ham\",\n                        \"badge\": \"sr-competitor-37.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9f8265bc-188f-46cc-9cea-c1e45044e0f9\",\n                \"competition_name\": \"Championship\",\n                \"competition_id\": \"9a948071-86c4-4a88-8312-d13234c1a137\",\n                \"sport_radar_competition_id\": \"sr:competition:18\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"uk\"\n                ],\n                \"competition_logo\": \"sr-competition-18.png\",\n                \"kick_off\": \"2025-10-24 20:00:00\",\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"ENG.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a948076-e878-403e-8473-712e693c8c7a\",\n                        \"name\": \"Preston\",\n                        \"badge\": \"sr-competitor-21.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c9ac-2311-4179-945d-3f7aa4861a64\",\n                        \"name\": \"Sheffield Utd\",\n                        \"badge\": \"sr-competitor-15.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"019972cc-597d-730f-872a-d3af987095ef\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"9a94abec-4a80-4242-94c3-a2874b421892\",\n                \"sport_radar_competition_id\": \"sr:competition:629\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-629.png\",\n                \"kick_off\": \"2025-10-24 20:00:00\",\n                \"country\": {\n                    \"name\": \"Malta\",\n                    \"flag\": \"MLT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94c31a-f782-468a-b77d-436d04635d5d\",\n                        \"name\": \"Gzira Utd\",\n                        \"badge\": \"sr-competitor-58327.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace9-122b-4a1c-b432-24142ca6ed1a\",\n                        \"name\": \"Tarxien R\",\n                        \"badge\": \"sr-competitor-33580.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199812c-a204-7009-a7ba-7f55644bdb1f\",\n                \"competition_name\": \"LaLiga\",\n                \"competition_id\": \"9a94abbe-52b2-479f-846c-1eb98be0b024\",\n                \"sport_radar_competition_id\": \"sr:competition:8\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-8.png\",\n                \"kick_off\": \"2025-10-24 20:00:00\",\n                \"country\": {\n                    \"name\": \"Spain\",\n                    \"flag\": \"ESP.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad06-2bb8-44a8-9e89-3b1e5a5cebd3\",\n                        \"name\": \"Real Sociedad\",\n                        \"badge\": \"sr-competitor-2824.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ad06-8bf7-4c1d-bfe2-7895f4a19321\",\n                        \"name\": \"Sevilla\",\n                        \"badge\": \"sr-competitor-2833.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"01992054-49f4-70a7-a82e-a0d3e3caf49a\",\n                \"competition_name\": \"Liga Portugal\",\n                \"competition_id\": \"9a94ac41-9146-447a-8fe7-a9a4d987d99a\",\n                \"sport_radar_competition_id\": \"sr:competition:238\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-238.png\",\n                \"kick_off\": \"2025-10-24 20:15:00\",\n                \"country\": {\n                    \"name\": \"Portugal\",\n                    \"flag\": \"PRT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a9a2ad3-69e1-4bba-8930-c9646b2b9d82\",\n                        \"name\": \"Alverca\",\n                        \"badge\": \"sr-competitor-3012.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c3ff-d29d-40f7-8eaf-1ea831b6bddb\",\n                        \"name\": \"Gil Vicente\",\n                        \"badge\": \"sr-competitor-3010.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199cd59-552a-7013-90ae-061b717839ad\",\n                \"competition_name\": \"Liga Portugal 2\",\n                \"competition_id\": \"9a947f19-01a0-4113-bcd1-1ae0811b35a7\",\n                \"sport_radar_competition_id\": \"sr:competition:239\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"top\",\n                    \"europe\"\n                ],\n                \"competition_logo\": \"sr-competition-239.png\",\n                \"kick_off\": \"2025-10-24 20:45:00\",\n                \"country\": {\n                    \"name\": \"Portugal\",\n                    \"flag\": \"PRT.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a9aa4ae-1c73-408e-9ca0-ae0018724803\",\n                        \"name\": \"Vizela\",\n                        \"badge\": \"sr-competitor-5136.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a9a2ad3-1c33-4c66-b786-bc7af4f0655d\",\n                        \"name\": \"FC Felgueiras 1932\",\n                        \"badge\": \"sr-competitor-3030.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-6dc4-7191-b468-981e4c210ed2\",\n                \"competition_name\": \"Liga 1\",\n                \"competition_id\": \"9a94aa66-2d13-4ac8-9024-a370014e0bbe\",\n                \"sport_radar_competition_id\": \"sr:competition:406\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"americas\"\n                ],\n                \"competition_logo\": \"sr-competition-406.png\",\n                \"kick_off\": \"2025-10-24 21:00:00\",\n                \"country\": {\n                    \"name\": \"Peru\",\n                    \"flag\": \"PER.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9b9c3264-4525-4c19-bf6e-c1b3917ab3e6\",\n                        \"name\": \"Juan Pablo II\",\n                        \"badge\": \"sr-competitor-1041663.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94c30d-9d08-41c6-941e-8e050782c4bd\",\n                        \"name\": \"Comerciantes U\",\n                        \"badge\": \"sr-competitor-241860.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9e058626-c6a4-4068-8096-3698a2d583c1\",\n                \"competition_name\": \"Primera Division\",\n                \"competition_id\": \"9a947f07-c5d6-4dbe-bc20-1c9252a5dcc9\",\n                \"sport_radar_competition_id\": \"sr:competition:27665\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"americas\"\n                ],\n                \"competition_logo\": \"sr-competition-27665.png\",\n                \"kick_off\": \"2025-10-24 21:00:00\",\n                \"country\": {\n                    \"name\": \"Chile\",\n                    \"flag\": \"CHL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f28-93f0-469a-9344-9691940563e4\",\n                        \"name\": \"Palestino\",\n                        \"badge\": \"sr-competitor-3157.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ad05-f953-44bc-a46b-eb7e32b4a56c\",\n                        \"name\": \"Everton\",\n                        \"badge\": \"sr-competitor-5032.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199b563-6179-7074-a619-f3599545f534\",\n                \"competition_name\": \"Primera A, Clausura\",\n                \"competition_id\": \"9a94a909-6619-40fa-b98e-808e89d31b63\",\n                \"sport_radar_competition_id\": \"sr:competition:27072\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"americas\"\n                ],\n                \"competition_logo\": \"sr-competition-27072.png\",\n                \"kick_off\": \"2025-10-24 22:00:00\",\n                \"country\": {\n                    \"name\": \"Colombia\",\n                    \"flag\": \"COL.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9b270b9d-9b49-4ecf-a465-d9eb02d42544\",\n                        \"name\": \"Alianza FC Valledupar\",\n                        \"badge\": \"sr-competitor-1098993.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace3-0cde-4988-a72b-f690ef1441db\",\n                        \"name\": \"La Equidad\",\n                        \"badge\": \"sr-competitor-6975.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199dd28-22d9-7117-bd7b-f15dcd934c31\",\n                \"competition_name\": \"Primera LPF\",\n                \"competition_id\": \"9a9a2862-9328-415a-8073-3ecad5623b2c\",\n                \"sport_radar_competition_id\": \"sr:competition:155\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"americas\"\n                ],\n                \"competition_logo\": \"sr-competition-155.png\",\n                \"kick_off\": \"2025-10-24 22:00:00\",\n                \"country\": {\n                    \"name\": \"Argentina\",\n                    \"flag\": \"ARG.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acd6-bff8-463f-a114-8657c8087c4f\",\n                        \"name\": \"Independiente\",\n                        \"badge\": \"sr-competitor-3209.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acdd-cc43-44aa-aad4-02953c881f7e\",\n                        \"name\": \"Platense\",\n                        \"badge\": \"sr-competitor-36837.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"019974f1-b972-7022-96cf-17c6860e1cc9\",\n                \"competition_name\": \"Brasileiro Serie B\",\n                \"competition_id\": \"9a947f04-2ca6-4990-974b-d02db96b4b00\",\n                \"sport_radar_competition_id\": \"sr:competition:390\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"americas\"\n                ],\n                \"competition_logo\": \"sr-competition-390.png\",\n                \"kick_off\": \"2025-10-24 23:00:00\",\n                \"country\": {\n                    \"name\": \"Brazil\",\n                    \"flag\": \"BRA.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94acf2-1641-429c-8925-dc99f523def8\",\n                        \"name\": \"Gremio Novorizontino\",\n                        \"badge\": \"sr-competitor-135514.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acd0-4ccb-4173-a6ba-93f201c6cb74\",\n                        \"name\": \"Botafogo\",\n                        \"badge\": \"sr-competitor-1979.png\",\n                        \"flag\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"0199feed-6e6c-715d-b343-fd16be42d719\",\n                \"competition_name\": \"Primera Division\",\n                \"competition_id\": \"9a947f04-49b6-4ddd-85f1-8363287f184a\",\n                \"sport_radar_competition_id\": \"sr:competition:278\",\n                \"competition_groups\": [\n                    \"all\",\n                    \"americas\"\n                ],\n                \"competition_logo\": \"sr-competition-278.png\",\n                \"kick_off\": \"2025-10-24 23:30:00\",\n                \"country\": {\n                    \"name\": \"Uruguay\",\n                    \"flag\": \"URY.png\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a947f28-00a3-4236-8e79-031a07ffdf91\",\n                        \"name\": \"Defensor\",\n                        \"badge\": \"sr-competitor-3229.png\",\n                        \"flag\": null\n                    },\n                    \"away\": {\n                        \"id\": \"9a94acdd-db11-46f3-b408-78ebc3ce6d87\",\n                        \"name\": \"Montevideo City\",\n                        \"badge\": \"sr-competitor-174972.png\",\n                        \"flag\": null\n                    }\n                }\n            }\n        ]\n    },\n    \"meta\": {\n        \"results\": 136,\n        \"timezone\": \"Europe/London\",\n        \"day\": \"0\",\n        \"day_offset\": 0,\n        \"utc_dates_fetched\": [\n            \"2025-10-23\",\n            \"2025-10-24\"\n        ],\n        \"local_date_displayed\": \"2025-10-24\"\n    }\n}"}],"_postman_id":"00041de4-6abc-46b8-9dc4-6507a71a7cda"},{"name":"fixtures-list","event":[{"listen":"test","script":{"id":"27078573-efba-4737-a172-42a45fa072c2","exec":["// 1. HTTP 200 Status Check","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Check","pm.test('Response time is less than 10000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(10000);","});","","// 3. JSON Schema Validation","pm.test(\"Response matches expected schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"fixture_id\", \"kick_off\", \"competition\", \"home_team\", \"away_team\"],","                    properties: {","                        fixture_id: { type: \"string\" },","                        kick_off: { type: \"string\" },","                        competition: {","                            type: \"object\",","                            required: [\"name\", \"country\", \"groups\"],","                            properties: {","                                name: { type: \"string\" },","                                country: { type: \"string\" },","                                groups: {","                                    type: \"array\",","                                    items: { type: \"string\" }","                                }","                            }","                        },","                        home_team: {","                            type: \"object\",","                            required: [\"name\", \"abbreviation\", \"badge\", \"kit_colour\"],","                            properties: {","                                name: { type: \"string\" },","                                abbreviation: { type: \"string\" },","                                badge: { type: \"string\" },","                                kit_colour: { type: [\"string\", \"null\"] }","                            }","                        },","                        away_team: {","                            type: \"object\",","                            required: [\"name\", \"abbreviation\", \"badge\", \"kit_colour\"],","                            properties: {","                                name: { type: \"string\" },","                                abbreviation: { type: \"string\" },","                                badge: { type: \"string\" },","                                kit_colour: { type: [\"string\", \"null\"] }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"timezone\", \"sport_type\", \"dates\"],","                properties: {","                    timezone: { type: \"string\" },","                    sport_type: { type: \"string\" },","                    dates: {","                        type: \"object\",","                        required: [\"utc_dates\"],","                        properties: {","                            utc_dates: {","                                type: \"array\",","                                items: { type: \"string\" }","                            }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});","","// Capture fixture_id from first item and save as collection variable","const jsonData = pm.response.json();","pm.collectionVariables.set(\"fixture_id\", jsonData.data[0].fixture_id);","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"39953b57-ccdb-4c00-bec4-e9cb72a60e2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/fixtures-list?timezone=Europe/London&sport=soccer&day=0","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["fixtures-list"],"host":[""],"query":[{"key":"timezone","value":"Europe/London"},{"key":"sport","value":"soccer"},{"disabled":true,"key":"sport","value":"american-football"},{"key":"day","value":"0"}],"variable":[]}},"response":[{"id":"5a4e9b69-98e9-4f06-ac85-24076d4e837e","name":"fixtures-list","originalRequest":{"method":"GET","header":[],"url":{"raw":"/fixtures-list?timezone=Europe/London&sport=soccer&day=0","host":[""],"path":["fixtures-list"],"query":[{"key":"timezone","value":"Europe/London"},{"key":"sport","value":"soccer"},{"key":"sport","value":"american-football","type":"text","disabled":true},{"key":"day","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:22:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"51371"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"493bb6d2-511d-48d7-9cdb-78766b9d3ea4"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8wqbG_9DoEEUNg="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb6175-06a7399d708181167984dc5c;Parent=088e591b69f6f21d;Sampled=0;Lineage=1:d43b187c:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"fixture_id\": \"0199803e-beef-73c2-b117-b45333fa17b4\",\n            \"kick_off\": \"2025-10-24 01:10:00\",\n            \"competition\": {\n                \"name\": \"Copa Argentina\",\n                \"country\": \"Argentina\"\n            },\n            \"home_team\": {\n                \"name\": \"Belgrano de Cordoba\",\n                \"abbreviation\": \"CAB\",\n                \"badge\": \"sr-competitor-3203.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Argentinos Juniors\",\n                \"abbreviation\": \"ARG\",\n                \"badge\": \"sr-competitor-3216.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019983d2-5eb8-7324-ac5d-fb52e23ca5a0\",\n            \"kick_off\": \"2025-10-24 01:30:00\",\n            \"competition\": {\n                \"name\": \"CONMEBOL Libertadores\",\n                \"country\": \"International Clubs\"\n            },\n            \"home_team\": {\n                \"name\": \"LDU Quito\",\n                \"abbreviation\": \"LDU\",\n                \"badge\": \"sr-competitor-5257.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Palmeiras\",\n                \"abbreviation\": \"PAL\",\n                \"badge\": \"sr-competitor-1963.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199e518-bce9-7257-8e02-85af35caa911\",\n            \"kick_off\": \"2025-10-24 02:00:00\",\n            \"competition\": {\n                \"name\": \"Liga 1\",\n                \"country\": \"Peru\"\n            },\n            \"home_team\": {\n                \"name\": \"Sporting Cristal\",\n                \"abbreviation\": \"CRI\",\n                \"badge\": \"sr-competitor-2302.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Universitario\",\n                \"abbreviation\": \"UNI\",\n                \"badge\": \"sr-competitor-2305.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-17eb-7259-a735-c4eebd58225e\",\n            \"kick_off\": \"2025-10-24 09:30:00\",\n            \"competition\": {\n                \"name\": \"Super League\",\n                \"country\": \"Indonesia\"\n            },\n            \"home_team\": {\n                \"name\": \"PSBS Biak\",\n                \"abbreviation\": \"PSB\",\n                \"badge\": \"sr-competitor-331325.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Persebaya\",\n                \"abbreviation\": \"PER\",\n                \"badge\": \"sr-competitor-76319.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-1800-7011-ad68-56043b022039\",\n            \"kick_off\": \"2025-10-24 09:35:00\",\n            \"competition\": {\n                \"name\": \"A-League\",\n                \"country\": \"Australia\"\n            },\n            \"home_team\": {\n                \"name\": \"Newcastle\",\n                \"abbreviation\": \"NUJ\",\n                \"badge\": \"sr-competitor-2934.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Melbourne Victory\",\n                \"abbreviation\": \"VIC\",\n                \"badge\": \"sr-competitor-5970.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ddcc-fdda-727c-b39b-f49ab74ad6fd\",\n            \"kick_off\": \"2025-10-24 11:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ethiopia\"\n            },\n            \"home_team\": {\n                \"name\": \"Arba Minch Kenema\",\n                \"abbreviation\": \"ARB\",\n                \"badge\": \"sr-competitor-298864.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Bahir Dar Kenema FC\",\n                \"abbreviation\": \"BAH\",\n                \"badge\": \"sr-competitor-558872.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019987af-1dbe-72ad-8496-8ac3834c2231\",\n            \"kick_off\": \"2025-10-24 11:30:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Azerbaijan\"\n            },\n            \"home_team\": {\n                \"name\": \"Karvan Yevlakh\",\n                \"abbreviation\": \"KEV\",\n                \"badge\": \"sr-competitor-5963.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Turan Tovuz\",\n                \"abbreviation\": \"TTO\",\n                \"badge\": \"sr-competitor-36951.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019a06a5-0809-72ae-95f8-2160a0faa99a\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Kenya\"\n            },\n            \"home_team\": {\n                \"name\": \"Mara Sugar FC\",\n                \"abbreviation\": \"MAR\",\n                \"badge\": \"sr-competitor-872787.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Bidco United\",\n                \"abbreviation\": \"BID\",\n                \"badge\": \"sr-competitor-346130.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce00-12b3-7175-8a68-0d30431466c5\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Armenia\"\n            },\n            \"home_team\": {\n                \"name\": \"Alashkert Yerevan\",\n                \"abbreviation\": \"ALA\",\n                \"badge\": \"sr-competitor-67966.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Van\",\n                \"abbreviation\": \"VAN\",\n                \"badge\": \"sr-competitor-609308.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f6950f8-1801-42e3-b892-fddbbfcb6034\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Singapore\"\n            },\n            \"home_team\": {\n                \"name\": \"Balestier Khalsa\",\n                \"abbreviation\": \"BAL\",\n                \"badge\": \"sr-competitor-3039.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Tanjong Pagar United\",\n                \"abbreviation\": \"TPU\",\n                \"badge\": \"sr-competitor-3038.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9e1368e3-08d8-431b-ad70-3812ecae69c6\",\n            \"kick_off\": \"2025-10-24 12:35:00\",\n            \"competition\": {\n                \"name\": \"Chinese Super League\",\n                \"country\": \"China\"\n            },\n            \"home_team\": {\n                \"name\": \"Meizhou Hakka\",\n                \"abbreviation\": \"MEI\",\n                \"badge\": \"sr-competitor-245357.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Yunnan Yukun\",\n                \"abbreviation\": \"YUN\",\n                \"badge\": \"sr-competitor-1009011.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9e1368ea-0256-4cd5-b75f-21b4b67a8476\",\n            \"kick_off\": \"2025-10-24 12:35:00\",\n            \"competition\": {\n                \"name\": \"Chinese Super League\",\n                \"country\": \"China\"\n            },\n            \"home_team\": {\n                \"name\": \"Wuhan Three Towns FC\",\n                \"abbreviation\": \"WUH\",\n                \"badge\": \"sr-competitor-475928.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Shenzhen Peng City\",\n                \"abbreviation\": \"SHE\",\n                \"badge\": \"sr-competitor-422227.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf7e-f2c8-7387-bc69-41b3143d6d72\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"competition\": {\n                \"name\": \"Kategoria Superiore\",\n                \"country\": \"Albania\"\n            },\n            \"home_team\": {\n                \"name\": \"FK Vora\",\n                \"abbreviation\": \"FKV\",\n                \"badge\": \"sr-competitor-173810.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dinamo City\",\n                \"abbreviation\": \"DIC\",\n                \"badge\": \"sr-competitor-5217.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01990aa8-5529-733e-9089-f6ab9640f9bb\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"competition\": {\n                \"name\": \"Parva Liga\",\n                \"country\": \"Bulgaria\"\n            },\n            \"home_team\": {\n                \"name\": \"Montana\",\n                \"abbreviation\": \"MON\",\n                \"badge\": \"sr-competitor-32642.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Arda Kardzhali\",\n                \"abbreviation\": \"ARD\",\n                \"badge\": \"sr-competitor-364786.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-1bb1-71ae-98f8-09e3f0ea8fd4\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"competition\": {\n                \"name\": \"Super League\",\n                \"country\": \"Indonesia\"\n            },\n            \"home_team\": {\n                \"name\": \"Madura United\",\n                \"abbreviation\": \"MAU\",\n                \"badge\": \"sr-competitor-86578.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Persija\",\n                \"abbreviation\": \"PEJ\",\n                \"badge\": \"sr-competitor-64295.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9fb1ddfa-730a-430f-9c71-7f8d3f913a0c\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"competition\": {\n                \"name\": \"Thai League 1\",\n                \"country\": \"Thailand\"\n            },\n            \"home_team\": {\n                \"name\": \"Port FC\",\n                \"abbreviation\": \"POR\",\n                \"badge\": \"sr-competitor-40661.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Muang Thong\",\n                \"abbreviation\": \"MUT\",\n                \"badge\": \"sr-competitor-39946.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199e1e0-b6bc-7325-acae-7f3741e8c3c9\",\n            \"kick_off\": \"2025-10-24 13:30:00\",\n            \"competition\": {\n                \"name\": \"1. MFL\",\n                \"country\": \"North Macedonia\"\n            },\n            \"home_team\": {\n                \"name\": \"Baskhimi\",\n                \"abbreviation\": \"BAS\",\n                \"badge\": \"sr-competitor-5400.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Shkupi Cair\",\n                \"abbreviation\": \"SHK\",\n                \"badge\": \"sr-competitor-136548.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199e1e0-d7ac-730c-a40b-8df9ed87f14a\",\n            \"kick_off\": \"2025-10-24 13:30:00\",\n            \"competition\": {\n                \"name\": \"1. MFL\",\n                \"country\": \"North Macedonia\"\n            },\n            \"home_team\": {\n                \"name\": \"GFK Tikvesh 1930\",\n                \"abbreviation\": \"GFK\",\n                \"badge\": \"sr-competitor-43576.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Arsimi 1973\",\n                \"abbreviation\": \"ARS\",\n                \"badge\": \"sr-competitor-924577.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019996d8-da0a-7232-ad83-b6ce7831ec50\",\n            \"kick_off\": \"2025-10-24 13:30:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ukraine\"\n            },\n            \"home_team\": {\n                \"name\": \"Oleksandriya\",\n                \"abbreviation\": \"OLE\",\n                \"badge\": \"sr-competitor-25479.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Epitsentr Kamianets-Podilskyi\",\n                \"abbreviation\": \"EPI\",\n                \"badge\": \"sr-competitor-602316.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-3360-7206-87f4-d05ae6b4f4ee\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"1. Lig\",\n                \"country\": \"Turkiye\"\n            },\n            \"home_team\": {\n                \"name\": \"Erzurumspor\",\n                \"abbreviation\": \"ERZ\",\n                \"badge\": \"sr-competitor-55603.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Umraniyespor\",\n                \"abbreviation\": \"UMR\",\n                \"badge\": \"sr-competitor-55625.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-188a-7262-9c16-b9353c512c5b\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"CAF Champions League\",\n                \"country\": \"International Clubs\"\n            },\n            \"home_team\": {\n                \"name\": \"Power Dynamos\",\n                \"abbreviation\": \"PDY\",\n                \"badge\": \"sr-competitor-195258.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Vipers\",\n                \"abbreviation\": \"VIP\",\n                \"badge\": \"sr-competitor-218704.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-0bfa-70c8-91d9-fec9614b64a6\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Uganda\"\n            },\n            \"home_team\": {\n                \"name\": \"Airtel Kitara\",\n                \"abbreviation\": \"KIT\",\n                \"badge\": \"sr-competitor-424753.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Mbarara FC\",\n                \"abbreviation\": \"MBA\",\n                \"badge\": \"sr-competitor-325273.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-2fd1-7254-ba73-161b6e2dd3bd\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Rwanda\"\n            },\n            \"home_team\": {\n                \"name\": \"Gicumbi FC\",\n                \"abbreviation\": \"GIC\",\n                \"badge\": \"sr-competitor-380054.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Gasogi United\",\n                \"abbreviation\": \"GAS\",\n                \"badge\": \"sr-competitor-528591.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ddcd-0122-72fd-8bdf-65a33db73ad8\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ethiopia\"\n            },\n            \"home_team\": {\n                \"name\": \"Hadiya Hossana\",\n                \"abbreviation\": \"HAD\",\n                \"badge\": \"sr-competitor-669303.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Ethiopia Electricity\",\n                \"abbreviation\": \"ETH\",\n                \"badge\": \"sr-competitor-392500.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9fb3e0e6-95c0-485c-acbf-6d284b50e84e\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Azerbaijan\"\n            },\n            \"home_team\": {\n                \"name\": \"Kapaz\",\n                \"abbreviation\": \"KAP\",\n                \"badge\": \"sr-competitor-37750.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Imisli FK\",\n                \"abbreviation\": \"IMI\",\n                \"badge\": \"sr-competitor-951655.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-04fc-7286-b5b4-5e15a33bb1d4\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Tanzania\"\n            },\n            \"home_team\": {\n                \"name\": \"Mbeya City\",\n                \"abbreviation\": \"MBE\",\n                \"badge\": \"sr-competitor-238660.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Jkt Tanzania\",\n                \"abbreviation\": \"JKT\",\n                \"badge\": \"sr-competitor-495358.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-1403-72f5-bdfb-504a510030e2\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Prva NL\",\n                \"country\": \"Croatia\"\n            },\n            \"home_team\": {\n                \"name\": \"Cibalia\",\n                \"abbreviation\": \"CIB\",\n                \"badge\": \"sr-competitor-2031.png\"\n            },\n            \"away_team\": {\n                \"name\": \"NK Hrvace\",\n                \"abbreviation\": \"HRV\",\n                \"badge\": \"sr-competitor-6670.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-192c-70d2-9f24-c65f7b9a2720\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Prva NL\",\n                \"country\": \"Croatia\"\n            },\n            \"home_team\": {\n                \"name\": \"NK Sesvete\",\n                \"abbreviation\": \"SES\",\n                \"badge\": \"sr-competitor-54297.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Rudes Zagreb\",\n                \"abbreviation\": \"RUD\",\n                \"badge\": \"sr-competitor-35226.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-0e16-7098-8711-b5371e35030d\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Prva NL\",\n                \"country\": \"Croatia\"\n            },\n            \"home_team\": {\n                \"name\": \"Orijent Rijeka\",\n                \"abbreviation\": \"ORI\",\n                \"badge\": \"sr-competitor-25539.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dugopolje\",\n                \"abbreviation\": \"DUG\",\n                \"badge\": \"sr-competitor-43918.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199d437-52d7-73b2-b06b-2960aea77da9\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"competition\": {\n                \"name\": \"CAF Confederations Cup\",\n                \"country\": \"International Clubs\"\n            },\n            \"home_team\": {\n                \"name\": \"Azam\",\n                \"abbreviation\": \"AZA\",\n                \"badge\": \"sr-competitor-238650.png\"\n            },\n            \"away_team\": {\n                \"name\": \"KMKM\",\n                \"abbreviation\": \"KMK\",\n                \"badge\": \"sr-competitor-134290.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cea3-3a8d-7002-965e-845ff66d74ff\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"competition\": {\n                \"name\": \"Jordan League\",\n                \"country\": \"Jordan\"\n            },\n            \"home_team\": {\n                \"name\": \"Al Jazeera\",\n                \"abbreviation\": \"AJA\",\n                \"badge\": \"sr-competitor-54587.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Shabab AL Ordun\",\n                \"abbreviation\": \"SAO\",\n                \"badge\": \"sr-competitor-40646.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f594c53-4b3a-45bb-addf-d70b914c6662\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Serbia\"\n            },\n            \"home_team\": {\n                \"name\": \"Napredak\",\n                \"abbreviation\": \"NAP\",\n                \"badge\": \"sr-competitor-7674.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Vojvodina Novi Sad\",\n                \"abbreviation\": \"VOJ\",\n                \"badge\": \"sr-competitor-5150.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199c97c-d7b5-701c-8dc4-f6a5cf15a9cf\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Uzbekistan\"\n            },\n            \"home_team\": {\n                \"name\": \"Qizilqum\",\n                \"abbreviation\": \"QIZ\",\n                \"badge\": \"sr-competitor-40265.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dinamo\",\n                \"abbreviation\": \"DIN\",\n                \"badge\": \"sr-competitor-40259.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01990aa8-6087-72e5-ba61-eddf6684debd\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"competition\": {\n                \"name\": \"Parva Liga\",\n                \"country\": \"Bulgaria\"\n            },\n            \"home_team\": {\n                \"name\": \"Spartak Varna\",\n                \"abbreviation\": \"VAR\",\n                \"badge\": \"sr-competitor-3278.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Botev Plovdiv\",\n                \"abbreviation\": \"BOT\",\n                \"badge\": \"sr-competitor-5241.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199dcf1-205c-71e6-abef-02029def9e2e\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Romania\"\n            },\n            \"home_team\": {\n                \"name\": \"FK Csikszereda Miercurea Ciuc\",\n                \"abbreviation\": \"CSI\",\n                \"badge\": \"sr-competitor-391688.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Petrolul Ploiesti\",\n                \"abbreviation\": \"PPL\",\n                \"badge\": \"sr-competitor-25856.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-335d-71e3-bc4d-a665f3870277\",\n            \"kick_off\": \"2025-10-24 15:45:00\",\n            \"competition\": {\n                \"name\": \"Saudi Pro League\",\n                \"country\": \"Saudi Arabia\"\n            },\n            \"home_team\": {\n                \"name\": \"Al-Fateh\",\n                \"abbreviation\": \"FAT\",\n                \"badge\": \"sr-competitor-56023.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Al-Ittifaq\",\n                \"abbreviation\": \"ITT\",\n                \"badge\": \"sr-competitor-34318.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf7e-eee8-708f-8883-f6677eee9ab7\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Kategoria Superiore\",\n                \"country\": \"Albania\"\n            },\n            \"home_team\": {\n                \"name\": \"Af Elbasani\",\n                \"abbreviation\": \"ELB\",\n                \"badge\": \"sr-competitor-1021051.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Bylis Ballsh\",\n                \"abbreviation\": \"BYB\",\n                \"badge\": \"sr-competitor-37123.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf7e-eb69-735d-902d-088274437ec0\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Kategoria Superiore\",\n                \"country\": \"Albania\"\n            },\n            \"home_team\": {\n                \"name\": \"Vllaznia Shkoder\",\n                \"abbreviation\": \"KFV\",\n                \"badge\": \"sr-competitor-5418.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Tirana\",\n                \"abbreviation\": \"KFT\",\n                \"badge\": \"sr-competitor-5195.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-3f6f-704e-9051-b5115dabebd0\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ethiopia\"\n            },\n            \"home_team\": {\n                \"name\": \"Ethiopia Nigd Bank\",\n                \"abbreviation\": \"ETH\",\n                \"badge\": \"sr-competitor-307288.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Shire Endaselassie FC\",\n                \"abbreviation\": \"SHI\",\n                \"badge\": \"sr-competitor-524392.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019971b9-a6e6-739c-9f63-772dade191f7\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ghana\"\n            },\n            \"home_team\": {\n                \"name\": \"Heart of Lions\",\n                \"abbreviation\": \"HOL\",\n                \"badge\": \"sr-competitor-42613.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Basake Holy Stars\",\n                \"abbreviation\": \"BAS\",\n                \"badge\": \"sr-competitor-949957.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cedc-0e49-716a-a861-1a6744db34fd\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Nigeria\"\n            },\n            \"home_team\": {\n                \"name\": \"Katsina United FC\",\n                \"abbreviation\": \"KAT\",\n                \"badge\": \"sr-competitor-308036.png\"\n            },\n            \"away_team\": {\n                \"name\": \"El Kanemi Warriors\",\n                \"abbreviation\": \"EKW\",\n                \"badge\": \"sr-competitor-193318.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019996d8-e072-733b-bf40-cf672e3049c3\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ukraine\"\n            },\n            \"home_team\": {\n                \"name\": \"Rivne\",\n                \"abbreviation\": \"VRI\",\n                \"badge\": \"sr-competitor-213180.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Lugansk\",\n                \"abbreviation\": \"ZOR\",\n                \"badge\": \"sr-competitor-5987.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-3369-724c-bfb4-e2225e25e2ea\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Virsliga\",\n                \"country\": \"Latvia\"\n            },\n            \"home_team\": {\n                \"name\": \"Riga FC\",\n                \"abbreviation\": \"RFC\",\n                \"badge\": \"sr-competitor-162368.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Tukums 2000\",\n                \"abbreviation\": \"TUK\",\n                \"badge\": \"sr-competitor-36080.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-3fb7-711d-b8a1-62cc15cad216\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"competition\": {\n                \"name\": \"Saudi Pro League\",\n                \"country\": \"Saudi Arabia\"\n            },\n            \"home_team\": {\n                \"name\": \"Neom SC\",\n                \"abbreviation\": \"NEO\",\n                \"badge\": \"sr-competitor-529781.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Al-Khaleej\",\n                \"abbreviation\": \"KHA\",\n                \"badge\": \"sr-competitor-167228.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f594c48-f4b6-46d6-baff-89b8d2dabc91\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Serbia\"\n            },\n            \"home_team\": {\n                \"name\": \"Novi Pazar\",\n                \"abbreviation\": \"NPA\",\n                \"badge\": \"sr-competitor-25736.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Javor\",\n                \"abbreviation\": \"JAV\",\n                \"badge\": \"sr-competitor-5144.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f594c4c-46ff-4b9c-bfb4-142ec0a7c9c9\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Serbia\"\n            },\n            \"home_team\": {\n                \"name\": \"Partizan Belgrade\",\n                \"abbreviation\": \"PAR\",\n                \"badge\": \"sr-competitor-5152.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Mladost Lucani\",\n                \"abbreviation\": \"MLA\",\n                \"badge\": \"sr-competitor-7771.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f371278-ba83-4efe-9ee4-0ab029dcdf3f\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"1. Liga\",\n                \"country\": \"Poland\"\n            },\n            \"home_team\": {\n                \"name\": \"Znicz Pruszkow\",\n                \"abbreviation\": \"ZNI\",\n                \"badge\": \"sr-competitor-7923.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Niepołomice\",\n                \"abbreviation\": \"PUS\",\n                \"badge\": \"sr-competitor-38729.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5384da-568c-4136-849a-2d9d563fd702\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"2. Liga\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Austria Klagenfurt\",\n                \"abbreviation\": \"SKA\",\n                \"badge\": \"sr-competitor-43254.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Sturm II\",\n                \"abbreviation\": \"STU\",\n                \"badge\": \"sr-competitor-2103.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f53859e-7bc7-46de-b520-be93123bd140\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"2. Liga\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"First Vienna\",\n                \"abbreviation\": \"VIE\",\n                \"badge\": \"sr-competitor-2054.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Admira Wacker\",\n                \"abbreviation\": \"ADM\",\n                \"badge\": \"sr-competitor-2050.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5385df-0d09-42fc-8d1a-2532e5be7c59\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"2. Liga\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Liefering\",\n                \"abbreviation\": \"FCL\",\n                \"badge\": \"sr-competitor-7790.png\"\n            },\n            \"away_team\": {\n                \"name\": \"St. Polten\",\n                \"abbreviation\": \"SKN\",\n                \"badge\": \"sr-competitor-2119.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5385ef-9703-4026-ab35-bf5eb9144ec6\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"2. Liga\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"SW Bregenz\",\n                \"abbreviation\": \"SWB\",\n                \"badge\": \"sr-competitor-7786.png\"\n            },\n            \"away_team\": {\n                \"name\": \"KSV 1919\",\n                \"abbreviation\": \"KSV\",\n                \"badge\": \"sr-competitor-2067.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5385ff-748c-4e5c-a96f-188ec1ef8053\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"2. Liga\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Stripfing\",\n                \"abbreviation\": \"SVS\",\n                \"badge\": \"sr-competitor-218138.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Hogo Wels\",\n                \"abbreviation\": \"HER\",\n                \"badge\": \"sr-competitor-459941.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f6a7d5e-7f67-4c68-a307-f85eb9d126b0\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"Ekstraklasa\",\n                \"country\": \"Poland\"\n            },\n            \"home_team\": {\n                \"name\": \"Nieciecza\",\n                \"abbreviation\": \"NIE\",\n                \"badge\": \"sr-competitor-36851.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Zaglebie Lubin\",\n                \"abbreviation\": \"ZAG\",\n                \"badge\": \"sr-competitor-3113.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f310981-f91d-4d86-b381-9704ea569dd3\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"FNL\",\n                \"country\": \"Czechia\"\n            },\n            \"home_team\": {\n                \"name\": \"Ceske Budejovice\",\n                \"abbreviation\": \"BUD\",\n                \"badge\": \"sr-competitor-2221.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Prostejov\",\n                \"abbreviation\": \"1SK\",\n                \"badge\": \"sr-competitor-76775.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f4b292c-581e-4934-ae6d-6030078f9c9c\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"FNL\",\n                \"country\": \"Czechia\"\n            },\n            \"home_team\": {\n                \"name\": \"Usti nad Labem\",\n                \"abbreviation\": \"UST\",\n                \"badge\": \"sr-competitor-4868.png\"\n            },\n            \"away_team\": {\n                \"name\": \"FC Banik Ostrava B\",\n                \"abbreviation\": \"BAN\",\n                \"badge\": \"sr-competitor-610536.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f2ebf0a-2771-47e7-b11d-c9e8a2d991f9\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"HNL\",\n                \"country\": \"Croatia\"\n            },\n            \"home_team\": {\n                \"name\": \"Gorica\",\n                \"abbreviation\": \"GOR\",\n                \"badge\": \"sr-competitor-43917.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Hajduk\",\n                \"abbreviation\": \"HAJ\",\n                \"badge\": \"sr-competitor-2036.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019a02c9-cd9c-72d1-bf0b-dba91651a0ae\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"Premijer Liga\",\n                \"country\": \"Bosnia & Herzegovina\"\n            },\n            \"home_team\": {\n                \"name\": \"Sarajevo\",\n                \"abbreviation\": \"FKS\",\n                \"badge\": \"sr-competitor-5237.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Sloga\",\n                \"abbreviation\": \"SLD\",\n                \"badge\": \"sr-competitor-37064.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019972cc-5d22-71c4-b115-05f25be621ee\",\n            \"kick_off\": \"2025-10-24 17:15:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Malta\"\n            },\n            \"home_team\": {\n                \"name\": \"Mosta\",\n                \"abbreviation\": \"MOS\",\n                \"badge\": \"sr-competitor-33572.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Zabbar Saint Patrick FC\",\n                \"abbreviation\": \"PAT\",\n                \"badge\": \"sr-competitor-33578.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01991f9d-6636-7310-868f-31ade70e838f\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"competition\": {\n                \"name\": \"2. Bundesliga\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Greuther Furth\",\n                \"abbreviation\": \"SGF\",\n                \"badge\": \"sr-competitor-2551.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Karlsruhe\",\n                \"abbreviation\": \"KSC\",\n                \"badge\": \"sr-competitor-2553.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01991faf-7855-7358-8988-61f788a677ae\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"competition\": {\n                \"name\": \"2. Bundesliga\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Schalke\",\n                \"abbreviation\": \"SCH\",\n                \"badge\": \"sr-competitor-2530.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Darmstadt\",\n                \"abbreviation\": \"D98\",\n                \"badge\": \"sr-competitor-2576.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199d437-6b00-71cf-b93c-abc77d3e8a8b\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"competition\": {\n                \"name\": \"Jordan League\",\n                \"country\": \"Jordan\"\n            },\n            \"home_team\": {\n                \"name\": \"AL Salt\",\n                \"abbreviation\": \"SAL\",\n                \"badge\": \"sr-competitor-321509.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Ramtha\",\n                \"abbreviation\": \"RSC\",\n                \"badge\": \"sr-competitor-54595.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf11-22d5-7369-a0eb-b2af60486ebe\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Rwanda\"\n            },\n            \"home_team\": {\n                \"name\": \"Rayon Sports\",\n                \"abbreviation\": \"RAY\",\n                \"badge\": \"sr-competitor-134272.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Amagaju\",\n                \"abbreviation\": \"AMA\",\n                \"badge\": \"sr-competitor-380062.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01993059-f253-70a2-bf1b-d66dd21b8946\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"1. Division\",\n                \"country\": \"Denmark\"\n            },\n            \"home_team\": {\n                \"name\": \"B93 Copenhagen\",\n                \"abbreviation\": \"B93\",\n                \"badge\": \"sr-competitor-1298.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Horsens\",\n                \"abbreviation\": \"HOR\",\n                \"badge\": \"sr-competitor-1297.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01994ce3-f0ed-720c-9a2a-62cbada98a8f\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"1. Division\",\n                \"country\": \"Denmark\"\n            },\n            \"home_team\": {\n                \"name\": \"Kolding IF\",\n                \"abbreviation\": \"KIF\",\n                \"badge\": \"sr-competitor-22162.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Middelfart\",\n                \"abbreviation\": \"MDF\",\n                \"badge\": \"sr-competitor-22163.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-5266-70b3-b55b-1c38cf146a35\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"1. Lig\",\n                \"country\": \"Turkiye\"\n            },\n            \"home_team\": {\n                \"name\": \"Sivasspor\",\n                \"abbreviation\": \"SIV\",\n                \"badge\": \"sr-competitor-3076.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Hatayspor\",\n                \"abbreviation\": \"HAT\",\n                \"badge\": \"sr-competitor-3091.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-46f0-7176-99a7-c294f230c4ff\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"2nd Division\",\n                \"country\": \"Denmark\"\n            },\n            \"home_team\": {\n                \"name\": \"Helsingoer\",\n                \"abbreviation\": \"HEL\",\n                \"badge\": \"sr-competitor-6392.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Thisted FC\",\n                \"abbreviation\": \"THI\",\n                \"badge\": \"sr-competitor-1403.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-46f5-7013-86ec-95b09b3e27dd\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"2nd Division\",\n                \"country\": \"Denmark\"\n            },\n            \"home_team\": {\n                \"name\": \"Vendsyssel\",\n                \"abbreviation\": \"VEN\",\n                \"badge\": \"sr-competitor-1314.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Fremad Amager\",\n                \"abbreviation\": \"FAM\",\n                \"badge\": \"sr-competitor-35412.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01993881-375b-700c-9b28-6a6e7ee203b9\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"3. Liga\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Wiesbaden\",\n                \"abbreviation\": \"WEH\",\n                \"badge\": \"sr-competitor-2597.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Aachen\",\n                \"abbreviation\": \"AAC\",\n                \"badge\": \"sr-competitor-2546.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199d437-2a7c-70fd-8594-c2ee0b2a23cf\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"CAF Confederations Cup\",\n                \"country\": \"International Clubs\"\n            },\n            \"home_team\": {\n                \"name\": \"Belouizdad\",\n                \"abbreviation\": \"CRB\",\n                \"badge\": \"sr-competitor-42207.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Hafia FC\",\n                \"abbreviation\": \"HAF\",\n                \"badge\": \"sr-competitor-412603.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01990aa8-728b-72f4-8fe8-de77c9b7cefd\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Parva Liga\",\n                \"country\": \"Bulgaria\"\n            },\n            \"home_team\": {\n                \"name\": \"Lok Sofia\",\n                \"abbreviation\": \"LSO\",\n                \"badge\": \"sr-competitor-3277.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Lok Plovdiv\",\n                \"abbreviation\": \"LOK\",\n                \"badge\": \"sr-competitor-3272.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf10-cc26-7146-9087-779dff1f696d\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Uganda\"\n            },\n            \"home_team\": {\n                \"name\": \"SC Villa\",\n                \"abbreviation\": \"VIL\",\n                \"badge\": \"sr-competitor-375412.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Uganda Police FC\",\n                \"abbreviation\": \"UGA\",\n                \"badge\": \"sr-competitor-375398.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-5257-72c5-9e95-2cee66e27494\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Bavaria\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Bayreuth\",\n                \"abbreviation\": \"BAY\",\n                \"badge\": \"sr-competitor-5050.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Augsburg II\",\n                \"abbreviation\": \"AUG\",\n                \"badge\": \"sr-competitor-70944.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-525f-709c-bb47-5e700d550000\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Bavaria\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Buchbach\",\n                \"abbreviation\": \"BUC\",\n                \"badge\": \"sr-competitor-23949.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Nuremberg II\",\n                \"abbreviation\": \"FCN\",\n                \"badge\": \"sr-competitor-5872.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01993d70-b3d7-70f3-ab62-03cd0d4c6d01\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Bavaria\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Burghausen\",\n                \"abbreviation\": \"BUR\",\n                \"badge\": \"sr-competitor-2559.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Wurzburg\",\n                \"abbreviation\": \"FWK\",\n                \"badge\": \"sr-competitor-23947.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf47-c64e-71ff-821a-916bc88b36d8\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Deutschlandsb. SC\",\n                \"abbreviation\": \"DSC\",\n                \"badge\": \"sr-competitor-73883.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Junge Wikinger Ried\",\n                \"abbreviation\": \"JUN\",\n                \"badge\": \"sr-competitor-460243.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf47-cf77-7322-b362-cdcad1e3f76b\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Gleisdorf\",\n                \"abbreviation\": \"GLE\",\n                \"badge\": \"sr-competitor-6280.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Treibach\",\n                \"abbreviation\": \"TRE\",\n                \"badge\": \"sr-competitor-2164.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf4a-060e-72ef-a547-5f949e502259\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Kalsdorf\",\n                \"abbreviation\": \"KAL\",\n                \"badge\": \"sr-competitor-2158.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Union Gurten\",\n                \"abbreviation\": \"UGU\",\n                \"badge\": \"sr-competitor-162364.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf47-bf90-737f-b6fb-a1d07ae18161\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Lafnitz\",\n                \"abbreviation\": \"SVL\",\n                \"badge\": \"sr-competitor-105969.png\"\n            },\n            \"away_team\": {\n                \"name\": \"St. Anna\",\n                \"abbreviation\": \"USV\",\n                \"badge\": \"sr-competitor-364778.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf47-b656-714b-9090-876ef8591361\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"SV Wallern\",\n                \"abbreviation\": \"WAL\",\n                \"badge\": \"sr-competitor-36094.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Oedt\",\n                \"abbreviation\": \"OED\",\n                \"badge\": \"sr-competitor-35671.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf47-d7db-716d-84ef-2169cdf0b927\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Weiz\",\n                \"abbreviation\": \"WEI\",\n                \"badge\": \"sr-competitor-2143.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Atus Velden\",\n                \"abbreviation\": \"ATU\",\n                \"badge\": \"sr-competitor-600490.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199591e-d782-7061-bb8b-c6b57971b78e\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga North\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Altona\",\n                \"abbreviation\": \"ALT\",\n                \"badge\": \"sr-competitor-6183.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Phonix Lubeck\",\n                \"abbreviation\": \"PHO\",\n                \"badge\": \"sr-competitor-447507.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199616d-a024-7337-851b-204d8ed2ab35\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga North\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Meppen\",\n                \"abbreviation\": \"MEP\",\n                \"badge\": \"sr-competitor-5804.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Drochtersen/Assel\",\n                \"abbreviation\": \"DRO\",\n                \"badge\": \"sr-competitor-24148.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019947e1-fba4-716f-aa64-d11abd0be6dc\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Northeast\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Halle\",\n                \"abbreviation\": \"HFC\",\n                \"badge\": \"sr-competitor-2582.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Lok Leipzig\",\n                \"abbreviation\": \"LOK\",\n                \"badge\": \"sr-competitor-24093.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019943f3-23f8-7104-92f6-6bd0c6496d61\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Northeast\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Luckenwalde\",\n                \"abbreviation\": \"LUC\",\n                \"badge\": \"sr-competitor-36358.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Babelsberg\",\n                \"abbreviation\": \"BAB\",\n                \"badge\": \"sr-competitor-2549.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f76c66e-90a9-451e-a935-c61af8ecded9\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Ost\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Parndorf\",\n                \"abbreviation\": \"PAR\",\n                \"badge\": \"sr-competitor-2090.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Donaufeld\",\n                \"abbreviation\": \"DFL\",\n                \"badge\": \"sr-competitor-2100.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cdc7-55fe-7348-b7bb-e927066c5bda\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Ost\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"SV Donau\",\n                \"abbreviation\": \"SVD\",\n                \"badge\": \"sr-competitor-5040.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Wiener Sport-Club\",\n                \"abbreviation\": \"WSC\",\n                \"badge\": \"sr-competitor-2066.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01994cbf-4639-72dc-aedf-18c214ca1208\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Super Lig\",\n                \"country\": \"Turkiye\"\n            },\n            \"home_team\": {\n                \"name\": \"Karagümrük\",\n                \"abbreviation\": \"KAR\",\n                \"badge\": \"sr-competitor-4954.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Kayserispor\",\n                \"abbreviation\": \"KAY\",\n                \"badge\": \"sr-competitor-3072.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9dcd1d0f-df18-4ceb-a08e-a6d54d38afa9\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Superettan\",\n                \"country\": \"Sweden\"\n            },\n            \"home_team\": {\n                \"name\": \"Orgryte\",\n                \"abbreviation\": \"ORG\",\n                \"badge\": \"sr-competitor-1766.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Vasteraas\",\n                \"abbreviation\": \"VAS\",\n                \"badge\": \"sr-competitor-1775.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f19042a-3c9f-4907-8990-e18719cb4cab\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Denmark\"\n            },\n            \"home_team\": {\n                \"name\": \"Aarhus\",\n                \"abbreviation\": \"AGF\",\n                \"badge\": \"sr-competitor-1291.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Nordsjaelland\",\n                \"abbreviation\": \"NJA\",\n                \"badge\": \"sr-competitor-1292.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f76c671-bf83-47e1-be54-b14b85554655\",\n            \"kick_off\": \"2025-10-24 18:10:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Ost\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Favoritner AC\",\n                \"abbreviation\": \"FAV\",\n                \"badge\": \"sr-competitor-43848.png\"\n            },\n            \"away_team\": {\n                \"name\": \"SV Oberwart\",\n                \"abbreviation\": \"OBE\",\n                \"badge\": \"sr-competitor-2139.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f36d20b-579a-461e-86d0-d75bd077d508\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Challenge League\",\n                \"country\": \"Switzerland\"\n            },\n            \"home_team\": {\n                \"name\": \"Neuchatel Xamax\",\n                \"abbreviation\": \"NEX\",\n                \"badge\": \"sr-competitor-2451.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Rapperswil-Jona\",\n                \"abbreviation\": \"RAJ\",\n                \"badge\": \"sr-competitor-37390.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f36d20a-0c6d-4b38-ba17-bcd0a012814a\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Challenge League\",\n                \"country\": \"Switzerland\"\n            },\n            \"home_team\": {\n                \"name\": \"Stade Nyonnais\",\n                \"abbreviation\": \"SNY\",\n                \"badge\": \"sr-competitor-2490.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Yverdon-Sport\",\n                \"abbreviation\": \"YVS\",\n                \"badge\": \"sr-competitor-2460.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199616d-9971-722d-b77f-75f8c793361e\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga North\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Lubeck\",\n                \"abbreviation\": \"VBL\",\n                \"badge\": \"sr-competitor-2560.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Emden\",\n                \"abbreviation\": \"EMD\",\n                \"badge\": \"sr-competitor-5047.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f3e968f-921e-4ec3-86ee-f7bac89645a2\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Ost\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Krems\",\n                \"abbreviation\": \"KRE\",\n                \"badge\": \"sr-competitor-2106.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Horn\",\n                \"abbreviation\": \"SVH\",\n                \"badge\": \"sr-competitor-2111.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f76c675-116a-4d18-807e-ba2b327f3fce\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Ost\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Traiskirchen\",\n                \"abbreviation\": \"TRA\",\n                \"badge\": \"sr-competitor-214588.png\"\n            },\n            \"away_team\": {\n                \"name\": \"FC Marchfeld Donauauen\",\n                \"abbreviation\": \"MAR\",\n                \"badge\": \"sr-competitor-459943.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5bd01c-af76-49b2-b4fa-5bf15edf373f\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Romania\"\n            },\n            \"home_team\": {\n                \"name\": \"Champions FC Arges\",\n                \"abbreviation\": \"ARG\",\n                \"badge\": \"sr-competitor-116221.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dinamo Bucuresti\",\n                \"abbreviation\": \"DIN\",\n                \"badge\": \"sr-competitor-3292.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cd59-4fd5-73d4-a1b5-246745ff67d6\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"competition\": {\n                \"name\": \"Liga Portugal 2\",\n                \"country\": \"Portugal\"\n            },\n            \"home_team\": {\n                \"name\": \"SCU Torreense\",\n                \"abbreviation\": \"TOR\",\n                \"badge\": \"sr-competitor-25787.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Oliveirense\",\n                \"abbreviation\": \"OLI\",\n                \"badge\": \"sr-competitor-21831.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f531fb3-ca49-4ff9-824d-b32f137099e4\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Challenger Pro League\",\n                \"country\": \"Belgium\"\n            },\n            \"home_team\": {\n                \"name\": \"Royal Francs Borains\",\n                \"abbreviation\": \"RFB\",\n                \"badge\": \"sr-competitor-280181.png\"\n            },\n            \"away_team\": {\n                \"name\": \"KAA Gent\",\n                \"abbreviation\": \"KGE\",\n                \"badge\": \"sr-competitor-76451.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f531fb7-af85-42bf-815b-f495640b5486\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Challenger Pro League\",\n                \"country\": \"Belgium\"\n            },\n            \"home_team\": {\n                \"name\": \"Seraing\",\n                \"abbreviation\": \"SER\",\n                \"badge\": \"sr-competitor-34985.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Lierse Kempenzonen\",\n                \"abbreviation\": \"LIE\",\n                \"badge\": \"sr-competitor-116075.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56cd-7287-8f11-488f06c2fc73\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Ajax\",\n                \"abbreviation\": \"AJA\",\n                \"badge\": \"sr-competitor-46160.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Emmen\",\n                \"abbreviation\": \"EMM\",\n                \"badge\": \"sr-competitor-2965.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56b5-71c5-9048-74de7e57a250\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Almere\",\n                \"abbreviation\": \"ALM\",\n                \"badge\": \"sr-competitor-2990.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Alkmaar\",\n                \"abbreviation\": \"AZ\",\n                \"badge\": \"sr-competitor-46161.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56bb-726e-9510-609c326e03ae\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"De Graafschap\",\n                \"abbreviation\": \"GRA\",\n                \"badge\": \"sr-competitor-2949.png\"\n            },\n            \"away_team\": {\n                \"name\": \"PSV\",\n                \"abbreviation\": \"PSV\",\n                \"badge\": \"sr-competitor-46168.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56c1-73d6-9d83-c927e1170fca\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"FC Eindhoven\",\n                \"abbreviation\": \"EIN\",\n                \"badge\": \"sr-competitor-2994.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Venlo\",\n                \"abbreviation\": \"VEN\",\n                \"badge\": \"sr-competitor-2980.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56c8-729b-936f-8877500e8f6c\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Helmond\",\n                \"abbreviation\": \"HEL\",\n                \"badge\": \"sr-competitor-2974.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dordrecht\",\n                \"abbreviation\": \"DOR\",\n                \"badge\": \"sr-competitor-2973.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56d4-710f-9afb-45d4055c1fcb\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Utrecht\",\n                \"abbreviation\": \"UTR\",\n                \"badge\": \"sr-competitor-53067.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Oss\",\n                \"abbreviation\": \"OSS\",\n                \"badge\": \"sr-competitor-2978.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01991ac0-1391-7177-a7bf-2e63ca9c9356\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Vitesse\",\n                \"abbreviation\": \"VIT\",\n                \"badge\": \"sr-competitor-2958.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Roda\",\n                \"abbreviation\": \"ROD\",\n                \"badge\": \"sr-competitor-2954.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56db-70b9-93da-88ceada0f406\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Waalwijk\",\n                \"abbreviation\": \"WAA\",\n                \"badge\": \"sr-competitor-2956.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Cambuur\",\n                \"abbreviation\": \"CAM\",\n                \"badge\": \"sr-competitor-2970.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56af-711e-8571-93e78330e435\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eredivisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Heerenveen\",\n                \"abbreviation\": \"HEE\",\n                \"badge\": \"sr-competitor-2964.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Breda\",\n                \"abbreviation\": \"BRE\",\n                \"badge\": \"sr-competitor-2947.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f42d5ae-7e4a-41bc-8c9a-3e5dedaf6d4b\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Bastia\",\n                \"abbreviation\": \"SCB\",\n                \"badge\": \"sr-competitor-1655.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Stade Lavallois\",\n                \"abbreviation\": \"LAV\",\n                \"badge\": \"sr-competitor-1673.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f42d5a9-e4c4-4c44-8351-c1e9a660d254\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Guingamp\",\n                \"abbreviation\": \"EAG\",\n                \"badge\": \"sr-competitor-1654.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Clermont Foot\",\n                \"abbreviation\": \"CFA\",\n                \"badge\": \"sr-competitor-1680.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f956ca3-783b-4cce-a49f-3f69d4898e54\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Le Mans\",\n                \"abbreviation\": \"MAN\",\n                \"badge\": \"sr-competitor-1672.png\"\n            },\n            \"away_team\": {\n                \"name\": \"US Boulogne\",\n                \"abbreviation\": \"BOU\",\n                \"badge\": \"sr-competitor-1711.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f42d5a7-3c34-4bfb-b13b-923a0316a760\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Pau\",\n                \"abbreviation\": \"PAU\",\n                \"badge\": \"sr-competitor-1685.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dunkerque\",\n                \"abbreviation\": \"DUN\",\n                \"badge\": \"sr-competitor-6918.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f42d5ac-f295-4f22-943c-f466550506b1\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Red Star\",\n                \"abbreviation\": \"RST\",\n                \"badge\": \"sr-competitor-52874.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Grenoble\",\n                \"abbreviation\": \"GRE\",\n                \"badge\": \"sr-competitor-1671.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f42d5af-f49f-4e17-833b-0f8d5e9d7567\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Reims\",\n                \"abbreviation\": \"SDR\",\n                \"badge\": \"sr-competitor-1682.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Troyes\",\n                \"abbreviation\": \"EST\",\n                \"badge\": \"sr-competitor-1652.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-69ca-72af-a76d-c5598a4d4dad\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Saudi Pro League\",\n                \"country\": \"Saudi Arabia\"\n            },\n            \"home_team\": {\n                \"name\": \"Al-Ittihad\",\n                \"abbreviation\": \"ITJ\",\n                \"badge\": \"sr-competitor-34315.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Al Hilal\",\n                \"abbreviation\": \"HIL\",\n                \"badge\": \"sr-competitor-21895.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f36d207-0c37-446f-8a9f-ef961b7e2fc4\",\n            \"kick_off\": \"2025-10-24 19:15:00\",\n            \"competition\": {\n                \"name\": \"Challenge League\",\n                \"country\": \"Switzerland\"\n            },\n            \"home_team\": {\n                \"name\": \"Aarau\",\n                \"abbreviation\": \"AAR\",\n                \"badge\": \"sr-competitor-2447.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Wil\",\n                \"abbreviation\": \"WIL\",\n                \"badge\": \"sr-competitor-2455.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f371270-9086-4305-b93f-bcdbd2d5f1e0\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"1. Liga\",\n                \"country\": \"Poland\"\n            },\n            \"home_team\": {\n                \"name\": \"Opole\",\n                \"abbreviation\": \"ODR\",\n                \"badge\": \"sr-competitor-7916.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Ruch Chorzow\",\n                \"abbreviation\": \"CHO\",\n                \"badge\": \"sr-competitor-3105.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019914f4-fced-7085-bbb3-67ebdd1ec7f3\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Bundesliga\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Bremen\",\n                \"abbreviation\": \"SVW\",\n                \"badge\": \"sr-competitor-2534.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Union Berlin\",\n                \"abbreviation\": \"UNI\",\n                \"badge\": \"sr-competitor-2547.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f6a7d65-42c9-42e0-84a3-30e00f6b6287\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Ekstraklasa\",\n                \"country\": \"Poland\"\n            },\n            \"home_team\": {\n                \"name\": \"Motor Lublin\",\n                \"abbreviation\": \"MOT\",\n                \"badge\": \"sr-competitor-7915.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Widzew Lodz\",\n                \"abbreviation\": \"WLO\",\n                \"badge\": \"sr-competitor-3115.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f4a124b-6c8d-49e6-859f-65e71bad9dc7\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"LaLiga 2\",\n                \"country\": \"Spain\"\n            },\n            \"home_team\": {\n                \"name\": \"Huesca\",\n                \"abbreviation\": \"HUE\",\n                \"badge\": \"sr-competitor-24265.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Las Palmas\",\n                \"abbreviation\": \"LPA\",\n                \"badge\": \"sr-competitor-6577.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-69ff-734e-a4c3-b07fe0c3221d\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Scottish Cup\",\n                \"country\": \"Scotland\"\n            },\n            \"home_team\": {\n                \"name\": \"Boness Athletic FC\",\n                \"abbreviation\": \"BON\",\n                \"badge\": \"sr-competitor-1147621.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Linlithgow Rose\",\n                \"abbreviation\": \"LIN\",\n                \"badge\": \"sr-competitor-8064.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f854676-5b78-48e2-8e12-788c77f31564\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Serie B\",\n                \"country\": \"Italy\"\n            },\n            \"home_team\": {\n                \"name\": \"Modena\",\n                \"abbreviation\": \"MOD\",\n                \"badge\": \"sr-competitor-2706.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Empoli\",\n                \"abbreviation\": \"EMP\",\n                \"badge\": \"sr-competitor-2705.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-69e7-735c-a076-0778d50dbe4b\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Serie C, Group A\",\n                \"country\": \"Italy\"\n            },\n            \"home_team\": {\n                \"name\": \"Novara\",\n                \"abbreviation\": \"NOV\",\n                \"badge\": \"sr-competitor-2767.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Virtus Verona\",\n                \"abbreviation\": \"VIR\",\n                \"badge\": \"sr-competitor-113761.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01993f4c-d6ec-70be-af12-78b380cad174\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Serie C, Group C\",\n                \"country\": \"Italy\"\n            },\n            \"home_team\": {\n                \"name\": \"Foggia\",\n                \"abbreviation\": \"CAF\",\n                \"badge\": \"sr-competitor-2803.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Asd Team Altamura\",\n                \"abbreviation\": \"ALT\",\n                \"badge\": \"sr-competitor-368724.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf7e-ce60-7180-9fcd-38e935dc578d\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Championship\",\n                \"country\": \"Northern Ireland\"\n            },\n            \"home_team\": {\n                \"name\": \"Annagh United\",\n                \"abbreviation\": \"ANN\",\n                \"badge\": \"sr-competitor-39224.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Warrenpoint Town\",\n                \"abbreviation\": \"WAT\",\n                \"badge\": \"sr-competitor-43204.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5d8465-acb5-4c5b-ac32-1c8a523c5992\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Cymru Premier\",\n                \"country\": \"Wales\"\n            },\n            \"home_team\": {\n                \"name\": \"Llanelli Town\",\n                \"abbreviation\": \"LLA\",\n                \"badge\": \"sr-competitor-4916.png\"\n            },\n            \"away_team\": {\n                \"name\": \"New Saints\",\n                \"abbreviation\": \"TNS\",\n                \"badge\": \"sr-competitor-4921.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-6a5c-715f-a6c4-2df186246be1\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"FA Trophy\",\n                \"country\": \"England\"\n            },\n            \"home_team\": {\n                \"name\": \"Dunston Uts\",\n                \"abbreviation\": \"DU\",\n                \"badge\": \"sr-competitor-46967.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Hebburn Town\",\n                \"abbreviation\": \"HEB\",\n                \"badge\": \"sr-competitor-47044.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199bb65-8cb8-7263-95d7-069f35d260c8\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"League 1\",\n                \"country\": \"Scotland\"\n            },\n            \"home_team\": {\n                \"name\": \"Hamilton\",\n                \"abbreviation\": \"HAM\",\n                \"badge\": \"sr-competitor-2376.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Queen of The South\",\n                \"abbreviation\": \"QOS\",\n                \"badge\": \"sr-competitor-2368.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01991faf-909d-733b-9103-ed144b71a4f6\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Ligue 1\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Paris FC\",\n                \"abbreviation\": \"PAR\",\n                \"badge\": \"sr-competitor-6070.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Nantes\",\n                \"abbreviation\": \"FCN\",\n                \"badge\": \"sr-competitor-1647.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9dc0fcf6-4c44-4916-8d89-5e03e852fba0\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Premier Division\",\n                \"country\": \"Ireland\"\n            },\n            \"home_team\": {\n                \"name\": \"Galway Utd\",\n                \"abbreviation\": \"GAL\",\n                \"badge\": \"sr-competitor-3172.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Drogheda United\",\n                \"abbreviation\": \"DRO\",\n                \"badge\": \"sr-competitor-3180.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9dc0fcf8-9733-4fc3-86c8-601653993f0a\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Premier Division\",\n                \"country\": \"Ireland\"\n            },\n            \"home_team\": {\n                \"name\": \"St. Patrick´s\",\n                \"abbreviation\": \"STP\",\n                \"badge\": \"sr-competitor-3169.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Waterford\",\n                \"abbreviation\": \"WAT\",\n                \"badge\": \"sr-competitor-3194.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f333761-648f-4ed5-a423-ad884df5d852\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Pro League\",\n                \"country\": \"Belgium\"\n            },\n            \"home_team\": {\n                \"name\": \"Charleroi\",\n                \"abbreviation\": \"RCH\",\n                \"badge\": \"sr-competitor-2898.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Anderlecht\",\n                \"abbreviation\": \"RSC\",\n                \"badge\": \"sr-competitor-2900.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf7e-df6a-7337-985f-6abadbafc4cb\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Scottish Cup\",\n                \"country\": \"Scotland\"\n            },\n            \"home_team\": {\n                \"name\": \"Formartine\",\n                \"abbreviation\": \"FOR\",\n                \"badge\": \"sr-competitor-76347.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Buckie Thistle\",\n                \"abbreviation\": \"BUC\",\n                \"badge\": \"sr-competitor-2389.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f67afe9-c2dd-490c-ae3a-edbef2297fce\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Serie A\",\n                \"country\": \"Italy\"\n            },\n            \"home_team\": {\n                \"name\": \"Milan\",\n                \"abbreviation\": \"ACM\",\n                \"badge\": \"sr-competitor-2692.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Pisa\",\n                \"abbreviation\": \"PIS\",\n                \"badge\": \"sr-competitor-2737.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199d437-802e-7396-9ad6-73930fde7491\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"competition\": {\n                \"name\": \"CAF Confederations Cup\",\n                \"country\": \"International Clubs\"\n            },\n            \"home_team\": {\n                \"name\": \"Wydad\",\n                \"abbreviation\": \"WAC\",\n                \"badge\": \"sr-competitor-36268.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Asante\",\n                \"abbreviation\": \"ASA\",\n                \"badge\": \"sr-competitor-41755.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f8265bc-188f-46cc-9cea-c1e45044e0f9\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"competition\": {\n                \"name\": \"Championship\",\n                \"country\": \"England\"\n            },\n            \"home_team\": {\n                \"name\": \"Preston\",\n                \"abbreviation\": \"PNE\",\n                \"badge\": \"sr-competitor-21.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Sheffield Utd\",\n                \"abbreviation\": \"SHU\",\n                \"badge\": \"sr-competitor-15.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199812c-a204-7009-a7ba-7f55644bdb1f\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"competition\": {\n                \"name\": \"LaLiga\",\n                \"country\": \"Spain\"\n            },\n            \"home_team\": {\n                \"name\": \"Real Sociedad\",\n                \"abbreviation\": \"RSO\",\n                \"badge\": \"sr-competitor-2824.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Sevilla\",\n                \"abbreviation\": \"SEV\",\n                \"badge\": \"sr-competitor-2833.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019972cc-597d-730f-872a-d3af987095ef\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Malta\"\n            },\n            \"home_team\": {\n                \"name\": \"Gzira Utd\",\n                \"abbreviation\": \"GZI\",\n                \"badge\": \"sr-competitor-58327.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Tarxien R\",\n                \"abbreviation\": \"TAR\",\n                \"badge\": \"sr-competitor-33580.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9fae436a-e5cd-49c4-9830-be1a0c2b2200\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"England\"\n            },\n            \"home_team\": {\n                \"name\": \"Leeds\",\n                \"abbreviation\": \"LEE\",\n                \"badge\": \"sr-competitor-34.png\"\n            },\n            \"away_team\": {\n                \"name\": \"West Ham\",\n                \"abbreviation\": \"WHU\",\n                \"badge\": \"sr-competitor-37.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01992054-49f4-70a7-a82e-a0d3e3caf49a\",\n            \"kick_off\": \"2025-10-24 20:15:00\",\n            \"competition\": {\n                \"name\": \"Liga Portugal\",\n                \"country\": \"Portugal\"\n            },\n            \"home_team\": {\n                \"name\": \"Alverca\",\n                \"abbreviation\": \"ALV\",\n                \"badge\": \"sr-competitor-3012.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Gil Vicente\",\n                \"abbreviation\": \"GIL\",\n                \"badge\": \"sr-competitor-3010.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cd59-552a-7013-90ae-061b717839ad\",\n            \"kick_off\": \"2025-10-24 20:45:00\",\n            \"competition\": {\n                \"name\": \"Liga Portugal 2\",\n                \"country\": \"Portugal\"\n            },\n            \"home_team\": {\n                \"name\": \"Vizela\",\n                \"abbreviation\": \"VIZ\",\n                \"badge\": \"sr-competitor-5136.png\"\n            },\n            \"away_team\": {\n                \"name\": \"FC Felgueiras 1932\",\n                \"abbreviation\": \"FEL\",\n                \"badge\": \"sr-competitor-3030.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-6dc4-7191-b468-981e4c210ed2\",\n            \"kick_off\": \"2025-10-24 21:00:00\",\n            \"competition\": {\n                \"name\": \"Liga 1\",\n                \"country\": \"Peru\"\n            },\n            \"home_team\": {\n                \"name\": \"Juan Pablo II\",\n                \"abbreviation\": \"JUA\",\n                \"badge\": \"sr-competitor-1041663.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Comerciantes U\",\n                \"abbreviation\": \"COM\",\n                \"badge\": \"sr-competitor-241860.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9e058626-c6a4-4068-8096-3698a2d583c1\",\n            \"kick_off\": \"2025-10-24 21:00:00\",\n            \"competition\": {\n                \"name\": \"Primera Division\",\n                \"country\": \"Chile\"\n            },\n            \"home_team\": {\n                \"name\": \"Palestino\",\n                \"abbreviation\": \"PAL\",\n                \"badge\": \"sr-competitor-3157.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Everton\",\n                \"abbreviation\": \"EVT\",\n                \"badge\": \"sr-competitor-5032.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199b563-6179-7074-a619-f3599545f534\",\n            \"kick_off\": \"2025-10-24 22:00:00\",\n            \"competition\": {\n                \"name\": \"Primera A, Clausura\",\n                \"country\": \"Colombia\"\n            },\n            \"home_team\": {\n                \"name\": \"Alianza FC Valledupar\",\n                \"abbreviation\": \"ALI\",\n                \"badge\": \"sr-competitor-1098993.png\"\n            },\n            \"away_team\": {\n                \"name\": \"La Equidad\",\n                \"abbreviation\": \"EQU\",\n                \"badge\": \"sr-competitor-6975.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199dd28-22d9-7117-bd7b-f15dcd934c31\",\n            \"kick_off\": \"2025-10-24 22:00:00\",\n            \"competition\": {\n                \"name\": \"Primera LPF\",\n                \"country\": \"Argentina\"\n            },\n            \"home_team\": {\n                \"name\": \"Independiente\",\n                \"abbreviation\": \"CAI\",\n                \"badge\": \"sr-competitor-3209.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Platense\",\n                \"abbreviation\": \"PLA\",\n                \"badge\": \"sr-competitor-36837.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019974f1-b972-7022-96cf-17c6860e1cc9\",\n            \"kick_off\": \"2025-10-24 23:00:00\",\n            \"competition\": {\n                \"name\": \"Brasileiro Serie B\",\n                \"country\": \"Brazil\"\n            },\n            \"home_team\": {\n                \"name\": \"Gremio Novorizontino\",\n                \"abbreviation\": \"GRN\",\n                \"badge\": \"sr-competitor-135514.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Botafogo\",\n                \"abbreviation\": \"BOT\",\n                \"badge\": \"sr-competitor-1979.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-6e6c-715d-b343-fd16be42d719\",\n            \"kick_off\": \"2025-10-24 23:30:00\",\n            \"competition\": {\n                \"name\": \"Primera Division\",\n                \"country\": \"Uruguay\"\n            },\n            \"home_team\": {\n                \"name\": \"Defensor\",\n                \"abbreviation\": \"DEF\",\n                \"badge\": \"sr-competitor-3229.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Montevideo City\",\n                \"abbreviation\": \"TOR\",\n                \"badge\": \"sr-competitor-174972.png\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"timezone\": \"Europe/London\",\n        \"sport_type\": \"soccer\",\n        \"dates\": {\n            \"utc_dates\": [\n                \"2025-10-23\",\n                \"2025-10-24\"\n            ]\n        }\n    }\n}"}],"_postman_id":"39953b57-ccdb-4c00-bec4-e9cb72a60e2a"},{"name":"players-list","event":[{"listen":"prerequest","script":{"id":"5c79fb24-ade2-41d7-bdaf-8d81acb1fdb2","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","","pm.environment.unset(\"sport_event_id\");","","const fetchFeaturedMatches = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/fixtures-centre-featured-matches?timezone=Europe/London\",","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, response) {","        if (err) {","            console.error(\"Error fetching fixtures-centre-featured-matches:\", err);","            return reject(err);","        }","","        const jsonData = response.json();","        console.log(\"fixtures-centre-featured-matches status:\", response.code);","        console.log(\"fixtures-centre-featured-matches response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData.data && jsonData.data.length > 0) {","            resolve(jsonData.data[0].id);","        } else {","            console.error(\"No data found in fixtures-centre-featured-matches response\");","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(\"No data found in fixtures-centre-featured-matches response\"));","        }","    });","});","","const sport_event_id = await fetchFeaturedMatches();","","pm.environment.set(\"sport_event_id\", sport_event_id);","","pm.request.url.variables.each(function(variable) {","    if (variable.key === \"sport_event_id\") {","        variable.value = sport_event_id;","    }","});","","console.log(\"Set sport_event_id to:\", sport_event_id);"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"b514d977-8eed-4775-bfbc-7f48e7ba5f14","exec":["// 1. HTTP 200 Status Check","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// 2. Response Time Check","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// 3. JSON Schema Validation","pm.test(\"Response matches expected schema\", function () {","    const jsonData = pm.response.json();","    ","    // Validate top-level structure","    pm.expect(jsonData).to.have.property(\"data\").that.is.an(\"array\");","    pm.expect(jsonData).to.have.property(\"meta\").that.is.an(\"object\");","    ","    // Validate meta object","    pm.expect(jsonData.meta).to.have.property(\"sport_event_id\").that.is.a(\"string\");","    ","    // Validate each player in data array","    jsonData.data.forEach(function (player, index) {","        pm.expect(player, `Player at index ${index}`).to.have.property(\"player_id\").that.is.a(\"string\");","        pm.expect(player, `Player at index ${index}`).to.have.property(\"player_name\").that.is.a(\"string\");","        ","        // lineup can be string or null","        pm.expect(player, `Player at index ${index}`).to.have.property(\"lineup\");","        if (player.lineup !== null) {","            pm.expect(player.lineup, `Player lineup at index ${index}`).to.be.a(\"string\");","        }","        ","        // lineup_provisional can be string or null","        pm.expect(player, `Player at index ${index}`).to.have.property(\"lineup_provisional\");","        if (player.lineup_provisional !== null) {","            pm.expect(player.lineup_provisional, `Player lineup_provisional at index ${index}`).to.be.a(\"string\");","        }","    });","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e44fffe6-0e32-450f-82bc-4fb450c92fb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/players-list/:sport_event_id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["players-list",":sport_event_id"],"host":[""],"query":[],"variable":[{"type":"any","value":"019ccac0-04c0-72d9-985b-de86cd935356","key":"sport_event_id"}]}},"response":[{"id":"792a97b6-faac-458b-bfbc-619ad7fe4199","name":"fixtures-list","originalRequest":{"method":"GET","header":[],"url":{"raw":"/fixtures-list?timezone=Europe/London&sport=soccer&day=0","host":[""],"path":["fixtures-list"],"query":[{"key":"timezone","value":"Europe/London"},{"key":"sport","value":"soccer"},{"key":"sport","value":"american-football","type":"text","disabled":true},{"key":"day","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:22:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"51371"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"493bb6d2-511d-48d7-9cdb-78766b9d3ea4"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8wqbG_9DoEEUNg="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb6175-06a7399d708181167984dc5c;Parent=088e591b69f6f21d;Sampled=0;Lineage=1:d43b187c:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"fixture_id\": \"0199803e-beef-73c2-b117-b45333fa17b4\",\n            \"kick_off\": \"2025-10-24 01:10:00\",\n            \"competition\": {\n                \"name\": \"Copa Argentina\",\n                \"country\": \"Argentina\"\n            },\n            \"home_team\": {\n                \"name\": \"Belgrano de Cordoba\",\n                \"abbreviation\": \"CAB\",\n                \"badge\": \"sr-competitor-3203.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Argentinos Juniors\",\n                \"abbreviation\": \"ARG\",\n                \"badge\": \"sr-competitor-3216.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019983d2-5eb8-7324-ac5d-fb52e23ca5a0\",\n            \"kick_off\": \"2025-10-24 01:30:00\",\n            \"competition\": {\n                \"name\": \"CONMEBOL Libertadores\",\n                \"country\": \"International Clubs\"\n            },\n            \"home_team\": {\n                \"name\": \"LDU Quito\",\n                \"abbreviation\": \"LDU\",\n                \"badge\": \"sr-competitor-5257.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Palmeiras\",\n                \"abbreviation\": \"PAL\",\n                \"badge\": \"sr-competitor-1963.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199e518-bce9-7257-8e02-85af35caa911\",\n            \"kick_off\": \"2025-10-24 02:00:00\",\n            \"competition\": {\n                \"name\": \"Liga 1\",\n                \"country\": \"Peru\"\n            },\n            \"home_team\": {\n                \"name\": \"Sporting Cristal\",\n                \"abbreviation\": \"CRI\",\n                \"badge\": \"sr-competitor-2302.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Universitario\",\n                \"abbreviation\": \"UNI\",\n                \"badge\": \"sr-competitor-2305.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-17eb-7259-a735-c4eebd58225e\",\n            \"kick_off\": \"2025-10-24 09:30:00\",\n            \"competition\": {\n                \"name\": \"Super League\",\n                \"country\": \"Indonesia\"\n            },\n            \"home_team\": {\n                \"name\": \"PSBS Biak\",\n                \"abbreviation\": \"PSB\",\n                \"badge\": \"sr-competitor-331325.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Persebaya\",\n                \"abbreviation\": \"PER\",\n                \"badge\": \"sr-competitor-76319.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-1800-7011-ad68-56043b022039\",\n            \"kick_off\": \"2025-10-24 09:35:00\",\n            \"competition\": {\n                \"name\": \"A-League\",\n                \"country\": \"Australia\"\n            },\n            \"home_team\": {\n                \"name\": \"Newcastle\",\n                \"abbreviation\": \"NUJ\",\n                \"badge\": \"sr-competitor-2934.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Melbourne Victory\",\n                \"abbreviation\": \"VIC\",\n                \"badge\": \"sr-competitor-5970.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ddcc-fdda-727c-b39b-f49ab74ad6fd\",\n            \"kick_off\": \"2025-10-24 11:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ethiopia\"\n            },\n            \"home_team\": {\n                \"name\": \"Arba Minch Kenema\",\n                \"abbreviation\": \"ARB\",\n                \"badge\": \"sr-competitor-298864.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Bahir Dar Kenema FC\",\n                \"abbreviation\": \"BAH\",\n                \"badge\": \"sr-competitor-558872.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019987af-1dbe-72ad-8496-8ac3834c2231\",\n            \"kick_off\": \"2025-10-24 11:30:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Azerbaijan\"\n            },\n            \"home_team\": {\n                \"name\": \"Karvan Yevlakh\",\n                \"abbreviation\": \"KEV\",\n                \"badge\": \"sr-competitor-5963.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Turan Tovuz\",\n                \"abbreviation\": \"TTO\",\n                \"badge\": \"sr-competitor-36951.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019a06a5-0809-72ae-95f8-2160a0faa99a\",\n            \"kick_off\": \"2025-10-24 12:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Kenya\"\n            },\n            \"home_team\": {\n                \"name\": \"Mara Sugar FC\",\n                \"abbreviation\": \"MAR\",\n                \"badge\": \"sr-competitor-872787.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Bidco United\",\n                \"abbreviation\": \"BID\",\n                \"badge\": \"sr-competitor-346130.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce00-12b3-7175-8a68-0d30431466c5\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Armenia\"\n            },\n            \"home_team\": {\n                \"name\": \"Alashkert Yerevan\",\n                \"abbreviation\": \"ALA\",\n                \"badge\": \"sr-competitor-67966.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Van\",\n                \"abbreviation\": \"VAN\",\n                \"badge\": \"sr-competitor-609308.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f6950f8-1801-42e3-b892-fddbbfcb6034\",\n            \"kick_off\": \"2025-10-24 12:30:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Singapore\"\n            },\n            \"home_team\": {\n                \"name\": \"Balestier Khalsa\",\n                \"abbreviation\": \"BAL\",\n                \"badge\": \"sr-competitor-3039.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Tanjong Pagar United\",\n                \"abbreviation\": \"TPU\",\n                \"badge\": \"sr-competitor-3038.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9e1368e3-08d8-431b-ad70-3812ecae69c6\",\n            \"kick_off\": \"2025-10-24 12:35:00\",\n            \"competition\": {\n                \"name\": \"Chinese Super League\",\n                \"country\": \"China\"\n            },\n            \"home_team\": {\n                \"name\": \"Meizhou Hakka\",\n                \"abbreviation\": \"MEI\",\n                \"badge\": \"sr-competitor-245357.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Yunnan Yukun\",\n                \"abbreviation\": \"YUN\",\n                \"badge\": \"sr-competitor-1009011.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9e1368ea-0256-4cd5-b75f-21b4b67a8476\",\n            \"kick_off\": \"2025-10-24 12:35:00\",\n            \"competition\": {\n                \"name\": \"Chinese Super League\",\n                \"country\": \"China\"\n            },\n            \"home_team\": {\n                \"name\": \"Wuhan Three Towns FC\",\n                \"abbreviation\": \"WUH\",\n                \"badge\": \"sr-competitor-475928.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Shenzhen Peng City\",\n                \"abbreviation\": \"SHE\",\n                \"badge\": \"sr-competitor-422227.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf7e-f2c8-7387-bc69-41b3143d6d72\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"competition\": {\n                \"name\": \"Kategoria Superiore\",\n                \"country\": \"Albania\"\n            },\n            \"home_team\": {\n                \"name\": \"FK Vora\",\n                \"abbreviation\": \"FKV\",\n                \"badge\": \"sr-competitor-173810.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dinamo City\",\n                \"abbreviation\": \"DIC\",\n                \"badge\": \"sr-competitor-5217.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01990aa8-5529-733e-9089-f6ab9640f9bb\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"competition\": {\n                \"name\": \"Parva Liga\",\n                \"country\": \"Bulgaria\"\n            },\n            \"home_team\": {\n                \"name\": \"Montana\",\n                \"abbreviation\": \"MON\",\n                \"badge\": \"sr-competitor-32642.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Arda Kardzhali\",\n                \"abbreviation\": \"ARD\",\n                \"badge\": \"sr-competitor-364786.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-1bb1-71ae-98f8-09e3f0ea8fd4\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"competition\": {\n                \"name\": \"Super League\",\n                \"country\": \"Indonesia\"\n            },\n            \"home_team\": {\n                \"name\": \"Madura United\",\n                \"abbreviation\": \"MAU\",\n                \"badge\": \"sr-competitor-86578.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Persija\",\n                \"abbreviation\": \"PEJ\",\n                \"badge\": \"sr-competitor-64295.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9fb1ddfa-730a-430f-9c71-7f8d3f913a0c\",\n            \"kick_off\": \"2025-10-24 13:00:00\",\n            \"competition\": {\n                \"name\": \"Thai League 1\",\n                \"country\": \"Thailand\"\n            },\n            \"home_team\": {\n                \"name\": \"Port FC\",\n                \"abbreviation\": \"POR\",\n                \"badge\": \"sr-competitor-40661.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Muang Thong\",\n                \"abbreviation\": \"MUT\",\n                \"badge\": \"sr-competitor-39946.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199e1e0-b6bc-7325-acae-7f3741e8c3c9\",\n            \"kick_off\": \"2025-10-24 13:30:00\",\n            \"competition\": {\n                \"name\": \"1. MFL\",\n                \"country\": \"North Macedonia\"\n            },\n            \"home_team\": {\n                \"name\": \"Baskhimi\",\n                \"abbreviation\": \"BAS\",\n                \"badge\": \"sr-competitor-5400.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Shkupi Cair\",\n                \"abbreviation\": \"SHK\",\n                \"badge\": \"sr-competitor-136548.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199e1e0-d7ac-730c-a40b-8df9ed87f14a\",\n            \"kick_off\": \"2025-10-24 13:30:00\",\n            \"competition\": {\n                \"name\": \"1. MFL\",\n                \"country\": \"North Macedonia\"\n            },\n            \"home_team\": {\n                \"name\": \"GFK Tikvesh 1930\",\n                \"abbreviation\": \"GFK\",\n                \"badge\": \"sr-competitor-43576.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Arsimi 1973\",\n                \"abbreviation\": \"ARS\",\n                \"badge\": \"sr-competitor-924577.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019996d8-da0a-7232-ad83-b6ce7831ec50\",\n            \"kick_off\": \"2025-10-24 13:30:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ukraine\"\n            },\n            \"home_team\": {\n                \"name\": \"Oleksandriya\",\n                \"abbreviation\": \"OLE\",\n                \"badge\": \"sr-competitor-25479.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Epitsentr Kamianets-Podilskyi\",\n                \"abbreviation\": \"EPI\",\n                \"badge\": \"sr-competitor-602316.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-3360-7206-87f4-d05ae6b4f4ee\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"1. Lig\",\n                \"country\": \"Turkiye\"\n            },\n            \"home_team\": {\n                \"name\": \"Erzurumspor\",\n                \"abbreviation\": \"ERZ\",\n                \"badge\": \"sr-competitor-55603.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Umraniyespor\",\n                \"abbreviation\": \"UMR\",\n                \"badge\": \"sr-competitor-55625.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-188a-7262-9c16-b9353c512c5b\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"CAF Champions League\",\n                \"country\": \"International Clubs\"\n            },\n            \"home_team\": {\n                \"name\": \"Power Dynamos\",\n                \"abbreviation\": \"PDY\",\n                \"badge\": \"sr-competitor-195258.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Vipers\",\n                \"abbreviation\": \"VIP\",\n                \"badge\": \"sr-competitor-218704.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-0bfa-70c8-91d9-fec9614b64a6\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Uganda\"\n            },\n            \"home_team\": {\n                \"name\": \"Airtel Kitara\",\n                \"abbreviation\": \"KIT\",\n                \"badge\": \"sr-competitor-424753.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Mbarara FC\",\n                \"abbreviation\": \"MBA\",\n                \"badge\": \"sr-competitor-325273.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-2fd1-7254-ba73-161b6e2dd3bd\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Rwanda\"\n            },\n            \"home_team\": {\n                \"name\": \"Gicumbi FC\",\n                \"abbreviation\": \"GIC\",\n                \"badge\": \"sr-competitor-380054.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Gasogi United\",\n                \"abbreviation\": \"GAS\",\n                \"badge\": \"sr-competitor-528591.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ddcd-0122-72fd-8bdf-65a33db73ad8\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ethiopia\"\n            },\n            \"home_team\": {\n                \"name\": \"Hadiya Hossana\",\n                \"abbreviation\": \"HAD\",\n                \"badge\": \"sr-competitor-669303.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Ethiopia Electricity\",\n                \"abbreviation\": \"ETH\",\n                \"badge\": \"sr-competitor-392500.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9fb3e0e6-95c0-485c-acbf-6d284b50e84e\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Azerbaijan\"\n            },\n            \"home_team\": {\n                \"name\": \"Kapaz\",\n                \"abbreviation\": \"KAP\",\n                \"badge\": \"sr-competitor-37750.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Imisli FK\",\n                \"abbreviation\": \"IMI\",\n                \"badge\": \"sr-competitor-951655.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-04fc-7286-b5b4-5e15a33bb1d4\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Tanzania\"\n            },\n            \"home_team\": {\n                \"name\": \"Mbeya City\",\n                \"abbreviation\": \"MBE\",\n                \"badge\": \"sr-competitor-238660.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Jkt Tanzania\",\n                \"abbreviation\": \"JKT\",\n                \"badge\": \"sr-competitor-495358.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-1403-72f5-bdfb-504a510030e2\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Prva NL\",\n                \"country\": \"Croatia\"\n            },\n            \"home_team\": {\n                \"name\": \"Cibalia\",\n                \"abbreviation\": \"CIB\",\n                \"badge\": \"sr-competitor-2031.png\"\n            },\n            \"away_team\": {\n                \"name\": \"NK Hrvace\",\n                \"abbreviation\": \"HRV\",\n                \"badge\": \"sr-competitor-6670.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-192c-70d2-9f24-c65f7b9a2720\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Prva NL\",\n                \"country\": \"Croatia\"\n            },\n            \"home_team\": {\n                \"name\": \"NK Sesvete\",\n                \"abbreviation\": \"SES\",\n                \"badge\": \"sr-competitor-54297.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Rudes Zagreb\",\n                \"abbreviation\": \"RUD\",\n                \"badge\": \"sr-competitor-35226.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199ce6c-0e16-7098-8711-b5371e35030d\",\n            \"kick_off\": \"2025-10-24 14:00:00\",\n            \"competition\": {\n                \"name\": \"Prva NL\",\n                \"country\": \"Croatia\"\n            },\n            \"home_team\": {\n                \"name\": \"Orijent Rijeka\",\n                \"abbreviation\": \"ORI\",\n                \"badge\": \"sr-competitor-25539.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dugopolje\",\n                \"abbreviation\": \"DUG\",\n                \"badge\": \"sr-competitor-43918.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199d437-52d7-73b2-b06b-2960aea77da9\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"competition\": {\n                \"name\": \"CAF Confederations Cup\",\n                \"country\": \"International Clubs\"\n            },\n            \"home_team\": {\n                \"name\": \"Azam\",\n                \"abbreviation\": \"AZA\",\n                \"badge\": \"sr-competitor-238650.png\"\n            },\n            \"away_team\": {\n                \"name\": \"KMKM\",\n                \"abbreviation\": \"KMK\",\n                \"badge\": \"sr-competitor-134290.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cea3-3a8d-7002-965e-845ff66d74ff\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"competition\": {\n                \"name\": \"Jordan League\",\n                \"country\": \"Jordan\"\n            },\n            \"home_team\": {\n                \"name\": \"Al Jazeera\",\n                \"abbreviation\": \"AJA\",\n                \"badge\": \"sr-competitor-54587.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Shabab AL Ordun\",\n                \"abbreviation\": \"SAO\",\n                \"badge\": \"sr-competitor-40646.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f594c53-4b3a-45bb-addf-d70b914c6662\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Serbia\"\n            },\n            \"home_team\": {\n                \"name\": \"Napredak\",\n                \"abbreviation\": \"NAP\",\n                \"badge\": \"sr-competitor-7674.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Vojvodina Novi Sad\",\n                \"abbreviation\": \"VOJ\",\n                \"badge\": \"sr-competitor-5150.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199c97c-d7b5-701c-8dc4-f6a5cf15a9cf\",\n            \"kick_off\": \"2025-10-24 15:00:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Uzbekistan\"\n            },\n            \"home_team\": {\n                \"name\": \"Qizilqum\",\n                \"abbreviation\": \"QIZ\",\n                \"badge\": \"sr-competitor-40265.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dinamo\",\n                \"abbreviation\": \"DIN\",\n                \"badge\": \"sr-competitor-40259.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01990aa8-6087-72e5-ba61-eddf6684debd\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"competition\": {\n                \"name\": \"Parva Liga\",\n                \"country\": \"Bulgaria\"\n            },\n            \"home_team\": {\n                \"name\": \"Spartak Varna\",\n                \"abbreviation\": \"VAR\",\n                \"badge\": \"sr-competitor-3278.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Botev Plovdiv\",\n                \"abbreviation\": \"BOT\",\n                \"badge\": \"sr-competitor-5241.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199dcf1-205c-71e6-abef-02029def9e2e\",\n            \"kick_off\": \"2025-10-24 15:30:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Romania\"\n            },\n            \"home_team\": {\n                \"name\": \"FK Csikszereda Miercurea Ciuc\",\n                \"abbreviation\": \"CSI\",\n                \"badge\": \"sr-competitor-391688.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Petrolul Ploiesti\",\n                \"abbreviation\": \"PPL\",\n                \"badge\": \"sr-competitor-25856.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-335d-71e3-bc4d-a665f3870277\",\n            \"kick_off\": \"2025-10-24 15:45:00\",\n            \"competition\": {\n                \"name\": \"Saudi Pro League\",\n                \"country\": \"Saudi Arabia\"\n            },\n            \"home_team\": {\n                \"name\": \"Al-Fateh\",\n                \"abbreviation\": \"FAT\",\n                \"badge\": \"sr-competitor-56023.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Al-Ittifaq\",\n                \"abbreviation\": \"ITT\",\n                \"badge\": \"sr-competitor-34318.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf7e-eee8-708f-8883-f6677eee9ab7\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Kategoria Superiore\",\n                \"country\": \"Albania\"\n            },\n            \"home_team\": {\n                \"name\": \"Af Elbasani\",\n                \"abbreviation\": \"ELB\",\n                \"badge\": \"sr-competitor-1021051.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Bylis Ballsh\",\n                \"abbreviation\": \"BYB\",\n                \"badge\": \"sr-competitor-37123.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf7e-eb69-735d-902d-088274437ec0\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Kategoria Superiore\",\n                \"country\": \"Albania\"\n            },\n            \"home_team\": {\n                \"name\": \"Vllaznia Shkoder\",\n                \"abbreviation\": \"KFV\",\n                \"badge\": \"sr-competitor-5418.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Tirana\",\n                \"abbreviation\": \"KFT\",\n                \"badge\": \"sr-competitor-5195.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-3f6f-704e-9051-b5115dabebd0\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ethiopia\"\n            },\n            \"home_team\": {\n                \"name\": \"Ethiopia Nigd Bank\",\n                \"abbreviation\": \"ETH\",\n                \"badge\": \"sr-competitor-307288.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Shire Endaselassie FC\",\n                \"abbreviation\": \"SHI\",\n                \"badge\": \"sr-competitor-524392.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019971b9-a6e6-739c-9f63-772dade191f7\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ghana\"\n            },\n            \"home_team\": {\n                \"name\": \"Heart of Lions\",\n                \"abbreviation\": \"HOL\",\n                \"badge\": \"sr-competitor-42613.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Basake Holy Stars\",\n                \"abbreviation\": \"BAS\",\n                \"badge\": \"sr-competitor-949957.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cedc-0e49-716a-a861-1a6744db34fd\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Nigeria\"\n            },\n            \"home_team\": {\n                \"name\": \"Katsina United FC\",\n                \"abbreviation\": \"KAT\",\n                \"badge\": \"sr-competitor-308036.png\"\n            },\n            \"away_team\": {\n                \"name\": \"El Kanemi Warriors\",\n                \"abbreviation\": \"EKW\",\n                \"badge\": \"sr-competitor-193318.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019996d8-e072-733b-bf40-cf672e3049c3\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Ukraine\"\n            },\n            \"home_team\": {\n                \"name\": \"Rivne\",\n                \"abbreviation\": \"VRI\",\n                \"badge\": \"sr-competitor-213180.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Lugansk\",\n                \"abbreviation\": \"ZOR\",\n                \"badge\": \"sr-competitor-5987.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-3369-724c-bfb4-e2225e25e2ea\",\n            \"kick_off\": \"2025-10-24 16:00:00\",\n            \"competition\": {\n                \"name\": \"Virsliga\",\n                \"country\": \"Latvia\"\n            },\n            \"home_team\": {\n                \"name\": \"Riga FC\",\n                \"abbreviation\": \"RFC\",\n                \"badge\": \"sr-competitor-162368.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Tukums 2000\",\n                \"abbreviation\": \"TUK\",\n                \"badge\": \"sr-competitor-36080.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-3fb7-711d-b8a1-62cc15cad216\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"competition\": {\n                \"name\": \"Saudi Pro League\",\n                \"country\": \"Saudi Arabia\"\n            },\n            \"home_team\": {\n                \"name\": \"Neom SC\",\n                \"abbreviation\": \"NEO\",\n                \"badge\": \"sr-competitor-529781.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Al-Khaleej\",\n                \"abbreviation\": \"KHA\",\n                \"badge\": \"sr-competitor-167228.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f594c48-f4b6-46d6-baff-89b8d2dabc91\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Serbia\"\n            },\n            \"home_team\": {\n                \"name\": \"Novi Pazar\",\n                \"abbreviation\": \"NPA\",\n                \"badge\": \"sr-competitor-25736.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Javor\",\n                \"abbreviation\": \"JAV\",\n                \"badge\": \"sr-competitor-5144.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f594c4c-46ff-4b9c-bfb4-142ec0a7c9c9\",\n            \"kick_off\": \"2025-10-24 16:30:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Serbia\"\n            },\n            \"home_team\": {\n                \"name\": \"Partizan Belgrade\",\n                \"abbreviation\": \"PAR\",\n                \"badge\": \"sr-competitor-5152.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Mladost Lucani\",\n                \"abbreviation\": \"MLA\",\n                \"badge\": \"sr-competitor-7771.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f371278-ba83-4efe-9ee4-0ab029dcdf3f\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"1. Liga\",\n                \"country\": \"Poland\"\n            },\n            \"home_team\": {\n                \"name\": \"Znicz Pruszkow\",\n                \"abbreviation\": \"ZNI\",\n                \"badge\": \"sr-competitor-7923.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Niepołomice\",\n                \"abbreviation\": \"PUS\",\n                \"badge\": \"sr-competitor-38729.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5384da-568c-4136-849a-2d9d563fd702\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"2. Liga\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Austria Klagenfurt\",\n                \"abbreviation\": \"SKA\",\n                \"badge\": \"sr-competitor-43254.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Sturm II\",\n                \"abbreviation\": \"STU\",\n                \"badge\": \"sr-competitor-2103.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f53859e-7bc7-46de-b520-be93123bd140\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"2. Liga\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"First Vienna\",\n                \"abbreviation\": \"VIE\",\n                \"badge\": \"sr-competitor-2054.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Admira Wacker\",\n                \"abbreviation\": \"ADM\",\n                \"badge\": \"sr-competitor-2050.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5385df-0d09-42fc-8d1a-2532e5be7c59\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"2. Liga\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Liefering\",\n                \"abbreviation\": \"FCL\",\n                \"badge\": \"sr-competitor-7790.png\"\n            },\n            \"away_team\": {\n                \"name\": \"St. Polten\",\n                \"abbreviation\": \"SKN\",\n                \"badge\": \"sr-competitor-2119.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5385ef-9703-4026-ab35-bf5eb9144ec6\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"2. Liga\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"SW Bregenz\",\n                \"abbreviation\": \"SWB\",\n                \"badge\": \"sr-competitor-7786.png\"\n            },\n            \"away_team\": {\n                \"name\": \"KSV 1919\",\n                \"abbreviation\": \"KSV\",\n                \"badge\": \"sr-competitor-2067.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5385ff-748c-4e5c-a96f-188ec1ef8053\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"2. Liga\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Stripfing\",\n                \"abbreviation\": \"SVS\",\n                \"badge\": \"sr-competitor-218138.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Hogo Wels\",\n                \"abbreviation\": \"HER\",\n                \"badge\": \"sr-competitor-459941.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f6a7d5e-7f67-4c68-a307-f85eb9d126b0\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"Ekstraklasa\",\n                \"country\": \"Poland\"\n            },\n            \"home_team\": {\n                \"name\": \"Nieciecza\",\n                \"abbreviation\": \"NIE\",\n                \"badge\": \"sr-competitor-36851.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Zaglebie Lubin\",\n                \"abbreviation\": \"ZAG\",\n                \"badge\": \"sr-competitor-3113.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f310981-f91d-4d86-b381-9704ea569dd3\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"FNL\",\n                \"country\": \"Czechia\"\n            },\n            \"home_team\": {\n                \"name\": \"Ceske Budejovice\",\n                \"abbreviation\": \"BUD\",\n                \"badge\": \"sr-competitor-2221.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Prostejov\",\n                \"abbreviation\": \"1SK\",\n                \"badge\": \"sr-competitor-76775.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f4b292c-581e-4934-ae6d-6030078f9c9c\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"FNL\",\n                \"country\": \"Czechia\"\n            },\n            \"home_team\": {\n                \"name\": \"Usti nad Labem\",\n                \"abbreviation\": \"UST\",\n                \"badge\": \"sr-competitor-4868.png\"\n            },\n            \"away_team\": {\n                \"name\": \"FC Banik Ostrava B\",\n                \"abbreviation\": \"BAN\",\n                \"badge\": \"sr-competitor-610536.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f2ebf0a-2771-47e7-b11d-c9e8a2d991f9\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"HNL\",\n                \"country\": \"Croatia\"\n            },\n            \"home_team\": {\n                \"name\": \"Gorica\",\n                \"abbreviation\": \"GOR\",\n                \"badge\": \"sr-competitor-43917.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Hajduk\",\n                \"abbreviation\": \"HAJ\",\n                \"badge\": \"sr-competitor-2036.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019a02c9-cd9c-72d1-bf0b-dba91651a0ae\",\n            \"kick_off\": \"2025-10-24 17:00:00\",\n            \"competition\": {\n                \"name\": \"Premijer Liga\",\n                \"country\": \"Bosnia & Herzegovina\"\n            },\n            \"home_team\": {\n                \"name\": \"Sarajevo\",\n                \"abbreviation\": \"FKS\",\n                \"badge\": \"sr-competitor-5237.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Sloga\",\n                \"abbreviation\": \"SLD\",\n                \"badge\": \"sr-competitor-37064.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019972cc-5d22-71c4-b115-05f25be621ee\",\n            \"kick_off\": \"2025-10-24 17:15:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Malta\"\n            },\n            \"home_team\": {\n                \"name\": \"Mosta\",\n                \"abbreviation\": \"MOS\",\n                \"badge\": \"sr-competitor-33572.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Zabbar Saint Patrick FC\",\n                \"abbreviation\": \"PAT\",\n                \"badge\": \"sr-competitor-33578.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01991f9d-6636-7310-868f-31ade70e838f\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"competition\": {\n                \"name\": \"2. Bundesliga\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Greuther Furth\",\n                \"abbreviation\": \"SGF\",\n                \"badge\": \"sr-competitor-2551.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Karlsruhe\",\n                \"abbreviation\": \"KSC\",\n                \"badge\": \"sr-competitor-2553.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01991faf-7855-7358-8988-61f788a677ae\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"competition\": {\n                \"name\": \"2. Bundesliga\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Schalke\",\n                \"abbreviation\": \"SCH\",\n                \"badge\": \"sr-competitor-2530.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Darmstadt\",\n                \"abbreviation\": \"D98\",\n                \"badge\": \"sr-competitor-2576.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199d437-6b00-71cf-b93c-abc77d3e8a8b\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"competition\": {\n                \"name\": \"Jordan League\",\n                \"country\": \"Jordan\"\n            },\n            \"home_team\": {\n                \"name\": \"AL Salt\",\n                \"abbreviation\": \"SAL\",\n                \"badge\": \"sr-competitor-321509.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Ramtha\",\n                \"abbreviation\": \"RSC\",\n                \"badge\": \"sr-competitor-54595.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf11-22d5-7369-a0eb-b2af60486ebe\",\n            \"kick_off\": \"2025-10-24 17:30:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Rwanda\"\n            },\n            \"home_team\": {\n                \"name\": \"Rayon Sports\",\n                \"abbreviation\": \"RAY\",\n                \"badge\": \"sr-competitor-134272.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Amagaju\",\n                \"abbreviation\": \"AMA\",\n                \"badge\": \"sr-competitor-380062.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01993059-f253-70a2-bf1b-d66dd21b8946\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"1. Division\",\n                \"country\": \"Denmark\"\n            },\n            \"home_team\": {\n                \"name\": \"B93 Copenhagen\",\n                \"abbreviation\": \"B93\",\n                \"badge\": \"sr-competitor-1298.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Horsens\",\n                \"abbreviation\": \"HOR\",\n                \"badge\": \"sr-competitor-1297.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01994ce3-f0ed-720c-9a2a-62cbada98a8f\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"1. Division\",\n                \"country\": \"Denmark\"\n            },\n            \"home_team\": {\n                \"name\": \"Kolding IF\",\n                \"abbreviation\": \"KIF\",\n                \"badge\": \"sr-competitor-22162.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Middelfart\",\n                \"abbreviation\": \"MDF\",\n                \"badge\": \"sr-competitor-22163.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-5266-70b3-b55b-1c38cf146a35\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"1. Lig\",\n                \"country\": \"Turkiye\"\n            },\n            \"home_team\": {\n                \"name\": \"Sivasspor\",\n                \"abbreviation\": \"SIV\",\n                \"badge\": \"sr-competitor-3076.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Hatayspor\",\n                \"abbreviation\": \"HAT\",\n                \"badge\": \"sr-competitor-3091.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-46f0-7176-99a7-c294f230c4ff\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"2nd Division\",\n                \"country\": \"Denmark\"\n            },\n            \"home_team\": {\n                \"name\": \"Helsingoer\",\n                \"abbreviation\": \"HEL\",\n                \"badge\": \"sr-competitor-6392.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Thisted FC\",\n                \"abbreviation\": \"THI\",\n                \"badge\": \"sr-competitor-1403.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-46f5-7013-86ec-95b09b3e27dd\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"2nd Division\",\n                \"country\": \"Denmark\"\n            },\n            \"home_team\": {\n                \"name\": \"Vendsyssel\",\n                \"abbreviation\": \"VEN\",\n                \"badge\": \"sr-competitor-1314.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Fremad Amager\",\n                \"abbreviation\": \"FAM\",\n                \"badge\": \"sr-competitor-35412.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01993881-375b-700c-9b28-6a6e7ee203b9\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"3. Liga\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Wiesbaden\",\n                \"abbreviation\": \"WEH\",\n                \"badge\": \"sr-competitor-2597.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Aachen\",\n                \"abbreviation\": \"AAC\",\n                \"badge\": \"sr-competitor-2546.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199d437-2a7c-70fd-8594-c2ee0b2a23cf\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"CAF Confederations Cup\",\n                \"country\": \"International Clubs\"\n            },\n            \"home_team\": {\n                \"name\": \"Belouizdad\",\n                \"abbreviation\": \"CRB\",\n                \"badge\": \"sr-competitor-42207.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Hafia FC\",\n                \"abbreviation\": \"HAF\",\n                \"badge\": \"sr-competitor-412603.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01990aa8-728b-72f4-8fe8-de77c9b7cefd\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Parva Liga\",\n                \"country\": \"Bulgaria\"\n            },\n            \"home_team\": {\n                \"name\": \"Lok Sofia\",\n                \"abbreviation\": \"LSO\",\n                \"badge\": \"sr-competitor-3277.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Lok Plovdiv\",\n                \"abbreviation\": \"LOK\",\n                \"badge\": \"sr-competitor-3272.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf10-cc26-7146-9087-779dff1f696d\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Uganda\"\n            },\n            \"home_team\": {\n                \"name\": \"SC Villa\",\n                \"abbreviation\": \"VIL\",\n                \"badge\": \"sr-competitor-375412.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Uganda Police FC\",\n                \"abbreviation\": \"UGA\",\n                \"badge\": \"sr-competitor-375398.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-5257-72c5-9e95-2cee66e27494\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Bavaria\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Bayreuth\",\n                \"abbreviation\": \"BAY\",\n                \"badge\": \"sr-competitor-5050.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Augsburg II\",\n                \"abbreviation\": \"AUG\",\n                \"badge\": \"sr-competitor-70944.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-525f-709c-bb47-5e700d550000\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Bavaria\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Buchbach\",\n                \"abbreviation\": \"BUC\",\n                \"badge\": \"sr-competitor-23949.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Nuremberg II\",\n                \"abbreviation\": \"FCN\",\n                \"badge\": \"sr-competitor-5872.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01993d70-b3d7-70f3-ab62-03cd0d4c6d01\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Bavaria\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Burghausen\",\n                \"abbreviation\": \"BUR\",\n                \"badge\": \"sr-competitor-2559.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Wurzburg\",\n                \"abbreviation\": \"FWK\",\n                \"badge\": \"sr-competitor-23947.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf47-c64e-71ff-821a-916bc88b36d8\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Deutschlandsb. SC\",\n                \"abbreviation\": \"DSC\",\n                \"badge\": \"sr-competitor-73883.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Junge Wikinger Ried\",\n                \"abbreviation\": \"JUN\",\n                \"badge\": \"sr-competitor-460243.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf47-cf77-7322-b362-cdcad1e3f76b\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Gleisdorf\",\n                \"abbreviation\": \"GLE\",\n                \"badge\": \"sr-competitor-6280.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Treibach\",\n                \"abbreviation\": \"TRE\",\n                \"badge\": \"sr-competitor-2164.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf4a-060e-72ef-a547-5f949e502259\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Kalsdorf\",\n                \"abbreviation\": \"KAL\",\n                \"badge\": \"sr-competitor-2158.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Union Gurten\",\n                \"abbreviation\": \"UGU\",\n                \"badge\": \"sr-competitor-162364.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf47-bf90-737f-b6fb-a1d07ae18161\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Lafnitz\",\n                \"abbreviation\": \"SVL\",\n                \"badge\": \"sr-competitor-105969.png\"\n            },\n            \"away_team\": {\n                \"name\": \"St. Anna\",\n                \"abbreviation\": \"USV\",\n                \"badge\": \"sr-competitor-364778.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf47-b656-714b-9090-876ef8591361\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"SV Wallern\",\n                \"abbreviation\": \"WAL\",\n                \"badge\": \"sr-competitor-36094.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Oedt\",\n                \"abbreviation\": \"OED\",\n                \"badge\": \"sr-competitor-35671.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf47-d7db-716d-84ef-2169cdf0b927\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Centre\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Weiz\",\n                \"abbreviation\": \"WEI\",\n                \"badge\": \"sr-competitor-2143.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Atus Velden\",\n                \"abbreviation\": \"ATU\",\n                \"badge\": \"sr-competitor-600490.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199591e-d782-7061-bb8b-c6b57971b78e\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga North\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Altona\",\n                \"abbreviation\": \"ALT\",\n                \"badge\": \"sr-competitor-6183.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Phonix Lubeck\",\n                \"abbreviation\": \"PHO\",\n                \"badge\": \"sr-competitor-447507.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199616d-a024-7337-851b-204d8ed2ab35\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga North\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Meppen\",\n                \"abbreviation\": \"MEP\",\n                \"badge\": \"sr-competitor-5804.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Drochtersen/Assel\",\n                \"abbreviation\": \"DRO\",\n                \"badge\": \"sr-competitor-24148.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019947e1-fba4-716f-aa64-d11abd0be6dc\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Northeast\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Halle\",\n                \"abbreviation\": \"HFC\",\n                \"badge\": \"sr-competitor-2582.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Lok Leipzig\",\n                \"abbreviation\": \"LOK\",\n                \"badge\": \"sr-competitor-24093.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019943f3-23f8-7104-92f6-6bd0c6496d61\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Northeast\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Luckenwalde\",\n                \"abbreviation\": \"LUC\",\n                \"badge\": \"sr-competitor-36358.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Babelsberg\",\n                \"abbreviation\": \"BAB\",\n                \"badge\": \"sr-competitor-2549.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f76c66e-90a9-451e-a935-c61af8ecded9\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Ost\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Parndorf\",\n                \"abbreviation\": \"PAR\",\n                \"badge\": \"sr-competitor-2090.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Donaufeld\",\n                \"abbreviation\": \"DFL\",\n                \"badge\": \"sr-competitor-2100.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cdc7-55fe-7348-b7bb-e927066c5bda\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Ost\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"SV Donau\",\n                \"abbreviation\": \"SVD\",\n                \"badge\": \"sr-competitor-5040.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Wiener Sport-Club\",\n                \"abbreviation\": \"WSC\",\n                \"badge\": \"sr-competitor-2066.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01994cbf-4639-72dc-aedf-18c214ca1208\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Super Lig\",\n                \"country\": \"Turkiye\"\n            },\n            \"home_team\": {\n                \"name\": \"Karagümrük\",\n                \"abbreviation\": \"KAR\",\n                \"badge\": \"sr-competitor-4954.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Kayserispor\",\n                \"abbreviation\": \"KAY\",\n                \"badge\": \"sr-competitor-3072.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9dcd1d0f-df18-4ceb-a08e-a6d54d38afa9\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Superettan\",\n                \"country\": \"Sweden\"\n            },\n            \"home_team\": {\n                \"name\": \"Orgryte\",\n                \"abbreviation\": \"ORG\",\n                \"badge\": \"sr-competitor-1766.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Vasteraas\",\n                \"abbreviation\": \"VAS\",\n                \"badge\": \"sr-competitor-1775.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f19042a-3c9f-4907-8990-e18719cb4cab\",\n            \"kick_off\": \"2025-10-24 18:00:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Denmark\"\n            },\n            \"home_team\": {\n                \"name\": \"Aarhus\",\n                \"abbreviation\": \"AGF\",\n                \"badge\": \"sr-competitor-1291.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Nordsjaelland\",\n                \"abbreviation\": \"NJA\",\n                \"badge\": \"sr-competitor-1292.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f76c671-bf83-47e1-be54-b14b85554655\",\n            \"kick_off\": \"2025-10-24 18:10:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Ost\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Favoritner AC\",\n                \"abbreviation\": \"FAV\",\n                \"badge\": \"sr-competitor-43848.png\"\n            },\n            \"away_team\": {\n                \"name\": \"SV Oberwart\",\n                \"abbreviation\": \"OBE\",\n                \"badge\": \"sr-competitor-2139.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f36d20b-579a-461e-86d0-d75bd077d508\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Challenge League\",\n                \"country\": \"Switzerland\"\n            },\n            \"home_team\": {\n                \"name\": \"Neuchatel Xamax\",\n                \"abbreviation\": \"NEX\",\n                \"badge\": \"sr-competitor-2451.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Rapperswil-Jona\",\n                \"abbreviation\": \"RAJ\",\n                \"badge\": \"sr-competitor-37390.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f36d20a-0c6d-4b38-ba17-bcd0a012814a\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Challenge League\",\n                \"country\": \"Switzerland\"\n            },\n            \"home_team\": {\n                \"name\": \"Stade Nyonnais\",\n                \"abbreviation\": \"SNY\",\n                \"badge\": \"sr-competitor-2490.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Yverdon-Sport\",\n                \"abbreviation\": \"YVS\",\n                \"badge\": \"sr-competitor-2460.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199616d-9971-722d-b77f-75f8c793361e\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga North\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Lubeck\",\n                \"abbreviation\": \"VBL\",\n                \"badge\": \"sr-competitor-2560.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Emden\",\n                \"abbreviation\": \"EMD\",\n                \"badge\": \"sr-competitor-5047.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f3e968f-921e-4ec3-86ee-f7bac89645a2\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Ost\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Krems\",\n                \"abbreviation\": \"KRE\",\n                \"badge\": \"sr-competitor-2106.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Horn\",\n                \"abbreviation\": \"SVH\",\n                \"badge\": \"sr-competitor-2111.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f76c675-116a-4d18-807e-ba2b327f3fce\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Regionalliga Ost\",\n                \"country\": \"Austria\"\n            },\n            \"home_team\": {\n                \"name\": \"Traiskirchen\",\n                \"abbreviation\": \"TRA\",\n                \"badge\": \"sr-competitor-214588.png\"\n            },\n            \"away_team\": {\n                \"name\": \"FC Marchfeld Donauauen\",\n                \"abbreviation\": \"MAR\",\n                \"badge\": \"sr-competitor-459943.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5bd01c-af76-49b2-b4fa-5bf15edf373f\",\n            \"kick_off\": \"2025-10-24 18:30:00\",\n            \"competition\": {\n                \"name\": \"Superliga\",\n                \"country\": \"Romania\"\n            },\n            \"home_team\": {\n                \"name\": \"Champions FC Arges\",\n                \"abbreviation\": \"ARG\",\n                \"badge\": \"sr-competitor-116221.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dinamo Bucuresti\",\n                \"abbreviation\": \"DIN\",\n                \"badge\": \"sr-competitor-3292.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cd59-4fd5-73d4-a1b5-246745ff67d6\",\n            \"kick_off\": \"2025-10-24 18:45:00\",\n            \"competition\": {\n                \"name\": \"Liga Portugal 2\",\n                \"country\": \"Portugal\"\n            },\n            \"home_team\": {\n                \"name\": \"SCU Torreense\",\n                \"abbreviation\": \"TOR\",\n                \"badge\": \"sr-competitor-25787.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Oliveirense\",\n                \"abbreviation\": \"OLI\",\n                \"badge\": \"sr-competitor-21831.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f531fb3-ca49-4ff9-824d-b32f137099e4\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Challenger Pro League\",\n                \"country\": \"Belgium\"\n            },\n            \"home_team\": {\n                \"name\": \"Royal Francs Borains\",\n                \"abbreviation\": \"RFB\",\n                \"badge\": \"sr-competitor-280181.png\"\n            },\n            \"away_team\": {\n                \"name\": \"KAA Gent\",\n                \"abbreviation\": \"KGE\",\n                \"badge\": \"sr-competitor-76451.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f531fb7-af85-42bf-815b-f495640b5486\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Challenger Pro League\",\n                \"country\": \"Belgium\"\n            },\n            \"home_team\": {\n                \"name\": \"Seraing\",\n                \"abbreviation\": \"SER\",\n                \"badge\": \"sr-competitor-34985.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Lierse Kempenzonen\",\n                \"abbreviation\": \"LIE\",\n                \"badge\": \"sr-competitor-116075.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56cd-7287-8f11-488f06c2fc73\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Ajax\",\n                \"abbreviation\": \"AJA\",\n                \"badge\": \"sr-competitor-46160.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Emmen\",\n                \"abbreviation\": \"EMM\",\n                \"badge\": \"sr-competitor-2965.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56b5-71c5-9048-74de7e57a250\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Almere\",\n                \"abbreviation\": \"ALM\",\n                \"badge\": \"sr-competitor-2990.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Alkmaar\",\n                \"abbreviation\": \"AZ\",\n                \"badge\": \"sr-competitor-46161.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56bb-726e-9510-609c326e03ae\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"De Graafschap\",\n                \"abbreviation\": \"GRA\",\n                \"badge\": \"sr-competitor-2949.png\"\n            },\n            \"away_team\": {\n                \"name\": \"PSV\",\n                \"abbreviation\": \"PSV\",\n                \"badge\": \"sr-competitor-46168.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56c1-73d6-9d83-c927e1170fca\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"FC Eindhoven\",\n                \"abbreviation\": \"EIN\",\n                \"badge\": \"sr-competitor-2994.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Venlo\",\n                \"abbreviation\": \"VEN\",\n                \"badge\": \"sr-competitor-2980.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56c8-729b-936f-8877500e8f6c\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Helmond\",\n                \"abbreviation\": \"HEL\",\n                \"badge\": \"sr-competitor-2974.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dordrecht\",\n                \"abbreviation\": \"DOR\",\n                \"badge\": \"sr-competitor-2973.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56d4-710f-9afb-45d4055c1fcb\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Utrecht\",\n                \"abbreviation\": \"UTR\",\n                \"badge\": \"sr-competitor-53067.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Oss\",\n                \"abbreviation\": \"OSS\",\n                \"badge\": \"sr-competitor-2978.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01991ac0-1391-7177-a7bf-2e63ca9c9356\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Vitesse\",\n                \"abbreviation\": \"VIT\",\n                \"badge\": \"sr-competitor-2958.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Roda\",\n                \"abbreviation\": \"ROD\",\n                \"badge\": \"sr-competitor-2954.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56db-70b9-93da-88ceada0f406\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eerste Divisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Waalwijk\",\n                \"abbreviation\": \"WAA\",\n                \"badge\": \"sr-competitor-2956.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Cambuur\",\n                \"abbreviation\": \"CAM\",\n                \"badge\": \"sr-competitor-2970.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-56af-711e-8571-93e78330e435\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Eredivisie\",\n                \"country\": \"Netherlands\"\n            },\n            \"home_team\": {\n                \"name\": \"Heerenveen\",\n                \"abbreviation\": \"HEE\",\n                \"badge\": \"sr-competitor-2964.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Breda\",\n                \"abbreviation\": \"BRE\",\n                \"badge\": \"sr-competitor-2947.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f42d5ae-7e4a-41bc-8c9a-3e5dedaf6d4b\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Bastia\",\n                \"abbreviation\": \"SCB\",\n                \"badge\": \"sr-competitor-1655.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Stade Lavallois\",\n                \"abbreviation\": \"LAV\",\n                \"badge\": \"sr-competitor-1673.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f42d5a9-e4c4-4c44-8351-c1e9a660d254\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Guingamp\",\n                \"abbreviation\": \"EAG\",\n                \"badge\": \"sr-competitor-1654.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Clermont Foot\",\n                \"abbreviation\": \"CFA\",\n                \"badge\": \"sr-competitor-1680.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f956ca3-783b-4cce-a49f-3f69d4898e54\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Le Mans\",\n                \"abbreviation\": \"MAN\",\n                \"badge\": \"sr-competitor-1672.png\"\n            },\n            \"away_team\": {\n                \"name\": \"US Boulogne\",\n                \"abbreviation\": \"BOU\",\n                \"badge\": \"sr-competitor-1711.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f42d5a7-3c34-4bfb-b13b-923a0316a760\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Pau\",\n                \"abbreviation\": \"PAU\",\n                \"badge\": \"sr-competitor-1685.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Dunkerque\",\n                \"abbreviation\": \"DUN\",\n                \"badge\": \"sr-competitor-6918.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f42d5ac-f295-4f22-943c-f466550506b1\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Red Star\",\n                \"abbreviation\": \"RST\",\n                \"badge\": \"sr-competitor-52874.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Grenoble\",\n                \"abbreviation\": \"GRE\",\n                \"badge\": \"sr-competitor-1671.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f42d5af-f49f-4e17-833b-0f8d5e9d7567\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Ligue 2\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Reims\",\n                \"abbreviation\": \"SDR\",\n                \"badge\": \"sr-competitor-1682.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Troyes\",\n                \"abbreviation\": \"EST\",\n                \"badge\": \"sr-competitor-1652.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-69ca-72af-a76d-c5598a4d4dad\",\n            \"kick_off\": \"2025-10-24 19:00:00\",\n            \"competition\": {\n                \"name\": \"Saudi Pro League\",\n                \"country\": \"Saudi Arabia\"\n            },\n            \"home_team\": {\n                \"name\": \"Al-Ittihad\",\n                \"abbreviation\": \"ITJ\",\n                \"badge\": \"sr-competitor-34315.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Al Hilal\",\n                \"abbreviation\": \"HIL\",\n                \"badge\": \"sr-competitor-21895.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f36d207-0c37-446f-8a9f-ef961b7e2fc4\",\n            \"kick_off\": \"2025-10-24 19:15:00\",\n            \"competition\": {\n                \"name\": \"Challenge League\",\n                \"country\": \"Switzerland\"\n            },\n            \"home_team\": {\n                \"name\": \"Aarau\",\n                \"abbreviation\": \"AAR\",\n                \"badge\": \"sr-competitor-2447.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Wil\",\n                \"abbreviation\": \"WIL\",\n                \"badge\": \"sr-competitor-2455.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f371270-9086-4305-b93f-bcdbd2d5f1e0\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"1. Liga\",\n                \"country\": \"Poland\"\n            },\n            \"home_team\": {\n                \"name\": \"Opole\",\n                \"abbreviation\": \"ODR\",\n                \"badge\": \"sr-competitor-7916.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Ruch Chorzow\",\n                \"abbreviation\": \"CHO\",\n                \"badge\": \"sr-competitor-3105.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019914f4-fced-7085-bbb3-67ebdd1ec7f3\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Bundesliga\",\n                \"country\": \"Germany\"\n            },\n            \"home_team\": {\n                \"name\": \"Bremen\",\n                \"abbreviation\": \"SVW\",\n                \"badge\": \"sr-competitor-2534.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Union Berlin\",\n                \"abbreviation\": \"UNI\",\n                \"badge\": \"sr-competitor-2547.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f6a7d65-42c9-42e0-84a3-30e00f6b6287\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Ekstraklasa\",\n                \"country\": \"Poland\"\n            },\n            \"home_team\": {\n                \"name\": \"Motor Lublin\",\n                \"abbreviation\": \"MOT\",\n                \"badge\": \"sr-competitor-7915.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Widzew Lodz\",\n                \"abbreviation\": \"WLO\",\n                \"badge\": \"sr-competitor-3115.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f4a124b-6c8d-49e6-859f-65e71bad9dc7\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"LaLiga 2\",\n                \"country\": \"Spain\"\n            },\n            \"home_team\": {\n                \"name\": \"Huesca\",\n                \"abbreviation\": \"HUE\",\n                \"badge\": \"sr-competitor-24265.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Las Palmas\",\n                \"abbreviation\": \"LPA\",\n                \"badge\": \"sr-competitor-6577.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-69ff-734e-a4c3-b07fe0c3221d\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Scottish Cup\",\n                \"country\": \"Scotland\"\n            },\n            \"home_team\": {\n                \"name\": \"Boness Athletic FC\",\n                \"abbreviation\": \"BON\",\n                \"badge\": \"sr-competitor-1147621.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Linlithgow Rose\",\n                \"abbreviation\": \"LIN\",\n                \"badge\": \"sr-competitor-8064.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f854676-5b78-48e2-8e12-788c77f31564\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Serie B\",\n                \"country\": \"Italy\"\n            },\n            \"home_team\": {\n                \"name\": \"Modena\",\n                \"abbreviation\": \"MOD\",\n                \"badge\": \"sr-competitor-2706.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Empoli\",\n                \"abbreviation\": \"EMP\",\n                \"badge\": \"sr-competitor-2705.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-69e7-735c-a076-0778d50dbe4b\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Serie C, Group A\",\n                \"country\": \"Italy\"\n            },\n            \"home_team\": {\n                \"name\": \"Novara\",\n                \"abbreviation\": \"NOV\",\n                \"badge\": \"sr-competitor-2767.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Virtus Verona\",\n                \"abbreviation\": \"VIR\",\n                \"badge\": \"sr-competitor-113761.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01993f4c-d6ec-70be-af12-78b380cad174\",\n            \"kick_off\": \"2025-10-24 19:30:00\",\n            \"competition\": {\n                \"name\": \"Serie C, Group C\",\n                \"country\": \"Italy\"\n            },\n            \"home_team\": {\n                \"name\": \"Foggia\",\n                \"abbreviation\": \"CAF\",\n                \"badge\": \"sr-competitor-2803.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Asd Team Altamura\",\n                \"abbreviation\": \"ALT\",\n                \"badge\": \"sr-competitor-368724.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf7e-ce60-7180-9fcd-38e935dc578d\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Championship\",\n                \"country\": \"Northern Ireland\"\n            },\n            \"home_team\": {\n                \"name\": \"Annagh United\",\n                \"abbreviation\": \"ANN\",\n                \"badge\": \"sr-competitor-39224.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Warrenpoint Town\",\n                \"abbreviation\": \"WAT\",\n                \"badge\": \"sr-competitor-43204.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f5d8465-acb5-4c5b-ac32-1c8a523c5992\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Cymru Premier\",\n                \"country\": \"Wales\"\n            },\n            \"home_team\": {\n                \"name\": \"Llanelli Town\",\n                \"abbreviation\": \"LLA\",\n                \"badge\": \"sr-competitor-4916.png\"\n            },\n            \"away_team\": {\n                \"name\": \"New Saints\",\n                \"abbreviation\": \"TNS\",\n                \"badge\": \"sr-competitor-4921.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-6a5c-715f-a6c4-2df186246be1\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"FA Trophy\",\n                \"country\": \"England\"\n            },\n            \"home_team\": {\n                \"name\": \"Dunston Uts\",\n                \"abbreviation\": \"DU\",\n                \"badge\": \"sr-competitor-46967.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Hebburn Town\",\n                \"abbreviation\": \"HEB\",\n                \"badge\": \"sr-competitor-47044.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199bb65-8cb8-7263-95d7-069f35d260c8\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"League 1\",\n                \"country\": \"Scotland\"\n            },\n            \"home_team\": {\n                \"name\": \"Hamilton\",\n                \"abbreviation\": \"HAM\",\n                \"badge\": \"sr-competitor-2376.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Queen of The South\",\n                \"abbreviation\": \"QOS\",\n                \"badge\": \"sr-competitor-2368.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01991faf-909d-733b-9103-ed144b71a4f6\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Ligue 1\",\n                \"country\": \"France\"\n            },\n            \"home_team\": {\n                \"name\": \"Paris FC\",\n                \"abbreviation\": \"PAR\",\n                \"badge\": \"sr-competitor-6070.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Nantes\",\n                \"abbreviation\": \"FCN\",\n                \"badge\": \"sr-competitor-1647.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9dc0fcf6-4c44-4916-8d89-5e03e852fba0\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Premier Division\",\n                \"country\": \"Ireland\"\n            },\n            \"home_team\": {\n                \"name\": \"Galway Utd\",\n                \"abbreviation\": \"GAL\",\n                \"badge\": \"sr-competitor-3172.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Drogheda United\",\n                \"abbreviation\": \"DRO\",\n                \"badge\": \"sr-competitor-3180.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9dc0fcf8-9733-4fc3-86c8-601653993f0a\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Premier Division\",\n                \"country\": \"Ireland\"\n            },\n            \"home_team\": {\n                \"name\": \"St. Patrick´s\",\n                \"abbreviation\": \"STP\",\n                \"badge\": \"sr-competitor-3169.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Waterford\",\n                \"abbreviation\": \"WAT\",\n                \"badge\": \"sr-competitor-3194.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f333761-648f-4ed5-a423-ad884df5d852\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Pro League\",\n                \"country\": \"Belgium\"\n            },\n            \"home_team\": {\n                \"name\": \"Charleroi\",\n                \"abbreviation\": \"RCH\",\n                \"badge\": \"sr-competitor-2898.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Anderlecht\",\n                \"abbreviation\": \"RSC\",\n                \"badge\": \"sr-competitor-2900.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cf7e-df6a-7337-985f-6abadbafc4cb\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Scottish Cup\",\n                \"country\": \"Scotland\"\n            },\n            \"home_team\": {\n                \"name\": \"Formartine\",\n                \"abbreviation\": \"FOR\",\n                \"badge\": \"sr-competitor-76347.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Buckie Thistle\",\n                \"abbreviation\": \"BUC\",\n                \"badge\": \"sr-competitor-2389.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f67afe9-c2dd-490c-ae3a-edbef2297fce\",\n            \"kick_off\": \"2025-10-24 19:45:00\",\n            \"competition\": {\n                \"name\": \"Serie A\",\n                \"country\": \"Italy\"\n            },\n            \"home_team\": {\n                \"name\": \"Milan\",\n                \"abbreviation\": \"ACM\",\n                \"badge\": \"sr-competitor-2692.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Pisa\",\n                \"abbreviation\": \"PIS\",\n                \"badge\": \"sr-competitor-2737.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199d437-802e-7396-9ad6-73930fde7491\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"competition\": {\n                \"name\": \"CAF Confederations Cup\",\n                \"country\": \"International Clubs\"\n            },\n            \"home_team\": {\n                \"name\": \"Wydad\",\n                \"abbreviation\": \"WAC\",\n                \"badge\": \"sr-competitor-36268.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Asante\",\n                \"abbreviation\": \"ASA\",\n                \"badge\": \"sr-competitor-41755.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9f8265bc-188f-46cc-9cea-c1e45044e0f9\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"competition\": {\n                \"name\": \"Championship\",\n                \"country\": \"England\"\n            },\n            \"home_team\": {\n                \"name\": \"Preston\",\n                \"abbreviation\": \"PNE\",\n                \"badge\": \"sr-competitor-21.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Sheffield Utd\",\n                \"abbreviation\": \"SHU\",\n                \"badge\": \"sr-competitor-15.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199812c-a204-7009-a7ba-7f55644bdb1f\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"competition\": {\n                \"name\": \"LaLiga\",\n                \"country\": \"Spain\"\n            },\n            \"home_team\": {\n                \"name\": \"Real Sociedad\",\n                \"abbreviation\": \"RSO\",\n                \"badge\": \"sr-competitor-2824.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Sevilla\",\n                \"abbreviation\": \"SEV\",\n                \"badge\": \"sr-competitor-2833.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019972cc-597d-730f-872a-d3af987095ef\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"Malta\"\n            },\n            \"home_team\": {\n                \"name\": \"Gzira Utd\",\n                \"abbreviation\": \"GZI\",\n                \"badge\": \"sr-competitor-58327.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Tarxien R\",\n                \"abbreviation\": \"TAR\",\n                \"badge\": \"sr-competitor-33580.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9fae436a-e5cd-49c4-9830-be1a0c2b2200\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"competition\": {\n                \"name\": \"Premier League\",\n                \"country\": \"England\"\n            },\n            \"home_team\": {\n                \"name\": \"Leeds\",\n                \"abbreviation\": \"LEE\",\n                \"badge\": \"sr-competitor-34.png\"\n            },\n            \"away_team\": {\n                \"name\": \"West Ham\",\n                \"abbreviation\": \"WHU\",\n                \"badge\": \"sr-competitor-37.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"01992054-49f4-70a7-a82e-a0d3e3caf49a\",\n            \"kick_off\": \"2025-10-24 20:15:00\",\n            \"competition\": {\n                \"name\": \"Liga Portugal\",\n                \"country\": \"Portugal\"\n            },\n            \"home_team\": {\n                \"name\": \"Alverca\",\n                \"abbreviation\": \"ALV\",\n                \"badge\": \"sr-competitor-3012.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Gil Vicente\",\n                \"abbreviation\": \"GIL\",\n                \"badge\": \"sr-competitor-3010.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199cd59-552a-7013-90ae-061b717839ad\",\n            \"kick_off\": \"2025-10-24 20:45:00\",\n            \"competition\": {\n                \"name\": \"Liga Portugal 2\",\n                \"country\": \"Portugal\"\n            },\n            \"home_team\": {\n                \"name\": \"Vizela\",\n                \"abbreviation\": \"VIZ\",\n                \"badge\": \"sr-competitor-5136.png\"\n            },\n            \"away_team\": {\n                \"name\": \"FC Felgueiras 1932\",\n                \"abbreviation\": \"FEL\",\n                \"badge\": \"sr-competitor-3030.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-6dc4-7191-b468-981e4c210ed2\",\n            \"kick_off\": \"2025-10-24 21:00:00\",\n            \"competition\": {\n                \"name\": \"Liga 1\",\n                \"country\": \"Peru\"\n            },\n            \"home_team\": {\n                \"name\": \"Juan Pablo II\",\n                \"abbreviation\": \"JUA\",\n                \"badge\": \"sr-competitor-1041663.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Comerciantes U\",\n                \"abbreviation\": \"COM\",\n                \"badge\": \"sr-competitor-241860.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"9e058626-c6a4-4068-8096-3698a2d583c1\",\n            \"kick_off\": \"2025-10-24 21:00:00\",\n            \"competition\": {\n                \"name\": \"Primera Division\",\n                \"country\": \"Chile\"\n            },\n            \"home_team\": {\n                \"name\": \"Palestino\",\n                \"abbreviation\": \"PAL\",\n                \"badge\": \"sr-competitor-3157.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Everton\",\n                \"abbreviation\": \"EVT\",\n                \"badge\": \"sr-competitor-5032.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199b563-6179-7074-a619-f3599545f534\",\n            \"kick_off\": \"2025-10-24 22:00:00\",\n            \"competition\": {\n                \"name\": \"Primera A, Clausura\",\n                \"country\": \"Colombia\"\n            },\n            \"home_team\": {\n                \"name\": \"Alianza FC Valledupar\",\n                \"abbreviation\": \"ALI\",\n                \"badge\": \"sr-competitor-1098993.png\"\n            },\n            \"away_team\": {\n                \"name\": \"La Equidad\",\n                \"abbreviation\": \"EQU\",\n                \"badge\": \"sr-competitor-6975.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199dd28-22d9-7117-bd7b-f15dcd934c31\",\n            \"kick_off\": \"2025-10-24 22:00:00\",\n            \"competition\": {\n                \"name\": \"Primera LPF\",\n                \"country\": \"Argentina\"\n            },\n            \"home_team\": {\n                \"name\": \"Independiente\",\n                \"abbreviation\": \"CAI\",\n                \"badge\": \"sr-competitor-3209.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Platense\",\n                \"abbreviation\": \"PLA\",\n                \"badge\": \"sr-competitor-36837.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"019974f1-b972-7022-96cf-17c6860e1cc9\",\n            \"kick_off\": \"2025-10-24 23:00:00\",\n            \"competition\": {\n                \"name\": \"Brasileiro Serie B\",\n                \"country\": \"Brazil\"\n            },\n            \"home_team\": {\n                \"name\": \"Gremio Novorizontino\",\n                \"abbreviation\": \"GRN\",\n                \"badge\": \"sr-competitor-135514.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Botafogo\",\n                \"abbreviation\": \"BOT\",\n                \"badge\": \"sr-competitor-1979.png\"\n            }\n        },\n        {\n            \"fixture_id\": \"0199feed-6e6c-715d-b343-fd16be42d719\",\n            \"kick_off\": \"2025-10-24 23:30:00\",\n            \"competition\": {\n                \"name\": \"Primera Division\",\n                \"country\": \"Uruguay\"\n            },\n            \"home_team\": {\n                \"name\": \"Defensor\",\n                \"abbreviation\": \"DEF\",\n                \"badge\": \"sr-competitor-3229.png\"\n            },\n            \"away_team\": {\n                \"name\": \"Montevideo City\",\n                \"abbreviation\": \"TOR\",\n                \"badge\": \"sr-competitor-174972.png\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"timezone\": \"Europe/London\",\n        \"sport_type\": \"soccer\",\n        \"dates\": {\n            \"utc_dates\": [\n                \"2025-10-23\",\n                \"2025-10-24\"\n            ]\n        }\n    }\n}"}],"_postman_id":"e44fffe6-0e32-450f-82bc-4fb450c92fb1"},{"name":"horse-markets","event":[{"listen":"prerequest","script":{"id":"6d986eab-a8b9-4186-8a01-d89be961e54d","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","","const fetchHorseRaces = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/horse-races?day=0\",","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, response) {","        if (err) {","            console.error(\"Error fetching horse-races:\", err);","            return reject(err);","        }","","        const jsonData = response.json();","        console.log(\"horse-races status:\", response.code);","        console.log(\"horse-races response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData.data && jsonData.data.length > 0) {","            resolve(jsonData.data[0].id);","        } else {","            console.error(\"No data found in horse-races response\");","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(\"No data found in horse-races response\"));","        }","    });","});","","const fetchHorseRace = (raceId) => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/horse-race/\" + raceId,","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, response) {","        if (err) {","            console.error(\"Error fetching horse-race:\", err);","            return reject(err);","        }","","        const jsonData = response.json();","        console.log(\"horse-race status:\", response.code);","        console.log(\"horse-race response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData.data && jsonData.data.runners && jsonData.data.runners.length > 0) {","            resolve(jsonData.data.runners[0].id);","        } else {","            console.error(\"No runners found in horse-race response\");","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(\"No runners found in horse-race response\"));","        }","    });","});","","const raceId = await fetchHorseRaces();","const runnerId = await fetchHorseRace(raceId);","","pm.environment.set(\"horse_ids\", runnerId);","pm.variables.set(\"horse_ids\", runnerId);","","console.log(\"Set horse_ids to:\", runnerId);"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"a39f9ccd-4c9b-4911-ad3d-936b109f7904","exec":["// Test 1: Status code is 200","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Response time is less than 1000ms","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 3: JSON schema validation","pm.test(\"Response matches expected JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"market_id\", \"market_name\", \"selections\"],","                    properties: {","                        market_id: { type: \"string\" },","                        market_name: { type: \"string\" },","                        selections: {","                            type: \"array\",","                            items: {","                                type: \"object\",","                                required: [\"selection_id\", \"selection_name\", \"selection_status\", \"odds\"],","                                properties: {","                                    selection_id: { type: \"string\" },","                                    selection_name: { type: \"string\" },","                                    selection_status: { type: \"string\" },","                                    odds: {","                                        type: \"object\",","                                        required: [\"decimal\", \"numerator\", \"denominator\"],","                                        properties: {","                                            decimal: { type: \"number\" },","                                            numerator: { type: \"number\" },","                                            denominator: { type: \"number\" }","                                        }","                                    }","                                }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"filtering\"],","                properties: {","                    results: { type: \"number\" },","                    filtering: {","                        type: \"object\",","                        required: [\"day\", \"date\", \"horse_ids\"],","                        properties: {","                            day: { type: \"number\" },","                            date: { type: \"string\" },","                            horse_ids: {","                                type: \"array\",","                                items: { type: \"string\" }","                            }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"bbe1e9bb-3f68-4420-b08c-c7529062260c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/horse-markets?day=0&horse_ids={{horse_ids}}","description":"<h3 id=\"get-horse-markets\">GET /horse-markets</h3>\n<p>This endpoint retrieves horse markets based on the provided day and horse IDs.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Query Parameters</p>\n<ul>\n<li><p>day: (integer) The day for which the horse markets are to be retrieved.</p>\n</li>\n<li><p>horse_ids: (string) The IDs of the horses for which the markets are to be retrieved.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will be a JSON object with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": [\n    {\n      \"market_id\": \"\",\n      \"market_name\": \"\",\n      \"selections\": [\n        {\n          \"selection_id\": \"\",\n          \"selection_name\": \"\",\n          \"selection_status\": \"\",\n          \"odds\": {\n            \"decimal\": 0,\n            \"numerator\": 0,\n            \"denominator\": 0\n          }\n        }\n      ]\n    }\n  ],\n  \"meta\": {\n    \"results\": 0,\n    \"filtering\": {\n      \"day\": 0,\n      \"date\": \"\",\n      \"horse_ids\": [\"\"]\n    }\n  }\n}\n\n</code></pre>\n<p>The <code>data</code> array contains information about the horse markets, including <code>market_id</code>, <code>market_name</code>, and an array of <code>selections</code> with details about each selection including <code>selection_id</code>, <code>selection_name</code>, <code>selection_status</code>, and <code>odds</code> in decimal, numerator, and denominator format.</p>\n<p>The <code>meta</code> object provides additional information about the results and the filtering applied, including the number of results and the filtering criteria used.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["horse-markets"],"host":[""],"query":[{"key":"day","value":"0"},{"key":"horse_ids","value":"{{horse_ids}}"}],"variable":[]}},"response":[{"id":"86f59cd8-d1c5-4273-8c99-7ec100521d0d","name":"horse-markets","originalRequest":{"method":"GET","header":[],"url":{"raw":"/horse-markets?day=0&horse_ids=9abe757a-7e5f-4b79-be85-72e9d66780c9","host":[""],"path":["horse-markets"],"query":[{"key":"day","value":"0"},{"key":"horse_ids","value":"9abe757a-7e5f-4b79-be85-72e9d66780c9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 15:15:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1296"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"03ce4161-8fb6-4b02-a089-d3ba1c3c3074"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9SuHEjijoEECHw="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb97f3-79d5fe620e77d51725b46c2e;Parent=24f31791b33b6215;Sampled=0;Lineage=1:f9a7ee37:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"market_id\": \"019a0b8a-7741-724e-a83d-7e64a9c1b1cb\",\n            \"market_name\": \"Win or Each Way\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a11e8-99c7-7270-88f4-c3ca9883cbc3\",\n                    \"selection_name\": \"the craftymaster\",\n                    \"selection_status\": \"ACTIVE\",\n                    \"odds\": {\n                        \"decimal\": 51,\n                        \"numerator\": 50,\n                        \"denominator\": 1\n                    }\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a1295-f451-70b0-93eb-6064ec84896c\",\n            \"market_name\": \"Top 4 Finish\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a1295-f518-7250-a498-0bf766ee10d8\",\n                    \"selection_name\": \"the craftymaster\",\n                    \"selection_status\": \"ACTIVE\",\n                    \"odds\": {\n                        \"decimal\": 5.5,\n                        \"numerator\": 9,\n                        \"denominator\": 2\n                    }\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a1295-f60e-7299-9368-75f57a88b100\",\n            \"market_name\": \"Top 3 Finish\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a1295-f6ca-7146-87d3-5b3d969119f6\",\n                    \"selection_name\": \"the craftymaster\",\n                    \"selection_status\": \"ACTIVE\",\n                    \"odds\": {\n                        \"decimal\": 10,\n                        \"numerator\": 9,\n                        \"denominator\": 1\n                    }\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a1295-f9e7-737d-91dd-aabaef2c02af\",\n            \"market_name\": \"Top 5 Finish\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a1295-fa62-7389-9a1a-b84a6bee4dbf\",\n                    \"selection_name\": \"the craftymaster\",\n                    \"selection_status\": \"ACTIVE\",\n                    \"odds\": {\n                        \"decimal\": 3.75,\n                        \"numerator\": 11,\n                        \"denominator\": 4\n                    }\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"results\": 4,\n        \"filtering\": {\n            \"day\": 0,\n            \"date\": \"2025-10-24\",\n            \"horse_ids\": [\n                \"9abe757a-7e5f-4b79-be85-72e9d66780c9\"\n            ]\n        }\n    }\n}"}],"_postman_id":"bbe1e9bb-3f68-4420-b08c-c7529062260c"},{"name":"horse-race","event":[{"id":"0208ef24-881f-4391-9418-37b0c28d376e","listen":"prerequest","script":{"id":"5e9d2323-83b3-4ed7-9230-10e9b5ec6d1e","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","","const fetchHorseRaces = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/horse-races?day=0\",","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, response) {","        if (err) {","            console.error(\"Error fetching horse-races:\", err);","            return reject(err);","        }","","        const jsonData = response.json();","        console.log(\"horse-races status:\", response.code);","        console.log(\"horse-races response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData.data && jsonData.data.length > 0) {","            resolve(jsonData.data[0].id);","        } else {","            console.error(\"No races found in response\");","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(\"No races found in response\"));","        }","    });","});","","const raceId = await fetchHorseRaces();","","pm.environment.set(\"id\", raceId);","","pm.request.url.variables.each(function(variable) {","    if (variable.key === \"id\") {","        variable.value = raceId;","    }","});","","console.log(\"Set race ID:\", raceId);"],"type":"text/javascript","packages":{},"requests":{}}},{"id":"cb89db02-1347-4782-a6a9-30db8a3daabf","listen":"test","script":{"id":"294940b3-0783-48ec-8a9a-aa8fb405d137","exec":["// Test 1: HTTP 200 Status Check","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Response Time Check","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 3: JSON Schema Validation","pm.test(\"Response has valid JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"object\",","                required: [\"id\", \"start_datetime\", \"racecourse\", \"status\", \"race_distance\", \"track_type\", \"race_type\", \"going\", \"num_runners\", \"runners\"],","                properties: {","                    id: { type: \"string\" },","                    start_datetime: { type: \"string\" },","                    racecourse: { type: \"string\" },","                    status: { type: [\"string\", \"null\"] },","                    race_distance: { type: \"string\" },","                    track_type: { type: \"string\" },","                    race_type: { type: \"string\" },","                    going: { type: [\"string\", \"null\"] },","                    num_runners: { type: [\"number\", \"null\"] },","                    runners: {","                        type: \"array\",","                        items: {","                            type: \"object\",","                            required: [\"id\", \"name\", \"status\", \"age\", \"weight\", \"all_time_starts\", \"rating\", \"finish_position\", \"cloth_number\", \"stall\", \"silk\", \"jockey_name\", \"trainer_name\", \"hit_rates\"],","                            properties: {","                                id: { type: \"string\" },","                                name: { type: \"string\" },","                                status: { type: [\"string\", \"null\"] },","                                age: { type: \"number\" },","                                weight: { type: \"number\" },","                                all_time_starts: { type: \"number\" },","                                rating: { type: [\"number\", \"null\"] },","                                finish_position: { type: [\"number\", \"null\"] },","                                cloth_number: { type: \"number\" },","                                stall: { type: [\"number\", \"null\"] },","                                silk: { type: \"string\" },","                                jockey_name: { type: \"string\" },","                                trainer_name: { type: \"string\" },","                                hit_rates: { type: \"string\" }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                properties: {","                    filtering: {","                        type: \"object\",","                        properties: {","                            race_id: { type: \"string\" }","                        }","                    }","                }","            }","        }","    };","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f6ba019d-de3a-468e-a759-eadff6b160dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/horse-race/:id","description":"<h3 id=\"get-horse-raceid\">GET /horse-race/:id</h3>\n<p>This endpoint retrieves details of a specific horse race identified by the provided <code>id</code>.</p>\n<h4 id=\"headers\">Headers</h4>\n<ul>\n<li>Content-Type: application/json</li>\n</ul>\n<h4 id=\"parameters\">Parameters</h4>\n<ul>\n<li>id (path parameter): The unique identifier of the horse race.</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon a successful request, the server responds with a status code of 200 and a JSON object containing the following fields:</p>\n<ul>\n<li><p>data (object):</p>\n<ul>\n<li><p>id: The unique identifier of the horse race.</p>\n</li>\n<li><p>start_datetime: The date and time when the race starts.</p>\n</li>\n<li><p>racecourse: The name of the racecourse.</p>\n</li>\n<li><p>status: The status of the race.</p>\n</li>\n<li><p>race_distance: The distance of the race.</p>\n</li>\n<li><p>track_type: The type of track for the race.</p>\n</li>\n<li><p>race_type: The type of race.</p>\n</li>\n<li><p>going: The track condition for the race.</p>\n</li>\n<li><p>num_runners: The number of runners in the race.</p>\n</li>\n<li><p>runners (array): An array of objects containing details of each runner in the race, including their id, name, status, age, weight, all_time_starts, rating, finish_position, cloth_number, stall, silk, jockey_name, trainer_name, and hit_rates.</p>\n</li>\n</ul>\n</li>\n<li><p>meta (object):</p>\n<ul>\n<li><p>filtering (object):</p>\n<ul>\n<li>race_id: The filtering parameter for race_id.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["horse-race",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"d69ce744-fc2d-4706-9133-e0ab4c9fed71","key":"id"}]}},"response":[{"id":"b5ed7154-7e53-4d58-8fc6-453a2c31a76a","name":"horse-race","originalRequest":{"method":"GET","header":[],"url":{"raw":"/horse-race/:id","host":[""],"path":["horse-race",":id"],"variable":[{"key":"id","value":"019a0b53-4b80-718f-a773-c908175c02cb"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:23:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"14127"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"14c16d63-1c63-45d9-bc9f-f23fe382da5e"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8wxHHL3DoEEcCw="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb61a0-2b2fc86e62f198c670e5b3d7;Parent=45e58e39ff65bc9e;Sampled=0;Lineage=1:e1e5eb45:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"019a0b53-4b80-718f-a773-c908175c02cb\",\n        \"start_datetime\": \"2025-10-24 12:06:00\",\n        \"racecourse\": \"Newbury\",\n        \"status\": \"not_started\",\n        \"race_distance\": \"2m 0f 0y\",\n        \"track_type\": \"Turf\",\n        \"race_type\": \"Flat\",\n        \"going\": \"Soft\",\n        \"num_runners\": 11,\n        \"runners\": [\n            {\n                \"id\": \"9abe757a-7e5f-4b79-be85-72e9d66780c9\",\n                \"name\": \"The Craftymaster\",\n                \"status\": \"Runner\",\n                \"age\": 5,\n                \"weight\": 126,\n                \"all_time_starts\": 29,\n                \"rating\": 3.3,\n                \"finish_position\": null,\n                \"cloth_number\": 7,\n                \"stall\": \"5\",\n                \"silk\": \"20251024nbu130607.svg\",\n                \"jockey_name\": \"Matthew Slater\",\n                \"trainer_name\": \"A W Carroll\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 6, \\\"TOP_2_FINISH\\\": 20, \\\"TOP_3_FINISH\\\": 20, \\\"TOP_4_FINISH\\\": 23, \\\"TOP_5_FINISH\\\": 40, \\\"TOP_6_FINISH\\\": 46, \\\"TOP_7_FINISH\\\": 56, \\\"TOP_8_FINISH\\\": 63, \\\"TOP_9_FINISH\\\": 66, \\\"TOP_10_FINISH\\\": 70}, \\\"numberOfRaces\\\": 30}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 0, \\\"TOP_3_FINISH\\\": 0, \\\"TOP_4_FINISH\\\": 0, \\\"TOP_5_FINISH\\\": 0, \\\"TOP_6_FINISH\\\": 0, \\\"TOP_7_FINISH\\\": 0, \\\"TOP_8_FINISH\\\": 0, \\\"TOP_9_FINISH\\\": 0, \\\"TOP_10_FINISH\\\": 0}, \\\"numberOfRaces\\\": 0}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": 9, \\\"TOP_2_FINISH\\\": 27, \\\"TOP_3_FINISH\\\": 27, \\\"TOP_4_FINISH\\\": 31, \\\"TOP_5_FINISH\\\": 54, \\\"TOP_6_FINISH\\\": 59, \\\"TOP_7_FINISH\\\": 68, \\\"TOP_8_FINISH\\\": 72, \\\"TOP_9_FINISH\\\": 77, \\\"TOP_10_FINISH\\\": 77}, \\\"numberOfRaces\\\": 22}}\"\n            },\n            {\n                \"id\": \"9ace91f2-a14a-44b3-a9d1-603f01e90248\",\n                \"name\": \"Corsican Caper\",\n                \"status\": \"Runner\",\n                \"age\": 5,\n                \"weight\": 120,\n                \"all_time_starts\": 53,\n                \"rating\": 2.4,\n                \"finish_position\": null,\n                \"cloth_number\": 10,\n                \"stall\": \"12\",\n                \"silk\": \"20251024nbu130610.svg\",\n                \"jockey_name\": \"Alfie Gee\",\n                \"trainer_name\": \"K Frost\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 7, \\\"TOP_2_FINISH\\\": 12, \\\"TOP_3_FINISH\\\": 25, \\\"TOP_4_FINISH\\\": 48, \\\"TOP_5_FINISH\\\": 57, \\\"TOP_6_FINISH\\\": 62, \\\"TOP_7_FINISH\\\": 67, \\\"TOP_8_FINISH\\\": 75, \\\"TOP_9_FINISH\\\": 75, \\\"TOP_10_FINISH\\\": 80}, \\\"numberOfRaces\\\": 56}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 14, \\\"TOP_2_FINISH\\\": 25, \\\"TOP_3_FINISH\\\": 37, \\\"TOP_4_FINISH\\\": 59, \\\"TOP_5_FINISH\\\": 70, \\\"TOP_6_FINISH\\\": 77, \\\"TOP_7_FINISH\\\": 81, \\\"TOP_8_FINISH\\\": 88, \\\"TOP_9_FINISH\\\": 88, \\\"TOP_10_FINISH\\\": 92}, \\\"numberOfRaces\\\": 27}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": 10, \\\"TOP_2_FINISH\\\": 10, \\\"TOP_3_FINISH\\\": 40, \\\"TOP_4_FINISH\\\": 50, \\\"TOP_5_FINISH\\\": 60, \\\"TOP_6_FINISH\\\": 60, \\\"TOP_7_FINISH\\\": 70, \\\"TOP_8_FINISH\\\": 80, \\\"TOP_9_FINISH\\\": 80, \\\"TOP_10_FINISH\\\": 80}, \\\"numberOfRaces\\\": 10}}\"\n            },\n            {\n                \"id\": \"9b0b4706-bdfc-416b-b618-4c4a2ee869be\",\n                \"name\": \"Aighear\",\n                \"status\": \"Runner\",\n                \"age\": 7,\n                \"weight\": 118,\n                \"all_time_starts\": 33,\n                \"rating\": 4.5,\n                \"finish_position\": null,\n                \"cloth_number\": 11,\n                \"stall\": \"1\",\n                \"silk\": \"20251024nbu130611.svg\",\n                \"jockey_name\": \"Lauren Young\",\n                \"trainer_name\": \"J S Goldie\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 12, \\\"TOP_2_FINISH\\\": 27, \\\"TOP_3_FINISH\\\": 33, \\\"TOP_4_FINISH\\\": 45, \\\"TOP_5_FINISH\\\": 66, \\\"TOP_6_FINISH\\\": 75, \\\"TOP_7_FINISH\\\": 75, \\\"TOP_8_FINISH\\\": 87, \\\"TOP_9_FINISH\\\": 90, \\\"TOP_10_FINISH\\\": 93}, \\\"numberOfRaces\\\": 33}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 26, \\\"TOP_2_FINISH\\\": 46, \\\"TOP_3_FINISH\\\": 53, \\\"TOP_4_FINISH\\\": 66, \\\"TOP_5_FINISH\\\": 86, \\\"TOP_6_FINISH\\\": 86, \\\"TOP_7_FINISH\\\": 86, \\\"TOP_8_FINISH\\\": 93, \\\"TOP_9_FINISH\\\": 93, \\\"TOP_10_FINISH\\\": 93}, \\\"numberOfRaces\\\": 15}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": 20, \\\"TOP_2_FINISH\\\": 40, \\\"TOP_3_FINISH\\\": 40, \\\"TOP_4_FINISH\\\": 60, \\\"TOP_5_FINISH\\\": 80, \\\"TOP_6_FINISH\\\": 90, \\\"TOP_7_FINISH\\\": 90, \\\"TOP_8_FINISH\\\": 100, \\\"TOP_9_FINISH\\\": 100, \\\"TOP_10_FINISH\\\": 100}, \\\"numberOfRaces\\\": 10}}\"\n            },\n            {\n                \"id\": \"9b11f3be-92ce-4a28-9d4e-826269b40c18\",\n                \"name\": \"Yellow Star\",\n                \"status\": \"Runner\",\n                \"age\": 5,\n                \"weight\": 135,\n                \"all_time_starts\": 14,\n                \"rating\": 1.5,\n                \"finish_position\": null,\n                \"cloth_number\": 1,\n                \"stall\": \"7\",\n                \"silk\": \"20251024nbu130601.svg\",\n                \"jockey_name\": \"Toby Moore\",\n                \"trainer_name\": \"G & J Moore\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 0, \\\"TOP_3_FINISH\\\": 7, \\\"TOP_4_FINISH\\\": 35, \\\"TOP_5_FINISH\\\": 57, \\\"TOP_6_FINISH\\\": 64, \\\"TOP_7_FINISH\\\": 71, \\\"TOP_8_FINISH\\\": 71, \\\"TOP_9_FINISH\\\": 78, \\\"TOP_10_FINISH\\\": 78}, \\\"numberOfRaces\\\": 14}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 0, \\\"TOP_3_FINISH\\\": 0, \\\"TOP_4_FINISH\\\": 37, \\\"TOP_5_FINISH\\\": 62, \\\"TOP_6_FINISH\\\": 62, \\\"TOP_7_FINISH\\\": 62, \\\"TOP_8_FINISH\\\": 62, \\\"TOP_9_FINISH\\\": 62, \\\"TOP_10_FINISH\\\": 62}, \\\"numberOfRaces\\\": 8}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 0, \\\"TOP_3_FINISH\\\": 0, \\\"TOP_4_FINISH\\\": 42, \\\"TOP_5_FINISH\\\": 57, \\\"TOP_6_FINISH\\\": 57, \\\"TOP_7_FINISH\\\": 71, \\\"TOP_8_FINISH\\\": 71, \\\"TOP_9_FINISH\\\": 71, \\\"TOP_10_FINISH\\\": 71}, \\\"numberOfRaces\\\": 7}}\"\n            },\n            {\n                \"id\": \"9b12e7ae-77f2-4a4b-8058-986aa387a132\",\n                \"name\": \"Imperial Cult\",\n                \"status\": \"Runner\",\n                \"age\": 6,\n                \"weight\": 122,\n                \"all_time_starts\": 34,\n                \"rating\": 2.1,\n                \"finish_position\": null,\n                \"cloth_number\": 9,\n                \"stall\": \"11\",\n                \"silk\": \"20251024nbu130609.svg\",\n                \"jockey_name\": \"Joe Bradnam\",\n                \"trainer_name\": \"R Cook & J Bridger\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 8, \\\"TOP_2_FINISH\\\": 20, \\\"TOP_3_FINISH\\\": 35, \\\"TOP_4_FINISH\\\": 44, \\\"TOP_5_FINISH\\\": 50, \\\"TOP_6_FINISH\\\": 64, \\\"TOP_7_FINISH\\\": 67, \\\"TOP_8_FINISH\\\": 82, \\\"TOP_9_FINISH\\\": 88, \\\"TOP_10_FINISH\\\": 94}, \\\"numberOfRaces\\\": 34}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 10, \\\"TOP_2_FINISH\\\": 20, \\\"TOP_3_FINISH\\\": 40, \\\"TOP_4_FINISH\\\": 50, \\\"TOP_5_FINISH\\\": 50, \\\"TOP_6_FINISH\\\": 60, \\\"TOP_7_FINISH\\\": 60, \\\"TOP_8_FINISH\\\": 90, \\\"TOP_9_FINISH\\\": 90, \\\"TOP_10_FINISH\\\": 90}, \\\"numberOfRaces\\\": 10}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 33, \\\"TOP_3_FINISH\\\": 33, \\\"TOP_4_FINISH\\\": 66, \\\"TOP_5_FINISH\\\": 66, \\\"TOP_6_FINISH\\\": 66, \\\"TOP_7_FINISH\\\": 66, \\\"TOP_8_FINISH\\\": 66, \\\"TOP_9_FINISH\\\": 66, \\\"TOP_10_FINISH\\\": 66}, \\\"numberOfRaces\\\": 3}}\"\n            },\n            {\n                \"id\": \"9b3b2f71-ab46-4691-b28f-7b01747af847\",\n                \"name\": \"No More Bolero\",\n                \"status\": \"Runner\",\n                \"age\": 6,\n                \"weight\": 135,\n                \"all_time_starts\": 14,\n                \"rating\": 1.5,\n                \"finish_position\": null,\n                \"cloth_number\": 2,\n                \"stall\": \"8\",\n                \"silk\": \"20251024nbu130602.svg\",\n                \"jockey_name\": \"Mason Paetel\",\n                \"trainer_name\": \"James Owen\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 14, \\\"TOP_3_FINISH\\\": 14, \\\"TOP_4_FINISH\\\": 21, \\\"TOP_5_FINISH\\\": 35, \\\"TOP_6_FINISH\\\": 57, \\\"TOP_7_FINISH\\\": 64, \\\"TOP_8_FINISH\\\": 71, \\\"TOP_9_FINISH\\\": 78, \\\"TOP_10_FINISH\\\": 85}, \\\"numberOfRaces\\\": 14}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 0, \\\"TOP_3_FINISH\\\": 0, \\\"TOP_4_FINISH\\\": 20, \\\"TOP_5_FINISH\\\": 40, \\\"TOP_6_FINISH\\\": 60, \\\"TOP_7_FINISH\\\": 60, \\\"TOP_8_FINISH\\\": 60, \\\"TOP_9_FINISH\\\": 60, \\\"TOP_10_FINISH\\\": 60}, \\\"numberOfRaces\\\": 5}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 16, \\\"TOP_3_FINISH\\\": 16, \\\"TOP_4_FINISH\\\": 16, \\\"TOP_5_FINISH\\\": 33, \\\"TOP_6_FINISH\\\": 50, \\\"TOP_7_FINISH\\\": 50, \\\"TOP_8_FINISH\\\": 66, \\\"TOP_9_FINISH\\\": 83, \\\"TOP_10_FINISH\\\": 83}, \\\"numberOfRaces\\\": 6}}\"\n            },\n            {\n                \"id\": \"9b6d7900-efcf-42b4-bc4a-0263a7000872\",\n                \"name\": \"Trapper John\",\n                \"status\": \"Runner\",\n                \"age\": 4,\n                \"weight\": 129,\n                \"all_time_starts\": 6,\n                \"rating\": 2.4,\n                \"finish_position\": null,\n                \"cloth_number\": 3,\n                \"stall\": \"10\",\n                \"silk\": \"20251024nbu130603.svg\",\n                \"jockey_name\": \"Ashley Lewis\",\n                \"trainer_name\": \"Harry Eustace\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 16, \\\"TOP_3_FINISH\\\": 16, \\\"TOP_4_FINISH\\\": 16, \\\"TOP_5_FINISH\\\": 50, \\\"TOP_6_FINISH\\\": 66, \\\"TOP_7_FINISH\\\": 83, \\\"TOP_8_FINISH\\\": 83, \\\"TOP_9_FINISH\\\": 83, \\\"TOP_10_FINISH\\\": 83}, \\\"numberOfRaces\\\": 6}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 0, \\\"TOP_3_FINISH\\\": 0, \\\"TOP_4_FINISH\\\": 0, \\\"TOP_5_FINISH\\\": 0, \\\"TOP_6_FINISH\\\": 100, \\\"TOP_7_FINISH\\\": 100, \\\"TOP_8_FINISH\\\": 100, \\\"TOP_9_FINISH\\\": 100, \\\"TOP_10_FINISH\\\": 100}, \\\"numberOfRaces\\\": 1}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": -1, \\\"TOP_2_FINISH\\\": -1, \\\"TOP_3_FINISH\\\": -1, \\\"TOP_4_FINISH\\\": -1, \\\"TOP_5_FINISH\\\": -1, \\\"TOP_6_FINISH\\\": -1, \\\"TOP_7_FINISH\\\": -1, \\\"TOP_8_FINISH\\\": -1, \\\"TOP_9_FINISH\\\": -1, \\\"TOP_10_FINISH\\\": -1}, \\\"numberOfRaces\\\": 0}}\"\n            },\n            {\n                \"id\": \"9c1c681d-68fd-40ef-a1be-a24b16605d32\",\n                \"name\": \"Capone\",\n                \"status\": \"Runner\",\n                \"age\": 10,\n                \"weight\": 129,\n                \"all_time_starts\": 32,\n                \"rating\": 3.6,\n                \"finish_position\": null,\n                \"cloth_number\": 4,\n                \"stall\": \"3\",\n                \"silk\": \"20251024nbu130604.svg\",\n                \"jockey_name\": \"Oliver Carmichael\",\n                \"trainer_name\": \"D J S Ffrench Davis\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 12, \\\"TOP_2_FINISH\\\": 35, \\\"TOP_3_FINISH\\\": 54, \\\"TOP_4_FINISH\\\": 58, \\\"TOP_5_FINISH\\\": 64, \\\"TOP_6_FINISH\\\": 77, \\\"TOP_7_FINISH\\\": 87, \\\"TOP_8_FINISH\\\": 93, \\\"TOP_9_FINISH\\\": 93, \\\"TOP_10_FINISH\\\": 93}, \\\"numberOfRaces\\\": 31}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 9, \\\"TOP_2_FINISH\\\": 36, \\\"TOP_3_FINISH\\\": 54, \\\"TOP_4_FINISH\\\": 63, \\\"TOP_5_FINISH\\\": 72, \\\"TOP_6_FINISH\\\": 72, \\\"TOP_7_FINISH\\\": 90, \\\"TOP_8_FINISH\\\": 100, \\\"TOP_9_FINISH\\\": 100, \\\"TOP_10_FINISH\\\": 100}, \\\"numberOfRaces\\\": 11}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": 13, \\\"TOP_2_FINISH\\\": 40, \\\"TOP_3_FINISH\\\": 63, \\\"TOP_4_FINISH\\\": 68, \\\"TOP_5_FINISH\\\": 72, \\\"TOP_6_FINISH\\\": 86, \\\"TOP_7_FINISH\\\": 90, \\\"TOP_8_FINISH\\\": 95, \\\"TOP_9_FINISH\\\": 95, \\\"TOP_10_FINISH\\\": 95}, \\\"numberOfRaces\\\": 22}}\"\n            },\n            {\n                \"id\": \"9c62e45a-481d-4f17-a793-27eef05357f9\",\n                \"name\": \"Golden Flame\",\n                \"status\": \"NonRunner\",\n                \"age\": 7,\n                \"weight\": 127,\n                \"all_time_starts\": 38,\n                \"rating\": 3.3,\n                \"finish_position\": null,\n                \"cloth_number\": 6,\n                \"stall\": \"4\",\n                \"silk\": \"20251024nbu130606.svg\",\n                \"jockey_name\": \"Non Runner\",\n                \"trainer_name\": \"T Faulkner\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 5, \\\"TOP_2_FINISH\\\": 25, \\\"TOP_3_FINISH\\\": 38, \\\"TOP_4_FINISH\\\": 44, \\\"TOP_5_FINISH\\\": 52, \\\"TOP_6_FINISH\\\": 63, \\\"TOP_7_FINISH\\\": 72, \\\"TOP_8_FINISH\\\": 75, \\\"TOP_9_FINISH\\\": 80, \\\"TOP_10_FINISH\\\": 80}, \\\"numberOfRaces\\\": 36}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 25, \\\"TOP_3_FINISH\\\": 50, \\\"TOP_4_FINISH\\\": 75, \\\"TOP_5_FINISH\\\": 100, \\\"TOP_6_FINISH\\\": 100, \\\"TOP_7_FINISH\\\": 100, \\\"TOP_8_FINISH\\\": 100, \\\"TOP_9_FINISH\\\": 100, \\\"TOP_10_FINISH\\\": 100}, \\\"numberOfRaces\\\": 4}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 21, \\\"TOP_3_FINISH\\\": 35, \\\"TOP_4_FINISH\\\": 42, \\\"TOP_5_FINISH\\\": 42, \\\"TOP_6_FINISH\\\": 50, \\\"TOP_7_FINISH\\\": 64, \\\"TOP_8_FINISH\\\": 64, \\\"TOP_9_FINISH\\\": 78, \\\"TOP_10_FINISH\\\": 78}, \\\"numberOfRaces\\\": 14}}\"\n            },\n            {\n                \"id\": \"9cefa46b-16a5-423c-bc84-57c5a84e4d19\",\n                \"name\": \"Arc Zoosve\",\n                \"status\": \"Runner\",\n                \"age\": 4,\n                \"weight\": 122,\n                \"all_time_starts\": 10,\n                \"rating\": 1.8,\n                \"finish_position\": null,\n                \"cloth_number\": 8,\n                \"stall\": \"9\",\n                \"silk\": \"20251024nbu130608.svg\",\n                \"jockey_name\": \"Ethan Tindall\",\n                \"trainer_name\": \"N B King\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 30, \\\"TOP_3_FINISH\\\": 50, \\\"TOP_4_FINISH\\\": 50, \\\"TOP_5_FINISH\\\": 50, \\\"TOP_6_FINISH\\\": 70, \\\"TOP_7_FINISH\\\": 90, \\\"TOP_8_FINISH\\\": 90, \\\"TOP_9_FINISH\\\": 100, \\\"TOP_10_FINISH\\\": 100}, \\\"numberOfRaces\\\": 10}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 0, \\\"TOP_3_FINISH\\\": 0, \\\"TOP_4_FINISH\\\": 0, \\\"TOP_5_FINISH\\\": 0, \\\"TOP_6_FINISH\\\": 0, \\\"TOP_7_FINISH\\\": 0, \\\"TOP_8_FINISH\\\": 0, \\\"TOP_9_FINISH\\\": 0, \\\"TOP_10_FINISH\\\": 0}, \\\"numberOfRaces\\\": 0}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 100, \\\"TOP_3_FINISH\\\": 100, \\\"TOP_4_FINISH\\\": 100, \\\"TOP_5_FINISH\\\": 100, \\\"TOP_6_FINISH\\\": 100, \\\"TOP_7_FINISH\\\": 100, \\\"TOP_8_FINISH\\\": 100, \\\"TOP_9_FINISH\\\": 100, \\\"TOP_10_FINISH\\\": 100}, \\\"numberOfRaces\\\": 1}}\"\n            },\n            {\n                \"id\": \"9e339589-e97d-42a7-bc51-349b9b2e8b2b\",\n                \"name\": \"Izakaya\",\n                \"status\": \"Runner\",\n                \"age\": 6,\n                \"weight\": 116,\n                \"all_time_starts\": 10,\n                \"rating\": 1.2,\n                \"finish_position\": null,\n                \"cloth_number\": 12,\n                \"stall\": \"6\",\n                \"silk\": \"20251024nbu130612.svg\",\n                \"jockey_name\": \"Isobelle Chalmers\",\n                \"trainer_name\": \"C Poulton\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 10, \\\"TOP_2_FINISH\\\": 10, \\\"TOP_3_FINISH\\\": 10, \\\"TOP_4_FINISH\\\": 20, \\\"TOP_5_FINISH\\\": 50, \\\"TOP_6_FINISH\\\": 50, \\\"TOP_7_FINISH\\\": 60, \\\"TOP_8_FINISH\\\": 70, \\\"TOP_9_FINISH\\\": 80, \\\"TOP_10_FINISH\\\": 80}, \\\"numberOfRaces\\\": 10}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 25, \\\"TOP_2_FINISH\\\": 25, \\\"TOP_3_FINISH\\\": 25, \\\"TOP_4_FINISH\\\": 50, \\\"TOP_5_FINISH\\\": 100, \\\"TOP_6_FINISH\\\": 100, \\\"TOP_7_FINISH\\\": 100, \\\"TOP_8_FINISH\\\": 100, \\\"TOP_9_FINISH\\\": 100, \\\"TOP_10_FINISH\\\": 100}, \\\"numberOfRaces\\\": 4}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 0, \\\"TOP_3_FINISH\\\": 0, \\\"TOP_4_FINISH\\\": 20, \\\"TOP_5_FINISH\\\": 60, \\\"TOP_6_FINISH\\\": 60, \\\"TOP_7_FINISH\\\": 60, \\\"TOP_8_FINISH\\\": 60, \\\"TOP_9_FINISH\\\": 80, \\\"TOP_10_FINISH\\\": 80}, \\\"numberOfRaces\\\": 5}}\"\n            },\n            {\n                \"id\": \"9f9795f0-a557-4303-81f2-5a008daad036\",\n                \"name\": \"Lady Chatterley\",\n                \"status\": \"Runner\",\n                \"age\": 4,\n                \"weight\": 127,\n                \"all_time_starts\": 1,\n                \"rating\": 1.2,\n                \"finish_position\": null,\n                \"cloth_number\": 5,\n                \"stall\": \"2\",\n                \"silk\": \"20251024nbu130605.svg\",\n                \"jockey_name\": \"Jack Callan\",\n                \"trainer_name\": \"George Baker\",\n                \"hit_rates\": \"{\\\"unfiltered\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 0, \\\"TOP_3_FINISH\\\": 0, \\\"TOP_4_FINISH\\\": 0, \\\"TOP_5_FINISH\\\": 0, \\\"TOP_6_FINISH\\\": 60, \\\"TOP_7_FINISH\\\": 60, \\\"TOP_8_FINISH\\\": 80, \\\"TOP_9_FINISH\\\": 100, \\\"TOP_10_FINISH\\\": 100}, \\\"numberOfRaces\\\": 5}, \\\"currentGoing\\\": {\\\"propositions\\\": {\\\"WIN\\\": 0, \\\"TOP_2_FINISH\\\": 0, \\\"TOP_3_FINISH\\\": 0, \\\"TOP_4_FINISH\\\": 0, \\\"TOP_5_FINISH\\\": 0, \\\"TOP_6_FINISH\\\": 100, \\\"TOP_7_FINISH\\\": 100, \\\"TOP_8_FINISH\\\": 100, \\\"TOP_9_FINISH\\\": 100, \\\"TOP_10_FINISH\\\": 100}, \\\"numberOfRaces\\\": 1}, \\\"currentDistance\\\": {\\\"propositions\\\": {\\\"WIN\\\": -1, \\\"TOP_2_FINISH\\\": -1, \\\"TOP_3_FINISH\\\": -1, \\\"TOP_4_FINISH\\\": -1, \\\"TOP_5_FINISH\\\": -1, \\\"TOP_6_FINISH\\\": -1, \\\"TOP_7_FINISH\\\": -1, \\\"TOP_8_FINISH\\\": -1, \\\"TOP_9_FINISH\\\": -1, \\\"TOP_10_FINISH\\\": -1}, \\\"numberOfRaces\\\": 0}}\"\n            }\n        ]\n    },\n    \"meta\": {\n        \"filtering\": {\n            \"race_id\": \"019a0b53-4b80-718f-a773-c908175c02cb\"\n        }\n    }\n}"}],"_postman_id":"f6ba019d-de3a-468e-a759-eadff6b160dc"},{"name":"horse-race-markets","event":[{"id":"cc042c4c-68c6-44da-a7fa-b0a200900d84","listen":"prerequest","script":{"id":"64e4daa0-5f41-4fc2-8c9a-f517f511270f","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","","const fetchHorseRaces = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/horse-races?day=0\",","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, response) {","        if (err) {","            console.error(\"Error fetching horse-races:\", err);","            return reject(err);","        }","","        const jsonData = response.json();","        console.log(\"horse-races status:\", response.code);","        console.log(\"horse-races response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData.data && jsonData.data.length > 0) {","            resolve(jsonData.data[0].id);","        } else {","            console.error(\"No races found in response\");","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(\"No races found in response\"));","        }","    });","});","","const raceId = await fetchHorseRaces();","","pm.environment.set(\"raceId\", raceId);","","pm.request.url.variables.each(function(variable) {","    if (variable.key === \"raceId\") {","        variable.value = raceId;","    }","});","","console.log(\"Set race ID:\", raceId);"],"type":"text/javascript","packages":{},"requests":{}}},{"id":"cc4400cb-0aa3-42a9-9a1b-3c890b7b967c","listen":"test","script":{"id":"49505d94-ef79-4650-a289-933bdeb237b2","exec":["// Test 1: HTTP 200 Status Check","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Response Time Check","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 3: JSON Schema Validation","pm.test(\"Response has valid JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"object\",","                required: [\"id\", \"start_datetime\", \"racecourse\", \"status\", \"race_distance\", \"track_type\", \"race_type\", \"going\", \"num_runners\", \"each_way_terms\", \"markets\"],","                properties: {","                    id: { type: \"string\" },","                    start_datetime: { type: \"string\" },","                    racecourse: { type: \"string\" },","                    status: { type: [\"string\", \"null\"] },","                    race_distance: { type: \"string\" },","                    track_type: { type: \"string\" },","                    race_type: { type: \"string\" },","                    going: { type: [\"string\", \"null\"] },","                    num_runners: { type: [\"number\", \"null\"] },","                    each_way_terms: {","                        type: \"array\",","                        items: {","                            type: \"object\",","                            required: [\"bookmaker\", \"places\", \"place_fraction_denominator\"],","                            properties: {","                                bookmaker: { type: \"string\" },","                                places: { type: \"number\" },","                                place_fraction_denominator: { type: \"number\" }","                            }","                        }","                    },","                    markets: {","                        type: \"array\",","                        items: {","                            type: \"object\",","                            required: [\"market_id\", \"market_type\", \"market_name\", \"selections\"],","                            properties: {","                                market_id: { type: \"string\" },","                                market_type: { type: \"string\" },","                                market_name: { type: \"string\" },","                                selections: {","                                    type: \"array\",","                                    items: {","                                        type: \"object\",","                                        required: [\"selection_id\", \"selection_name\", \"selection_status\", \"odds\"],","                                        properties: {","                                            selection_id: { type: \"string\" },","                                            selection_name: { type: \"string\" },","                                            selection_status: { type: \"string\" },","                                            odds: {","                                                type: \"object\",","                                                required: [\"decimal\", \"numerator\", \"denominator\"],","                                                properties: {","                                                    decimal: { type: \"number\" },","                                                    numerator: { type: \"number\" },","                                                    denominator: { type: \"number\" }","                                                }","                                            }","                                        }","                                    }","                                }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"filtering\"],","                properties: {","                    filtering: {","                        type: \"object\",","                        required: [\"race_id\"],","                        properties: {","                            race_id: { type: \"string\" }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f8169893-e377-4aa0-84ee-67ecbe712513","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/horse-race-markets/:raceId","description":"<h3 id=\"retrieve-horse-race-markets-by-race-id\">Retrieve Horse Race Markets by Race ID</h3>\n<p>This endpoint retrieves the details of horse race markets based on the provided race ID.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: /horse-race-markets/:raceId</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p>Status: 200</p>\n</li>\n<li><p>Content-Type: application/json</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": \"\",\n        \"start_datetime\": \"\",\n        \"racecourse\": \"\",\n        \"status\": \"\",\n        \"race_distance\": \"\",\n        \"track_type\": \"\",\n        \"race_type\": \"\",\n        \"going\": \"\",\n        \"num_runners\": 0,\n        \"each_way_terms\": [\n            {\n                \"bookmaker\": \"\",\n                \"places\": 0,\n                \"place_fraction_denominator\": 0\n            }\n        ],\n        \"markets\": [\n            {\n                \"market_id\": \"\",\n                \"market_type\": \"\",\n                \"market_name\": \"\",\n                \"selections\": [\n                    {\n                        \"selection_id\": \"\",\n                        \"selection_name\": \"\",\n                        \"selection_status\": \"\",\n                        \"odds\": {\n                            \"decimal\": 0,\n                            \"numerator\": 0,\n                            \"denominator\": 0\n                        }\n                    }\n                ]\n            }\n        ]\n    },\n    \"meta\": {\n        \"filtering\": {\n            \"race_id\": \"\"\n        }\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["horse-race-markets",":raceId"],"host":[""],"query":[],"variable":[{"type":"any","value":"bac6042f-b9a2-4e9a-aa89-303854d88c37","key":"raceId"}]}},"response":[{"id":"7c200cab-2272-4386-a6e0-cae4f1a473f5","name":"horse-race-markets","originalRequest":{"method":"GET","header":[],"url":{"raw":"/horse-race-markets/:raceId","host":[""],"path":["horse-race-markets",":raceId"],"variable":[{"key":"raceId","value":"019a0b53-4b80-718f-a773-c908175c02cb"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:23:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"9873"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"688f5847-6507-44cf-82e4-0747f2b4eefa"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8wzWH7rDoEEcoA="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb61ae-32939812092db0ea78e8f8f8;Parent=5a30acce9c033761;Sampled=0;Lineage=1:4348ffe0:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"019a0b53-4b80-718f-a773-c908175c02cb\",\n        \"start_datetime\": \"2025-10-24 12:06:00\",\n        \"racecourse\": \"Newbury\",\n        \"status\": \"not_started\",\n        \"race_distance\": \"2m 0f 0y\",\n        \"track_type\": \"Turf\",\n        \"race_type\": \"Flat\",\n        \"going\": \"Soft\",\n        \"num_runners\": 11,\n        \"each_way_terms\": [\n            {\n                \"bookmaker\": \"Betfair\",\n                \"places\": 3,\n                \"place_fraction_denominator\": 5\n            },\n            {\n                \"bookmaker\": \"Paddy Power\",\n                \"places\": 3,\n                \"place_fraction_denominator\": 5\n            },\n            {\n                \"bookmaker\": \"Sky Bet\",\n                \"places\": 3,\n                \"place_fraction_denominator\": 5\n            }\n        ],\n        \"markets\": [\n            {\n                \"market_id\": \"019a0b8a-7741-724e-a83d-7e64a9c1b1cb\",\n                \"market_type\": \"WIN\",\n                \"market_name\": \"Win or Each Way\",\n                \"selections\": [\n                    {\n                        \"selection_id\": \"019a11e8-98af-7157-b92b-1c86ed3a13a5\",\n                        \"selection_name\": \"Yellow Star\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 7.5,\n                            \"numerator\": 13,\n                            \"denominator\": 2\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a11e8-98e0-7231-bbaf-c62e6f375291\",\n                        \"selection_name\": \"No More Bolero\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 12,\n                            \"numerator\": 11,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a11e8-9912-7038-991c-6442c4a9896b\",\n                        \"selection_name\": \"Trapper John\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 4.5,\n                            \"numerator\": 7,\n                            \"denominator\": 2\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a11e8-9936-7159-9cd8-cf293fedff79\",\n                        \"selection_name\": \"Capone\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 10,\n                            \"numerator\": 9,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a11e8-9962-7394-842e-39faddaceed7\",\n                        \"selection_name\": \"Lady Chatterley\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 34,\n                            \"numerator\": 33,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a11e8-9997-72b1-8c5c-73e5144a9d43\",\n                        \"selection_name\": \"Golden Flame\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 9,\n                            \"numerator\": 8,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a11e8-99c7-7270-88f4-c3ca9883cbc3\",\n                        \"selection_name\": \"The Craftymaster\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 34,\n                            \"numerator\": 33,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a11e8-9a00-7117-bae0-47f6f4a21d6d\",\n                        \"selection_name\": \"Arc Zoosve\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 13,\n                            \"numerator\": 12,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a11e8-9a2c-7232-9873-c017cb5ef948\",\n                        \"selection_name\": \"Imperial Cult\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 10,\n                            \"numerator\": 9,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a11e8-9a57-7092-ae6f-4cd292cfb8dd\",\n                        \"selection_name\": \"Corsican Caper\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 7,\n                            \"numerator\": 6,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a11e8-9a80-7302-8ffa-e998f82f5dc4\",\n                        \"selection_name\": \"Aighear\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 3.75,\n                            \"numerator\": 11,\n                            \"denominator\": 4\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a11e8-9ac7-724c-b94a-37292f5050e0\",\n                        \"selection_name\": \"Izakaya\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 8.5,\n                            \"numerator\": 15,\n                            \"denominator\": 2\n                        }\n                    }\n                ]\n            },\n            {\n                \"market_id\": \"019a1295-f451-70b0-93eb-6064ec84896c\",\n                \"market_type\": \"TOP_4_FINISH\",\n                \"market_name\": \"Top 4 Finish\",\n                \"selections\": [\n                    {\n                        \"selection_id\": \"019a1295-f45b-7194-a4ee-455bee38eed1\",\n                        \"selection_name\": \"Yellow Star\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 2,\n                            \"numerator\": 1,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f47c-73d8-a00c-378e438cfc95\",\n                        \"selection_name\": \"No More Bolero\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 2.63,\n                            \"numerator\": 13,\n                            \"denominator\": 8\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f49d-7201-82cf-6375bbb09ea4\",\n                        \"selection_name\": \"Trapper John\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.44,\n                            \"numerator\": 4,\n                            \"denominator\": 9\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f4b6-71ad-a159-4d7a2e8eafd6\",\n                        \"selection_name\": \"Capone\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 2.4,\n                            \"numerator\": 7,\n                            \"denominator\": 5\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f4e3-7125-8180-b7138b2152e7\",\n                        \"selection_name\": \"Lady Chatterley\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 5,\n                            \"numerator\": 4,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f4fa-735b-ad64-d025efe8b4c7\",\n                        \"selection_name\": \"Golden Flame\",\n                        \"selection_status\": \"REMOVED\",\n                        \"odds\": {\n                            \"decimal\": 2.4,\n                            \"numerator\": 7,\n                            \"denominator\": 5\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f518-7250-a498-0bf766ee10d8\",\n                        \"selection_name\": \"The Craftymaster\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 5,\n                            \"numerator\": 4,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f533-7148-8857-3cf1c8fafd73\",\n                        \"selection_name\": \"Arc Zoosve\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 2.75,\n                            \"numerator\": 7,\n                            \"denominator\": 4\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f573-70d0-a470-a09202b81253\",\n                        \"selection_name\": \"Imperial Cult\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 2.38,\n                            \"numerator\": 11,\n                            \"denominator\": 8\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f596-73e9-a908-595ac4b4dfb6\",\n                        \"selection_name\": \"Corsican Caper\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.91,\n                            \"numerator\": 10,\n                            \"denominator\": 11\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f5b0-73d1-86fa-aba70f0cf27d\",\n                        \"selection_name\": \"Aighear\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.4,\n                            \"numerator\": 2,\n                            \"denominator\": 5\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f5e9-72fc-a877-76ceb28c31be\",\n                        \"selection_name\": \"Izakaya\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 2.1,\n                            \"numerator\": 11,\n                            \"denominator\": 10\n                        }\n                    }\n                ]\n            },\n            {\n                \"market_id\": \"019a1295-f60e-7299-9368-75f57a88b100\",\n                \"market_type\": \"TOP_3_FINISH\",\n                \"market_name\": \"Top 3 Finish\",\n                \"selections\": [\n                    {\n                        \"selection_id\": \"019a1295-f611-718c-8bec-67efe64fa010\",\n                        \"selection_name\": \"Yellow Star\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 2.63,\n                            \"numerator\": 13,\n                            \"denominator\": 8\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f631-710c-90b3-2095ce9f1b63\",\n                        \"selection_name\": \"No More Bolero\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 3.75,\n                            \"numerator\": 11,\n                            \"denominator\": 4\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f64d-7173-b119-565856bd121a\",\n                        \"selection_name\": \"Trapper John\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.8,\n                            \"numerator\": 4,\n                            \"denominator\": 5\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f674-71b7-837a-dc5ea2581e83\",\n                        \"selection_name\": \"Capone\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 3.25,\n                            \"numerator\": 9,\n                            \"denominator\": 4\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f695-7044-8d02-7d36315a4e14\",\n                        \"selection_name\": \"Lady Chatterley\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 8,\n                            \"numerator\": 7,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f6b1-724c-8197-91edf00b194e\",\n                        \"selection_name\": \"Golden Flame\",\n                        \"selection_status\": \"REMOVED\",\n                        \"odds\": {\n                            \"decimal\": 3.13,\n                            \"numerator\": 85,\n                            \"denominator\": 40\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f6ca-7146-87d3-5b3d969119f6\",\n                        \"selection_name\": \"The Craftymaster\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 8,\n                            \"numerator\": 7,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f6e6-73f7-b133-8789aa0fd051\",\n                        \"selection_name\": \"Arc Zoosve\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 4,\n                            \"numerator\": 3,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f6ff-70c6-8dc5-d817e5ff5e20\",\n                        \"selection_name\": \"Imperial Cult\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 3.25,\n                            \"numerator\": 9,\n                            \"denominator\": 4\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f72c-729a-b970-a713f82bc48d\",\n                        \"selection_name\": \"Corsican Caper\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 2.4,\n                            \"numerator\": 7,\n                            \"denominator\": 5\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f75a-73fa-b9fe-6bff747a9f43\",\n                        \"selection_name\": \"Aighear\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.62,\n                            \"numerator\": 8,\n                            \"denominator\": 13\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f77e-715c-9772-502d6d9dab80\",\n                        \"selection_name\": \"Izakaya\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 2.8,\n                            \"numerator\": 9,\n                            \"denominator\": 5\n                        }\n                    }\n                ]\n            },\n            {\n                \"market_id\": \"019a1295-f9e7-737d-91dd-aabaef2c02af\",\n                \"market_type\": \"TOP_5_FINISH\",\n                \"market_name\": \"Top 5 Finish\",\n                \"selections\": [\n                    {\n                        \"selection_id\": \"019a1295-f9eb-73eb-bf83-3e4e4a88ad7d\",\n                        \"selection_name\": \"Yellow Star\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.67,\n                            \"numerator\": 4,\n                            \"denominator\": 6\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-f9fd-7283-a2ad-c8fed7f65a9e\",\n                        \"selection_name\": \"No More Bolero\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 2,\n                            \"numerator\": 1,\n                            \"denominator\": 1\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-fa15-71e4-ac96-cdb96bbbbe14\",\n                        \"selection_name\": \"Trapper John\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.33,\n                            \"numerator\": 1,\n                            \"denominator\": 3\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-fa26-73d2-b608-ce87f8d78d6b\",\n                        \"selection_name\": \"Capone\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.91,\n                            \"numerator\": 10,\n                            \"denominator\": 11\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-fa3f-72c0-bc7e-f0cf79861748\",\n                        \"selection_name\": \"Lady Chatterley\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 3.5,\n                            \"numerator\": 5,\n                            \"denominator\": 2\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-fa51-7319-b664-ced6c1a2997a\",\n                        \"selection_name\": \"Golden Flame\",\n                        \"selection_status\": \"REMOVED\",\n                        \"odds\": {\n                            \"decimal\": 1.91,\n                            \"numerator\": 10,\n                            \"denominator\": 11\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-fa62-7389-9a1a-b84a6bee4dbf\",\n                        \"selection_name\": \"The Craftymaster\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 3.5,\n                            \"numerator\": 5,\n                            \"denominator\": 2\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-fa76-7191-b67d-e6da9d864bdf\",\n                        \"selection_name\": \"Arc Zoosve\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 2.1,\n                            \"numerator\": 11,\n                            \"denominator\": 10\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-fa87-71b7-a572-db2e374dfb74\",\n                        \"selection_name\": \"Imperial Cult\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.83,\n                            \"numerator\": 5,\n                            \"denominator\": 6\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-fa99-73cc-a3e2-30896673ea4a\",\n                        \"selection_name\": \"Corsican Caper\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.62,\n                            \"numerator\": 8,\n                            \"denominator\": 13\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-faaa-7019-b4eb-24151419e9d7\",\n                        \"selection_name\": \"Aighear\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.29,\n                            \"numerator\": 2,\n                            \"denominator\": 7\n                        }\n                    },\n                    {\n                        \"selection_id\": \"019a1295-fabf-71cc-9d10-b4cb5deefd29\",\n                        \"selection_name\": \"Izakaya\",\n                        \"selection_status\": \"ACTIVE\",\n                        \"odds\": {\n                            \"decimal\": 1.73,\n                            \"numerator\": 8,\n                            \"denominator\": 11\n                        }\n                    }\n                ]\n            }\n        ]\n    },\n    \"meta\": {\n        \"filtering\": {\n            \"race_id\": \"019a0b53-4b80-718f-a773-c908175c02cb\"\n        }\n    }\n}"}],"_postman_id":"f8169893-e377-4aa0-84ee-67ecbe712513"},{"name":"horse-races","event":[{"listen":"test","script":{"id":"2588e855-68af-4e9e-8bb2-f45b4897fdcf","exec":["// Test 1: HTTP 200 Status Check","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Response Time Check","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 3: JSON Schema Validation","pm.test(\"Response has valid JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"id\", \"start_datetime\", \"racecourse\", \"status\"],","                    properties: {","                        id: { type: \"string\" },","                        start_datetime: { type: \"string\" },","                        racecourse: { type: \"string\" },","                        status: { type: [\"string\", \"null\"] }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"filtering\"],","                properties: {","                    results: { type: \"number\" },","                    filtering: {","                        type: \"object\",","                        required: [\"day\", \"date_start\", \"date_end\"],","                        properties: {","                            day: { type: \"string\" },","                            date_start: { type: \"string\" },","                            date_end: { type: \"string\" }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4a3a5331-e361-49e0-b17d-79c9453555de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/horse-races?day=0","description":"<p>This endpoint makes an HTTP GET request to retrieve information about horse races for a specific day. The request should include a query parameter \"day\" with the value representing the day for which the user wants to retrieve the information.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p>Endpoint: <code>/horse-races</code></p>\n</li>\n<li><p>Method: GET</p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li><code>day</code> (integer, required): Represents the day for which the information is requested.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will be in JSON format with a status code of 200. It will contain an array of \"data\" with each object representing a horse race, including the race ID, start datetime, racecourse, and status. Additionally, the \"meta\" object will provide information about the number of results and the applied filtering criteria.</p>\n<p>Example response body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": [\n        {\n            \"id\": \"\",\n            \"start_datetime\": \"\",\n            \"racecourse\": \"\",\n            \"status\": \"\"\n        }\n    ],\n    \"meta\": {\n        \"results\": 0,\n        \"filtering\": {\n            \"day\": 0,\n            \"date\": \"\"\n        }\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["horse-races"],"host":[""],"query":[{"key":"day","value":"0"}],"variable":[]}},"response":[{"id":"06f348ff-fc49-4573-845b-5340d61c011b","name":"horse-races","originalRequest":{"method":"GET","header":[],"url":{"raw":"/horse-races?day=0","host":[""],"path":["horse-races"],"query":[{"key":"day","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:22:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4444"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"72074753-79e6-4844-b9e6-b98b26f8c86e"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8wuKEHfDoEEmIQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb618d-19e2f0c454ca88da3801b8fb;Parent=44f2663c8ddeef39;Sampled=0;Lineage=1:f4bd7819:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"019a0b53-4b80-718f-a773-c908175c02cb\",\n            \"start_datetime\": \"2025-10-24 12:06:00\",\n            \"racecourse\": \"Newbury\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b54-3b34-73ad-9bf2-f394f517d3c7\",\n            \"start_datetime\": \"2025-10-24 12:15:00\",\n            \"racecourse\": \"Cheltenham\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b52-66c7-7361-a6f5-9ab1068ed971\",\n            \"start_datetime\": \"2025-10-24 12:33:00\",\n            \"racecourse\": \"Doncaster\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b53-82c6-7379-9a0b-04382280fa8a\",\n            \"start_datetime\": \"2025-10-24 12:41:00\",\n            \"racecourse\": \"Newbury\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b54-8029-705b-b00e-6a5f1256eeb3\",\n            \"start_datetime\": \"2025-10-24 12:50:00\",\n            \"racecourse\": \"Cheltenham\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b52-aae6-7162-9ce3-aa18eeb6cbb8\",\n            \"start_datetime\": \"2025-10-24 13:08:00\",\n            \"racecourse\": \"Doncaster\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b53-9dd1-7392-b15e-b158da3a1b67\",\n            \"start_datetime\": \"2025-10-24 13:16:00\",\n            \"racecourse\": \"Newbury\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b54-8a52-7314-9ddb-892ca2d0f5f1\",\n            \"start_datetime\": \"2025-10-24 13:25:00\",\n            \"racecourse\": \"Cheltenham\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b52-bcf7-706e-8f59-a7aa1a45e7e5\",\n            \"start_datetime\": \"2025-10-24 13:43:00\",\n            \"racecourse\": \"Doncaster\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b53-b176-730f-87a3-f2c5325b75ba\",\n            \"start_datetime\": \"2025-10-24 13:51:00\",\n            \"racecourse\": \"Newbury\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b54-a2e3-7011-aca9-4be687d60e5f\",\n            \"start_datetime\": \"2025-10-24 14:00:00\",\n            \"racecourse\": \"Cheltenham\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b52-c868-7328-9dad-2de69d508208\",\n            \"start_datetime\": \"2025-10-24 14:18:00\",\n            \"racecourse\": \"Doncaster\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b53-c5c5-72e5-8e87-de5741588189\",\n            \"start_datetime\": \"2025-10-24 14:26:00\",\n            \"racecourse\": \"Newbury\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b54-bfe0-7142-98fc-49ea9d26bad5\",\n            \"start_datetime\": \"2025-10-24 14:35:00\",\n            \"racecourse\": \"Cheltenham\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b52-dbab-7217-935c-25d6e42ab4a2\",\n            \"start_datetime\": \"2025-10-24 14:53:00\",\n            \"racecourse\": \"Doncaster\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b53-d9b2-7297-a239-59d6c2795157\",\n            \"start_datetime\": \"2025-10-24 15:01:00\",\n            \"racecourse\": \"Newbury\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b54-d095-73d5-8a5c-a4b9e2f4d843\",\n            \"start_datetime\": \"2025-10-24 15:10:00\",\n            \"racecourse\": \"Cheltenham\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b55-28f8-71e8-8e06-140bcc572ccb\",\n            \"start_datetime\": \"2025-10-24 15:15:00\",\n            \"racecourse\": \"Southwell\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b52-e600-70f5-8f47-79975d705ca4\",\n            \"start_datetime\": \"2025-10-24 15:28:00\",\n            \"racecourse\": \"Doncaster\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b53-df58-7115-80ff-1fc783b8d0cc\",\n            \"start_datetime\": \"2025-10-24 15:35:00\",\n            \"racecourse\": \"Newbury\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b54-dbf2-71b0-80e4-15fc724793df\",\n            \"start_datetime\": \"2025-10-24 15:45:00\",\n            \"racecourse\": \"Cheltenham\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b55-417b-7375-9606-8ed1f851e303\",\n            \"start_datetime\": \"2025-10-24 15:50:00\",\n            \"racecourse\": \"Southwell\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b53-08a6-7209-a818-cdb6a5e974f2\",\n            \"start_datetime\": \"2025-10-24 16:03:00\",\n            \"racecourse\": \"Doncaster\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b53-ebf4-72a6-85db-06676efddd07\",\n            \"start_datetime\": \"2025-10-24 16:10:00\",\n            \"racecourse\": \"Newbury\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b55-5ca7-7025-b9eb-aaa67d49271a\",\n            \"start_datetime\": \"2025-10-24 16:20:00\",\n            \"racecourse\": \"Southwell\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b55-6303-738a-8bd2-ca91e5ce57ed\",\n            \"start_datetime\": \"2025-10-24 16:55:00\",\n            \"racecourse\": \"Southwell\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b55-7686-706d-aa5d-d15edc418b4a\",\n            \"start_datetime\": \"2025-10-24 17:30:00\",\n            \"racecourse\": \"Southwell\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b55-8d77-7148-9f08-6b439b7fcbc2\",\n            \"start_datetime\": \"2025-10-24 18:00:00\",\n            \"racecourse\": \"Southwell\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b55-9a2c-714d-bad2-06299a49ea60\",\n            \"start_datetime\": \"2025-10-24 18:30:00\",\n            \"racecourse\": \"Southwell\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b55-a836-71bf-ac74-1cbda75a0748\",\n            \"start_datetime\": \"2025-10-24 19:00:00\",\n            \"racecourse\": \"Southwell\",\n            \"status\": \"not_started\"\n        },\n        {\n            \"id\": \"019a0b55-b391-7099-ac4d-17f02e4f9e53\",\n            \"start_datetime\": \"2025-10-24 19:30:00\",\n            \"racecourse\": \"Southwell\",\n            \"status\": \"not_started\"\n        }\n    ],\n    \"meta\": {\n        \"results\": 31,\n        \"filtering\": {\n            \"day\": 0,\n            \"date\": \"2025-10-24\"\n        }\n    }\n}"}],"_postman_id":"4a3a5331-e361-49e0-b17d-79c9453555de"},{"name":"match-centre-fixture","event":[{"listen":"prerequest","script":{"id":"fe0c4342-3366-4dcc-80ab-53b1c038548d","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","","const fetchFixtures = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/fixtures-centre-matches\",","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, response) {","        if (err) {","            console.error(\"Error fetching fixtures:\", err);","            return reject(err);","        }","","        const jsonData = response.json();","        console.log(\"fixtures-centre-matches status:\", response.code);","        console.log(\"fixtures-centre-matches response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData && jsonData.data && jsonData.data.fixtures && jsonData.data.fixtures.length > 0) {","            resolve(jsonData.data.fixtures[0].id);","        } else {","            console.error(\"No fixtures found in response\");","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(\"No fixtures found in response\"));","        }","    });","});","","const fixtureId = await fetchFixtures();","","pm.environment.set(\"id\", fixtureId);","","pm.request.url.variables.each(function(variable) {","    if (variable.key === \"id\") {","        variable.value = fixtureId;","    }","});","","console.log(\"Set fixture ID:\", fixtureId);"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"747f6b21-1d0a-4bce-a4e9-2d0f01f1e28e","exec":["// Test 1: Status code is 200","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Response time is less than 1000ms","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 3: JSON schema validation","pm.test(\"Response matches expected JSON schema\", function () {","    const jsonData = pm.response.json();","    ","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"object\",","                required: [\"id\", \"competition_name\", \"competition_id\", \"sport_radar_competition_id\", \"competition_type\", \"competition_logo\", \"season_id\", \"phase_id\", \"kick_off\", \"country\", \"teams\", \"has_stats\", \"data_level\", \"data_coverage\"],","                properties: {","                    id: { type: [\"string\", \"null\"] },","                    competition_name: { type: [\"string\", \"null\"] },","                    short_competition_name: { type: [\"string\", \"null\"] },","                    competition_id: { type: [\"string\", \"null\"] },","                    sport_radar_competition_id: { type: [\"string\", \"null\"] },","                    competition_type: { type: [\"string\", \"null\"] },","                    competition_logo: { type: [\"string\", \"null\"] },","                    season_id: { type: [\"string\", \"null\"] },","                    phase_id: { type: [\"string\", \"null\"] },","                    kick_off: { type: [\"string\", \"null\"] },","                    bet_builder_competition_coverage: {},","                    bet_builder_competition_tab_key: {},","                    country: {","                        type: \"object\",","                        required: [\"name\", \"flag\"],","                        properties: {","                            name: { type: [\"string\", \"null\"] },","                            flag: { type: [\"string\", \"null\"] }","                        }","                    },","                    teams: {","                        type: \"object\",","                        required: [\"home\", \"away\"],","                        properties: {","                            home: {","                                type: \"object\",","                                required: [\"id\", \"name\", \"badge\", \"abbreviation\"],","                                properties: {","                                    id: { type: [\"string\", \"null\"] },","                                    name: { type: [\"string\", \"null\"] },","                                    badge: { type: [\"string\", \"null\"] },","                                    flag: { type: [\"string\", \"null\"] },","                                    abbreviation: { type: [\"string\", \"null\"] },","                                    formation: { type: [\"string\", \"null\"] },","                                    predicted_formation: { type: [\"string\", \"null\"] }","                                }","                            },","                            away: {","                                type: \"object\",","                                required: [\"id\", \"name\", \"badge\", \"abbreviation\"],","                                properties: {","                                    id: { type: [\"string\", \"null\"] },","                                    name: { type: [\"string\", \"null\"] },","                                    badge: { type: [\"string\", \"null\"] },","                                    flag: { type: [\"string\", \"null\"] },","                                    abbreviation: { type: [\"string\", \"null\"] },","                                    formation: { type: [\"string\", \"null\"] },","                                    predicted_formation: { type: [\"string\", \"null\"] }","                                }","                            }","                        }","                    },","                    has_stats: { type: \"boolean\" },","                    data_level: { type: [\"string\", \"null\"] },","                    data_coverage: {","                        type: \"object\",","                        properties: {","                            stats: { type: \"object\" },","                            provider: { type: [\"string\", \"null\"] },","                            provider_fixture_id: { type: [\"string\", \"null\"] },","                            has_team_stats: { type: \"boolean\" },","                            has_player_stats: { type: \"boolean\" },","                            has_provisional_lineups: { type: \"boolean\" },","                            has_confirmed_lineups: { type: \"boolean\" }","                        }","                    },","                    bet_builder: { type: [\"number\", \"null\"] },","                    league_table: { type: [\"number\", \"null\"] },","                    results: { type: [\"number\", \"null\"] }","                }","            },","            meta: {","                type: \"object\",","                required: [\"timezone\"],","                properties: {","                    timezone: { type: [\"string\", \"null\"] }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"408e2438-5c39-4e42-8efc-48ff925d8092","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/match-centre-fixture/:id","description":"<p>This endpoint makes an HTTP GET request to retrieve match center fixture details based on the provided ID. The response will be in JSON format and will contain various details related to the competition, teams, statistics, and meta information.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li>The request should be made to the endpoint <code>/match-centre-fixture/:id</code> where <code>:id</code> is the identifier of the specific fixture.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will be a JSON object with the following structure:</p>\n<ul>\n<li><p><code>data</code>: An object containing detailed information about the fixture, including competition details, team details, statistics, and coverage.</p>\n<ul>\n<li><p><code>id</code>: The ID of the fixture.</p>\n</li>\n<li><p><code>competition_name</code>: The name of the competition.</p>\n</li>\n<li><p><code>short_competition_name</code>: The short name of the competition.</p>\n</li>\n<li><p><code>competition_id</code>: The ID of the competition.</p>\n</li>\n<li><p><code>sport_radar_competition_id</code>: The SportRadar ID of the competition.</p>\n</li>\n<li><p><code>competition_type</code>: The type of the competition.</p>\n</li>\n<li><p><code>competition_logo</code>: The logo of the competition.</p>\n</li>\n<li><p><code>season_id</code>: The ID of the season.</p>\n</li>\n<li><p><code>phase_id</code>: The ID of the phase.</p>\n</li>\n<li><p><code>kick_off</code>: The kick-off time of the fixture.</p>\n</li>\n<li><p><code>bet_builder_competition_coverage</code>: The coverage of the Bet Builder for the competition.</p>\n</li>\n<li><p><code>bet_builder_competition_tab_key</code>: The tab key for the Bet Builder of the competition.</p>\n</li>\n<li><p><code>country</code>: An object containing the name and flag of the country.</p>\n</li>\n<li><p><code>teams</code>: An object containing details of the home and away teams, including their IDs, names, badges, and abbreviations.</p>\n</li>\n<li><p><code>has_stats</code>: A boolean indicating whether statistics are available for the fixture.</p>\n</li>\n<li><p><code>data_level</code>: The level of data coverage.</p>\n</li>\n<li><p><code>data_coverage</code>: An object containing statistics coverage for teams, players, provider, and fixture lineup details.</p>\n</li>\n<li><p><code>bet_builder</code>: The coverage of the Bet Builder.</p>\n</li>\n<li><p><code>league_table</code>: The coverage of the league table.</p>\n</li>\n<li><p><code>results</code>: The coverage of the results.</p>\n</li>\n</ul>\n</li>\n<li><p><code>meta</code>: An object containing meta information.</p>\n<ul>\n<li><code>timezone</code>: The timezone of the fixture.</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["match-centre-fixture",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"019cd50b-f2fe-73ef-8868-17c0aae2b33d","key":"id"}]}},"response":[{"id":"ab27d9d6-e4a7-4a27-bad8-ced63b25ad33","name":"match-centre-fixture","originalRequest":{"method":"GET","header":[],"url":{"raw":"/match-centre-fixture/:id","host":[""],"path":["match-centre-fixture",":id"],"variable":[{"key":"id","value":"9fae4361-7554-45fc-ba79-4fe586eea353"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:27:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1884"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"3facc151-99c8-470d-9549-f28e27d93140"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8xbPH-EDoEEGGQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb62ad-6bd34b214e99399331875b05;Parent=5db018e42bf3e1c9;Sampled=0;Lineage=1:43915a82:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n        \"competition_name\": \"Premier League\",\n        \"short_competition_name\": null,\n        \"competition_id\": \"9a94abbd-c337-4e95-862c-e8cb2cf29a61\",\n        \"sport_radar_competition_id\": \"sr:competition:17\",\n        \"competition_type\": \"league\",\n        \"competition_logo\": \"sr-competition-17.png\",\n        \"season_id\": \"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf\",\n        \"phase_id\": \"sr:league:95139\",\n        \"kick_off\": \"2025-10-26 14:00:00\",\n        \"bet_builder_competition_coverage\": {\n            \"domestic\": \"Premier League\"\n        },\n        \"bet_builder_competition_tab_key\": \"domestic\",\n        \"country\": {\n            \"name\": \"England\",\n            \"flag\": \"ENG.png\"\n        },\n        \"teams\": {\n            \"home\": {\n                \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"name\": \"Aston Villa\",\n                \"badge\": \"sr-competitor-40.png\",\n                \"flag\": null,\n                \"abbreviation\": \"AVL\",\n                \"formation\": null,\n                \"predicted_formation\": \"4231\"\n            },\n            \"away\": {\n                \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"name\": \"Man City\",\n                \"badge\": \"sr-competitor-17.png\",\n                \"flag\": null,\n                \"abbreviation\": \"MCI\",\n                \"formation\": null,\n                \"predicted_formation\": \"4141\"\n            }\n        },\n        \"has_stats\": true,\n        \"data_level\": \"opta\",\n        \"data_coverage\": {\n            \"stats\": {\n                \"team\": {\n                    \"cards\": true,\n                    \"corners\": false,\n                    \"fouls\": true,\n                    \"goals\": true,\n                    \"shots\": true,\n                    \"form\": true,\n                    \"competition\": {\n                        \"domestic\": \"Domestic Leagues\",\n                        \"international_clubs\": \"Club World Cup\"\n                    },\n                    \"home_season_ids\": {\n                        \"domestic\": \"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf\",\n                        \"international_clubs\": \"\"\n                    },\n                    \"away_season_ids\": {\n                        \"domestic\": \"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf\",\n                        \"international_clubs\": \"\"\n                    }\n                },\n                \"player\": {\n                    \"fouls\": true,\n                    \"shooting\": true,\n                    \"goalscoring\": true,\n                    \"tackles\": true,\n                    \"goalkeeping\": true,\n                    \"competition\": {\n                        \"domestic\": \"Domestic Leagues\"\n                    }\n                },\n                \"provider\": \"opta\",\n                \"provider_fixture_id\": \"1x07v32ex6xevmomsysc6e4us\",\n                \"has_team_stats\": true,\n                \"has_player_stats\": true,\n                \"has_provisional_lineups\": true,\n                \"has_confirmed_lineups\": false\n            },\n            \"bet_builder\": 1,\n            \"league_table\": 1,\n            \"results\": 1\n        }\n    },\n    \"meta\": {\n        \"timezone\": \"UTC\"\n    }\n}"}],"_postman_id":"408e2438-5c39-4e42-8efc-48ff925d8092"},{"name":"match-centre-head-to-head","event":[{"id":"e9c8303b-4a21-4c7f-92a4-f5eae2bd1746","listen":"prerequest","script":{"id":"f96b1c46-4c3e-4c21-8471-5d6da654e7d9","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","","const fetchFixtures = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/fixtures-centre-matches\",","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, res) {","        if (err) {","            console.error(\"Error fetching fixtures:\", err);","            return reject(err);","        }","","        const jsonData = res.json();","        console.log(\"fixtures-centre-matches status:\", res.code);","        console.log(\"fixtures-centre-matches response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData && jsonData.data && jsonData.data.fixtures && jsonData.data.fixtures.length > 0) {","            resolve(jsonData.data.fixtures[0].id);","        } else {","            console.error(\"No fixtures found in response\");","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(\"No fixtures found in response\"));","        }","    });","});","","const fixtureId = await fetchFixtures();","","pm.environment.set(\"id\", fixtureId);","","pm.request.url.variables.each(function(variable) {","    if (variable.key === \"id\") {","        variable.value = fixtureId;","    }","});","","console.log(\"Set fixture ID:\", fixtureId);"],"type":"text/javascript","packages":{},"requests":{}}},{"id":"7f085719-6265-40bd-ad76-27c4eeb4b653","listen":"test","script":{"id":"5d9f9227-29d2-4ac5-b246-d777ff65c9b1","exec":["// Test 1: Status code is 200","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Response time is less than 1000ms","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 3: JSON schema validation for head-to-head endpoint","pm.test(\"Response matches expected JSON schema\", function () {","    const response = pm.response.json();","    ","    // Validate top-level structure","    pm.expect(response).to.be.an('object');","    pm.expect(response).to.have.property('data');","    pm.expect(response).to.have.property('meta');","    ","    // Validate meta object","    pm.expect(response.meta).to.be.an('object');","    ","    // Validate data - could be object or array containing head-to-head matches","    const data = response.data;","    ","    if (Array.isArray(data)) {","        // If data is an array of matches","        data.forEach(function(match, index) {","            pm.expect(match).to.be.an('object', `Match at index ${index} should be an object`);","            if (match.id) {","                pm.expect(match.id).to.be.a('string');","            }","        });","    } else if (typeof data === 'object' && data !== null) {","        // If data is an object, check for common head-to-head properties","        // Check for matches/fixtures array if present","        if (data.matches) {","            pm.expect(data.matches).to.be.an('array');","            data.matches.forEach(function(match, index) {","                pm.expect(match).to.be.an('object', `Match at index ${index} should be an object`);","            });","        }","        if (data.fixtures) {","            pm.expect(data.fixtures).to.be.an('array');","            data.fixtures.forEach(function(fixture, index) {","                pm.expect(fixture).to.be.an('object', `Fixture at index ${index} should be an object`);","            });","        }","    }","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"c1b2df59-cc26-455c-b3d1-3ef7211bfa26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/match-centre-head-to-head/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["match-centre-head-to-head",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"019cd50b-f2fe-73ef-8868-17c0aae2b33d","key":"id"}]}},"response":[{"id":"4a495f09-7444-4b9c-8849-9ba8a3df8d9c","name":"match-centre-head-to-head","originalRequest":{"method":"GET","header":[],"url":{"raw":"/match-centre-head-to-head/:id","host":[""],"path":["match-centre-head-to-head",":id"],"variable":[{"key":"id","value":"9fae4361-7554-45fc-ba79-4fe586eea353"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:27:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1733"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"787ad071-5b3c-490f-b666-495ee07032af"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8xcwHYGjoEEvHQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb62b7-56dd34010ee2f2eb1459b8b4;Parent=3926869869f6cc52;Sampled=0;Lineage=1:3fd3db0c:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n        \"metrics\": {\n            \"matches_played\": 4,\n            \"home_wins\": 2,\n            \"away_wins\": 2,\n            \"draws\": 0,\n            \"over_15\": 75,\n            \"over_25\": 75,\n            \"btts\": 75\n        },\n        \"fixtures\": [\n            {\n                \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353-2025-04-22\",\n                \"date\": \"2025-04-22\",\n                \"competition_name\": \"Premier League\",\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"name\": \"Man City\",\n                        \"badge\": \"sr-competitor-17.png\",\n                        \"goals\": 2\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"name\": \"Aston Villa\",\n                        \"badge\": \"sr-competitor-40.png\",\n                        \"goals\": 1\n                    }\n                }\n            },\n            {\n                \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353-2024-12-21\",\n                \"date\": \"2024-12-21\",\n                \"competition_name\": \"Premier League\",\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"name\": \"Man City\",\n                        \"badge\": \"sr-competitor-17.png\",\n                        \"goals\": 1\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"name\": \"Aston Villa\",\n                        \"badge\": \"sr-competitor-40.png\",\n                        \"goals\": 2\n                    }\n                }\n            },\n            {\n                \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353-2024-04-03\",\n                \"date\": \"2024-04-03\",\n                \"competition_name\": \"Premier League\",\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"name\": \"Man City\",\n                        \"badge\": \"sr-competitor-17.png\",\n                        \"goals\": 4\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"name\": \"Aston Villa\",\n                        \"badge\": \"sr-competitor-40.png\",\n                        \"goals\": 1\n                    }\n                }\n            },\n            {\n                \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353-2023-12-06\",\n                \"date\": \"2023-12-06\",\n                \"competition_name\": \"Premier League\",\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"name\": \"Man City\",\n                        \"badge\": \"sr-competitor-17.png\",\n                        \"goals\": 0\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"name\": \"Aston Villa\",\n                        \"badge\": \"sr-competitor-40.png\",\n                        \"goals\": 1\n                    }\n                }\n            }\n        ]\n    },\n    \"meta\": {\n        \"num_fixtures\": 4\n    }\n}"}],"_postman_id":"c1b2df59-cc26-455c-b3d1-3ef7211bfa26"},{"name":"match-centre-form","event":[{"id":"d9aab33a-7b48-4625-8ba4-c0bfacb5bbb4","listen":"prerequest","script":{"id":"98db3728-9e76-4ac9-9498-53f29ab6cd22","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","","const fetchFixtures = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/fixtures-centre-matches\",","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, res) {","        if (err) {","            console.error(\"Error fetching fixtures:\", err);","            return reject(err);","        }","","        const jsonData = res.json();","        console.log(\"fixtures-centre-matches status:\", res.code);","        console.log(\"fixtures-centre-matches response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData && jsonData.data && jsonData.data.fixtures && jsonData.data.fixtures.length > 0) {","            resolve(jsonData.data.fixtures[0].id);","        } else {","            console.error(\"No fixtures found in response\");","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(\"No fixtures found in response\"));","        }","    });","});","","const fixtureId = await fetchFixtures();","","pm.environment.set(\"id\", fixtureId);","","pm.request.url.variables.each(function(variable) {","    if (variable.key === \"id\") {","        variable.value = fixtureId;","    }","});","","console.log(\"Set fixture ID:\", fixtureId);"],"type":"text/javascript","packages":{},"requests":{}}},{"id":"ca686285-2d3b-495c-b47e-0bbda1598539","listen":"test","script":{"id":"118953f2-a460-4c4e-a80d-c5d2bc37d15e","exec":["// Test 1: Status code is 200","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Response time is less than 1000ms","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 3: JSON schema validation for form/recent results endpoint","pm.test(\"Response matches expected JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"object\",","                properties: {","                    home: {","                        type: [\"object\", \"array\"],","                        description: \"Home team form data\"","                    },","                    away: {","                        type: [\"object\", \"array\"],","                        description: \"Away team form data\"","                    }","                }","            },","            meta: {","                type: \"object\",","                properties: {","                    timezone: { type: \"string\" }","                }","            }","        }","    };","    ","    const response = pm.response.json();","    pm.expect(response).to.have.property('data');","    pm.expect(response).to.have.property('meta');","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.meta).to.be.an('object');","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a9969bc2-b949-481c-b607-06f7bb5493e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/match-centre-form/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["match-centre-form",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"019cd50b-f2fe-73ef-8868-17c0aae2b33d","key":"id"}]}},"response":[{"id":"7b0da8d5-389c-45db-ae73-989b8fe94e56","name":"match-centre-head-to-head","originalRequest":{"method":"GET","header":[],"url":{"raw":"/match-centre-head-to-head/:id","host":[""],"path":["match-centre-head-to-head",":id"],"variable":[{"key":"id","value":"9fae4361-7554-45fc-ba79-4fe586eea353"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:27:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1733"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"787ad071-5b3c-490f-b666-495ee07032af"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8xcwHYGjoEEvHQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb62b7-56dd34010ee2f2eb1459b8b4;Parent=3926869869f6cc52;Sampled=0;Lineage=1:3fd3db0c:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n        \"metrics\": {\n            \"matches_played\": 4,\n            \"home_wins\": 2,\n            \"away_wins\": 2,\n            \"draws\": 0,\n            \"over_15\": 75,\n            \"over_25\": 75,\n            \"btts\": 75\n        },\n        \"fixtures\": [\n            {\n                \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353-2025-04-22\",\n                \"date\": \"2025-04-22\",\n                \"competition_name\": \"Premier League\",\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"name\": \"Man City\",\n                        \"badge\": \"sr-competitor-17.png\",\n                        \"goals\": 2\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"name\": \"Aston Villa\",\n                        \"badge\": \"sr-competitor-40.png\",\n                        \"goals\": 1\n                    }\n                }\n            },\n            {\n                \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353-2024-12-21\",\n                \"date\": \"2024-12-21\",\n                \"competition_name\": \"Premier League\",\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"name\": \"Man City\",\n                        \"badge\": \"sr-competitor-17.png\",\n                        \"goals\": 1\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"name\": \"Aston Villa\",\n                        \"badge\": \"sr-competitor-40.png\",\n                        \"goals\": 2\n                    }\n                }\n            },\n            {\n                \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353-2024-04-03\",\n                \"date\": \"2024-04-03\",\n                \"competition_name\": \"Premier League\",\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"name\": \"Man City\",\n                        \"badge\": \"sr-competitor-17.png\",\n                        \"goals\": 4\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"name\": \"Aston Villa\",\n                        \"badge\": \"sr-competitor-40.png\",\n                        \"goals\": 1\n                    }\n                }\n            },\n            {\n                \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353-2023-12-06\",\n                \"date\": \"2023-12-06\",\n                \"competition_name\": \"Premier League\",\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"name\": \"Man City\",\n                        \"badge\": \"sr-competitor-17.png\",\n                        \"goals\": 0\n                    },\n                    \"away\": {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"name\": \"Aston Villa\",\n                        \"badge\": \"sr-competitor-40.png\",\n                        \"goals\": 1\n                    }\n                }\n            }\n        ]\n    },\n    \"meta\": {\n        \"num_fixtures\": 4\n    }\n}"}],"_postman_id":"a9969bc2-b949-481c-b607-06f7bb5493e9"},{"name":"match-centre-league-table","event":[{"listen":"test","script":{"id":"2e82a6dd-e141-4deb-ac0c-f0d18ba6e126","exec":["pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"65d4e454-55fa-4053-947c-109f43769d35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/match-centre-league-table/:id?phaseId=sr:league:95139","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["match-centre-league-table",":id"],"host":[""],"query":[{"key":"phaseId","value":"sr:league:95139"}],"variable":[{"type":"any","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf","key":"id"}]}},"response":[{"id":"569c7114-64fb-425f-84ea-af7dc85a2d90","name":"match-centre-league-table","originalRequest":{"method":"GET","header":[],"url":{"raw":"/match-centre-league-table/:id?phaseId=sr:league:95139","host":[""],"path":["match-centre-league-table",":id"],"query":[{"key":"phaseId","value":"sr:league:95139"}],"variable":[{"key":"id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 15:14:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"48688"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"8221cf71-c1b6-44b4-bced-37751bf8aae8"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9SlmHz1joEEaZA="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb97bd-34f6dea82c20717f6d3dd7cf;Parent=373877b239457544;Sampled=0;Lineage=1:1fc76dc3:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"season_id\": \"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf\",\n        \"competition_name\": \"Premier League\",\n        \"competition_logo\": \"sr-competition-17.png\",\n        \"season_name\": \"Premier League 25/26\",\n        \"country_name\": null,\n        \"country_flag\": \"ENG.png\",\n        \"overall_tables\": [\n            {\n                \"phase\": {\n                    \"id\": \"sr:league:95139\",\n                    \"name\": \"Premier League 25/26\",\n                    \"order\": 1,\n                    \"type\": \"league\",\n                    \"year\": \"25/26\",\n                    \"phase\": \"Regular season\",\n                    \"start_date\": \"2025-08-15\",\n                    \"end_date\": \"2026-05-24\"\n                },\n                \"potential_outcome\": [],\n                \"standings\": [\n                    {\n                        \"id\": \"9a94ad06-886c-4083-8954-79b2b1503e7a\",\n                        \"team_name\": \"Arsenal FC\",\n                        \"team_short_name\": \"Arsenal\",\n                        \"team_abbreviation\": \"ARS\",\n                        \"team_badge\": \"sr-competitor-42.png\",\n                        \"position\": 1,\n                        \"matches_played\": 8,\n                        \"win\": 6,\n                        \"draw\": 1,\n                        \"loss\": 1,\n                        \"goal_difference\": 12,\n                        \"goals_for\": 15,\n                        \"goals_against\": 3,\n                        \"goals_per_game\": 2.25,\n                        \"goals_position\": 17,\n                        \"points\": 19,\n                        \"points_per_game\": 2.38,\n                        \"corners_for\": 63,\n                        \"corners_against\": 30,\n                        \"corners_per_game\": 11.63,\n                        \"corners_position\": 1,\n                        \"cards_for\": 9,\n                        \"cards_against\": 12,\n                        \"cards_per_game\": 2.63,\n                        \"cards_position\": 19,\n                        \"last_5_form\": \"WDWWW\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"team_name\": \"Manchester City\",\n                        \"team_short_name\": \"Man City\",\n                        \"team_abbreviation\": \"MCI\",\n                        \"team_badge\": \"sr-competitor-17.png\",\n                        \"position\": 2,\n                        \"matches_played\": 8,\n                        \"win\": 5,\n                        \"draw\": 1,\n                        \"loss\": 2,\n                        \"goal_difference\": 11,\n                        \"goals_for\": 17,\n                        \"goals_against\": 6,\n                        \"goals_per_game\": 2.88,\n                        \"goals_position\": 9,\n                        \"points\": 16,\n                        \"points_per_game\": 2,\n                        \"corners_for\": 40,\n                        \"corners_against\": 29,\n                        \"corners_per_game\": 8.63,\n                        \"corners_position\": 15,\n                        \"cards_for\": 8,\n                        \"cards_against\": 14,\n                        \"cards_per_game\": 2.75,\n                        \"cards_position\": 18,\n                        \"last_5_form\": \"WDWWW\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a94c959-5c74-4e18-9ef0-45fe1d11b801\",\n                        \"team_name\": \"AFC Bournemouth\",\n                        \"team_short_name\": \"Bournemouth\",\n                        \"team_abbreviation\": \"BOU\",\n                        \"team_badge\": \"sr-competitor-60.png\",\n                        \"position\": 3,\n                        \"matches_played\": 8,\n                        \"win\": 4,\n                        \"draw\": 3,\n                        \"loss\": 1,\n                        \"goal_difference\": 3,\n                        \"goals_for\": 14,\n                        \"goals_against\": 11,\n                        \"goals_per_game\": 3.13,\n                        \"goals_position\": 2,\n                        \"points\": 15,\n                        \"points_per_game\": 1.88,\n                        \"corners_for\": 45,\n                        \"corners_against\": 31,\n                        \"corners_per_game\": 9.5,\n                        \"corners_position\": 13,\n                        \"cards_for\": 20,\n                        \"cards_against\": 17,\n                        \"cards_per_game\": 4.63,\n                        \"cards_position\": 4,\n                        \"last_5_form\": \"WDDWD\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-978e-4b3e-9143-502fc4f85204\",\n                        \"team_name\": \"Liverpool FC\",\n                        \"team_short_name\": \"Liverpool\",\n                        \"team_abbreviation\": \"LFC\",\n                        \"team_badge\": \"sr-competitor-44.png\",\n                        \"position\": 3,\n                        \"matches_played\": 8,\n                        \"win\": 5,\n                        \"draw\": 0,\n                        \"loss\": 3,\n                        \"goal_difference\": 3,\n                        \"goals_for\": 14,\n                        \"goals_against\": 11,\n                        \"goals_per_game\": 3.13,\n                        \"goals_position\": 3,\n                        \"points\": 15,\n                        \"points_per_game\": 1.88,\n                        \"corners_for\": 45,\n                        \"corners_against\": 40,\n                        \"corners_per_game\": 10.63,\n                        \"corners_position\": 6,\n                        \"cards_for\": 15,\n                        \"cards_against\": 14,\n                        \"cards_per_game\": 3.63,\n                        \"cards_position\": 9,\n                        \"last_5_form\": \"WWLLL\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a94ad05-baf5-454f-9961-3772d0e6cbe6\",\n                        \"team_name\": \"Chelsea FC\",\n                        \"team_short_name\": \"Chelsea\",\n                        \"team_abbreviation\": \"CFC\",\n                        \"team_badge\": \"sr-competitor-38.png\",\n                        \"position\": 5,\n                        \"matches_played\": 8,\n                        \"win\": 4,\n                        \"draw\": 2,\n                        \"loss\": 2,\n                        \"goal_difference\": 7,\n                        \"goals_for\": 16,\n                        \"goals_against\": 9,\n                        \"goals_per_game\": 3.13,\n                        \"goals_position\": 1,\n                        \"points\": 14,\n                        \"points_per_game\": 1.75,\n                        \"corners_for\": 47,\n                        \"corners_against\": 37,\n                        \"corners_per_game\": 10.5,\n                        \"corners_position\": 7,\n                        \"cards_for\": 20,\n                        \"cards_against\": 18,\n                        \"cards_per_game\": 4.75,\n                        \"cards_position\": 2,\n                        \"last_5_form\": \"DLLWW\",\n                        \"current_outcome\": \"UEFA Europa League\"\n                    },\n                    {\n                        \"id\": \"9a94ace2-01ee-4545-84d4-9c6639093ffa\",\n                        \"team_name\": \"Tottenham Hotspur\",\n                        \"team_short_name\": \"Tottenham\",\n                        \"team_abbreviation\": \"TOT\",\n                        \"team_badge\": \"sr-competitor-33.png\",\n                        \"position\": 6,\n                        \"matches_played\": 8,\n                        \"win\": 4,\n                        \"draw\": 2,\n                        \"loss\": 2,\n                        \"goal_difference\": 7,\n                        \"goals_for\": 14,\n                        \"goals_against\": 7,\n                        \"goals_per_game\": 2.63,\n                        \"goals_position\": 11,\n                        \"points\": 14,\n                        \"points_per_game\": 1.75,\n                        \"corners_for\": 48,\n                        \"corners_against\": 43,\n                        \"corners_per_game\": 11.38,\n                        \"corners_position\": 2,\n                        \"cards_for\": 17,\n                        \"cards_against\": 11,\n                        \"cards_per_game\": 3.5,\n                        \"cards_position\": 12,\n                        \"last_5_form\": \"WDDWL\"\n                    },\n                    {\n                        \"id\": \"9a948076-e459-4d98-bb82-33fe3a0f516b\",\n                        \"team_name\": \"Sunderland AFC\",\n                        \"team_short_name\": \"Sunderland\",\n                        \"team_abbreviation\": \"SUN\",\n                        \"team_badge\": \"sr-competitor-41.png\",\n                        \"position\": 7,\n                        \"matches_played\": 8,\n                        \"win\": 4,\n                        \"draw\": 2,\n                        \"loss\": 2,\n                        \"goal_difference\": 3,\n                        \"goals_for\": 9,\n                        \"goals_against\": 6,\n                        \"goals_per_game\": 1.88,\n                        \"goals_position\": 19,\n                        \"points\": 14,\n                        \"points_per_game\": 1.75,\n                        \"corners_for\": 30,\n                        \"corners_against\": 36,\n                        \"corners_per_game\": 8.25,\n                        \"corners_position\": 17,\n                        \"cards_for\": 14,\n                        \"cards_against\": 10,\n                        \"cards_per_game\": 3,\n                        \"cards_position\": 15,\n                        \"last_5_form\": \"DDWLW\"\n                    },\n                    {\n                        \"id\": \"9a94c946-e50a-41d9-b986-d0e1ea2126f7\",\n                        \"team_name\": \"Crystal Palace\",\n                        \"team_short_name\": \"Crystal Palace\",\n                        \"team_abbreviation\": \"CRY\",\n                        \"team_badge\": \"sr-competitor-7.png\",\n                        \"position\": 8,\n                        \"matches_played\": 8,\n                        \"win\": 3,\n                        \"draw\": 4,\n                        \"loss\": 1,\n                        \"goal_difference\": 4,\n                        \"goals_for\": 12,\n                        \"goals_against\": 8,\n                        \"goals_per_game\": 2.5,\n                        \"goals_position\": 12,\n                        \"points\": 13,\n                        \"points_per_game\": 1.63,\n                        \"corners_for\": 29,\n                        \"corners_against\": 48,\n                        \"corners_per_game\": 9.63,\n                        \"corners_position\": 11,\n                        \"cards_for\": 18,\n                        \"cards_against\": 20,\n                        \"cards_per_game\": 4.75,\n                        \"cards_position\": 3,\n                        \"last_5_form\": \"DWWLD\"\n                    },\n                    {\n                        \"id\": \"9a94ad06-7ea7-4dd0-886b-26a79541847c\",\n                        \"team_name\": \"Manchester United\",\n                        \"team_short_name\": \"Man Utd\",\n                        \"team_abbreviation\": \"MUN\",\n                        \"team_badge\": \"sr-competitor-35.png\",\n                        \"position\": 9,\n                        \"matches_played\": 8,\n                        \"win\": 4,\n                        \"draw\": 1,\n                        \"loss\": 3,\n                        \"goal_difference\": -1,\n                        \"goals_for\": 11,\n                        \"goals_against\": 12,\n                        \"goals_per_game\": 2.88,\n                        \"goals_position\": 8,\n                        \"points\": 13,\n                        \"points_per_game\": 1.63,\n                        \"corners_for\": 33,\n                        \"corners_against\": 37,\n                        \"corners_per_game\": 8.75,\n                        \"corners_position\": 14,\n                        \"cards_for\": 9,\n                        \"cards_against\": 22,\n                        \"cards_per_game\": 3.88,\n                        \"cards_position\": 8,\n                        \"last_5_form\": \"LWLWW\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-737b-46ec-8cd0-d2ad93eea0b8\",\n                        \"team_name\": \"Brighton & Hove Albion\",\n                        \"team_short_name\": \"Brighton\",\n                        \"team_abbreviation\": \"BRI\",\n                        \"team_badge\": \"sr-competitor-30.png\",\n                        \"position\": 10,\n                        \"matches_played\": 8,\n                        \"win\": 3,\n                        \"draw\": 3,\n                        \"loss\": 2,\n                        \"goal_difference\": 1,\n                        \"goals_for\": 12,\n                        \"goals_against\": 11,\n                        \"goals_per_game\": 2.88,\n                        \"goals_position\": 6,\n                        \"points\": 12,\n                        \"points_per_game\": 1.5,\n                        \"corners_for\": 35,\n                        \"corners_against\": 30,\n                        \"corners_per_game\": 8.13,\n                        \"corners_position\": 18,\n                        \"cards_for\": 20,\n                        \"cards_against\": 20,\n                        \"cards_per_game\": 5,\n                        \"cards_position\": 1,\n                        \"last_5_form\": \"LDWDW\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"team_name\": \"Aston Villa\",\n                        \"team_short_name\": \"Aston Villa\",\n                        \"team_abbreviation\": \"AVL\",\n                        \"team_badge\": \"sr-competitor-40.png\",\n                        \"position\": 11,\n                        \"matches_played\": 8,\n                        \"win\": 3,\n                        \"draw\": 3,\n                        \"loss\": 2,\n                        \"goal_difference\": 0,\n                        \"goals_for\": 8,\n                        \"goals_against\": 8,\n                        \"goals_per_game\": 2,\n                        \"goals_position\": 18,\n                        \"points\": 12,\n                        \"points_per_game\": 1.5,\n                        \"corners_for\": 44,\n                        \"corners_against\": 43,\n                        \"corners_per_game\": 10.88,\n                        \"corners_position\": 5,\n                        \"cards_for\": 14,\n                        \"cards_against\": 18,\n                        \"cards_per_game\": 4,\n                        \"cards_position\": 6,\n                        \"last_5_form\": \"DDWWW\"\n                    },\n                    {\n                        \"id\": \"9a94c9ec-bcca-4a96-aa7e-51f4a1a588cd\",\n                        \"team_name\": \"Everton FC\",\n                        \"team_short_name\": \"Everton\",\n                        \"team_abbreviation\": \"EVE\",\n                        \"team_badge\": \"sr-competitor-48.png\",\n                        \"position\": 12,\n                        \"matches_played\": 8,\n                        \"win\": 3,\n                        \"draw\": 2,\n                        \"loss\": 3,\n                        \"goal_difference\": 0,\n                        \"goals_for\": 9,\n                        \"goals_against\": 9,\n                        \"goals_per_game\": 2.25,\n                        \"goals_position\": 16,\n                        \"points\": 11,\n                        \"points_per_game\": 1.38,\n                        \"corners_for\": 28,\n                        \"corners_against\": 39,\n                        \"corners_per_game\": 8.38,\n                        \"corners_position\": 16,\n                        \"cards_for\": 20,\n                        \"cards_against\": 15,\n                        \"cards_per_game\": 4.38,\n                        \"cards_position\": 5,\n                        \"last_5_form\": \"DLDWL\"\n                    },\n                    {\n                        \"id\": \"9a94c959-b7f0-4ad4-a03f-76b32647a5d0\",\n                        \"team_name\": \"Brentford FC\",\n                        \"team_short_name\": \"Brentford\",\n                        \"team_abbreviation\": \"BRE\",\n                        \"team_badge\": \"sr-competitor-50.png\",\n                        \"position\": 13,\n                        \"matches_played\": 8,\n                        \"win\": 3,\n                        \"draw\": 1,\n                        \"loss\": 4,\n                        \"goal_difference\": -1,\n                        \"goals_for\": 11,\n                        \"goals_against\": 12,\n                        \"goals_per_game\": 2.88,\n                        \"goals_position\": 7,\n                        \"points\": 10,\n                        \"points_per_game\": 1.25,\n                        \"corners_for\": 43,\n                        \"corners_against\": 35,\n                        \"corners_per_game\": 9.75,\n                        \"corners_position\": 9,\n                        \"cards_for\": 15,\n                        \"cards_against\": 17,\n                        \"cards_per_game\": 4,\n                        \"cards_position\": 7,\n                        \"last_5_form\": \"DLWLW\"\n                    },\n                    {\n                        \"id\": \"9a94ad02-9dc4-4c1d-829d-46feacdc6154\",\n                        \"team_name\": \"Newcastle United\",\n                        \"team_short_name\": \"Newcastle\",\n                        \"team_abbreviation\": \"NEW\",\n                        \"team_badge\": \"sr-competitor-39.png\",\n                        \"position\": 14,\n                        \"matches_played\": 8,\n                        \"win\": 2,\n                        \"draw\": 3,\n                        \"loss\": 3,\n                        \"goal_difference\": 0,\n                        \"goals_for\": 7,\n                        \"goals_against\": 7,\n                        \"goals_per_game\": 1.75,\n                        \"goals_position\": 20,\n                        \"points\": 9,\n                        \"points_per_game\": 1.13,\n                        \"corners_for\": 49,\n                        \"corners_against\": 39,\n                        \"corners_per_game\": 11,\n                        \"corners_position\": 4,\n                        \"cards_for\": 10,\n                        \"cards_against\": 17,\n                        \"cards_per_game\": 3.38,\n                        \"cards_position\": 13,\n                        \"last_5_form\": \"WDLWL\"\n                    },\n                    {\n                        \"id\": \"9a94ace2-04be-4df6-8c28-f3fbda39f44e\",\n                        \"team_name\": \"Fulham FC\",\n                        \"team_short_name\": \"Fulham\",\n                        \"team_abbreviation\": \"FUL\",\n                        \"team_badge\": \"sr-competitor-43.png\",\n                        \"position\": 15,\n                        \"matches_played\": 8,\n                        \"win\": 2,\n                        \"draw\": 2,\n                        \"loss\": 4,\n                        \"goal_difference\": -4,\n                        \"goals_for\": 8,\n                        \"goals_against\": 12,\n                        \"goals_per_game\": 2.5,\n                        \"goals_position\": 14,\n                        \"points\": 8,\n                        \"points_per_game\": 1,\n                        \"corners_for\": 38,\n                        \"corners_against\": 45,\n                        \"corners_per_game\": 10.38,\n                        \"corners_position\": 8,\n                        \"cards_for\": 16,\n                        \"cards_against\": 10,\n                        \"cards_per_game\": 3.25,\n                        \"cards_position\": 14,\n                        \"last_5_form\": \"WWLLL\"\n                    },\n                    {\n                        \"id\": \"9a948073-83aa-4323-afe8-a6070cb27f53\",\n                        \"team_name\": \"Leeds United\",\n                        \"team_short_name\": \"Leeds\",\n                        \"team_abbreviation\": \"LEE\",\n                        \"team_badge\": \"sr-competitor-34.png\",\n                        \"position\": 16,\n                        \"matches_played\": 8,\n                        \"win\": 2,\n                        \"draw\": 2,\n                        \"loss\": 4,\n                        \"goal_difference\": -6,\n                        \"goals_for\": 7,\n                        \"goals_against\": 13,\n                        \"goals_per_game\": 2.5,\n                        \"goals_position\": 15,\n                        \"points\": 8,\n                        \"points_per_game\": 1,\n                        \"corners_for\": 33,\n                        \"corners_against\": 22,\n                        \"corners_per_game\": 6.88,\n                        \"corners_position\": 20,\n                        \"cards_for\": 11,\n                        \"cards_against\": 12,\n                        \"cards_per_game\": 2.88,\n                        \"cards_position\": 17,\n                        \"last_5_form\": \"LWDLL\"\n                    },\n                    {\n                        \"id\": \"9a94c314-2df8-49fc-9d9a-22ff1a540d3a\",\n                        \"team_name\": \"Burnley FC\",\n                        \"team_short_name\": \"Burnley\",\n                        \"team_abbreviation\": \"BUR\",\n                        \"team_badge\": \"sr-competitor-6.png\",\n                        \"position\": 17,\n                        \"matches_played\": 8,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 5,\n                        \"goal_difference\": -6,\n                        \"goals_for\": 9,\n                        \"goals_against\": 15,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 4,\n                        \"points\": 7,\n                        \"points_per_game\": 0.88,\n                        \"corners_for\": 22,\n                        \"corners_against\": 55,\n                        \"corners_per_game\": 9.63,\n                        \"corners_position\": 10,\n                        \"cards_for\": 13,\n                        \"cards_against\": 10,\n                        \"cards_per_game\": 2.88,\n                        \"cards_position\": 16,\n                        \"last_5_form\": \"LDLLW\"\n                    },\n                    {\n                        \"id\": \"9a94c314-2714-4ca2-b04c-d7eb2c062896\",\n                        \"team_name\": \"Nottingham Forest\",\n                        \"team_short_name\": \"Nottm Forest\",\n                        \"team_abbreviation\": \"NFO\",\n                        \"team_badge\": \"sr-competitor-14.png\",\n                        \"position\": 18,\n                        \"matches_played\": 8,\n                        \"win\": 1,\n                        \"draw\": 2,\n                        \"loss\": 5,\n                        \"goal_difference\": -10,\n                        \"goals_for\": 5,\n                        \"goals_against\": 15,\n                        \"goals_per_game\": 2.5,\n                        \"goals_position\": 13,\n                        \"points\": 5,\n                        \"points_per_game\": 0.63,\n                        \"corners_for\": 30,\n                        \"corners_against\": 32,\n                        \"corners_per_game\": 7.75,\n                        \"corners_position\": 19,\n                        \"cards_for\": 16,\n                        \"cards_against\": 12,\n                        \"cards_per_game\": 3.5,\n                        \"cards_position\": 11,\n                        \"last_5_form\": \"LDLLL\",\n                        \"current_outcome\": \"Relegation\"\n                    },\n                    {\n                        \"id\": \"9a94ace8-eb61-4da3-ac38-12c06d6903e5\",\n                        \"team_name\": \"West Ham United\",\n                        \"team_short_name\": \"West Ham\",\n                        \"team_abbreviation\": \"WHU\",\n                        \"team_badge\": \"sr-competitor-37.png\",\n                        \"position\": 19,\n                        \"matches_played\": 8,\n                        \"win\": 1,\n                        \"draw\": 1,\n                        \"loss\": 6,\n                        \"goal_difference\": -12,\n                        \"goals_for\": 6,\n                        \"goals_against\": 18,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 5,\n                        \"points\": 4,\n                        \"points_per_game\": 0.5,\n                        \"corners_for\": 38,\n                        \"corners_against\": 52,\n                        \"corners_per_game\": 11.25,\n                        \"corners_position\": 3,\n                        \"cards_for\": 12,\n                        \"cards_against\": 9,\n                        \"cards_per_game\": 2.63,\n                        \"cards_position\": 20,\n                        \"last_5_form\": \"LLDLL\",\n                        \"current_outcome\": \"Relegation\"\n                    },\n                    {\n                        \"id\": \"9a94c929-50ad-4d6b-a2c4-5dc9f57b489e\",\n                        \"team_name\": \"Wolverhampton Wanderers\",\n                        \"team_short_name\": \"Wolves\",\n                        \"team_abbreviation\": \"WOL\",\n                        \"team_badge\": \"sr-competitor-3.png\",\n                        \"position\": 20,\n                        \"matches_played\": 8,\n                        \"win\": 0,\n                        \"draw\": 2,\n                        \"loss\": 6,\n                        \"goal_difference\": -11,\n                        \"goals_for\": 5,\n                        \"goals_against\": 16,\n                        \"goals_per_game\": 2.63,\n                        \"goals_position\": 10,\n                        \"points\": 2,\n                        \"points_per_game\": 0.25,\n                        \"corners_for\": 30,\n                        \"corners_against\": 47,\n                        \"corners_per_game\": 9.63,\n                        \"corners_position\": 12,\n                        \"cards_for\": 15,\n                        \"cards_against\": 14,\n                        \"cards_per_game\": 3.63,\n                        \"cards_position\": 10,\n                        \"last_5_form\": \"LLDDL\",\n                        \"current_outcome\": \"Relegation\"\n                    }\n                ],\n                \"standings_last_5\": [\n                    {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"team_name\": \"Manchester City\",\n                        \"team_short_name\": \"Man City\",\n                        \"team_abbreviation\": \"MCI\",\n                        \"team_badge\": \"sr-competitor-17.png\",\n                        \"position\": 1,\n                        \"matches_played\": 5,\n                        \"win\": 4,\n                        \"draw\": 1,\n                        \"loss\": 0,\n                        \"goal_difference\": 10,\n                        \"goals_for\": 12,\n                        \"goals_against\": 2,\n                        \"goals_per_game\": 2.8,\n                        \"goals_position\": 11,\n                        \"points\": 13,\n                        \"points_per_game\": 2.6,\n                        \"corners_for\": 27,\n                        \"corners_against\": 23,\n                        \"corners_per_game\": 10,\n                        \"corners_position\": 13,\n                        \"cards_for\": 5,\n                        \"cards_against\": 9,\n                        \"cards_per_game\": 2.8,\n                        \"cards_position\": 19,\n                        \"last_5_form\": \"WWWDW\"\n                    },\n                    {\n                        \"id\": \"9a94ad06-886c-4083-8954-79b2b1503e7a\",\n                        \"team_name\": \"Arsenal FC\",\n                        \"team_short_name\": \"Arsenal\",\n                        \"team_abbreviation\": \"ARS\",\n                        \"team_badge\": \"sr-competitor-42.png\",\n                        \"position\": 2,\n                        \"matches_played\": 5,\n                        \"win\": 4,\n                        \"draw\": 1,\n                        \"loss\": 0,\n                        \"goal_difference\": 7,\n                        \"goals_for\": 9,\n                        \"goals_against\": 2,\n                        \"goals_per_game\": 2.2,\n                        \"goals_position\": 17,\n                        \"points\": 13,\n                        \"points_per_game\": 2.6,\n                        \"corners_for\": 49,\n                        \"corners_against\": 22,\n                        \"corners_per_game\": 14.2,\n                        \"corners_position\": 1,\n                        \"cards_for\": 3,\n                        \"cards_against\": 7,\n                        \"cards_per_game\": 2,\n                        \"cards_position\": 20,\n                        \"last_5_form\": \"WWWDW\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"team_name\": \"Aston Villa\",\n                        \"team_short_name\": \"Aston Villa\",\n                        \"team_abbreviation\": \"AVL\",\n                        \"team_badge\": \"sr-competitor-40.png\",\n                        \"position\": 3,\n                        \"matches_played\": 5,\n                        \"win\": 3,\n                        \"draw\": 2,\n                        \"loss\": 0,\n                        \"goal_difference\": 4,\n                        \"goals_for\": 8,\n                        \"goals_against\": 4,\n                        \"goals_per_game\": 2.4,\n                        \"goals_position\": 13,\n                        \"points\": 11,\n                        \"points_per_game\": 2.2,\n                        \"corners_for\": 22,\n                        \"corners_against\": 34,\n                        \"corners_per_game\": 11.2,\n                        \"corners_position\": 5,\n                        \"cards_for\": 8,\n                        \"cards_against\": 13,\n                        \"cards_per_game\": 4.2,\n                        \"cards_position\": 5,\n                        \"last_5_form\": \"WWWDD\"\n                    },\n                    {\n                        \"id\": \"9a94c959-5c74-4e18-9ef0-45fe1d11b801\",\n                        \"team_name\": \"AFC Bournemouth\",\n                        \"team_short_name\": \"Bournemouth\",\n                        \"team_abbreviation\": \"BOU\",\n                        \"team_badge\": \"sr-competitor-60.png\",\n                        \"position\": 4,\n                        \"matches_played\": 5,\n                        \"win\": 2,\n                        \"draw\": 3,\n                        \"loss\": 0,\n                        \"goal_difference\": 3,\n                        \"goals_for\": 10,\n                        \"goals_against\": 7,\n                        \"goals_per_game\": 3.4,\n                        \"goals_position\": 2,\n                        \"points\": 9,\n                        \"points_per_game\": 1.8,\n                        \"corners_for\": 22,\n                        \"corners_against\": 22,\n                        \"corners_per_game\": 8.8,\n                        \"corners_position\": 17,\n                        \"cards_for\": 12,\n                        \"cards_against\": 9,\n                        \"cards_per_game\": 4.2,\n                        \"cards_position\": 6,\n                        \"last_5_form\": \"DWDDW\"\n                    },\n                    {\n                        \"id\": \"9a94ad06-7ea7-4dd0-886b-26a79541847c\",\n                        \"team_name\": \"Manchester United\",\n                        \"team_short_name\": \"Man Utd\",\n                        \"team_abbreviation\": \"MUN\",\n                        \"team_badge\": \"sr-competitor-35.png\",\n                        \"position\": 5,\n                        \"matches_played\": 5,\n                        \"win\": 3,\n                        \"draw\": 0,\n                        \"loss\": 2,\n                        \"goal_difference\": -1,\n                        \"goals_for\": 7,\n                        \"goals_against\": 8,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 6,\n                        \"points\": 9,\n                        \"points_per_game\": 1.8,\n                        \"corners_for\": 17,\n                        \"corners_against\": 23,\n                        \"corners_per_game\": 8,\n                        \"corners_position\": 18,\n                        \"cards_for\": 6,\n                        \"cards_against\": 12,\n                        \"cards_per_game\": 3.6,\n                        \"cards_position\": 10,\n                        \"last_5_form\": \"WWLWL\"\n                    },\n                    {\n                        \"id\": \"9a94ace2-01ee-4545-84d4-9c6639093ffa\",\n                        \"team_name\": \"Tottenham Hotspur\",\n                        \"team_short_name\": \"Tottenham\",\n                        \"team_abbreviation\": \"TOT\",\n                        \"team_badge\": \"sr-competitor-33.png\",\n                        \"position\": 6,\n                        \"matches_played\": 5,\n                        \"win\": 2,\n                        \"draw\": 2,\n                        \"loss\": 1,\n                        \"goal_difference\": 3,\n                        \"goals_for\": 9,\n                        \"goals_against\": 6,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 7,\n                        \"points\": 8,\n                        \"points_per_game\": 1.6,\n                        \"corners_for\": 40,\n                        \"corners_against\": 23,\n                        \"corners_per_game\": 12.6,\n                        \"corners_position\": 3,\n                        \"cards_for\": 11,\n                        \"cards_against\": 6,\n                        \"cards_per_game\": 3.4,\n                        \"cards_position\": 14,\n                        \"last_5_form\": \"LWDDW\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-737b-46ec-8cd0-d2ad93eea0b8\",\n                        \"team_name\": \"Brighton & Hove Albion\",\n                        \"team_short_name\": \"Brighton\",\n                        \"team_abbreviation\": \"BRI\",\n                        \"team_badge\": \"sr-competitor-30.png\",\n                        \"position\": 7,\n                        \"matches_played\": 5,\n                        \"win\": 2,\n                        \"draw\": 2,\n                        \"loss\": 1,\n                        \"goal_difference\": 2,\n                        \"goals_for\": 9,\n                        \"goals_against\": 7,\n                        \"goals_per_game\": 3.2,\n                        \"goals_position\": 3,\n                        \"points\": 8,\n                        \"points_per_game\": 1.6,\n                        \"corners_for\": 29,\n                        \"corners_against\": 25,\n                        \"corners_per_game\": 10.8,\n                        \"corners_position\": 6,\n                        \"cards_for\": 14,\n                        \"cards_against\": 13,\n                        \"cards_per_game\": 5.4,\n                        \"cards_position\": 2,\n                        \"last_5_form\": \"WDWDL\"\n                    },\n                    {\n                        \"id\": \"9a94c946-e50a-41d9-b986-d0e1ea2126f7\",\n                        \"team_name\": \"Crystal Palace\",\n                        \"team_short_name\": \"Crystal Palace\",\n                        \"team_abbreviation\": \"CRY\",\n                        \"team_badge\": \"sr-competitor-7.png\",\n                        \"position\": 8,\n                        \"matches_played\": 5,\n                        \"win\": 2,\n                        \"draw\": 2,\n                        \"loss\": 1,\n                        \"goal_difference\": 1,\n                        \"goals_for\": 8,\n                        \"goals_against\": 7,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 4,\n                        \"points\": 8,\n                        \"points_per_game\": 1.6,\n                        \"corners_for\": 25,\n                        \"corners_against\": 24,\n                        \"corners_per_game\": 9.8,\n                        \"corners_position\": 15,\n                        \"cards_for\": 9,\n                        \"cards_against\": 13,\n                        \"cards_per_game\": 4.4,\n                        \"cards_position\": 4,\n                        \"last_5_form\": \"DLWWD\"\n                    },\n                    {\n                        \"id\": \"9a948076-e459-4d98-bb82-33fe3a0f516b\",\n                        \"team_name\": \"Sunderland AFC\",\n                        \"team_short_name\": \"Sunderland\",\n                        \"team_abbreviation\": \"SUN\",\n                        \"team_badge\": \"sr-competitor-41.png\",\n                        \"position\": 9,\n                        \"matches_played\": 5,\n                        \"win\": 2,\n                        \"draw\": 2,\n                        \"loss\": 1,\n                        \"goal_difference\": 1,\n                        \"goals_for\": 4,\n                        \"goals_against\": 3,\n                        \"goals_per_game\": 1.4,\n                        \"goals_position\": 20,\n                        \"points\": 8,\n                        \"points_per_game\": 1.6,\n                        \"corners_for\": 19,\n                        \"corners_against\": 21,\n                        \"corners_per_game\": 8,\n                        \"corners_position\": 19,\n                        \"cards_for\": 10,\n                        \"cards_against\": 7,\n                        \"cards_per_game\": 3.4,\n                        \"cards_position\": 13,\n                        \"last_5_form\": \"WLWDD\"\n                    },\n                    {\n                        \"id\": \"9a94ad05-baf5-454f-9961-3772d0e6cbe6\",\n                        \"team_name\": \"Chelsea FC\",\n                        \"team_short_name\": \"Chelsea\",\n                        \"team_abbreviation\": \"CFC\",\n                        \"team_badge\": \"sr-competitor-38.png\",\n                        \"position\": 10,\n                        \"matches_played\": 5,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 2,\n                        \"goal_difference\": 1,\n                        \"goals_for\": 9,\n                        \"goals_against\": 8,\n                        \"goals_per_game\": 3.4,\n                        \"goals_position\": 1,\n                        \"points\": 7,\n                        \"points_per_game\": 1.4,\n                        \"corners_for\": 25,\n                        \"corners_against\": 24,\n                        \"corners_per_game\": 9.8,\n                        \"corners_position\": 14,\n                        \"cards_for\": 15,\n                        \"cards_against\": 13,\n                        \"cards_per_game\": 5.6,\n                        \"cards_position\": 1,\n                        \"last_5_form\": \"WWLLD\"\n                    },\n                    {\n                        \"id\": \"9a94c959-b7f0-4ad4-a03f-76b32647a5d0\",\n                        \"team_name\": \"Brentford FC\",\n                        \"team_short_name\": \"Brentford\",\n                        \"team_abbreviation\": \"BRE\",\n                        \"team_badge\": \"sr-competitor-50.png\",\n                        \"position\": 11,\n                        \"matches_played\": 5,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 2,\n                        \"goal_difference\": 1,\n                        \"goals_for\": 8,\n                        \"goals_against\": 7,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 5,\n                        \"points\": 7,\n                        \"points_per_game\": 1.4,\n                        \"corners_for\": 32,\n                        \"corners_against\": 18,\n                        \"corners_per_game\": 10,\n                        \"corners_position\": 11,\n                        \"cards_for\": 10,\n                        \"cards_against\": 11,\n                        \"cards_per_game\": 4.2,\n                        \"cards_position\": 7,\n                        \"last_5_form\": \"WLWLD\"\n                    },\n                    {\n                        \"id\": \"9a94ad02-9dc4-4c1d-829d-46feacdc6154\",\n                        \"team_name\": \"Newcastle United\",\n                        \"team_short_name\": \"Newcastle\",\n                        \"team_abbreviation\": \"NEW\",\n                        \"team_badge\": \"sr-competitor-39.png\",\n                        \"position\": 12,\n                        \"matches_played\": 5,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 2,\n                        \"goal_difference\": 1,\n                        \"goals_for\": 5,\n                        \"goals_against\": 4,\n                        \"goals_per_game\": 1.8,\n                        \"goals_position\": 19,\n                        \"points\": 7,\n                        \"points_per_game\": 1.4,\n                        \"corners_for\": 31,\n                        \"corners_against\": 30,\n                        \"corners_per_game\": 12.2,\n                        \"corners_position\": 4,\n                        \"cards_for\": 5,\n                        \"cards_against\": 11,\n                        \"cards_per_game\": 3.2,\n                        \"cards_position\": 17,\n                        \"last_5_form\": \"LWLDW\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-978e-4b3e-9143-502fc4f85204\",\n                        \"team_name\": \"Liverpool FC\",\n                        \"team_short_name\": \"Liverpool\",\n                        \"team_abbreviation\": \"LFC\",\n                        \"team_badge\": \"sr-competitor-44.png\",\n                        \"position\": 13,\n                        \"matches_played\": 5,\n                        \"win\": 2,\n                        \"draw\": 0,\n                        \"loss\": 3,\n                        \"goal_difference\": -1,\n                        \"goals_for\": 6,\n                        \"goals_against\": 7,\n                        \"goals_per_game\": 2.6,\n                        \"goals_position\": 12,\n                        \"points\": 6,\n                        \"points_per_game\": 1.2,\n                        \"corners_for\": 35,\n                        \"corners_against\": 18,\n                        \"corners_per_game\": 10.6,\n                        \"corners_position\": 7,\n                        \"cards_for\": 9,\n                        \"cards_against\": 7,\n                        \"cards_per_game\": 3.2,\n                        \"cards_position\": 16,\n                        \"last_5_form\": \"LLLWW\"\n                    },\n                    {\n                        \"id\": \"9a94ace2-04be-4df6-8c28-f3fbda39f44e\",\n                        \"team_name\": \"Fulham FC\",\n                        \"team_short_name\": \"Fulham\",\n                        \"team_abbreviation\": \"FUL\",\n                        \"team_badge\": \"sr-competitor-43.png\",\n                        \"position\": 14,\n                        \"matches_played\": 5,\n                        \"win\": 2,\n                        \"draw\": 0,\n                        \"loss\": 3,\n                        \"goal_difference\": -2,\n                        \"goals_for\": 6,\n                        \"goals_against\": 8,\n                        \"goals_per_game\": 2.8,\n                        \"goals_position\": 10,\n                        \"points\": 6,\n                        \"points_per_game\": 1.2,\n                        \"corners_for\": 22,\n                        \"corners_against\": 29,\n                        \"corners_per_game\": 10.2,\n                        \"corners_position\": 10,\n                        \"cards_for\": 10,\n                        \"cards_against\": 4,\n                        \"cards_per_game\": 2.8,\n                        \"cards_position\": 18,\n                        \"last_5_form\": \"LLLWW\"\n                    },\n                    {\n                        \"id\": \"9a94c9ec-bcca-4a96-aa7e-51f4a1a588cd\",\n                        \"team_name\": \"Everton FC\",\n                        \"team_short_name\": \"Everton\",\n                        \"team_abbreviation\": \"EVE\",\n                        \"team_badge\": \"sr-competitor-48.png\",\n                        \"position\": 15,\n                        \"matches_played\": 5,\n                        \"win\": 1,\n                        \"draw\": 2,\n                        \"loss\": 2,\n                        \"goal_difference\": -2,\n                        \"goals_for\": 4,\n                        \"goals_against\": 6,\n                        \"goals_per_game\": 2,\n                        \"goals_position\": 18,\n                        \"points\": 5,\n                        \"points_per_game\": 1,\n                        \"corners_for\": 22,\n                        \"corners_against\": 28,\n                        \"corners_per_game\": 10,\n                        \"corners_position\": 12,\n                        \"cards_for\": 13,\n                        \"cards_against\": 12,\n                        \"cards_per_game\": 5,\n                        \"cards_position\": 3,\n                        \"last_5_form\": \"LWDLD\"\n                    },\n                    {\n                        \"id\": \"9a948073-83aa-4323-afe8-a6070cb27f53\",\n                        \"team_name\": \"Leeds United\",\n                        \"team_short_name\": \"Leeds\",\n                        \"team_abbreviation\": \"LEE\",\n                        \"team_badge\": \"sr-competitor-34.png\",\n                        \"position\": 16,\n                        \"matches_played\": 5,\n                        \"win\": 1,\n                        \"draw\": 1,\n                        \"loss\": 3,\n                        \"goal_difference\": -2,\n                        \"goals_for\": 6,\n                        \"goals_against\": 8,\n                        \"goals_per_game\": 2.8,\n                        \"goals_position\": 8,\n                        \"points\": 4,\n                        \"points_per_game\": 0.8,\n                        \"corners_for\": 19,\n                        \"corners_against\": 13,\n                        \"corners_per_game\": 6.4,\n                        \"corners_position\": 20,\n                        \"cards_for\": 8,\n                        \"cards_against\": 9,\n                        \"cards_per_game\": 3.4,\n                        \"cards_position\": 12,\n                        \"last_5_form\": \"LLDWL\"\n                    },\n                    {\n                        \"id\": \"9a94c314-2df8-49fc-9d9a-22ff1a540d3a\",\n                        \"team_name\": \"Burnley FC\",\n                        \"team_short_name\": \"Burnley\",\n                        \"team_abbreviation\": \"BUR\",\n                        \"team_badge\": \"sr-competitor-6.png\",\n                        \"position\": 17,\n                        \"matches_played\": 5,\n                        \"win\": 1,\n                        \"draw\": 1,\n                        \"loss\": 3,\n                        \"goal_difference\": -4,\n                        \"goals_for\": 5,\n                        \"goals_against\": 9,\n                        \"goals_per_game\": 2.8,\n                        \"goals_position\": 9,\n                        \"points\": 4,\n                        \"points_per_game\": 0.8,\n                        \"corners_for\": 12,\n                        \"corners_against\": 39,\n                        \"corners_per_game\": 10.2,\n                        \"corners_position\": 9,\n                        \"cards_for\": 8,\n                        \"cards_against\": 8,\n                        \"cards_per_game\": 3.2,\n                        \"cards_position\": 15,\n                        \"last_5_form\": \"WLLDL\"\n                    },\n                    {\n                        \"id\": \"9a94c929-50ad-4d6b-a2c4-5dc9f57b489e\",\n                        \"team_name\": \"Wolverhampton Wanderers\",\n                        \"team_short_name\": \"Wolves\",\n                        \"team_abbreviation\": \"WOL\",\n                        \"team_badge\": \"sr-competitor-3.png\",\n                        \"position\": 18,\n                        \"matches_played\": 5,\n                        \"win\": 0,\n                        \"draw\": 2,\n                        \"loss\": 3,\n                        \"goal_difference\": -5,\n                        \"goals_for\": 3,\n                        \"goals_against\": 8,\n                        \"goals_per_game\": 2.2,\n                        \"goals_position\": 16,\n                        \"points\": 2,\n                        \"points_per_game\": 0.4,\n                        \"corners_for\": 21,\n                        \"corners_against\": 31,\n                        \"corners_per_game\": 10.4,\n                        \"corners_position\": 8,\n                        \"cards_for\": 9,\n                        \"cards_against\": 9,\n                        \"cards_per_game\": 3.6,\n                        \"cards_position\": 11,\n                        \"last_5_form\": \"LDDLL\"\n                    },\n                    {\n                        \"id\": \"9a94ace8-eb61-4da3-ac38-12c06d6903e5\",\n                        \"team_name\": \"West Ham United\",\n                        \"team_short_name\": \"West Ham\",\n                        \"team_abbreviation\": \"WHU\",\n                        \"team_badge\": \"sr-competitor-37.png\",\n                        \"position\": 19,\n                        \"matches_played\": 5,\n                        \"win\": 0,\n                        \"draw\": 1,\n                        \"loss\": 4,\n                        \"goal_difference\": -8,\n                        \"goals_for\": 2,\n                        \"goals_against\": 10,\n                        \"goals_per_game\": 2.4,\n                        \"goals_position\": 14,\n                        \"points\": 1,\n                        \"points_per_game\": 0.2,\n                        \"corners_for\": 24,\n                        \"corners_against\": 42,\n                        \"corners_per_game\": 13.2,\n                        \"corners_position\": 2,\n                        \"cards_for\": 11,\n                        \"cards_against\": 8,\n                        \"cards_per_game\": 3.8,\n                        \"cards_position\": 9,\n                        \"last_5_form\": \"LLDLL\"\n                    },\n                    {\n                        \"id\": \"9a94c314-2714-4ca2-b04c-d7eb2c062896\",\n                        \"team_name\": \"Nottingham Forest\",\n                        \"team_short_name\": \"Nottm Forest\",\n                        \"team_abbreviation\": \"NFO\",\n                        \"team_badge\": \"sr-competitor-14.png\",\n                        \"position\": 20,\n                        \"matches_played\": 5,\n                        \"win\": 0,\n                        \"draw\": 1,\n                        \"loss\": 4,\n                        \"goal_difference\": -9,\n                        \"goals_for\": 1,\n                        \"goals_against\": 10,\n                        \"goals_per_game\": 2.2,\n                        \"goals_position\": 15,\n                        \"points\": 1,\n                        \"points_per_game\": 0.2,\n                        \"corners_for\": 22,\n                        \"corners_against\": 26,\n                        \"corners_per_game\": 9.6,\n                        \"corners_position\": 16,\n                        \"cards_for\": 12,\n                        \"cards_against\": 7,\n                        \"cards_per_game\": 3.8,\n                        \"cards_position\": 8,\n                        \"last_5_form\": \"LLLDL\"\n                    }\n                ]\n            }\n        ],\n        \"home_table\": [\n            {\n                \"phase\": {\n                    \"id\": \"sr:league:95139\",\n                    \"name\": \"Premier League 25/26\",\n                    \"order\": 1,\n                    \"type\": \"league\",\n                    \"year\": \"25/26\",\n                    \"phase\": \"Regular season\",\n                    \"start_date\": \"2025-08-15\",\n                    \"end_date\": \"2026-05-24\"\n                },\n                \"potential_outcome\": [],\n                \"standings\": [\n                    {\n                        \"id\": \"9a94ad06-886c-4083-8954-79b2b1503e7a\",\n                        \"team_name\": \"Arsenal FC\",\n                        \"team_short_name\": \"Arsenal\",\n                        \"team_abbreviation\": \"ARS\",\n                        \"team_badge\": \"sr-competitor-42.png\",\n                        \"position\": 1,\n                        \"matches_played\": 4,\n                        \"win\": 3,\n                        \"draw\": 1,\n                        \"loss\": 0,\n                        \"goal_difference\": 10,\n                        \"goals_for\": 11,\n                        \"goals_against\": 1,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 6,\n                        \"points\": 10,\n                        \"points_per_game\": 2.5,\n                        \"corners_for\": 63,\n                        \"corners_against\": 30,\n                        \"corners_per_game\": 11.63,\n                        \"corners_position\": 1,\n                        \"cards_for\": 9,\n                        \"cards_against\": 12,\n                        \"cards_per_game\": 2.63,\n                        \"cards_position\": 19,\n                        \"last_5_form\": \"WWDW\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a948076-e459-4d98-bb82-33fe3a0f516b\",\n                        \"team_name\": \"Sunderland AFC\",\n                        \"team_short_name\": \"Sunderland\",\n                        \"team_abbreviation\": \"SUN\",\n                        \"team_badge\": \"sr-competitor-41.png\",\n                        \"position\": 2,\n                        \"matches_played\": 4,\n                        \"win\": 3,\n                        \"draw\": 1,\n                        \"loss\": 0,\n                        \"goal_difference\": 6,\n                        \"goals_for\": 8,\n                        \"goals_against\": 2,\n                        \"goals_per_game\": 2.5,\n                        \"goals_position\": 13,\n                        \"points\": 10,\n                        \"points_per_game\": 2.5,\n                        \"corners_for\": 30,\n                        \"corners_against\": 36,\n                        \"corners_per_game\": 8.25,\n                        \"corners_position\": 17,\n                        \"cards_for\": 14,\n                        \"cards_against\": 10,\n                        \"cards_per_game\": 3,\n                        \"cards_position\": 15,\n                        \"last_5_form\": \"WWDW\"\n                    },\n                    {\n                        \"id\": \"9a94c959-5c74-4e18-9ef0-45fe1d11b801\",\n                        \"team_name\": \"AFC Bournemouth\",\n                        \"team_short_name\": \"Bournemouth\",\n                        \"team_abbreviation\": \"BOU\",\n                        \"team_badge\": \"sr-competitor-60.png\",\n                        \"position\": 3,\n                        \"matches_played\": 4,\n                        \"win\": 3,\n                        \"draw\": 1,\n                        \"loss\": 0,\n                        \"goal_difference\": 4,\n                        \"goals_for\": 6,\n                        \"goals_against\": 2,\n                        \"goals_per_game\": 2,\n                        \"goals_position\": 16,\n                        \"points\": 10,\n                        \"points_per_game\": 2.5,\n                        \"corners_for\": 45,\n                        \"corners_against\": 31,\n                        \"corners_per_game\": 9.5,\n                        \"corners_position\": 13,\n                        \"cards_for\": 20,\n                        \"cards_against\": 17,\n                        \"cards_per_game\": 4.63,\n                        \"cards_position\": 4,\n                        \"last_5_form\": \"WWDW\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"team_name\": \"Manchester City\",\n                        \"team_short_name\": \"Man City\",\n                        \"team_abbreviation\": \"MCI\",\n                        \"team_badge\": \"sr-competitor-17.png\",\n                        \"position\": 4,\n                        \"matches_played\": 4,\n                        \"win\": 3,\n                        \"draw\": 0,\n                        \"loss\": 1,\n                        \"goal_difference\": 7,\n                        \"goals_for\": 10,\n                        \"goals_against\": 3,\n                        \"goals_per_game\": 3.25,\n                        \"goals_position\": 4,\n                        \"points\": 9,\n                        \"points_per_game\": 2.25,\n                        \"corners_for\": 40,\n                        \"corners_against\": 29,\n                        \"corners_per_game\": 8.63,\n                        \"corners_position\": 15,\n                        \"cards_for\": 8,\n                        \"cards_against\": 14,\n                        \"cards_per_game\": 2.75,\n                        \"cards_position\": 18,\n                        \"last_5_form\": \"LWWW\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-978e-4b3e-9143-502fc4f85204\",\n                        \"team_name\": \"Liverpool FC\",\n                        \"team_short_name\": \"Liverpool\",\n                        \"team_abbreviation\": \"LFC\",\n                        \"team_badge\": \"sr-competitor-44.png\",\n                        \"position\": 5,\n                        \"matches_played\": 4,\n                        \"win\": 3,\n                        \"draw\": 0,\n                        \"loss\": 1,\n                        \"goal_difference\": 3,\n                        \"goals_for\": 8,\n                        \"goals_against\": 5,\n                        \"goals_per_game\": 3.25,\n                        \"goals_position\": 3,\n                        \"points\": 9,\n                        \"points_per_game\": 2.25,\n                        \"corners_for\": 45,\n                        \"corners_against\": 40,\n                        \"corners_per_game\": 10.63,\n                        \"corners_position\": 6,\n                        \"cards_for\": 15,\n                        \"cards_against\": 14,\n                        \"cards_per_game\": 3.63,\n                        \"cards_position\": 9,\n                        \"last_5_form\": \"WWWL\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a94ad06-7ea7-4dd0-886b-26a79541847c\",\n                        \"team_name\": \"Manchester United\",\n                        \"team_short_name\": \"Man Utd\",\n                        \"team_abbreviation\": \"MUN\",\n                        \"team_badge\": \"sr-competitor-35.png\",\n                        \"position\": 6,\n                        \"matches_played\": 4,\n                        \"win\": 3,\n                        \"draw\": 0,\n                        \"loss\": 1,\n                        \"goal_difference\": 3,\n                        \"goals_for\": 7,\n                        \"goals_against\": 4,\n                        \"goals_per_game\": 2.75,\n                        \"goals_position\": 8,\n                        \"points\": 9,\n                        \"points_per_game\": 2.25,\n                        \"corners_for\": 33,\n                        \"corners_against\": 37,\n                        \"corners_per_game\": 8.75,\n                        \"corners_position\": 14,\n                        \"cards_for\": 9,\n                        \"cards_against\": 22,\n                        \"cards_per_game\": 3.88,\n                        \"cards_position\": 8,\n                        \"last_5_form\": \"LWWW\"\n                    },\n                    {\n                        \"id\": \"9a94c9ec-bcca-4a96-aa7e-51f4a1a588cd\",\n                        \"team_name\": \"Everton FC\",\n                        \"team_short_name\": \"Everton\",\n                        \"team_abbreviation\": \"EVE\",\n                        \"team_badge\": \"sr-competitor-48.png\",\n                        \"position\": 7,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 2,\n                        \"loss\": 0,\n                        \"goal_difference\": 3,\n                        \"goals_for\": 5,\n                        \"goals_against\": 2,\n                        \"goals_per_game\": 1.75,\n                        \"goals_position\": 19,\n                        \"points\": 8,\n                        \"points_per_game\": 2,\n                        \"corners_for\": 28,\n                        \"corners_against\": 39,\n                        \"corners_per_game\": 8.38,\n                        \"corners_position\": 16,\n                        \"cards_for\": 20,\n                        \"cards_against\": 15,\n                        \"cards_per_game\": 4.38,\n                        \"cards_position\": 5,\n                        \"last_5_form\": \"WDDW\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-737b-46ec-8cd0-d2ad93eea0b8\",\n                        \"team_name\": \"Brighton & Hove Albion\",\n                        \"team_short_name\": \"Brighton\",\n                        \"team_abbreviation\": \"BRI\",\n                        \"team_badge\": \"sr-competitor-30.png\",\n                        \"position\": 8,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 2,\n                        \"loss\": 0,\n                        \"goal_difference\": 2,\n                        \"goals_for\": 7,\n                        \"goals_against\": 5,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 5,\n                        \"points\": 8,\n                        \"points_per_game\": 2,\n                        \"corners_for\": 35,\n                        \"corners_against\": 30,\n                        \"corners_per_game\": 8.13,\n                        \"corners_position\": 18,\n                        \"cards_for\": 20,\n                        \"cards_against\": 20,\n                        \"cards_per_game\": 5,\n                        \"cards_position\": 1,\n                        \"last_5_form\": \"DWDW\"\n                    },\n                    {\n                        \"id\": \"9a94c314-2df8-49fc-9d9a-22ff1a540d3a\",\n                        \"team_name\": \"Burnley FC\",\n                        \"team_short_name\": \"Burnley\",\n                        \"team_abbreviation\": \"BUR\",\n                        \"team_badge\": \"sr-competitor-6.png\",\n                        \"position\": 9,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 1,\n                        \"goal_difference\": 3,\n                        \"goals_for\": 5,\n                        \"goals_against\": 2,\n                        \"goals_per_game\": 1.75,\n                        \"goals_position\": 20,\n                        \"points\": 7,\n                        \"points_per_game\": 1.75,\n                        \"corners_for\": 22,\n                        \"corners_against\": 55,\n                        \"corners_per_game\": 9.63,\n                        \"corners_position\": 10,\n                        \"cards_for\": 13,\n                        \"cards_against\": 10,\n                        \"cards_per_game\": 2.88,\n                        \"cards_position\": 16,\n                        \"last_5_form\": \"WLDW\"\n                    },\n                    {\n                        \"id\": \"9a94c959-b7f0-4ad4-a03f-76b32647a5d0\",\n                        \"team_name\": \"Brentford FC\",\n                        \"team_short_name\": \"Brentford\",\n                        \"team_abbreviation\": \"BRE\",\n                        \"team_badge\": \"sr-competitor-50.png\",\n                        \"position\": 10,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 1,\n                        \"goal_difference\": 2,\n                        \"goals_for\": 6,\n                        \"goals_against\": 4,\n                        \"goals_per_game\": 2.5,\n                        \"goals_position\": 12,\n                        \"points\": 7,\n                        \"points_per_game\": 1.75,\n                        \"corners_for\": 43,\n                        \"corners_against\": 35,\n                        \"corners_per_game\": 9.75,\n                        \"corners_position\": 9,\n                        \"cards_for\": 15,\n                        \"cards_against\": 17,\n                        \"cards_per_game\": 4,\n                        \"cards_position\": 7,\n                        \"last_5_form\": \"WDWL\"\n                    },\n                    {\n                        \"id\": \"9a94ace2-04be-4df6-8c28-f3fbda39f44e\",\n                        \"team_name\": \"Fulham FC\",\n                        \"team_short_name\": \"Fulham\",\n                        \"team_abbreviation\": \"FUL\",\n                        \"team_badge\": \"sr-competitor-43.png\",\n                        \"position\": 11,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 1,\n                        \"goal_difference\": 2,\n                        \"goals_for\": 5,\n                        \"goals_against\": 3,\n                        \"goals_per_game\": 2,\n                        \"goals_position\": 17,\n                        \"points\": 7,\n                        \"points_per_game\": 1.75,\n                        \"corners_for\": 38,\n                        \"corners_against\": 45,\n                        \"corners_per_game\": 10.38,\n                        \"corners_position\": 8,\n                        \"cards_for\": 16,\n                        \"cards_against\": 10,\n                        \"cards_per_game\": 3.25,\n                        \"cards_position\": 14,\n                        \"last_5_form\": \"DWWL\"\n                    },\n                    {\n                        \"id\": \"9a94ad05-baf5-454f-9961-3772d0e6cbe6\",\n                        \"team_name\": \"Chelsea FC\",\n                        \"team_short_name\": \"Chelsea\",\n                        \"team_abbreviation\": \"CFC\",\n                        \"team_badge\": \"sr-competitor-38.png\",\n                        \"position\": 12,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 1,\n                        \"goal_difference\": 1,\n                        \"goals_for\": 5,\n                        \"goals_against\": 4,\n                        \"goals_per_game\": 2.25,\n                        \"goals_position\": 14,\n                        \"points\": 7,\n                        \"points_per_game\": 1.75,\n                        \"corners_for\": 47,\n                        \"corners_against\": 37,\n                        \"corners_per_game\": 10.5,\n                        \"corners_position\": 7,\n                        \"cards_for\": 20,\n                        \"cards_against\": 18,\n                        \"cards_per_game\": 4.75,\n                        \"cards_position\": 2,\n                        \"last_5_form\": \"DWLW\",\n                        \"current_outcome\": \"UEFA Europa League\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"team_name\": \"Aston Villa\",\n                        \"team_short_name\": \"Aston Villa\",\n                        \"team_abbreviation\": \"AVL\",\n                        \"team_badge\": \"sr-competitor-40.png\",\n                        \"position\": 13,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 1,\n                        \"goal_difference\": 0,\n                        \"goals_for\": 5,\n                        \"goals_against\": 5,\n                        \"goals_per_game\": 2.5,\n                        \"goals_position\": 11,\n                        \"points\": 7,\n                        \"points_per_game\": 1.75,\n                        \"corners_for\": 44,\n                        \"corners_against\": 43,\n                        \"corners_per_game\": 10.88,\n                        \"corners_position\": 5,\n                        \"cards_for\": 14,\n                        \"cards_against\": 18,\n                        \"cards_per_game\": 4,\n                        \"cards_position\": 6,\n                        \"last_5_form\": \"DLWW\"\n                    },\n                    {\n                        \"id\": \"9a94c946-e50a-41d9-b986-d0e1ea2126f7\",\n                        \"team_name\": \"Crystal Palace\",\n                        \"team_short_name\": \"Crystal Palace\",\n                        \"team_abbreviation\": \"CRY\",\n                        \"team_badge\": \"sr-competitor-7.png\",\n                        \"position\": 14,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 3,\n                        \"loss\": 0,\n                        \"goal_difference\": 1,\n                        \"goals_for\": 6,\n                        \"goals_against\": 5,\n                        \"goals_per_game\": 2.75,\n                        \"goals_position\": 7,\n                        \"points\": 6,\n                        \"points_per_game\": 1.5,\n                        \"corners_for\": 29,\n                        \"corners_against\": 48,\n                        \"corners_per_game\": 9.63,\n                        \"corners_position\": 11,\n                        \"cards_for\": 18,\n                        \"cards_against\": 20,\n                        \"cards_per_game\": 4.75,\n                        \"cards_position\": 3,\n                        \"last_5_form\": \"DDWD\"\n                    },\n                    {\n                        \"id\": \"9a94ad02-9dc4-4c1d-829d-46feacdc6154\",\n                        \"team_name\": \"Newcastle United\",\n                        \"team_short_name\": \"Newcastle\",\n                        \"team_abbreviation\": \"NEW\",\n                        \"team_badge\": \"sr-competitor-39.png\",\n                        \"position\": 14,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 0,\n                        \"loss\": 2,\n                        \"goal_difference\": 1,\n                        \"goals_for\": 6,\n                        \"goals_against\": 5,\n                        \"goals_per_game\": 2.75,\n                        \"goals_position\": 10,\n                        \"points\": 6,\n                        \"points_per_game\": 1.5,\n                        \"corners_for\": 49,\n                        \"corners_against\": 39,\n                        \"corners_per_game\": 11,\n                        \"corners_position\": 4,\n                        \"cards_for\": 10,\n                        \"cards_against\": 17,\n                        \"cards_per_game\": 3.38,\n                        \"cards_position\": 13,\n                        \"last_5_form\": \"LWLW\"\n                    },\n                    {\n                        \"id\": \"9a948073-83aa-4323-afe8-a6070cb27f53\",\n                        \"team_name\": \"Leeds United\",\n                        \"team_short_name\": \"Leeds\",\n                        \"team_abbreviation\": \"LEE\",\n                        \"team_badge\": \"sr-competitor-34.png\",\n                        \"position\": 16,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 2,\n                        \"loss\": 1,\n                        \"goal_difference\": 0,\n                        \"goals_for\": 4,\n                        \"goals_against\": 4,\n                        \"goals_per_game\": 2,\n                        \"goals_position\": 18,\n                        \"points\": 5,\n                        \"points_per_game\": 1.25,\n                        \"corners_for\": 33,\n                        \"corners_against\": 22,\n                        \"corners_per_game\": 6.88,\n                        \"corners_position\": 20,\n                        \"cards_for\": 11,\n                        \"cards_against\": 12,\n                        \"cards_per_game\": 2.88,\n                        \"cards_position\": 17,\n                        \"last_5_form\": \"WDDL\"\n                    },\n                    {\n                        \"id\": \"9a94ace2-01ee-4545-84d4-9c6639093ffa\",\n                        \"team_name\": \"Tottenham Hotspur\",\n                        \"team_short_name\": \"Tottenham\",\n                        \"team_abbreviation\": \"TOT\",\n                        \"team_badge\": \"sr-competitor-33.png\",\n                        \"position\": 17,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 1,\n                        \"loss\": 2,\n                        \"goal_difference\": 1,\n                        \"goals_for\": 5,\n                        \"goals_against\": 4,\n                        \"goals_per_game\": 2.25,\n                        \"goals_position\": 15,\n                        \"points\": 4,\n                        \"points_per_game\": 1,\n                        \"corners_for\": 48,\n                        \"corners_against\": 43,\n                        \"corners_per_game\": 11.38,\n                        \"corners_position\": 2,\n                        \"cards_for\": 17,\n                        \"cards_against\": 11,\n                        \"cards_per_game\": 3.5,\n                        \"cards_position\": 12,\n                        \"last_5_form\": \"WLDL\"\n                    },\n                    {\n                        \"id\": \"9a94c314-2714-4ca2-b04c-d7eb2c062896\",\n                        \"team_name\": \"Nottingham Forest\",\n                        \"team_short_name\": \"Nottm Forest\",\n                        \"team_abbreviation\": \"NFO\",\n                        \"team_badge\": \"sr-competitor-14.png\",\n                        \"position\": 18,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 0,\n                        \"loss\": 3,\n                        \"goal_difference\": -5,\n                        \"goals_for\": 3,\n                        \"goals_against\": 8,\n                        \"goals_per_game\": 2.75,\n                        \"goals_position\": 9,\n                        \"points\": 3,\n                        \"points_per_game\": 0.75,\n                        \"corners_for\": 30,\n                        \"corners_against\": 32,\n                        \"corners_per_game\": 7.75,\n                        \"corners_position\": 19,\n                        \"cards_for\": 16,\n                        \"cards_against\": 12,\n                        \"cards_per_game\": 3.5,\n                        \"cards_position\": 11,\n                        \"last_5_form\": \"WLLL\",\n                        \"current_outcome\": \"Relegation\"\n                    },\n                    {\n                        \"id\": \"9a94c929-50ad-4d6b-a2c4-5dc9f57b489e\",\n                        \"team_name\": \"Wolverhampton Wanderers\",\n                        \"team_short_name\": \"Wolves\",\n                        \"team_abbreviation\": \"WOL\",\n                        \"team_badge\": \"sr-competitor-3.png\",\n                        \"position\": 19,\n                        \"matches_played\": 4,\n                        \"win\": 0,\n                        \"draw\": 1,\n                        \"loss\": 3,\n                        \"goal_difference\": -7,\n                        \"goals_for\": 4,\n                        \"goals_against\": 11,\n                        \"goals_per_game\": 3.75,\n                        \"goals_position\": 1,\n                        \"points\": 1,\n                        \"points_per_game\": 0.25,\n                        \"corners_for\": 30,\n                        \"corners_against\": 47,\n                        \"corners_per_game\": 9.63,\n                        \"corners_position\": 12,\n                        \"cards_for\": 15,\n                        \"cards_against\": 14,\n                        \"cards_per_game\": 3.63,\n                        \"cards_position\": 10,\n                        \"last_5_form\": \"LLLD\",\n                        \"current_outcome\": \"Relegation\"\n                    },\n                    {\n                        \"id\": \"9a94ace8-eb61-4da3-ac38-12c06d6903e5\",\n                        \"team_name\": \"West Ham United\",\n                        \"team_short_name\": \"West Ham\",\n                        \"team_abbreviation\": \"WHU\",\n                        \"team_badge\": \"sr-competitor-37.png\",\n                        \"position\": 20,\n                        \"matches_played\": 4,\n                        \"win\": 0,\n                        \"draw\": 0,\n                        \"loss\": 4,\n                        \"goal_difference\": -10,\n                        \"goals_for\": 2,\n                        \"goals_against\": 12,\n                        \"goals_per_game\": 3.5,\n                        \"goals_position\": 2,\n                        \"points\": 0,\n                        \"points_per_game\": 0,\n                        \"corners_for\": 38,\n                        \"corners_against\": 52,\n                        \"corners_per_game\": 11.25,\n                        \"corners_position\": 3,\n                        \"cards_for\": 12,\n                        \"cards_against\": 9,\n                        \"cards_per_game\": 2.63,\n                        \"cards_position\": 20,\n                        \"last_5_form\": \"LLLL\",\n                        \"current_outcome\": \"Relegation\"\n                    }\n                ]\n            }\n        ],\n        \"away_table\": [\n            {\n                \"phase\": {\n                    \"id\": \"sr:league:95139\",\n                    \"name\": \"Premier League 25/26\",\n                    \"order\": 1,\n                    \"type\": \"league\",\n                    \"year\": \"25/26\",\n                    \"phase\": \"Regular season\",\n                    \"start_date\": \"2025-08-15\",\n                    \"end_date\": \"2026-05-24\"\n                },\n                \"potential_outcome\": [],\n                \"standings\": [\n                    {\n                        \"id\": \"9a94ace2-01ee-4545-84d4-9c6639093ffa\",\n                        \"team_name\": \"Tottenham Hotspur\",\n                        \"team_short_name\": \"Tottenham\",\n                        \"team_abbreviation\": \"TOT\",\n                        \"team_badge\": \"sr-competitor-33.png\",\n                        \"position\": 1,\n                        \"matches_played\": 4,\n                        \"win\": 3,\n                        \"draw\": 1,\n                        \"loss\": 0,\n                        \"goal_difference\": 6,\n                        \"goals_for\": 9,\n                        \"goals_against\": 3,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 7,\n                        \"points\": 10,\n                        \"points_per_game\": 2.5,\n                        \"corners_for\": 48,\n                        \"corners_against\": 43,\n                        \"corners_per_game\": 11.38,\n                        \"corners_position\": 2,\n                        \"cards_for\": 17,\n                        \"cards_against\": 11,\n                        \"cards_per_game\": 3.5,\n                        \"cards_position\": 12,\n                        \"last_5_form\": \"WWDW\"\n                    },\n                    {\n                        \"id\": \"9a94ad06-886c-4083-8954-79b2b1503e7a\",\n                        \"team_name\": \"Arsenal FC\",\n                        \"team_short_name\": \"Arsenal\",\n                        \"team_abbreviation\": \"ARS\",\n                        \"team_badge\": \"sr-competitor-42.png\",\n                        \"position\": 2,\n                        \"matches_played\": 4,\n                        \"win\": 3,\n                        \"draw\": 0,\n                        \"loss\": 1,\n                        \"goal_difference\": 2,\n                        \"goals_for\": 4,\n                        \"goals_against\": 2,\n                        \"goals_per_game\": 1.5,\n                        \"goals_position\": 18,\n                        \"points\": 9,\n                        \"points_per_game\": 2.25,\n                        \"corners_for\": 63,\n                        \"corners_against\": 30,\n                        \"corners_per_game\": 11.63,\n                        \"corners_position\": 1,\n                        \"cards_for\": 9,\n                        \"cards_against\": 12,\n                        \"cards_per_game\": 2.63,\n                        \"cards_position\": 19,\n                        \"last_5_form\": \"WLWW\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a94ad05-baf5-454f-9961-3772d0e6cbe6\",\n                        \"team_name\": \"Chelsea FC\",\n                        \"team_short_name\": \"Chelsea\",\n                        \"team_abbreviation\": \"CFC\",\n                        \"team_badge\": \"sr-competitor-38.png\",\n                        \"position\": 3,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 1,\n                        \"goal_difference\": 6,\n                        \"goals_for\": 11,\n                        \"goals_against\": 5,\n                        \"goals_per_game\": 4,\n                        \"goals_position\": 3,\n                        \"points\": 7,\n                        \"points_per_game\": 1.75,\n                        \"corners_for\": 47,\n                        \"corners_against\": 37,\n                        \"corners_per_game\": 10.5,\n                        \"corners_position\": 7,\n                        \"cards_for\": 20,\n                        \"cards_against\": 18,\n                        \"cards_per_game\": 4.75,\n                        \"cards_position\": 2,\n                        \"last_5_form\": \"WDLW\",\n                        \"current_outcome\": \"UEFA Europa League\"\n                    },\n                    {\n                        \"id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                        \"team_name\": \"Manchester City\",\n                        \"team_short_name\": \"Man City\",\n                        \"team_abbreviation\": \"MCI\",\n                        \"team_badge\": \"sr-competitor-17.png\",\n                        \"position\": 4,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 1,\n                        \"goal_difference\": 4,\n                        \"goals_for\": 7,\n                        \"goals_against\": 3,\n                        \"goals_per_game\": 2.5,\n                        \"goals_position\": 12,\n                        \"points\": 7,\n                        \"points_per_game\": 1.75,\n                        \"corners_for\": 40,\n                        \"corners_against\": 29,\n                        \"corners_per_game\": 8.63,\n                        \"corners_position\": 15,\n                        \"cards_for\": 8,\n                        \"cards_against\": 14,\n                        \"cards_per_game\": 2.75,\n                        \"cards_position\": 18,\n                        \"last_5_form\": \"WLDW\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a94c946-e50a-41d9-b986-d0e1ea2126f7\",\n                        \"team_name\": \"Crystal Palace\",\n                        \"team_short_name\": \"Crystal Palace\",\n                        \"team_abbreviation\": \"CRY\",\n                        \"team_badge\": \"sr-competitor-7.png\",\n                        \"position\": 5,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 1,\n                        \"loss\": 1,\n                        \"goal_difference\": 3,\n                        \"goals_for\": 6,\n                        \"goals_against\": 3,\n                        \"goals_per_game\": 2.25,\n                        \"goals_position\": 14,\n                        \"points\": 7,\n                        \"points_per_game\": 1.75,\n                        \"corners_for\": 29,\n                        \"corners_against\": 48,\n                        \"corners_per_game\": 9.63,\n                        \"corners_position\": 11,\n                        \"cards_for\": 18,\n                        \"cards_against\": 20,\n                        \"cards_per_game\": 4.75,\n                        \"cards_position\": 3,\n                        \"last_5_form\": \"DWWL\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-978e-4b3e-9143-502fc4f85204\",\n                        \"team_name\": \"Liverpool FC\",\n                        \"team_short_name\": \"Liverpool\",\n                        \"team_abbreviation\": \"LFC\",\n                        \"team_badge\": \"sr-competitor-44.png\",\n                        \"position\": 6,\n                        \"matches_played\": 4,\n                        \"win\": 2,\n                        \"draw\": 0,\n                        \"loss\": 2,\n                        \"goal_difference\": 0,\n                        \"goals_for\": 6,\n                        \"goals_against\": 6,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 6,\n                        \"points\": 6,\n                        \"points_per_game\": 1.5,\n                        \"corners_for\": 45,\n                        \"corners_against\": 40,\n                        \"corners_per_game\": 10.63,\n                        \"corners_position\": 6,\n                        \"cards_for\": 15,\n                        \"cards_against\": 14,\n                        \"cards_per_game\": 3.63,\n                        \"cards_position\": 9,\n                        \"last_5_form\": \"WWLL\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                        \"team_name\": \"Aston Villa\",\n                        \"team_short_name\": \"Aston Villa\",\n                        \"team_abbreviation\": \"AVL\",\n                        \"team_badge\": \"sr-competitor-40.png\",\n                        \"position\": 7,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 2,\n                        \"loss\": 1,\n                        \"goal_difference\": 0,\n                        \"goals_for\": 3,\n                        \"goals_against\": 3,\n                        \"goals_per_game\": 1.5,\n                        \"goals_position\": 16,\n                        \"points\": 5,\n                        \"points_per_game\": 1.25,\n                        \"corners_for\": 44,\n                        \"corners_against\": 43,\n                        \"corners_per_game\": 10.88,\n                        \"corners_position\": 5,\n                        \"cards_for\": 14,\n                        \"cards_against\": 18,\n                        \"cards_per_game\": 4,\n                        \"cards_position\": 6,\n                        \"last_5_form\": \"LDDW\"\n                    },\n                    {\n                        \"id\": \"9a94c959-5c74-4e18-9ef0-45fe1d11b801\",\n                        \"team_name\": \"AFC Bournemouth\",\n                        \"team_short_name\": \"Bournemouth\",\n                        \"team_abbreviation\": \"BOU\",\n                        \"team_badge\": \"sr-competitor-60.png\",\n                        \"position\": 8,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 2,\n                        \"loss\": 1,\n                        \"goal_difference\": -1,\n                        \"goals_for\": 8,\n                        \"goals_against\": 9,\n                        \"goals_per_game\": 4.25,\n                        \"goals_position\": 1,\n                        \"points\": 5,\n                        \"points_per_game\": 1.25,\n                        \"corners_for\": 45,\n                        \"corners_against\": 31,\n                        \"corners_per_game\": 9.5,\n                        \"corners_position\": 13,\n                        \"cards_for\": 20,\n                        \"cards_against\": 17,\n                        \"cards_per_game\": 4.63,\n                        \"cards_position\": 4,\n                        \"last_5_form\": \"LWDD\",\n                        \"current_outcome\": \"Champions League\"\n                    },\n                    {\n                        \"id\": \"9a94ace9-737b-46ec-8cd0-d2ad93eea0b8\",\n                        \"team_name\": \"Brighton & Hove Albion\",\n                        \"team_short_name\": \"Brighton\",\n                        \"team_abbreviation\": \"BRI\",\n                        \"team_badge\": \"sr-competitor-30.png\",\n                        \"position\": 9,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 1,\n                        \"loss\": 2,\n                        \"goal_difference\": -1,\n                        \"goals_for\": 5,\n                        \"goals_against\": 6,\n                        \"goals_per_game\": 2.75,\n                        \"goals_position\": 10,\n                        \"points\": 4,\n                        \"points_per_game\": 1,\n                        \"corners_for\": 35,\n                        \"corners_against\": 30,\n                        \"corners_per_game\": 8.13,\n                        \"corners_position\": 18,\n                        \"cards_for\": 20,\n                        \"cards_against\": 20,\n                        \"cards_per_game\": 5,\n                        \"cards_position\": 1,\n                        \"last_5_form\": \"LLWD\"\n                    },\n                    {\n                        \"id\": \"9a94ace8-eb61-4da3-ac38-12c06d6903e5\",\n                        \"team_name\": \"West Ham United\",\n                        \"team_short_name\": \"West Ham\",\n                        \"team_abbreviation\": \"WHU\",\n                        \"team_badge\": \"sr-competitor-37.png\",\n                        \"position\": 10,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 1,\n                        \"loss\": 2,\n                        \"goal_difference\": -2,\n                        \"goals_for\": 4,\n                        \"goals_against\": 6,\n                        \"goals_per_game\": 2.5,\n                        \"goals_position\": 13,\n                        \"points\": 4,\n                        \"points_per_game\": 1,\n                        \"corners_for\": 38,\n                        \"corners_against\": 52,\n                        \"corners_per_game\": 11.25,\n                        \"corners_position\": 3,\n                        \"cards_for\": 12,\n                        \"cards_against\": 9,\n                        \"cards_per_game\": 2.63,\n                        \"cards_position\": 20,\n                        \"last_5_form\": \"LWDL\",\n                        \"current_outcome\": \"Relegation\"\n                    },\n                    {\n                        \"id\": \"9a948076-e459-4d98-bb82-33fe3a0f516b\",\n                        \"team_name\": \"Sunderland AFC\",\n                        \"team_short_name\": \"Sunderland\",\n                        \"team_abbreviation\": \"SUN\",\n                        \"team_badge\": \"sr-competitor-41.png\",\n                        \"position\": 11,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 1,\n                        \"loss\": 2,\n                        \"goal_difference\": -3,\n                        \"goals_for\": 1,\n                        \"goals_against\": 4,\n                        \"goals_per_game\": 1.25,\n                        \"goals_position\": 19,\n                        \"points\": 4,\n                        \"points_per_game\": 1,\n                        \"corners_for\": 30,\n                        \"corners_against\": 36,\n                        \"corners_per_game\": 8.25,\n                        \"corners_position\": 17,\n                        \"cards_for\": 14,\n                        \"cards_against\": 10,\n                        \"cards_per_game\": 3,\n                        \"cards_position\": 15,\n                        \"last_5_form\": \"LDWL\"\n                    },\n                    {\n                        \"id\": \"9a94ad06-7ea7-4dd0-886b-26a79541847c\",\n                        \"team_name\": \"Manchester United\",\n                        \"team_short_name\": \"Man Utd\",\n                        \"team_abbreviation\": \"MUN\",\n                        \"team_badge\": \"sr-competitor-35.png\",\n                        \"position\": 12,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 1,\n                        \"loss\": 2,\n                        \"goal_difference\": -4,\n                        \"goals_for\": 4,\n                        \"goals_against\": 8,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 5,\n                        \"points\": 4,\n                        \"points_per_game\": 1,\n                        \"corners_for\": 33,\n                        \"corners_against\": 37,\n                        \"corners_per_game\": 8.75,\n                        \"corners_position\": 14,\n                        \"cards_for\": 9,\n                        \"cards_against\": 22,\n                        \"cards_per_game\": 3.88,\n                        \"cards_position\": 8,\n                        \"last_5_form\": \"DLLW\"\n                    },\n                    {\n                        \"id\": \"9a94ad02-9dc4-4c1d-829d-46feacdc6154\",\n                        \"team_name\": \"Newcastle United\",\n                        \"team_short_name\": \"Newcastle\",\n                        \"team_abbreviation\": \"NEW\",\n                        \"team_badge\": \"sr-competitor-39.png\",\n                        \"position\": 13,\n                        \"matches_played\": 4,\n                        \"win\": 0,\n                        \"draw\": 3,\n                        \"loss\": 1,\n                        \"goal_difference\": -1,\n                        \"goals_for\": 1,\n                        \"goals_against\": 2,\n                        \"goals_per_game\": 0.75,\n                        \"goals_position\": 20,\n                        \"points\": 3,\n                        \"points_per_game\": 0.75,\n                        \"corners_for\": 49,\n                        \"corners_against\": 39,\n                        \"corners_per_game\": 11,\n                        \"corners_position\": 4,\n                        \"cards_for\": 10,\n                        \"cards_against\": 17,\n                        \"cards_per_game\": 3.38,\n                        \"cards_position\": 13,\n                        \"last_5_form\": \"DDDL\"\n                    },\n                    {\n                        \"id\": \"9a94c959-b7f0-4ad4-a03f-76b32647a5d0\",\n                        \"team_name\": \"Brentford FC\",\n                        \"team_short_name\": \"Brentford\",\n                        \"team_abbreviation\": \"BRE\",\n                        \"team_badge\": \"sr-competitor-50.png\",\n                        \"position\": 14,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 0,\n                        \"loss\": 3,\n                        \"goal_difference\": -3,\n                        \"goals_for\": 5,\n                        \"goals_against\": 8,\n                        \"goals_per_game\": 3.25,\n                        \"goals_position\": 4,\n                        \"points\": 3,\n                        \"points_per_game\": 0.75,\n                        \"corners_for\": 43,\n                        \"corners_against\": 35,\n                        \"corners_per_game\": 9.75,\n                        \"corners_position\": 9,\n                        \"cards_for\": 15,\n                        \"cards_against\": 17,\n                        \"cards_per_game\": 4,\n                        \"cards_position\": 7,\n                        \"last_5_form\": \"LLLW\"\n                    },\n                    {\n                        \"id\": \"9a94c9ec-bcca-4a96-aa7e-51f4a1a588cd\",\n                        \"team_name\": \"Everton FC\",\n                        \"team_short_name\": \"Everton\",\n                        \"team_abbreviation\": \"EVE\",\n                        \"team_badge\": \"sr-competitor-48.png\",\n                        \"position\": 15,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 0,\n                        \"loss\": 3,\n                        \"goal_difference\": -3,\n                        \"goals_for\": 4,\n                        \"goals_against\": 7,\n                        \"goals_per_game\": 2.75,\n                        \"goals_position\": 11,\n                        \"points\": 3,\n                        \"points_per_game\": 0.75,\n                        \"corners_for\": 28,\n                        \"corners_against\": 39,\n                        \"corners_per_game\": 8.38,\n                        \"corners_position\": 16,\n                        \"cards_for\": 20,\n                        \"cards_against\": 15,\n                        \"cards_per_game\": 4.38,\n                        \"cards_position\": 5,\n                        \"last_5_form\": \"LWLL\"\n                    },\n                    {\n                        \"id\": \"9a948073-83aa-4323-afe8-a6070cb27f53\",\n                        \"team_name\": \"Leeds United\",\n                        \"team_short_name\": \"Leeds\",\n                        \"team_abbreviation\": \"LEE\",\n                        \"team_badge\": \"sr-competitor-34.png\",\n                        \"position\": 16,\n                        \"matches_played\": 4,\n                        \"win\": 1,\n                        \"draw\": 0,\n                        \"loss\": 3,\n                        \"goal_difference\": -6,\n                        \"goals_for\": 3,\n                        \"goals_against\": 9,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 9,\n                        \"points\": 3,\n                        \"points_per_game\": 0.75,\n                        \"corners_for\": 33,\n                        \"corners_against\": 22,\n                        \"corners_per_game\": 6.88,\n                        \"corners_position\": 20,\n                        \"cards_for\": 11,\n                        \"cards_against\": 12,\n                        \"cards_per_game\": 2.88,\n                        \"cards_position\": 17,\n                        \"last_5_form\": \"LLWL\"\n                    },\n                    {\n                        \"id\": \"9a94c314-2714-4ca2-b04c-d7eb2c062896\",\n                        \"team_name\": \"Nottingham Forest\",\n                        \"team_short_name\": \"Nottm Forest\",\n                        \"team_abbreviation\": \"NFO\",\n                        \"team_badge\": \"sr-competitor-14.png\",\n                        \"position\": 17,\n                        \"matches_played\": 4,\n                        \"win\": 0,\n                        \"draw\": 2,\n                        \"loss\": 2,\n                        \"goal_difference\": -5,\n                        \"goals_for\": 2,\n                        \"goals_against\": 7,\n                        \"goals_per_game\": 2.25,\n                        \"goals_position\": 15,\n                        \"points\": 2,\n                        \"points_per_game\": 0.5,\n                        \"corners_for\": 30,\n                        \"corners_against\": 32,\n                        \"corners_per_game\": 7.75,\n                        \"corners_position\": 19,\n                        \"cards_for\": 16,\n                        \"cards_against\": 12,\n                        \"cards_per_game\": 3.5,\n                        \"cards_position\": 11,\n                        \"last_5_form\": \"DLDL\",\n                        \"current_outcome\": \"Relegation\"\n                    },\n                    {\n                        \"id\": \"9a94c929-50ad-4d6b-a2c4-5dc9f57b489e\",\n                        \"team_name\": \"Wolverhampton Wanderers\",\n                        \"team_short_name\": \"Wolves\",\n                        \"team_abbreviation\": \"WOL\",\n                        \"team_badge\": \"sr-competitor-3.png\",\n                        \"position\": 18,\n                        \"matches_played\": 4,\n                        \"win\": 0,\n                        \"draw\": 1,\n                        \"loss\": 3,\n                        \"goal_difference\": -4,\n                        \"goals_for\": 1,\n                        \"goals_against\": 5,\n                        \"goals_per_game\": 1.5,\n                        \"goals_position\": 17,\n                        \"points\": 1,\n                        \"points_per_game\": 0.25,\n                        \"corners_for\": 30,\n                        \"corners_against\": 47,\n                        \"corners_per_game\": 9.63,\n                        \"corners_position\": 12,\n                        \"cards_for\": 15,\n                        \"cards_against\": 14,\n                        \"cards_per_game\": 3.63,\n                        \"cards_position\": 10,\n                        \"last_5_form\": \"LLDL\",\n                        \"current_outcome\": \"Relegation\"\n                    },\n                    {\n                        \"id\": \"9a94ace2-04be-4df6-8c28-f3fbda39f44e\",\n                        \"team_name\": \"Fulham FC\",\n                        \"team_short_name\": \"Fulham\",\n                        \"team_abbreviation\": \"FUL\",\n                        \"team_badge\": \"sr-competitor-43.png\",\n                        \"position\": 19,\n                        \"matches_played\": 4,\n                        \"win\": 0,\n                        \"draw\": 1,\n                        \"loss\": 3,\n                        \"goal_difference\": -6,\n                        \"goals_for\": 3,\n                        \"goals_against\": 9,\n                        \"goals_per_game\": 3,\n                        \"goals_position\": 8,\n                        \"points\": 1,\n                        \"points_per_game\": 0.25,\n                        \"corners_for\": 38,\n                        \"corners_against\": 45,\n                        \"corners_per_game\": 10.38,\n                        \"corners_position\": 8,\n                        \"cards_for\": 16,\n                        \"cards_against\": 10,\n                        \"cards_per_game\": 3.25,\n                        \"cards_position\": 14,\n                        \"last_5_form\": \"DLLL\"\n                    },\n                    {\n                        \"id\": \"9a94c314-2df8-49fc-9d9a-22ff1a540d3a\",\n                        \"team_name\": \"Burnley FC\",\n                        \"team_short_name\": \"Burnley\",\n                        \"team_abbreviation\": \"BUR\",\n                        \"team_badge\": \"sr-competitor-6.png\",\n                        \"position\": 20,\n                        \"matches_played\": 4,\n                        \"win\": 0,\n                        \"draw\": 0,\n                        \"loss\": 4,\n                        \"goal_difference\": -9,\n                        \"goals_for\": 4,\n                        \"goals_against\": 13,\n                        \"goals_per_game\": 4.25,\n                        \"goals_position\": 2,\n                        \"points\": 0,\n                        \"points_per_game\": 0,\n                        \"corners_for\": 22,\n                        \"corners_against\": 55,\n                        \"corners_per_game\": 9.63,\n                        \"corners_position\": 10,\n                        \"cards_for\": 13,\n                        \"cards_against\": 10,\n                        \"cards_per_game\": 2.88,\n                        \"cards_position\": 16,\n                        \"last_5_form\": \"LLLL\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"meta\": {\n        \"phase_filter\": null\n    }\n}"}],"_postman_id":"65d4e454-55fa-4053-947c-109f43769d35"},{"name":"match-centre-player-markets","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","})"]}}],"id":"9142024b-b649-4705-9d52-2fb4b1bec264","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/match-centre-player-markets/:id?playerId=6o62deaqwdcrllc91hz09cct1","description":"<p><strong>Purpose:</strong><br />Retrieves available betting markets for a specific player in a given match fixture. Useful for displaying or analyzing player-specific betting options in a match centre context.</p>\n<p><strong>Endpoint:</strong><br /><code>GET /match-centre-player-markets/:id?playerId=...</code></p>\n<p><strong>Path Parameters:</strong></p>\n<ul>\n<li><code>id</code> (string, required): Unique identifier for the match fixture. Example: <code>019a281f-9e4d-738a-bf64-003fae7635ec</code></li>\n</ul>\n<p><strong>Query Parameters:</strong></p>\n<ul>\n<li><code>playerId</code> (string, optional): Player unique identifier to filter markets for a specific player. Example: <code>55yy0p6johtu9nxk90zsfctt5</code></li>\n</ul>\n<p><strong>Environment Variables Used:</strong></p>\n<ul>\n<li><p><code>base_url</code>: The base URL for the API (e.g., <code>https://api.example.com</code>)</p>\n</li>\n<li><p><code>api_key</code>: API authentication key (see authentication note)</p>\n</li>\n</ul>\n<p><strong>Authentication:</strong><br />Include your <code>api_key</code> as a required header or query parameter, depending on your environment setup. Example header: <code>api_key:</code></p>\n<p><strong>Example Request (cURL):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -X GET \"/match-centre-player-markets/019a281f-9e4d-738a-bf64-003fae7635ec?playerId=55yy0p6johtu9nxk90zsfctt5\" \\\n  -H \"api_key: \"\n\n</code></pre>\n<p><strong>Sample Variable Values:</strong></p>\n<ul>\n<li><p><code>base_url</code>: <code>https://api.example.com</code></p>\n</li>\n<li><p><code>api_key</code>: <code>your-api-key-here</code></p>\n</li>\n<li><p><code>id</code>: <code>019a281f-9e4d-738a-bf64-003fae7635ec</code></p>\n</li>\n<li><p><code>playerId</code>: <code>55yy0p6johtu9nxk90zsfctt5</code></p>\n</li>\n</ul>\n<p><strong>Example Response:</strong><br />Status: 200 OK</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": [\n    {\n      \"selection_id\": \"019a293b-153a-72e3-90cd-42410d9c80f6\",\n      \"fixture_id\": \"019a281f-9e4d-738a-bf64-003fae7635ec\",\n      \"market_key\": \"TO_SCORE\",\n      \"selection_name\": \"Morgan Gibbs-White\",\n      \"hit_rates\": { \"domestic\": { \"last_5_raw\": \"l,l,l,l,l\" } },\n      \"odds\": { \"decimal\": 4.5, \"numerator\": 7, \"denominator\": 2 }\n    }\n  ],\n  \"meta\": { \"results\": 19 }\n}\n\n</code></pre>\n<p><strong>Status Codes:</strong></p>\n<ul>\n<li><p><code>200 OK</code>: Successful response with player markets data.</p>\n</li>\n<li><p><code>400 Bad Request</code>: Missing or invalid parameters.</p>\n</li>\n<li><p><code>401 Unauthorized</code>: Invalid or missing API key.</p>\n</li>\n<li><p><code>404 Not Found</code>: Fixture or player not found.</p>\n</li>\n</ul>\n<p><strong>Notes:</strong></p>\n<ul>\n<li><p>No request body required.</p>\n</li>\n<li><p>No pre-request or test scripts configured.</p>\n</li>\n<li><p>Ensure correct environment variables are set before sending the request.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["match-centre-player-markets",":id"],"host":[""],"query":[{"key":"playerId","value":"6o62deaqwdcrllc91hz09cct1"}],"variable":[{"type":"any","value":"019bf2e1-651b-7049-995a-b0002e59a166","key":"id"}]}},"response":[{"id":"c8b966f4-6eef-4f8d-adde-5a31854e850e","name":"match-centre-player-markets","originalRequest":{"method":"GET","header":[],"url":{"raw":"/match-centre-player-markets/:id","host":[""],"path":["match-centre-player-markets",":id"],"variable":[{"key":"id","value":"9fae4361-7554-45fc-ba79-4fe586eea353"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 11:28:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"220123"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"2f22686e-37ad-4435-abab-52d0c7f836bb"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S8xfyHSnDoEEFYQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb62cb-7ece927f426e6b3a125458ef;Parent=2222d76d2246d740;Sampled=0;Lineage=1:5a8e3e7a:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"selection_id\": \"019a07c5-5409-7194-afb5-fd8820ff7d2a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-544f-7276-b768-ab6d0489f2c0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-548b-7228-8de6-0d5c9bcf8b4e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-54e2-72a6-9441-a6bca17623b9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-551d-70a5-8c45-a4bc66f30b13\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 46,\n                \"numerator\": 45,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-556a-7283-ab92-82e646bc96a8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 51,\n                \"numerator\": 50,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-55bf-73d2-b425-5820fe71c966\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 41,\n                \"numerator\": 40,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-55ef-7132-b5aa-5652d6abd6f7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5614-7173-99e7-d041796ffe95\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 46,\n                \"numerator\": 45,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5644-73e5-9cc0-e69c26394527\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 46,\n                \"numerator\": 45,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-566f-7336-b3b9-8e878a8f4dce\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-56b7-7211-950d-f921f54db25b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-570e-7151-81b8-bbc7557991e3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-575d-72a8-ae9d-ba0bc3b92f8c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-57ad-72a0-bea7-78303555428a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-57d5-72a0-a5b1-b402d686b2cc\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5814-73f3-9477-2300c2cf0b88\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-587d-7394-909f-b6b822f9c8b3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-58d4-7329-ad99-ac77d2309698\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 81,\n                \"numerator\": 80,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5919-703b-a4a4-aa67fae4afd1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5968-7286-9f83-16d01fdac042\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"No Goalscorer\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-59a6-718b-890c-62cb17ae3cba\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-59d9-72b2-8d91-335e94dfcd64\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5a18-711c-b655-c07c3ec95eda\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5a59-7363-b524-6959251cdb26\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5aa8-71e5-8838-18441dd6c8d5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 29,\n                \"numerator\": 28,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5ae0-704d-9e1a-f59c4b433a2a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 36,\n                \"numerator\": 35,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5b15-7213-a28e-14cfbc52c830\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5b49-7159-bbb6-fd8ce02a8c19\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5b84-7088-98fd-9da7afab9983\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5ba3-7278-a2d5-4569371ec5e7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5bdd-7171-b7ca-65bc791e9378\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 29,\n                \"numerator\": 28,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5c24-73a8-9121-617d46f3c545\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5c68-7197-8376-3baa9dd6a4c2\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5cad-72ea-8181-aea90817702b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5cf5-710f-8bc5-edd0163ede66\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5d4c-729b-aaaf-04042c9111ed\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5d8c-73b0-bf76-cdc57524d262\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5dc5-7042-b689-63ef9f599a37\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5e00-71f2-8d20-7f7a7d3bb3ba\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5e39-7158-b345-067094a9b624\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5e7b-70c9-ac39-73bd11230dc9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-5ecb-707f-8c6e-e38c9ced89cf\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-634e-7166-8940-dc491cbf1314\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6363-71d2-95f4-172ea0b0f17f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-63a7-712e-a269-12db5149f18c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-63bb-71b6-bbd8-f4f59f51edd5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-63d7-701a-b9cd-760ef2ea9222\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6413-729b-8e78-cc7fe4713bae\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6438-709f-b5e2-099b023bb33f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6463-71a0-9059-24fe83620341\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6498-7196-b246-19ca8defb5ad\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-64da-735a-b5db-0b11505028cd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-651d-73cf-8df3-5f20757f2fae\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 18,\n                \"numerator\": 17,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6546-7330-8226-d0673dad5902\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6559-7361-9e4c-a6f16488ec26\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6588-733d-81e0-fe06dab1ac67\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-65d5-72a8-bcc1-35e86bd3368b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-65ee-7381-8952-de3ed6429862\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6610-7052-be3e-739727f340d6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6661-70db-9abb-29b1c7f5973d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-66a4-73cd-91e3-52735b5706f0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-66b5-720b-8902-2d6dc269a076\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-66fb-72ab-a5ee-c6f3c4110edd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6732-7079-b15c-9e1a425fb6d9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-676f-7268-b208-318092ddd50c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-67ad-7243-85c5-d54702f43c3c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-67d1-70cf-9557-34a41ce51dde\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-682d-72d5-b965-38189a4e5bfa\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6865-71e3-8bb0-a0ca80f93566\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-68a5-7344-80c0-bc00b505bdb9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-68db-7030-b725-d2e49755c1cf\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-691b-73cc-b28c-4c5f043a29b9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6944-7180-a690-790d2e87d19b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6985-71ff-9991-24f344a307a4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-69b8-71dc-8265-4f061a2084b4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-69ea-73b0-992f-8bbedda92e8a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6a12-71cc-a1ab-662adf0cf13a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6a40-71fa-bc3b-8197327cc922\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6a7a-71bd-96de-f4dd4229f47a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6aa0-7318-b0ff-c241bd6f3fb4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6ad6-73db-b7b9-71d4c062aa58\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6af2-7232-95c6-c61c43693033\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6b39-723c-87cb-1826f3490fe0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a07c5-6b91-71a9-b044-ac7e28dfadd3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a105-70ec-b632-0faf57862a90\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a12f-72ca-bfe4-78841005a1d9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a177-717e-9816-23760063feb9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a1b2-7071-babc-8332c7d89b3c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a1e4-71a6-8ca4-16d93543f32d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a212-736b-bde7-b735dbd43c7d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a240-7373-b34b-7be320d3ac71\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a268-71d4-9196-5867aef9e048\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a28e-701d-a650-5d16f7280e80\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a2ab-71f0-b8ea-c6c834d71dfe\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a2d8-72b2-a537-b12ebad1b4f3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a302-72cc-ba21-8ab97d9f7c55\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a337-715d-bcbc-d0b87bbcbf71\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a374-7289-9eb3-da1da370ac4e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a39a-730d-9363-f3bb8179160a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a3d6-736d-ab10-4bb033574282\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a41f-718d-b512-92e28600d6ba\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a455-73b9-8218-b90650f2b94c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a47d-7330-97b2-fde782c34442\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a4b8-73f6-96de-fd09b54c6201\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a4e3-7041-9c2f-6ca5fd66f820\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a50c-714c-b3fd-0b8f3629c0b5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a543-73fd-8594-dd8bd410ef12\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a57e-713f-9543-b84165099297\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a5d2-724a-b8a4-bf0aa7a85a08\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a5f9-7069-a2ab-c106506853ea\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a641-729c-9fc3-51675a919fd5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a67d-72e2-9ba9-0e85e68f0aef\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a6b6-7243-980e-05a2f1e68f19\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a6de-737a-b9dc-10fca31dd059\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a71f-732d-b3df-02d0cab1d299\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a745-710b-92a1-958dbc0d5d22\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a77e-7133-9730-8f526212ef56\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a79e-705b-86c4-c4d745da785b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a7b7-7317-bb99-601c8d12450e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a7db-7059-a6bd-18b825d63f4a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a80e-72b7-a707-d90198dd8d29\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a83c-7236-911c-fac13d945add\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a87b-73fc-b6d6-b73f5ceab440\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a8b5-72f7-b702-69a2e794fa71\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a903-72b7-8eaa-81d492be4050\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1130-a941-708f-92bd-8d3cc4511a91\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-483e-7370-97d4-70db5d84a8ec\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4890-71b0-b97d-a2eeec6e4d6d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-48d9-713d-ad01-5c398bd86ab6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-490a-704d-8423-7e1356df1819\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-493b-70d6-a1cc-5f9272b7bdf6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-497b-7371-af26-5a47e5749ae3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-49ae-70e2-be3a-b8ac2ecba0bd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-49ef-7021-bd64-1549f66b376c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4a22-7230-8458-a40a04eb0431\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4a7f-7074-8e9a-3ed9cf5ea206\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4acb-704e-86ce-42e807fec18c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4b17-70ca-8852-563a55fd3c2f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4b5c-7315-8c4b-5c821b0e9e92\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4ba3-726b-8898-e9cadc42e10f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4bd1-7044-ba2f-a38af142d93a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4c15-7301-83ab-37874f46b5b3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4c53-702d-8417-c5f3eafef7f8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4c7b-7316-a94b-82ddcbd9a68a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4cad-7190-88ef-b2ceed00775a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4ce1-70c8-a851-5cc51373fa65\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4d0b-72c3-805c-266b695a5a80\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4d41-7384-bee2-fb1a64d2c52a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4d6b-733f-9463-5c1d85bb8fcd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4da4-72e7-b01b-515c03e1d7f3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4ddc-721d-9016-84a745722778\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4e13-7167-9f8c-0969b690566b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4e52-700e-b41b-f7c5d6f2f08a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4e9d-72a4-92f1-dd4b5debd418\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4ee1-73de-ba71-2a0c03a65c06\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4f21-70c4-bcd5-4e8e31b858d3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4f55-720f-9135-7e38db7a015a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4f96-73cc-abb6-2b96aee9bdde\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4fd2-703a-b517-36c5f94bb2c7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5005-721d-a928-45db54cbbc94\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5058-73d9-87b9-9cbe46e2ae5e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-509a-707a-bda9-9cfbd5997eca\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-50ce-72a1-a73f-655f8ed916bf\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5119-70e9-902b-5ae694cdcf83\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5156-70c8-bff2-fdce1c18017e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-519f-72f4-8e2e-204fa0844fd0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-51d5-71b8-aa18-54ebedbc5ebb\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-520b-704b-b419-470e6c3e7957\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-524b-71a7-ac00-e347ce37f1ec\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-52ab-72f0-8d78-c69d4ea298b2\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-52f1-7242-bec2-ae6f2b2a40e5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5336-7235-95a3-c2ed53625234\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-535f-7210-9659-79deb45b6d01\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-538d-701f-9ad8-230aa48acf91\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-53c2-71c4-ad77-1a227a53b194\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-540c-7139-86ca-d4e819237073\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5449-722d-8d13-792215771353\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.6,\n                \"numerator\": 8,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5490-710c-a7e1-b405d8de7ccb\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.6,\n                \"numerator\": 8,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-54d8-72f8-ab2b-0f7d5d90b823\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-552d-72a8-a015-cdfb192dbe76\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5581-70f0-9513-eadfa4b07d65\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-55ba-71f0-bc45-515331d3d19e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-55e9-70c0-9eb7-738f9cc90cd3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5623-71a1-93d6-7b5d4ff1203c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5653-7158-8b4b-9cbd175de8c0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5682-72bd-968c-d927d4e6a8af\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-56b7-72e7-8e35-bfae5aa1ed43\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-56e5-7230-a8c7-13f191dae44a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5746-7391-b29c-6f8c42f49b25\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5778-7074-96d5-3786bee3996c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-57bb-7185-ad8b-3535cd91812b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-57fe-7012-9979-d087e7e48cea\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5826-73a1-a5ed-4ab66a0733e9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5848-71e2-822e-4be048fafbb6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-588e-703d-9d27-dcc7a45edc09\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-58ba-73da-9171-db835f2023f4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-58de-72f4-9bad-e89e3918cc0d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5909-7001-880c-01ec7958c828\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5942-702b-94a2-a8c0960960c6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-596f-73b1-a0a2-620874a4d7b8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-59cd-7393-911e-7064b9aa6724\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5a24-71bd-93d3-39cd16a20f5e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5a58-7072-8f5b-8577b866b3b9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5a86-7135-b0b6-bf21ab1511da\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5abb-73b2-bee8-24abda5e179e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5ae9-704f-ab9f-6ce4bd60e1eb\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5b26-7016-80f1-40e767ab4c2a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5b4e-7164-ba07-a4f201307b63\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5b7e-719e-8a5f-320be64ce184\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5bb8-738f-8260-19da5b12c2c4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-26e7-73a8-9bc9-059dde29c7cd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2752-738b-bfbb-159a89fd0e4d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-279a-71c1-906a-49ccba831796\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-27c2-707e-a277-729328355a44\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2800-729d-b0aa-51bf63ae6366\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2831-7023-a2fb-0d18f0fe2e61\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2859-72dd-a45a-07f4b9db5d97\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2895-7359-a024-dff03009837b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-28c7-71de-b715-b7becbcef7a9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-28ef-705b-9ef5-b65ccadd5414\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2926-710a-afab-6717c5a57990\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2960-70e0-8dda-e9d550e89c64\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2997-7328-b755-56fe72d2777a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-29c5-72ff-958e-f736d697b5cb\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-29ed-73b6-8de9-84547998dc52\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2a14-719f-97c2-f29496b953e6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2a7a-7257-87e1-4719a2a5ba26\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2aa7-73ef-b6dd-b0a4556e9907\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2ad2-7128-aa4d-7818de631b2c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2b36-72e3-a41a-2529bf4889ef\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2b7c-7045-bcf9-b8c6d6cbe75f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2bb7-70b8-89e9-28737be205c9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2be1-7067-840f-07c13399100a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2c31-71e3-9c69-1e9ec2abd323\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2c95-72a4-9d10-63464169c69f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2ceb-735a-8dd2-10ca3afcb3bb\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2d26-70b0-91e3-b6b8e0a8f975\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2d5e-702b-8656-f2170d43ba5e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2d92-722f-ac6b-3047d51ec5ce\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2dd6-7105-8675-b9d4ac140835\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2e1c-70fd-bde0-138251180eb1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2e50-703f-8f6c-af50bb2de9dd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2e89-7211-bbc2-cfdde749ddc4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2ed5-70d1-941d-0d42b0d93bcd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2eff-717b-a04b-515e9e448dce\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2f57-7121-9a95-051490adfd0b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2fa4-7113-aefe-a249e010e862\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-2fed-7245-95c8-d803d563b27f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3029-7277-8d1b-8d08b42d295a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3050-734e-84da-93a5636d292e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3096-7127-afe5-bccb0d46e3bf\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-30c8-7396-a976-377e185241de\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3125-7133-88d8-25e6a13cd1aa\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3172-7205-947f-a27cb3585003\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-319c-70b7-b030-795951c2163f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-31cb-71ca-a914-4f9d1e86f02a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-320b-7270-be3b-5d3600b65e52\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3245-7270-a85d-8dbd4e32d510\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-328c-725d-9b63-4d93e87ff40c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-32be-72ae-999d-ccfce38771d0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-331e-71f8-9160-176cfe5a4f58\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-334e-7243-baa1-037e6d0c198a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3397-7364-9c14-e539497a8cf3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-33e4-70a5-918e-afe67ef5c73d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3428-71e4-9cf9-f0b8befd09fe\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3461-730d-8f18-21be28ddc071\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3498-704c-baba-698c13882281\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-34c2-738a-8c2d-048cd37930fe\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3504-737e-ba6d-eb50f30b6b1c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3557-7331-87ad-adc32e96174e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3587-734b-a6b7-baf2ffbbfa6b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-35a1-717e-b029-b49d09e75923\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-35c7-72d5-a750-b390b8b6773a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-35fe-71f3-8d10-07aaec504085\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-360a-733b-9f21-199de0e9e923\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3627-70ba-a7b4-6c2280854a87\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3632-728c-8bf9-c1c2da7bcd7b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-365b-7145-bcf6-1465b1dc50a2\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-367d-7258-917a-9b560679a109\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3699-718e-a98a-97875ec9e8a8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-36a2-73dd-bf0e-74722bc1ca4c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-36cc-7025-aca0-b8e5e849e96e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-36e9-70e5-aa4a-c10b6dc803f4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-36f3-70a3-ab60-f08c30d8a448\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3720-7326-a9c7-ff941e54fcc6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3726-73a8-b438-cd90c09880c8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-375a-71e2-aed5-5af7046b32c2\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-377f-73d9-a02a-add52370f34f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-379a-72ba-8cf2-91e3233445c8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-37a4-72a5-95b7-d6c91e3b4e97\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-37cf-7369-a4aa-9dd4c9e20241\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-37d7-71e3-afed-12441dbd4c4e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3805-710a-b12d-2614d5572741\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3826-71be-83f9-61977f3de3b5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-383a-7065-8bad-f03ed8cb94f3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-385e-7020-a0b9-bbf1423e3207\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-38b1-73a4-bacb-0af99274c01b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-38f5-715a-a7c7-4a45354617af\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3900-7051-a01b-e3fd75b25cfc\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3916-70df-a69a-e976567772be\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-395e-7022-aad9-feeaa49c655c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3960-7356-ba5f-b478edf9042c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-39a7-7229-a688-aa4947ee59d8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-39b2-7085-86c1-5f611aea104d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-39cd-704e-bcec-f61b580b614e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3a03-72e3-9dc4-777bda4c0c9a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3a05-728d-bb59-5d35b5c79c8d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3a2c-736e-8d1d-7b11558d9e8f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3a34-73b7-bff0-3ceda74ff4e4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3a54-71f5-b52e-5d93e6a60608\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3a62-70c3-81ff-a305c13117a9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3a72-7257-b735-308785abee8c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3a9b-73a4-b0d5-fd8106a7f3b3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3aa0-7155-9a62-60dee9db922d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3ac6-7007-ae9a-3ab41ab5d4a5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3ae0-710f-af2d-8fa05f665ff7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3ae6-73bf-8e6e-72b392667b67\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3b0a-729c-8f61-5288d490d309\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3b35-7338-ac8c-cee020fb2b25\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3b49-709b-8954-90f02e651957\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3b67-70a9-8d1a-e0c3c897a086\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3bb2-713d-904b-d73e9faeb537\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3bbc-733d-bd8a-34b42a64b374\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3be2-72cc-a8ac-09602e340dab\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3c07-7049-a94f-394a858e2398\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3c37-72b9-91f3-96c3299e7150\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3c76-7202-ac1a-c01dcf6d1260\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3ca9-72bb-8d71-a4ee8361254e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3cd5-7330-91b5-1e5f358921e0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3d0d-7014-a3a9-7adec4b3dffc\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3d2a-73d2-a5f4-30692b508ecd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3d4f-733e-97f5-9d3c3bcbdbb5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3d7a-703b-9a65-4cc021c2624c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3da3-70bc-9d52-a5312396ede7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3de5-73c2-ab4d-9a5b5c8b5fe2\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3e0e-73c3-8fc2-9ae8ba56e4c0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3e3a-702f-af45-8ceedbb0c2c2\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3e7c-73b1-bec1-3b70666cf203\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3ea3-7301-a32b-6e27af92ff16\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3ef5-705b-ad27-dc64334a6942\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3f33-7304-b322-b39b77818db1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3f60-71a1-b8a2-a8f3807f5d81\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3f9d-7093-9a1e-9b797701c725\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-3fc6-70c0-a5fd-5581f13af45c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-400f-72b6-ba8b-dbe1c7f06030\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-402e-705f-af44-77c78a4c85ac\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-405f-7268-a829-2829014a5966\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4092-726f-9848-7773253a2e56\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-40eb-7211-ad5a-abbeed9c0b8b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4119-702b-8583-44db32e346c0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4149-72c1-9856-6f5e24edbada\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-419c-721a-85c9-9727c53af5b3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-41e4-7330-a38c-d22fae7a0278\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-47aa-7092-823e-c673ed832448\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-47d4-727d-8e8c-205f1bf2c680\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-47f8-70f7-8025-1b828b254303\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-481b-70c1-b10b-df46890183ee\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4838-7210-934e-956432ebed4c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-485e-7225-a9a1-9b7eb107adc3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-487b-7113-862a-fa2c9f39586c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-48a6-714a-8b9e-a3b3824e71c3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-48d4-7243-95ed-7e88530a67fc\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4906-725f-a05f-ec9876c2ece9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4931-7058-b859-f8094a918101\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4954-7299-82a6-051033084eee\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4987-73b5-83e6-65fbcd154996\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-49b7-70e8-b93e-312bf904f3d8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-49df-7259-9de1-0bad0d17c420\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4a07-732e-8f24-30589ace27cf\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4a33-702f-bb4b-ebe765cb4456\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4a5c-7382-9506-a4080c3162c1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4a88-718a-a371-df6a8ee45863\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4ac9-73c3-bebe-1eaf26b2a907\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4b05-7137-94d5-38bf22107025\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4b53-715a-b7d7-2a476381c6f5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4b8b-7299-8dca-e7768fc519e4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4bbd-7171-823b-feb2acdaecf0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4bf6-72ed-8789-eb8364553756\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4c22-71b0-9c2d-ea82f400978d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4c61-72c8-a27d-057044648f92\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4cc4-7265-ac6c-14a64fe1b67b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4d1d-73f5-b3c6-63176b809e2d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4d60-700c-9762-df94ec97b0c6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4d99-71ca-9024-da8e600d4fc2\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4dce-73ed-b551-6a275e35ec05\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4e20-734d-bffc-0d6567f67c0f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4e5b-7089-a44c-324af275c29a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4e93-71ce-8c34-6d6cc345fd3d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4ee1-714d-b129-758ac5f7968a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4f22-7346-8a42-bee8ba1497ec\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4f6b-7237-8ae9-eb09a2a592fe\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4fa5-71db-b838-67004c36b681\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-4fe7-73b8-bac1-4aae6609fd9d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 41,\n                \"numerator\": 40,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5013-707a-b5f4-c31a3681d1ca\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5049-72ab-980b-9e8c402284d6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5087-7277-98f7-c29fb82a0f5f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 31,\n                \"numerator\": 30,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-50b8-700c-9fcc-76dd6120bdd3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5101-71c8-86a4-6161b3259638\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 46,\n                \"numerator\": 45,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5138-7385-8ac6-e7b24ce0b1a5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5155-71d2-add1-edfff121705f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5173-70a8-8c6a-d510125f0226\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-51b2-734f-9b78-59b1b6983acc\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 51,\n                \"numerator\": 50,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-51dc-70b1-a69a-d2248320d833\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5209-701d-a5ed-602c54fb9be5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5246-71aa-a226-27168a84db00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-52a5-7303-bf1b-d5b46d87a1da\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-52c7-72c4-a6c7-532e3ee0fe9a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-52fe-73d6-8e37-73adf29dbfbc\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5346-702e-8bc1-26c46503c743\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5362-70c5-a7d5-0cdb3db73f19\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 36,\n                \"numerator\": 35,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5379-7186-82ab-dac7e705d0f2\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-53be-70ee-acb7-5b964fda0f55\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-540d-7207-a475-6ed1fb2b466b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5436-7271-ad8c-0c603951ef0b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-547c-73ab-b162-5b1c95651ba3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-54ab-7024-b3cd-e2b7503bf540\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 46,\n                \"numerator\": 45,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-553d-719b-9654-724b318a6da9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-55aa-7324-9e0d-a88ad4cabbc5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 51,\n                \"numerator\": 50,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5621-738c-899d-1a48c546e86e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 51,\n                \"numerator\": 50,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-566f-704f-8df1-c9a381e86f5d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-56e7-717a-9e5f-088a875b548e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-572c-728f-93f2-ede477f77d8d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5781-7034-b1a9-253558df36a7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-57d7-7253-9451-a7d233fbb432\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 31,\n                \"numerator\": 30,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-581c-7163-9711-44064680a0b6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 18,\n                \"numerator\": 17,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5860-7226-b643-601a3efa5000\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5894-7059-9cd1-8bd67198d288\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-58e0-72a3-87ab-ebc386e45297\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5913-70e8-9a10-ddd6fef449a6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-59a8-7342-afa2-f781f044e600\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5a2c-7137-96f9-3f596bc34e81\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 41,\n                \"numerator\": 40,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5a7f-71af-a209-6cc68376a920\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5ac7-7125-a192-1de91d64bc21\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5b32-7081-bdaa-47aabc05eb8b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5b7c-71a6-ac0c-bfb2d28c295e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5bbc-70be-b5bd-6c34e301e448\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5bf9-7352-9176-332c56557654\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5c2e-72c9-8e9a-79188daeaf26\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5c72-7330-8add-47cdadc20bd4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5cad-7281-981b-30a79bfcd895\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5ce7-70e3-93b7-9032fc5ceb3a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5d28-71e9-8a25-22050e59dc80\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5d62-735f-93d4-511a7063a5a0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5dac-7054-8f71-88a81e52b289\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5dff-7177-a1a2-59e01095d09a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5e51-701a-9083-66e88b83ea7c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5ea2-72b9-931f-f5ea4cbf1b38\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5edd-715d-a08a-c179a9b83aaa\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5f32-71ce-acce-383302d05f41\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-5fc3-718b-a1d9-e2735f7b8534\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6028-719c-a755-92c60d45f801\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6067-716b-ad87-6d38088d774c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-60a1-7218-a3b9-5b42681a28f5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-60dc-725f-a465-8bef4e7592d1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6128-72e3-b6ea-febaeffcb9ae\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6177-7114-8be6-f8b787251c50\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-61b2-737d-8d6b-c021d9e624dd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-61ea-73de-b671-9fa972e65a7f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6217-722f-9543-333829333e75\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6258-725a-b47c-bcd0cad5c9ec\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 18,\n                \"numerator\": 17,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6283-70f7-8722-25def47a1cb7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-62cd-73af-91f0-735d08a14065\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6351-733a-b0ca-2710fe2dea5e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-63ab-734e-aff4-383a16f83644\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 31,\n                \"numerator\": 30,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6648-72a9-9a16-8e9996d4c0e1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-668c-7270-905c-e1bdaf15f46c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-66d1-7087-90ea-37ec9072e6b4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6716-730e-a139-36f5c9b76454\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6754-7095-aa94-5878958234bd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6796-7085-84c1-e8fa4ff4ed82\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-67ef-724f-ad5d-30680c3dc444\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-682c-7381-bcbd-52f538dbaa3f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6877-7353-9bf1-8e2a979f2ca6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-68ba-708f-8264-21d62e9b6b71\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 20,\n                \"numerator\": 19,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6929-725f-97e2-1d13c1d31599\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-6961-73d4-9298-8f23ef79075c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-70b3-7307-bf08-d9e6fb365990\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7110-70b9-ad5a-2199759be2b2\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-716b-7239-ae52-c65f70904173\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-71c6-71af-9033-45c8e1efcc30\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7222-706c-a618-943b06e5c5ae\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7274-70ed-b9ae-e23c4dfc078c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-72dd-7329-9ba5-476691ea897f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-733f-700b-a762-2a29ecefb01f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-739c-7147-8db1-c03d05f2350b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-73ed-700e-859e-edabd29be17c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-743b-72db-b8ca-9000e0b6aa04\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7498-70f3-a061-d4d6b8510e8c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-74f0-70a5-bd31-c5d182a914c1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-754d-72d5-a697-a4993f1229c7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-75a9-71e2-934d-fc805813c027\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-761f-70df-ac90-e8896d1e9079\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7680-73a6-98c9-269e6fd73bc2\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-76cb-7106-831a-97c7051a3186\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7717-73d8-a105-c1e15a929e16\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7782-7299-a5bd-6f3e9316ede6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-77d7-70d5-8af5-9973671b80f0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7823-72f7-bea5-c273a3e58529\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-78c3-7210-b1b4-b0af0fa7e02a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7913-712c-8fb6-5be6dafae0ad\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7970-73f3-921c-9dfa8b6475df\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-79c7-7069-983e-607886550a34\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7a21-73cc-ad7d-9d880db24772\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7a72-71c1-86b1-54f21591ad74\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7acf-7227-bcc5-8dbb1708b568\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7b20-7061-91e0-b8d4c4aa8dc2\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7b80-7377-b60d-2e0f0c596edf\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7be9-72a1-b51a-686b558a963a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7c59-718b-b486-abff84da1100\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7cc1-724f-8d2c-4a716d325257\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7d33-70b4-bf6c-a261de34fe97\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7d9f-70c4-9710-12c94e9941b9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7e2e-7358-89b9-2855ef6779d1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7eb3-726d-b8d4-f4bc14def789\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 41,\n                \"numerator\": 40,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7f21-73d1-9556-57324bf1c14d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 41,\n                \"numerator\": 40,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-7f99-70c0-9cf8-495933fcb19a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 46,\n                \"numerator\": 45,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8017-73be-9e21-9579e6064940\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 46,\n                \"numerator\": 45,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-80b4-72ed-ad78-e26e0a5d3606\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 51,\n                \"numerator\": 50,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8175-70ca-ba67-1e8c41f52a95\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-81ea-7096-a28f-718c001c9b88\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 50\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-825b-7228-b0a3-d4cd0ec9f118\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-82c7-70b5-b640-70a60c735f98\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-83c0-7124-b71c-ab8894139581\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-842e-73f2-a613-4430feb327d9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-84dc-73bb-8e62-298f25600910\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8545-732e-9a70-deca09e3f38b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-85b8-733a-a717-5f797292af0a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-864d-7105-a12c-17bf4d86ae57\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-86c4-72d5-a245-5e6ecda40342\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-874e-70fe-84fa-2754f2336d5b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-87ce-70b0-8447-e72aa552a9a8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-884b-7122-a327-f98cf7de30ef\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-88b0-713a-a2e2-5201b5eb96e7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8937-7358-b0a2-84cd63c9c474\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-89b4-71fa-a80f-37242f0c9745\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8a2f-70d6-b4b4-cd62a24f380e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8abd-71fa-bce4-a459dfc6bed4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8b2c-728e-935f-40d309128ae6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8ba9-702c-a0d2-716d53f222f4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8c0e-717e-9842-54921869a9f1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8c72-7244-b8d7-204382db54e7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8cdc-70f2-9510-646dccee09d1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8d2c-72b5-b682-24d18b8c2980\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8d99-7076-a1d1-5cd4b26934e5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8e0d-73ad-95a1-20b40a0408ad\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8e69-7005-ab29-1ca5992d0ea8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8edb-7367-bb90-b87e265c1e27\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8f34-721b-bfb2-dabdff563c19\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8f9c-70c2-a16d-f21ea6d74f24\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-8fd0-71ee-9460-98affd2497f0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-902d-7314-82e1-652add32ea87\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-908d-7358-91ab-7de55685ff42\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9110-733e-ac6c-8a50763edf28\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9186-73f7-8e89-5758baec78f3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-91e9-7232-8c00-5da2f1fd746b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9252-70a7-858f-ec9deb541a91\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-92b2-7148-aa91-603e8173c686\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-931b-71b3-a2cd-aa4e1e5ec857\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-937f-70eb-bc3c-36f3fa86be5d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9403-7253-bfc5-ebdaecf17253\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9522-7094-b2cd-a003e76764ff\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-958c-72ae-a293-6f29d0003b00\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-95f8-717b-9807-f809cf469b19\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-965d-73a6-8110-e1af9f4a00b5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-96b5-72c9-91f7-4aebe1521cfc\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-96fd-7042-bbf3-75d34fb8d258\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9756-71d1-b43d-fd6fe50d44a6\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-979f-732a-9053-290aa1e5fa57\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-983c-71e4-a936-ef7838dc040c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-98bb-7130-9d23-a70ec2429f8f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9902-7242-b4b6-a71c4ca73b6a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-995b-732f-84d5-6b0d6ad39ca9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-99a5-705f-ad25-092d8e4fb921\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-99ea-70a4-b805-8e273c926f70\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9a3c-7158-8cb9-055656a4bd05\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9a7b-722e-9a30-7631a1c9e9a7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9aca-7201-be1a-309a3d899b42\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9b27-7387-bf0f-e576b5baf019\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9b76-730c-92a6-bf3a6c782a11\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9bb8-7332-ae1e-17514de00b7b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9bf4-70de-95a0-69df36855e61\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9c51-7384-be62-a5632d497513\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9c8c-72e2-b5f6-bab57a5d55c1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9cce-71fb-86aa-fc797badf5e0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9d06-71a6-a0e2-5cab96705d9a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9d79-73ab-bde2-3967c3fe70c4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9dbd-70db-8ba1-6c0ef9028013\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-9e17-72bb-bf1a-70295f4f927b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 31,\n                \"numerator\": 30,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-a350-7125-9cbe-30856c79d82e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-a388-7391-9b3d-029e547f952b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15b2-a3d1-71ed-a51e-1dd927257fd7\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-6ff2-7215-9f65-3dc6f7206c22\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7015-70e0-9215-0ddb2e3c5dca\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-703b-7194-8620-e3b0c1fccd67\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7063-71bf-8146-b0e91ef41bcb\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-708e-70e0-a1d7-699084bc7419\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-70b5-7188-9310-b056b711e3a0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-70e6-7285-8005-696e535f647a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7118-730a-abcd-2f11e5356691\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7140-710b-b659-840dbe5e2477\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7171-71ac-ab95-2f07b4124b5f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-71a4-7159-b7a6-102669a7d85c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-71d2-70ad-bf99-b3fa8d0acdd8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7201-7383-98f5-48e3e1979009\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7237-73a0-b874-fa8d56c67498\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-726c-7082-8754-ce87fda0957d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-729a-710b-b4c8-3ee33be2eccb\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-72c3-73e0-a947-2c779d59ad69\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-72f1-7258-8c88-d820fca5e993\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-731a-7140-a1d5-d4d67068372b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7344-73cf-93ac-1e3b20684b2d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-736b-7012-8df1-02bde84888c3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7394-708f-8fdd-8ee59625fb2d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-73c3-736d-b446-d2a8b92d5f6c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-73e2-704d-a376-d93f71941d6a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-73fe-732c-b5c6-f12a71005202\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-741b-7199-ac1e-26e2f49daf1c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7441-716b-b793-6543b9d31667\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7466-7152-9ded-6d104f54be31\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-748d-7033-8223-e08b24663b5a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-74b7-723e-8ab3-43d77df97240\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-74e1-730b-a93c-06dfb9c57cc4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7515-714f-9479-73f91e41ea39\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-753e-737f-83a0-c6b427c3ce93\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7568-71e9-af96-80a6ac34d0ae\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7593-733e-92f2-5d81ed994249\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-75b9-7064-923d-bfaf5dbac493\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-75e9-7116-b959-5db8ce6999e4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7610-72c1-99cf-4920badae4ff\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-765c-7173-b78a-11e94a869bf5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-768a-7233-83db-c2cf79c08579\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-76b4-7127-bc78-f453d9837f10\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-76f5-717a-83c7-a1854c752190\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-771e-71b6-95fd-b937d4812ae3\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7746-731c-87b6-0af947cd868f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-776b-72a1-9216-d3bbd698dc6a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7790-70b4-b479-094109921275\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-77c1-710a-9a50-cc687af559bd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-77f2-732b-9bc3-527d000b4462\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-781e-72ac-bec7-9495ccc4ba9a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7847-726d-a9ae-9b7b1eb4c534\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-786b-736f-9180-21a61ebf84bd\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7892-7231-bef9-1ea4fa202d9a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-78ba-714d-a18c-5113179bd24e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-78e3-7114-9b94-7bade399f3fa\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7908-7378-b906-4034d1e9e765\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-792c-70e1-a8b2-78ccf3629a7c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Boubacar Kamara\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-794e-7294-9a0d-bd155d1fe053\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7972-73da-9a98-3168957877bb\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7997-7056-ad88-f858c3468c79\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-79b7-7310-a385-ab83550c0a74\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-79de-7243-9f9d-88a3b3454979\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7a06-72bf-9c8d-aae153c209a9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7a2e-70f5-b3cc-5f2ea5a833c5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7a57-70b0-9f48-3ba09c7bc05f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7a82-7257-8292-c911cbdfaa29\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7aac-7380-9fe9-34db11142aee\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7ad6-72f3-bd61-10e96c868f9b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7afd-73ae-8071-7a9c77990bef\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7b26-72a4-91a8-13878fb52ca9\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7b45-7082-9f6a-f2e1c8ca3d03\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7b6d-7098-9110-a2e14611d992\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7b97-722e-a678-031b308ad5b5\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7bc5-7022-8e52-b8b66fb597ec\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7bef-700e-a706-d42b31e77b35\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7c18-70bb-abaf-e2a0a39778e4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7c43-7004-816a-5fe7006ed615\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7c6d-7239-9a86-1a8855f2863a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7c91-725b-b275-ebfe979c7931\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 31,\n                \"numerator\": 30,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7cba-728e-8b05-a4a2e0ea5bc8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7ce1-7169-b96f-cdf32b674151\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7d07-736b-b99e-e41013bd4228\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 41,\n                \"numerator\": 40,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7d2e-7054-8cc0-4db2bbfc38fa\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 46,\n                \"numerator\": 45,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7d56-7397-b2dc-24744a404d1b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 51,\n                \"numerator\": 50,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7d97-722f-814e-63ee20d7dd3e\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Omar Marmoush\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7dc2-732b-881c-415e59ee134c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Phil Foden\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7deb-717a-89dc-d1552862520f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Savinho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7e13-7166-8170-047dffda98ba\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jeremy Doku\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7e3c-7394-ba46-ffe561394ec0\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Evann Guessand\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7e5e-7315-986c-034af0f19d1f\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"John McGinn\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7e85-7172-a0e8-bd7a9c7503c8\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rico Lewis\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7eb4-707e-a785-05743aa1f039\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Oscar Bobb\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7ed0-721d-84b8-b9da384fac89\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Ait-Nouri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7eed-729e-b087-87f9bdf99164\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rayan Cherki\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7f0b-70b0-86bd-eb5f50c72468\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Bradley Burrowes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7f2f-7170-9a64-99f1dc6b9413\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Lamare Bogarde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7f59-736c-b3c1-54d6831a3e2a\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Amadou Onana\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7f7e-71ec-90d1-dab70216ea5b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Matheus Nunes\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-7fa9-70a5-947d-fe971f41ec77\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Emiliano Buendia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8009-71bd-a757-170e9d37fb0c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Harvey Elliott\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8036-72bb-9ae9-90b066400010\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Donyell Malen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8064-70e8-9b37-a0f89612bd98\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ollie Watkins\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8095-70ff-b9b0-01a13f041898\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Mateo Kovacic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-80c2-72cf-9af8-b011d5a8cf9c\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Rodri\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-80ec-7215-be56-11bf159ad2de\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Morgan Rogers\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8119-72d5-b3d0-a30376d606b1\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ezri Konsa\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8145-7310-9fd9-8c14cc0ba590\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Divine Mukasa\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-816b-7095-af84-12be71dd8d50\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Bernardo Silva\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-819c-71ba-8eee-145be0cb600d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico O'Reilly\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-81be-7396-8d25-04b9f1d3a199\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Tijjani Reijnders\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-81e8-7344-a507-3d1e16e43528\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ross Barkley\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-821a-7250-b5b1-9368feff1586\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nico Gonzalez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-824e-73ae-b0ac-5f81cdcf7f6d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Erling Haaland\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8286-7304-a87b-65515a944c16\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Matty Cash\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-82b8-71c9-8c7a-2312d4744991\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ian Maatsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-82e5-728b-9eae-b308a3fbc32b\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Tyrone Mings\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8316-707a-b089-6aaa5a326cd4\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Josko Gvardiol\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8346-71c6-befa-04e900c11a08\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jadon Sancho\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-836d-7305-816d-48be742dd110\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nathan Ake\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8398-7076-868a-f87ab777ff1d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Abdukodir Khusanov\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-83bf-7381-ba3b-2dd2924e9543\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"John Stones\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-83e8-70a6-8d2a-07e89d7ca198\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Lucas Digne\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-840e-7332-9981-9b4b5d94e294\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Victor Lindelof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-8438-71c8-a1ea-e6e4c8d39d6d\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ruben Dias\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a15cf-845d-7242-a38a-798a1178f5ed\",\n            \"fixture_id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Pau Torres\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 716\n    }\n}"},{"id":"cf9d9f44-c798-4255-816b-e42f7773c762","name":"match-centre-player-markets","originalRequest":{"method":"GET","header":[],"url":{"raw":"/match-centre-player-markets/:id","host":[""],"path":["match-centre-player-markets",":id"],"variable":[{"key":"id","value":"019d79d8-1292-71d1-a470-f11a49ce5d4d"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Tue, 14 Apr 2026 19:32:55 GMT"},{"key":"content-type","value":"application/json"},{"key":"content-length","value":"230484"},{"key":"x-amzn-requestid","value":"e55c8d60-a8cf-41c2-b53a-3a1922809b89"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-headers","value":"*"},{"key":"x-amz-apigw-id","value":"b0xvkGdyjoEEjoQ="},{"key":"access-control-allow-methods","value":"*"},{"key":"x-amzn-trace-id","value":"Root=1-69de9663-7253a7327653994d7055e046;Parent=3039dad542ffb4f2;Sampled=0;Lineage=1:5a8e3e7a:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"selection_id\": \"019d79e8-3cb2-70d6-a9cb-ed3b6f628937\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3cc8-7050-9bba-11f6bef654f4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3cd9-709a-bd70-28a84ad9c12d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3cec-72af-8bfa-96d573448b3b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3d2e-734e-9b53-027afb1bc1d4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3d5e-70f8-81ed-4b23f2f85c7f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3d76-7190-a7fb-590c075db45b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Guido Della Rovere\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3dad-7024-89ab-bd0276d78a44\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3dce-7303-ae4d-7a2bc0b51446\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Alvaro Leiva\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3de5-732c-9bb6-2b99b519d726\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3e1e-727b-bfbc-7728dc6c1c35\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \" Vinicius Jr.\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3e43-7260-b36e-9956a2fae1e5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Maycon Cardozo\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 2.87,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3e5a-70ae-b374-133b4c1348b2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Wisdom Mike\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.87,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3e6c-701b-982a-9ab70fba728f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Deniz Ofli\",\n            \"hit_rates\": {\n                \"continental\": {\n                    \"last_5_raw\": \"l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3e8e-71a7-9264-e075944743df\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3ea9-70e4-ba2d-cd08333c7b26\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3ebb-728e-b0e9-8079d1f9ebfd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Cesar Palacios\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3ef4-71de-906b-0172eb3e59a6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Erblin Osmani\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3f21-7136-a845-4f82aeca149a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3f40-70bb-8bbc-5dee23e0b38e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3f5d-73c7-a260-3c30988b2461\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Dani Meso\",\n            \"hit_rates\": {\n                \"continental\": {\n                    \"last_5_raw\": \"l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.75,\n                \"numerator\": 15,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3f72-72d1-a309-9143ecc9e566\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Daniel Yanez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.75,\n                \"numerator\": 15,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3fb3-71fe-90f6-72b58010b4af\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3fde-71ae-ac2d-8780d104ba1d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-3ff8-7209-a22d-779423f8206b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Pol Fortuny\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.75,\n                \"numerator\": 15,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4009-71be-99cc-1bfd437cf1a2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4025-7059-9f93-8191b37a10b2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"David Daiber\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-404d-7004-9ba9-937bbe0f1301\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-407c-726e-b70b-947278d4d5cb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Jorge Cestero\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-408d-710e-ab0d-befcd3f32a56\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-409f-7106-918f-a2e8d3626843\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Filip Pavic\",\n            \"hit_rates\": {\n                \"continental\": {\n                    \"last_5_raw\": \"l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-40bb-720f-9917-7b1cd86cdbb3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-40cc-7373-8178-d0f85f53d8a3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-40dd-73d0-813d-c6a8dc0b3593\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-40f3-7317-a59b-0ce1937128d3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4123-721d-8c53-7f3f7c5551f3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-414f-71b7-a907-1a45281de770\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Vincent Manuba\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4160-7208-abbb-cc84fa76bc0b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Aurelien Tchouameni\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4171-730d-b3ef-678ac45bfd0d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Manuel Angel\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4182-70ec-9496-e908d6290bd7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-41a9-719c-b725-0448e8f8c509\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-41c1-7093-b53b-f4aee9239489\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-41d8-702f-8bb1-04cbff5c7a10\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-41e8-71b9-ba21-3baf966f94dc\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-41f8-704b-b470-fbbeb3036efd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-420e-72cf-9189-81dc84491d2c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4228-70a6-a0d6-e7910499bb15\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4251-71d9-a7fb-66b2aeb2f980\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4261-734e-b45f-27856d04908d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"David Jimenez\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4277-714e-9b6c-d97448a8f964\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-42b9-721c-bad3-d0b6839d587b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-42ef-7153-9641-425346c459f7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Joan Martinez\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4325-7328-b2b3-a6dff7a7c03e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Lamini Fati\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4348-7345-b064-b5b00f86d66c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Min-Jae Kim\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4366-73c9-9441-df66709f7755\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Victor Valdepenas\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-4386-7081-8c38-7991c8ae4856\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-439b-70f8-a55e-a9c6e881a397\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-43c2-713d-a394-a06e034e19b5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Francisco Garcia\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-43f4-7103-8d47-4193f1b81093\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d79e8-440d-7351-9e55-21e79c3eb4b7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d819b-9331-7003-84bc-2b3e8e1d6855\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Bara Ndiaye\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d819b-9746-711f-8d72-5fc19d5a5fde\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Jesus Fortea\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-37ad-71c2-9827-e4ccf04c2112\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-3af7-7262-a60b-9789d5cb4391\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 20,\n                \"numerator\": 19,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-3d06-707e-b3ff-22bc498667e9\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-40b5-71b8-9d26-669a92ec3629\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-40ee-725e-bbcb-30818a7b3074\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4129-7039-81ba-1e82ea049af9\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4160-715d-9086-13d52bf16995\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4196-7048-ad7e-5f392e6b3eb6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-41c9-70ce-9c82-7f0c2e538ba0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-41fc-71ac-ac1a-f398ed6a6149\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 29,\n                \"numerator\": 28,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4236-71b8-9dbd-af0d4b1a0020\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-426b-7265-bda9-11ab38175c5f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-42a1-7118-a298-9f4e527ea42f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-42d7-7126-8061-15231bd3e4c9\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-430c-739a-a925-b0ac63877bd1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-433f-7305-b7a3-c21f6a693d5c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4374-70c4-acca-0074cd5f6dbd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-43a7-72af-86e6-7d4a1b1500a2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-43da-73c0-ace8-7fbab36c6396\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4410-703b-ba23-527ef9e19590\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 29,\n                \"numerator\": 28,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4444-72da-94bf-1ed984e67ec1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 29,\n                \"numerator\": 28,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4479-7060-9930-b942727d9d96\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Deniz Ofli\",\n            \"hit_rates\": {\n                \"continental\": {\n                    \"last_5_raw\": \"l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-44b3-7035-a923-df6b116f4270\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"No Goalscorer\",\n            \"hit_rates\": {},\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-44eb-7231-9d8d-8635ac174ce9\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 51,\n                \"numerator\": 50,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4522-72a4-98de-6d09e47a0ac0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 71,\n                \"numerator\": 70,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-456a-7177-a1dd-4d331ceb0a75\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 46,\n                \"numerator\": 45,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-459f-71af-aa9e-376b7c263c51\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-45d3-71b2-a6fe-776520e61abd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Cesar Palacios\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4606-7196-bc3b-09d60bc89eb8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-463d-71d0-a8af-733cbcfac05e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4673-703a-bf12-012485f8849e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 41,\n                \"numerator\": 40,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-46a7-72f7-9f66-228f4d00a521\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 41,\n                \"numerator\": 40,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-46dc-714f-94a3-50a530bd0c1f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4711-7163-b7fb-6f77eb07745d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Jorge Cestero\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 41,\n                \"numerator\": 40,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4745-7005-8ef9-13e770b2b070\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 51,\n                \"numerator\": 50,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-477b-7312-806f-756095f24023\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-47af-713b-9921-f0433566078d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-47e3-72b7-8a39-9e595ccf36a4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4817-725c-b616-462db687d7a6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-484c-7270-82ea-0a726e6b8652\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Manuel Angel\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4882-72c8-bea5-a5d3ce31cf67\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-48b6-7076-b7b7-067c77885cd4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 29,\n                \"numerator\": 28,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-48ea-708d-b0b9-8d371f9b31a6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4920-7096-b7b3-5d7f1873937e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 46,\n                \"numerator\": 45,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-4954-70e9-809e-fcfe51d5bf86\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 56,\n                \"numerator\": 55,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-498a-73ef-8dfa-bc1625104a54\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-49c9-722c-b360-7a03b1906b6b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 61,\n                \"numerator\": 60,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d8495-49fe-706e-9551-42213fe280b9\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e0e6-7383-bf0f-406b53b674b4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 18\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e1ac-7355-9619-650044df41f0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.07,\n                \"numerator\": 1,\n                \"denominator\": 14\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e1d7-718a-8d1d-36c27524af80\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e1ea-7383-9f1a-bb3a6ca7a8d5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e1fe-7392-aec9-4459e89366a1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e211-7294-9cc7-149279c061dd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e247-7357-bbcd-fd553ca4634c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e289-715a-b155-4688c787adf3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e2cc-733f-8118-61779bc4b204\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e2f1-73ab-a587-8b68a75e7005\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e327-7152-8b2e-d3c23eb61411\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e34b-711e-81b8-fafb37a00c7a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e36c-719d-aad2-b026f422a7c3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e38d-7353-811e-11bfd9680336\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e3ba-73aa-b1b0-94c43923fb83\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e3fd-703d-a38f-00c3a6201a94\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e413-7081-95f9-eee4d4d97a81\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e432-7105-8708-ef5cad68de82\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e445-71ff-b122-83d0296ec823\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e45c-7371-88c2-23b25a567f9b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e488-7178-98be-13a4f1b49f0c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e4af-71cb-b6bf-c90ace6d4cc5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e4e5-7112-a3f5-c07a990f39a5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e505-7219-ada0-b37335c44510\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e51e-71b4-9d26-2893e036763a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e536-70a4-b785-6ed1d854b8df\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e54f-70fe-b258-796b8d40b4aa\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e561-7201-9066-87e4d5cafb61\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e579-7318-ab7b-470b8f7815b3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e597-737e-8dd5-ed717baa8e4b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e5b8-71f6-940b-1a72fd60b667\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e5f6-7257-b094-9fcb024270f2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e612-739f-b00f-c6a92ef0da82\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e625-73ab-9e18-d81f8a8707f2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e64e-7114-9751-b18ee3fde433\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e672-72b7-ac8e-8f4448404ce2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e6aa-7106-b683-224241819f44\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e6c2-7189-9f51-86dfb3506bdb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e6f3-73ad-86e3-3acc0e4d46eb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e762-7024-94e2-293cd6991da6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e78d-7077-8939-9546f82ac00e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e7aa-703e-883b-075278444fe5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e7d6-7385-9439-9e6d92c66472\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e7ec-7392-979c-8e93288c37cd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e803-7118-a49b-433509c253e6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e81e-700b-a01e-339adf69e6f9\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e83d-72d9-bd48-aaeb2fd6eba8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e850-7086-aff9-8b1f36426554\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e865-7355-a108-88f9b2393608\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e882-7233-998f-87f21c3b29f7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e89c-7035-9f9a-7c75e2c7db26\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e8d1-7161-aa0c-633722f972f3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e90d-7322-801c-e671e29b414f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e942-71fd-b872-189be9a2c4e7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e963-7328-8510-2a88e9c07d2d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e991-72c6-887b-ed7e096bf0a8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e9cd-73c5-827d-6c125b61fc0f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-e9f9-739c-bb58-8c0d436f1cc7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ea3e-70a4-ae53-c0784b51bb28\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ea63-7191-abd2-110efd8d7db0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ea96-70ef-9e05-c00336df322b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eab0-722d-a1f7-54733c91a5ff\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eabb-7198-a185-b99213a556a1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eaf0-70ed-9cd1-220582a78f36\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eb0a-72ac-a07a-73e351305c76\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eb2c-704f-9c78-14acca0d55f7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eb40-70b1-a998-73f694793df7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eb4e-70a4-aa2b-cba868ff6d4a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eb95-70f6-9e29-b4c7422bc5bb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ebab-70c2-af86-8bb761d00b8f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ebb1-73d9-bae6-9be931a93f8e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ebed-7206-bed1-964a1c86f7f5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ebfe-7109-bdf4-6d9a5cb975e3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ec3a-705f-a821-32ec3570257d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ec53-70b1-8b61-445c3c84bd31\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ec5e-7340-8c90-3051060f82c1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ec8c-7333-b77c-9377ff8125d8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eca7-71eb-a068-8e7daf3735a0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ecd0-7131-b430-035c220bc285\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eced-7102-845e-8a86647fac7b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ecf2-70fc-98b2-df2a52c027bb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ed21-710d-a810-386150d2f0ea\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ed2d-7324-80b0-d31b6eef9d98\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ed62-730c-829f-cf07d61c7ca4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ed67-7118-80e3-f1eb9e90947f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ed77-72e6-825a-844ae21577cf\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eda4-717a-a3d3-fb1fa21c7b5a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-edab-71f3-ade9-06197ffa2b0d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ede8-7034-8a91-e2bc6a53ea5c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-edfe-704c-9090-3f587fd68e61\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ee46-7041-a1c0-b676f6c5262f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ee4f-73af-8abb-bc130c25bf02\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ee73-7154-8a23-b01ccbea15dc\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ee91-709e-91f2-c5fcd84907ff\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-eece-7354-9105-62851a9ffd23\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ef0a-725f-bdcf-7e6242f9e4b6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ef3c-70e0-aae7-226c5d80fb8e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ef62-73a6-ae4e-8aa2bab9ab06\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-efa8-71cb-abae-886b519a15c3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f006-72de-bb02-8f0353de17c0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f039-721b-bf38-fc544576fecb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f06f-73c9-8801-e0c180f45311\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f0c7-7288-916f-32709ed9f5db\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f12c-70fb-a5c2-0703053ef493\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f185-73b8-8229-7904f8e61551\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f1eb-7325-85f7-5dff21e914b0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f22d-732b-afe0-fed8f498ee55\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f27f-7029-a441-6213b7300b98\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f2d7-72ee-b70e-3053247ed7a5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f33a-713f-a0aa-7e3aa237c356\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f374-731f-beea-72c125102b50\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f3a1-73be-801d-25b981340526\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f3f2-730f-9f19-02cb32af2372\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f437-7312-a7a1-41274b76d1e9\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f468-717a-b9e3-e10ef577fc6e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f4ce-7058-8c91-9497f99d386d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f4f4-704b-9dc9-2243cb07d82b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f51e-7187-8985-e22566d78409\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f560-71d3-96eb-1f31a984c908\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f5bb-709a-b016-58e787de8416\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f821-721a-af18-d9b080125944\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f853-72c7-bb1f-92db3f8955f1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f89b-712e-b71a-02157f8a2071\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f8c0-7349-9684-70ce9c4799db\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f8ec-701b-bd14-ec0a5f1de7ec\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f915-7292-9c1e-4db400566597\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f938-7244-93d7-0231e13994b8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f967-71f1-82f1-84c452aba296\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f992-701e-93a2-fed403a28ddb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f9bf-715e-914a-da89341ad5d0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-f9fd-7004-b500-ee5b8c9dabc1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fa4e-7382-b73b-9f020bfa826e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fa90-71af-8d75-9e12901073ac\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fad7-73ca-ba6d-5d3b73fc8fea\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fb23-726e-91f9-784c442894d7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.38,\n                \"numerator\": 11,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fb57-7192-bbb2-678fee0910ab\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fba7-7285-a8dc-600060d98acb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fbcf-711f-a9d4-2175a707071b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fc23-72f4-bc45-cb7285de74d5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fc70-71b4-9e59-4dda9dcf7fc5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fca0-7369-ac9c-a9baacc93ce7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.3,\n                \"numerator\": 23,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fcdc-7020-b728-a0fbd2894c86\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fd13-71f9-93dd-52ab9b887c89\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fd47-714f-8d4b-d6fc7611fe43\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fd93-727a-af6a-ca8e819cd7f1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fdce-7242-a850-0ca12033b360\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fe03-73db-a254-ca049e46d9d0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fe42-70a1-9563-7ef65df0d973\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fe90-7263-b2e0-8436fc94b1d6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-feb5-701c-99c0-8a9dbeb1fbdb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-fee2-7365-bded-3e65a2cdd6a2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ff1e-7175-8a0f-e0e92e27f9ef\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ff49-7058-a8ec-4682c2d395b8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ff70-7147-a87b-5386feceb09f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ff9a-7308-b560-9c037ab910c3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ffc9-70c9-9eb2-420a3eaa2924\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85de-ffef-73c5-9f0e-b339ea04a9ab\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0013-7196-9b73-0e34628539e9\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0035-73e0-a3fb-7d1a6b3ca7f1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0059-70df-9449-0b39d2b0a3e9\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0083-737d-a305-35ae7d15e132\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-00a5-70cc-8efb-fe3a3444c55a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-00c6-7066-abe1-f5bce5098a41\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-00ea-72e0-b36a-6a416ae26517\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-010e-70ca-8ff5-3ab3e82579c2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-012f-701f-a7e2-3b282a91b616\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0153-7090-91ef-19d635e07846\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.63,\n                \"numerator\": 13,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0175-7253-a154-14e6636b5520\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0197-70f1-bd13-5a5c8cf3f597\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-01bd-72a5-8b68-237291d31ccc\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-01dc-70b0-8c7c-d3d665f0dfb0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-01ff-7305-a9e2-73f786b7c372\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-021f-7255-919f-d5a23679709d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-023d-7213-8127-85a68feddf0d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-025e-7073-9498-02d2b6002a2d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0280-7172-8497-d739ad9cb823\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-02a0-7290-b30b-9e75aa224430\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-02c1-7374-80f3-f2a153cac254\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-02e4-7338-8ec1-4431d1ec3753\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0310-718c-b5b1-f1071bc9ada4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-032f-73e7-9937-e0500da69f11\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8.5,\n                \"numerator\": 15,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0354-7221-a17c-561a092863bf\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-037e-709e-a664-d8165656a2d8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-03a4-7198-a76f-7f13a755c4b1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-03c7-71dd-a14e-3f61e463be40\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-03fa-71a7-90da-f0eae4d73ed6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-041b-703c-96b5-56d5d99e8797\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0444-72f6-860d-41f3a0451f59\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 13,\n                \"numerator\": 12,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0472-7329-9855-3a170725c004\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0494-70f4-8dc1-56f55502a15e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-04b9-727b-89d7-27fdc0cfa5c7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-04dc-7182-a178-51bdc4eb5b51\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-04fa-7324-8ba1-e2e06b1edd9c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 17,\n                \"numerator\": 16,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0523-73c9-a654-864915e7f4c0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-054d-70a0-b761-5e625c3100b6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0580-7100-a256-cf5e5201cfac\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-05a8-7338-8cdb-55f09c40df54\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-05cd-7358-ad0b-f68455f16c06\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-05f3-7211-b592-44bb870ff1b3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0622-7252-9d86-d16f15838091\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0773-70c7-b965-5dacce37f855\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 16\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-079a-7392-bd3a-4d58ea8732ba\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-07bc-73e9-ba28-d007b43bf154\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.1,\n                \"numerator\": 1,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-07dc-7206-ae8c-d5267ecd8764\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-07fc-73b9-a35e-905f239b49dc\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-081f-723b-8a5b-b2d8a153f14c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.13,\n                \"numerator\": 1,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-083f-70b1-b4fe-324ea0799568\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0861-71c5-bea0-f648f8e326f5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.17,\n                \"numerator\": 1,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0882-73d2-87f5-29f9195e9b43\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-08a3-7233-a663-d5672a6120c0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.2,\n                \"numerator\": 1,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-08c3-7006-b9c1-bfc9c0e36572\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-08e2-739a-9a9e-cd261257eb27\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0902-726a-81a6-42bcb18cdfba\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0921-7205-a5d1-14cd18f322a2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0941-73dd-8fc1-b84d8d10ba31\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0962-708c-ad71-170494799815\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0985-7139-a9a9-1a182ef5746a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-09a6-73dd-b874-582f32963aae\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-09d3-7038-a8b2-81f4391e38e3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0a0b-72b2-8136-8ab233858bc1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0a2c-73db-9b6e-ed3468665e53\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0a4e-72ea-a439-b63482be6554\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0a72-7194-85d3-ee546e22c5d7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0a93-73ac-bd94-54f884cec53c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0ab6-7132-bfcc-2e5a2777694d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0ad9-712d-83fd-5c0992e1165e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0afa-710a-865f-3bfd7f28770f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0b1a-7135-b51f-3111c71f544f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.8,\n                \"numerator\": 4,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0b3d-7212-8ec7-5a3604cc5734\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0b62-7076-8420-0001a95c65e4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0b84-72e4-aa8f-e72b10ac4a68\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0ba6-7154-83e5-9123910428ed\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0bc7-71c4-a6cc-58f619f3f355\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0be9-7056-afc6-3eab25549b5f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0c0a-703e-a8ba-b5bbaec22549\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0c2c-734c-be38-1a842831f620\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0c4e-7320-95af-8d041c2a2999\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0c6d-7018-a2d2-b43fc2cb96cd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0c8c-7094-8351-ab864bca8894\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0cac-73bd-86cb-1b0c3ce14673\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0d16-721b-a48c-3b21c43be762\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0d36-716a-a927-aae69a9a9750\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0d55-722b-9d48-591cc1944025\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0d75-717e-9647-01f1a70f311a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0d92-7347-a4d4-345e0f304d93\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0db3-7149-82de-25489dbf3f46\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0ddc-723a-834a-31980be21b44\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0dfa-7179-b2cd-eeabc3ceab9b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0e1a-7029-aef2-081b3ae5e34e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0e39-72ae-bf8f-9087ec1d61ad\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.4,\n                \"numerator\": 7,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0e59-7183-8754-4b9abcd0acdd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0e77-7048-94b2-0f24b0818a84\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0e95-720a-aad3-933f395398fc\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0eb6-73b3-8342-2b3712198a49\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0ed6-72a8-be5f-ecdb665ed59f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.75,\n                \"numerator\": 7,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0ef4-7141-a10d-b8dffe0ee6fa\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0f15-7066-b54d-b0b61cc3fb2f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0f45-7234-a9b0-8ab706caf73c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0f63-73f3-9929-3ac97abd7455\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0f80-72a5-ae2c-5193cf7ba493\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0fa0-70c8-998e-1fa080e63e16\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0fbd-7040-a9bb-8eaa6c08a4f4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-0fde-7285-b63c-b979849693de\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1001-7094-a7a8-9f4912377a7b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1023-706b-b40e-25203fabe7cb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1044-705f-a394-33b99cb76bd9\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1065-72ff-aab6-f7e569425a86\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1085-7043-a93a-e05f9d1b7477\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-10a4-70e0-9e58-04bac35af4fa\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-10c5-70e6-8ab1-571a67052e1c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-10e9-7103-a678-08a0a0c62112\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1108-706c-962f-547f9167f5dd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1129-73a2-88e8-549a938f6ec0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1148-70f2-885d-23d409ffa5d2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1167-72b9-a4b4-a41ae6635028\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6.5,\n                \"numerator\": 11,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1186-73a6-9962-50412c161e4e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-11aa-71f9-863c-c7a19b2dea90\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-11cc-7393-a069-1d8d47558479\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-11f1-7122-ac98-b9122d5b8fbf\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-121e-7000-852c-1c03d174fe2d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1250-736d-b0bd-2ba24def5ce4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.3,\n                \"numerator\": 13,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-127f-7209-86eb-82c21e1171fb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-12a5-7260-9bf2-00458737fa81\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.7,\n                \"numerator\": 17,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-12c9-7270-8d6f-681196835114\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-12ed-7134-8161-cc473231867d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.88,\n                \"numerator\": 15,\n                \"denominator\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-130e-7326-b3fc-1f1abfaea431\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-132f-73f7-898b-85a96809035c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.2,\n                \"numerator\": 11,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-134f-73f1-a278-d12e1070187d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.25,\n                \"numerator\": 9,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-136e-71d7-a1a2-8777ee005092\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.4,\n                \"numerator\": 12,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1390-7152-ba92-dcf838e58b10\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-13ae-7255-87cd-f7ca66b9c154\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-13ce-709c-8de2-396605cc2eeb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-13ed-7341-a2dd-bad3afea8097\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-140b-73e8-bc87-1be44df9a035\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1429-7228-bf09-511eb3aa9bd1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.2,\n                \"numerator\": 16,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1448-7075-949c-cd3731d7af7c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1464-72de-a0aa-bf7e838b6059\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-148f-716b-b06e-abc4c32c2239\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-14ac-7021-b2ab-74b51f9f3632\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-14cc-73d0-817c-b37abefc9f71\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-14eb-70df-800a-ed36de74f452\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-150a-706d-83ea-13036d7e89ed\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1529-722e-abc2-857da65bc645\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1548-7244-841b-8170f4267ce3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1567-728c-ae3f-e58955fc2daa\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1588-7051-9eb3-6413cb979a55\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-15a9-708c-82e2-34a925dab697\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7,\n                \"numerator\": 6,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-15c9-70f2-a6c8-c5cddb751277\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-15e9-71f9-a306-9aa7e3000420\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 7.5,\n                \"numerator\": 13,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-1608-7397-bd58-90ee8ec34765\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-162b-708a-bada-42d9d4f78443\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-164b-70a6-8674-bb21a0417707\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-166a-70e4-9fbb-0c390ad6cb28\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-168c-71c1-b24c-505b9c61c731\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-16ab-7392-87c3-6da7e0780b9d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-16cb-7362-b147-09ea4eb0903e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-16ec-70a1-87e3-53fca7c70d5d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-170c-72b1-a91b-4b0f7e7831d5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-172a-73b9-be7b-c2c81f54cc13\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85df-174a-719e-aeac-d2f2a9e4733d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4c41-703c-ba8a-f8f6c7813d20\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4cf3-733c-a922-a7e3800cfc65\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4d27-70db-83bb-52c3e72ea097\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4d50-7387-a027-752560ad9c6f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4d85-73f7-99c8-6a62b1150e28\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4db3-71e9-ac9c-f56cd480abc5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4dec-7162-89ac-b782cabe98ee\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4e27-711f-bcf8-b747a392f612\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.5,\n                \"numerator\": 6,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4e71-72dc-96b6-0e3cd946d62a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.1,\n                \"numerator\": 21,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4e9a-73b9-b39d-670649b7ce0d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4ec7-7240-9c11-9d473b0f2361\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4f11-731b-985d-6b8fbd289b90\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4f41-7219-8e88-14f922657b3f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4f69-716d-a96f-e685b36e4af7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4,\n                \"numerator\": 3,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4f9e-71cf-ba29-31fa42650821\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4fc2-739b-a067-0e7a726f1253\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-4fff-73a8-91da-d2df903f76fb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5033-72e0-a9c3-d4c0b710a739\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-506b-7295-bac9-85df33e6a147\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9,\n                \"numerator\": 8,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-50a5-70b4-81e2-66bd3ddd113b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-50da-739d-811c-5b4ac215b6f1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5107-73c9-adcc-1d81f3747761\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5147-71d1-8983-474640a5c407\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-51c1-7068-8e43-75a4b0d756ed\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-51fc-72ae-afd2-0ef309a5db8b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5235-70f0-9ec4-f90ea2646b1c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-525c-71d2-b5e0-0847ac701347\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5292-71a7-8589-e670422f34a7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-52cc-70c8-ae60-6237065a9494\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-52ff-701d-a77b-9a35da5f07f5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 18,\n                \"numerator\": 17,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5337-7011-94b5-fb291c509150\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5377-72f0-a7be-4af4a2444cdf\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-53ad-71c9-8794-677a60c7fe86\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-53df-72de-a157-ba1c15159509\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5439-7363-a648-fd70e5752351\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-545e-72de-8f7a-7eee10f79a1a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-54a1-7224-ab1a-0eb8ca82ef33\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-54d2-73a1-aa80-d9b0c98ed73e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5509-717a-bd22-68354ba16319\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 36,\n                \"numerator\": 35,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5531-73f3-8278-d9af421a08b3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 41,\n                \"numerator\": 40,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5571-7304-bcc5-4db26f517360\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-55bd-73d0-8e95-238830a5a3a5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-55e4-708a-be90-dd4fac93939a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5617-72f0-9773-3d36a49484a0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-563d-719d-bb7f-d520b5ffc744\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5673-707d-b21c-c2f5228d8e03\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2,\n                \"numerator\": 1,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-56be-71a8-896a-6edff67f7e4a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-56fe-73ae-8fee-7ce0dc66694b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.2,\n                \"numerator\": 6,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5739-7154-bbc3-1aa757fe5907\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5762-72a3-b359-ed5a3bf68e3d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5795-7223-8509-27f35b0cdbfc\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3,\n                \"numerator\": 2,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-57d1-70b8-b628-76ea28dab13f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-57fe-73af-bd90-3533462688f6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5,\n                \"numerator\": 4,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5835-7169-95a7-3bbc961390e6\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5877-7170-b9f9-ddd4bcda33fc\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.75,\n                \"numerator\": 11,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-58d7-709d-aca7-2660979aca24\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.6,\n                \"numerator\": 13,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5904-723e-98f4-2806be5cf580\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5933-70a9-ad70-403784c430b8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-596f-7167-9154-156e9ca733a1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 9.5,\n                \"numerator\": 17,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-599a-70b8-b2d5-753e5402a33b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-59c2-72b6-a762-6e4865639fac\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5a01-728e-938a-04d57fae1f4e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 18,\n                \"numerator\": 17,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5a67-73b3-8c02-0ef7208dd9cd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 18,\n                \"numerator\": 17,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5a9a-73f7-b0de-7da102ff76f8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5ac5-73cc-a86f-a0bc51069e54\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 20,\n                \"numerator\": 19,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5af6-736d-8b47-2e85df64eef4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5b3a-73e9-8d18-7c07d7c78335\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5b87-711b-9fad-4fed878b6ff3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 20,\n                \"numerator\": 19,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5bb6-7272-9420-81f863d8b1f4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5be1-717f-a5c7-5f787cf0b0f4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 23,\n                \"numerator\": 22,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5c1a-70f1-8ae9-30b17873814b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5c3f-70db-9e90-cee7342aa147\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 34,\n                \"numerator\": 33,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5fbd-7207-820f-053d8eeb4c91\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 50\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-5fe8-7279-848d-2c3171e63351\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 50\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6043-72e3-b4b1-4868b1c9a7ce\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 50\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6117-72bd-b45e-e82a31b6b994\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 50\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6192-7325-9aa3-b0f317221860\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.02,\n                \"numerator\": 1,\n                \"denominator\": 50\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-61c3-722c-a31b-7e7d8788cc4f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 16\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6211-7113-842e-c20fed79fa25\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-623e-7255-84ae-965031b54204\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-628b-7015-8458-a385c8a8cdc5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-62df-7062-b9cf-86c750c100a8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6308-7093-bb55-e924ca5b278c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-633f-71d4-86cd-b19aaa3596ea\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6388-719f-b7e4-2834ac40d8dc\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-63ce-72d3-ab47-84ecdcd8cdb2\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-640d-703f-b0e9-a6200846e300\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.22,\n                \"numerator\": 2,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6437-735d-a287-d2b7ec646fe5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6473-71ec-9632-01702ca67a41\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.3,\n                \"numerator\": 3,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6497-728e-bf8c-3184ed91d59b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Dean Huijsen\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.33,\n                \"numerator\": 1,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6513-71bd-86f2-b5ee5c3a156d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6544-73d4-a9e2-23ca92451b12\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-657e-7388-b03c-01fa2e607eaa\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Aleksandar Pavlovic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-65b7-7062-a283-3c0a1a39a25c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Eduardo Camavinga\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-65ed-72b9-96a9-e7ab460c1dc4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Antonio Rudiger\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-661b-70c0-a0b4-f3dd972b5803\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Eder Militao\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6659-71bd-872c-963cbc3cf149\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Raul Asencio\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-668b-7159-b28d-7d3536955363\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Alvaro Carreras\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.44,\n                \"numerator\": 4,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-66c5-724d-99a9-4e5de0021b0f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6710-703f-9e3a-ccb53b121b3c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Diego Aguado\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.53,\n                \"numerator\": 8,\n                \"denominator\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6733-7194-8c40-1bade9e8154f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"David Alaba\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.62,\n                \"numerator\": 8,\n                \"denominator\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-675a-7310-9889-10a2ec6c5b79\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jonathan Tah\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-678a-71de-8b8a-66cbc598e3dc\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Dayot Upamecano\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.67,\n                \"numerator\": 4,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-67c7-7194-941d-26a46c8b9bb1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Fran Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-67f5-7209-9c61-88f1296365dd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Dani Carvajal\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.73,\n                \"numerator\": 8,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6831-71b1-8baf-8d9fc6a998a3\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Josip Stanisic\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.83,\n                \"numerator\": 5,\n                \"denominator\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6862-7141-9a67-6020e672fa70\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Kim Min-Jae\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.91,\n                \"numerator\": 10,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6892-7264-a44c-6fc702196ba8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"selection_name\": \"Ferland Mendy\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-68d0-7364-9d6d-82a756a7ec9d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6916-7251-a247-76c56c14ebf5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.8,\n                \"numerator\": 9,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6939-7001-98d9-04ca7bfce963\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 3.5,\n                \"numerator\": 5,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6973-72cd-8c3b-96f2f5eefbe1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.33,\n                \"numerator\": 10,\n                \"denominator\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-69ad-7155-bf35-47bcd6504c32\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-69d4-7296-8537-3f63fc0d8357\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6a36-71d6-92da-5e2219a14308\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,l,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 4.5,\n                \"numerator\": 7,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6aaf-706d-a4ea-cfb01a0c1307\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 6,\n                \"numerator\": 5,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6af0-7378-9383-f630d9200df7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6b24-726f-afbf-7bba58d5aaec\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6b6f-73ab-a691-939d35b20c89\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6bb9-7246-b984-6b769b7a3782\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 12,\n                \"numerator\": 11,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6bdf-7289-a2a8-48fcaffada77\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6c05-706b-9866-b3a87dbd4a0c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6c3b-70fe-a707-e8fe7997babe\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6c85-73df-a168-4e3f6bbc1f6b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 21,\n                \"numerator\": 20,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6cad-7196-be7a-8f4a22395a9d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 14,\n                \"numerator\": 13,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6ce5-73ac-891c-419360bd0aee\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 19,\n                \"numerator\": 18,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6d1e-7255-b046-aaa6606fd15e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Alphonso Davies\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 46,\n                \"numerator\": 45,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6d60-7104-9e08-d3ab0e72c781\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Konrad Laimer\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 71,\n                \"numerator\": 70,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6d93-7020-b119-e0c27be18430\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Hiroki Ito\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 81,\n                \"numerator\": 80,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-6e08-7004-ab93-ed8e4c70f4f7\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Joshua Kimmich\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 81,\n                \"numerator\": 80,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-71fe-72a7-a901-15d843baa319\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-722b-7019-ad73-e7aa2572c9ca\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 5.5,\n                \"numerator\": 9,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7252-70e8-8d5e-27841a973635\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 8,\n                \"numerator\": 7,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-727d-7206-bbe1-221262543653\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 10,\n                \"numerator\": 9,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-72b9-72e7-81e6-e8c05a6d0198\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7327-70ff-a6c7-a98888ac40d1\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7371-72b1-8f60-5c90a6bc1889\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 11,\n                \"numerator\": 10,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-73a0-73cd-b409-a9c18b144363\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 15,\n                \"numerator\": 14,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-73d9-70a3-a5ba-c598597d51e5\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 26,\n                \"numerator\": 25,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-741d-7123-a826-55a499c73d23\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 41,\n                \"numerator\": 40,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7475-7388-aad5-5533d00a2992\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 51,\n                \"numerator\": 50,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-74a0-7199-a972-7c3f5e2ae51f\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 61,\n                \"numerator\": 60,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-74cc-7385-a4c4-db73edf76066\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 71,\n                \"numerator\": 70,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-74f9-7040-9dcd-5ac9293ed3b0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 71,\n                \"numerator\": 70,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-751e-73ee-a07a-547b0935eb0d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 81,\n                \"numerator\": 80,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7549-707b-9407-68528b69cf56\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 61,\n                \"numerator\": 60,\n                \"denominator\": 1\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7ca2-7224-a644-5156e95d12a8\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Harry Kane\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7ce6-736a-83b8-b49161247848\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Kylian Mbappe\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.04,\n                \"numerator\": 1,\n                \"denominator\": 25\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7d7b-70f3-879c-52491f0f49e9\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Nicolas Jackson\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.05,\n                \"numerator\": 1,\n                \"denominator\": 20\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7dbf-733a-a329-6bc5adc6d17e\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Gonzalo Garcia\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.06,\n                \"numerator\": 1,\n                \"denominator\": 16\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7df1-7395-a0e2-08a5e7bc4ca4\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Michael Olise\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.08,\n                \"numerator\": 1,\n                \"denominator\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7e24-7041-860d-b400f446d61b\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Vinicius Junior\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,l,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.11,\n                \"numerator\": 1,\n                \"denominator\": 9\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7e61-7284-86e6-cad534f31b1a\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Serge Gnabry\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7e9d-7247-9c11-0b6de788bbcb\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jamal Musiala\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7ed7-722d-ada3-9345e0d14f91\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Luis Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.14,\n                \"numerator\": 1,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7f11-70e4-9bf9-43e1d9e9a970\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Franco Mastantuono\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.29,\n                \"numerator\": 2,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7f63-73df-94ad-ccde1636c962\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Brahim Diaz\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.25,\n                \"numerator\": 1,\n                \"denominator\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7f9e-71b4-9c84-9644a71a3833\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Arda Guler\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7fc8-71b3-8cf7-0b69de63f907\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Jude Bellingham\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,w,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.4,\n                \"numerator\": 2,\n                \"denominator\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-7ff6-728d-852d-68e02cfbce7c\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Federico Valverde\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,w,w,w,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,w,w,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.57,\n                \"numerator\": 4,\n                \"denominator\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-8025-7284-a0d0-1008bef073cd\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Tom Bischof\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,w,l,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,w,w\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,w,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-8059-7225-b854-5a5f27fd15c0\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Thiago Pitarch\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,w,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.36,\n                \"numerator\": 4,\n                \"denominator\": 11\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-807f-70b5-bc10-a5b1d2d3b19d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Leon Goretzka\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,w,l,w\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-80a3-73a9-92a0-a0953699d78d\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Raphael Guerreiro\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,w,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 1.5,\n                \"numerator\": 1,\n                \"denominator\": 2\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-80d3-71b0-ac24-cfbd3afaf546\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Trent Alexander-Arnold\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"w,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.1,\n                \"numerator\": 11,\n                \"denominator\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019d85fa-8107-72a3-95c7-f3c8fcb2f279\",\n            \"fixture_id\": \"019d79d8-1292-71d1-a470-f11a49ce5d4d\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"selection_name\": \"Dani Ceballos\",\n            \"hit_rates\": {\n                \"domestic\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                },\n                \"continental\": {\n                    \"last_5_raw\": \"l,l,l,l\"\n                },\n                \"all\": {\n                    \"last_5_raw\": \"l,l,l,l,l\"\n                }\n            },\n            \"odds\": {\n                \"decimal\": 2.25,\n                \"numerator\": 5,\n                \"denominator\": 4\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 596\n    }\n}"}],"_postman_id":"9142024b-b649-4705-9d52-2fb4b1bec264"},{"name":"match-centre-markets","event":[{"id":"ae400fda-61af-4cee-9f90-87a0ffc9ee34","listen":"prerequest","script":{"id":"b3f942f7-855e-4cad-9e78-3b813c7c90c1","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","const url = baseUrl + \"/fixtures-centre-matches?timezone=Europe/London&day=2\";","","const fetchFixture = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: url,","        method: 'GET',","        header: {","            'x-api-key': apiKey","        }","    }, function (err, res) {","        if (err) {","            console.error('Error fetching fixtures:', err);","            return reject(err);","        }","","        const jsonData = res.json();","        console.log(\"fixtures-centre-matches status:\", res.code);","        console.log(\"fixtures-centre-matches response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData && jsonData.data && jsonData.data.fixtures && jsonData.data.fixtures.length > 0) {","            const fixtureId = jsonData.data.fixtures[0].id;","","            pm.environment.set(\"id\", fixtureId);","","            pm.request.url.variables.each(function(variable) {","                if (variable.key === \"id\") {","                    variable.value = fixtureId;","                }","            });","","            console.log('Set fixture ID:', fixtureId);","            resolve(fixtureId);","        } else {","            const msg = 'No fixtures found in response';","            console.error(msg);","            reject(new Error(msg));","        }","    });","});","","await fetchFixture();"],"type":"text/javascript","packages":{},"requests":{}}},{"id":"e80fc9ac-dc11-4a4e-a8ba-058e1c6735bc","listen":"test","script":{"id":"b296e9ec-fd7c-4c6a-99be-d3aa8b2b0ac0","exec":["// Test 1: Status code is 200","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Response time is less than 1000ms","pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 3: JSON schema validation","pm.test(\"Response matches expected JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"market_id\", \"market_name\", \"market_key\", \"selections\"],","                    properties: {","                        market_id: { type: \"string\" },","                        market_name: { type: \"string\" },","                        market_key: { type: \"string\" },","                        selections: {","                            type: \"array\",","                            items: {","                                type: \"object\",","                                required: [\"selection_id\", \"selection_name\", \"odds\", \"order\"],","                                properties: {","                                    selection_id: { type: \"string\" },","                                    selection_name: { type: \"string\" },","                                    odds: {","                                        type: \"object\",","                                        required: [\"decimal\", \"numerator\", \"denominator\"],","                                        properties: {","                                            decimal: { type: \"number\" },","                                            numerator: { type: \"number\" },","                                            denominator: { type: \"number\" }","                                        }","                                    },","                                    order: { type: \"number\" }","                                }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"filtering\"],","                properties: {","                    results: { type: \"number\" },","                    filtering: {","                        type: \"object\",","                        required: [\"fixture_id\"],","                        properties: {","                            fixture_id: { type: \"string\" }","                        }","                    }","                }","            }","        }","    };","    ","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4aa276d3-b1ac-40d2-a587-16b4c4f533c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/match-centre-markets/:id","description":"<p>Purpose: Retrieve all available betting markets for a specific fixture in the Match Centre. This includes market metadata and the list of selections for each market, with odds in both decimal and fractional formats.</p>\n<p>Method &amp; URL: GET /match-centre-markets/:id</p>\n<p>Path variables:</p>\n<ul>\n<li>id (string, required): The unique fixture_id for which to fetch markets. Example: 019a281f-9e4d-738a-bf64-003fae7635ec</li>\n</ul>\n<p>Authentication: Inherits from collection/environment. Ensure any required API authentication (e.g., api_key) is configured at the collection or environment level.</p>\n<p>Query params: None.</p>\n<p>Response: 200 OK</p>\n<ul>\n<li>data: Array of market objects.<ul>\n<li>market_id (string): Unique identifier for the market.</li>\n<li>market_name (string): Human-readable market label (e.g., \"Over/Under 2.5 Goals\").</li>\n<li>market_key (string): Machine key for the market (e.g., \"OVER_UNDER_25\").</li>\n<li>selections: Array of selection objects for this market.<ul>\n<li>selection_id (string): Unique identifier for the selection.</li>\n<li>selection_name (string): Name of the selection (e.g., \"OVER\", \"UNDER\").</li>\n<li>odds (object): Odds for the selection in decimal and fractional formats.<ul>\n<li>decimal (number): Decimal odds (e.g., 1.73).</li>\n<li>numerator (number): Fractional odds numerator (e.g., 8).</li>\n<li>denominator (number): Fractional odds denominator (e.g., 11).</li>\n</ul>\n</li>\n<li>order (number): Relative display order for selections.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li>meta (object): Metadata about the response.<ul>\n<li>results (number): Count of markets returned.</li>\n<li>filtering.fixture_id (string): Echo of the requested fixture id.</li>\n</ul>\n</li>\n</ul>\n<p>Notes:</p>\n<ul>\n<li>Use the path variable to target the specific fixture. The endpoint does not accept query parameters.</li>\n<li>Odds values are illustrative; do not assert on exact numbers in automated tests—validate presence and types.</li>\n</ul>\n<p>Examples:\nGET /match-centre-markets/019a281f-9e4d-738a-bf64-003fae7635ec</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["match-centre-markets",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"019cda32-b416-71e3-ae31-e0f486967ceb","key":"id"}]}},"response":[{"id":"e6c42243-365e-43b6-a512-f7a9040b7f9b","name":"match-centre-markets","originalRequest":{"method":"GET","header":[],"url":{"raw":"/match-centre-markets/:id","host":[""],"path":["match-centre-markets",":id"],"variable":[{"key":"id","value":"019a281f-9e4d-738a-bf64-003fae7635ec"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"22580"},{"key":"Connection","value":"keep-alive"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"Date","value":"Fri, 31 Oct 2025 15:47:11 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-6904d9ff-45465ee15826b047730d413e;Parent=5fafd744c70add5d;Sampled=0;Lineage=1:5f129202:0"},{"key":"x-amzn-RequestId","value":"d218df6e-8650-4cbe-874d-a41dcf55a199"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"TUcABG8vjoEEflA="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Via","value":"1.1 19d5615c4d307c11803beb015d8f6562.cloudfront.net (CloudFront), 1.1 4ae6e5888b43b4133973ba1aadad8194.cloudfront.net (CloudFront)"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"X-Amz-Cf-Id","value":"Hg6jyufVxTvAE9EttgBtDe_Aqq5EWCxr27rvPmwSlJD1sw1UXzLNmw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"market_id\": \"019a2828-777f-71e4-a5c0-ec211b230411\",\n            \"market_name\": \"Over/Under 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-7788-717e-aa8c-1a72cdc91c9c\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.2,\n                        \"numerator\": 1,\n                        \"denominator\": 5\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-7807-735a-bfba-1b76878999f5\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 4.5,\n                        \"numerator\": 7,\n                        \"denominator\": 2\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-8579-70e4-a7d2-d9bd59aa3b7d\",\n            \"market_name\": \"Over/Under 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-8585-7333-a318-a2d88edd855c\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.73,\n                        \"numerator\": 8,\n                        \"denominator\": 11\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-85e1-735b-989a-6ba6d67ac9c3\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 2.1,\n                        \"numerator\": 11,\n                        \"denominator\": 10\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-7e2f-708c-9702-e2ff8bf63869\",\n            \"market_name\": \"Over/Under 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-7e5a-721d-b63a-5a8df3ede52c\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 2.88,\n                        \"numerator\": 15,\n                        \"denominator\": 8\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-7e98-730a-9ab0-dd9254cd5227\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.44,\n                        \"numerator\": 4,\n                        \"denominator\": 9\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-7862-7028-b8ba-ae9be87fe171\",\n            \"market_name\": \"Home Team Over/Under 0.5\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-7872-724d-abd1-f1bc09a41cf4\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.33,\n                        \"numerator\": 1,\n                        \"denominator\": 3\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-78c5-726c-aab5-bbcdb5f5d951\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 3.25,\n                        \"numerator\": 9,\n                        \"denominator\": 4\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-73ed-702f-b33d-8ae6b7d55625\",\n            \"market_name\": \"Home Team Over/Under 1.5\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-73f3-73bf-8523-3b33f159b3f0\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 2.63,\n                        \"numerator\": 13,\n                        \"denominator\": 8\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-743c-71f4-9b70-7ce892f02b94\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.44,\n                        \"numerator\": 4,\n                        \"denominator\": 9\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-863b-707c-b470-3f3843d85409\",\n            \"market_name\": \"Home Team Over/Under 2.5\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-8646-72e8-b504-e7db74c77a08\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 7,\n                        \"numerator\": 6,\n                        \"denominator\": 1\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-8695-7130-8576-0b2800d2665b\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.1,\n                        \"numerator\": 1,\n                        \"denominator\": 10\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-7c57-7355-9aeb-ef537002a059\",\n            \"market_name\": \"Away Team Over/Under 0.5\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-7c67-707d-8d88-cefdcbcb0703\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.17,\n                        \"numerator\": 1,\n                        \"denominator\": 6\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-7caa-700c-9a59-87cef06b4438\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 5,\n                        \"numerator\": 4,\n                        \"denominator\": 1\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-82f0-711b-9268-bc61bca60084\",\n            \"market_name\": \"Away Team Over/Under 1.5\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-82f6-7133-be36-407e7c18cb6f\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.91,\n                        \"numerator\": 10,\n                        \"denominator\": 11\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-831d-70c7-bf35-5642454d5016\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.83,\n                        \"numerator\": 5,\n                        \"denominator\": 6\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-8066-711b-a6d2-0698296cad01\",\n            \"market_name\": \"Away Team Over/Under 2.5\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-8085-70f0-a59c-c54742489dfa\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 4,\n                        \"numerator\": 3,\n                        \"denominator\": 1\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-80f6-70cd-a38e-39913e6deeb4\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.22,\n                        \"numerator\": 2,\n                        \"denominator\": 9\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-af0c-718d-826e-655b81965314\",\n            \"market_name\": \"Corners Over/Under 7.5\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-af21-715c-b796-2dd2ec6e667d\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.22,\n                        \"numerator\": 2,\n                        \"denominator\": 9\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-af68-71c6-9a4a-2042707ebdee\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 4,\n                        \"numerator\": 3,\n                        \"denominator\": 1\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-8f54-72f4-afb4-f1152d2cfb15\",\n            \"market_name\": \"Corners Over/Under 8.5\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-8f59-70ec-bcfd-a917f6106b72\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.4,\n                        \"numerator\": 2,\n                        \"denominator\": 5\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-8f8d-71fb-abb5-b28859575df7\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 2.88,\n                        \"numerator\": 15,\n                        \"denominator\": 8\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-c045-729d-92bf-e7488bbeb8e2\",\n            \"market_name\": \"Corners Over/Under 9.5\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-c05c-73c0-934b-7b18e715483c\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.73,\n                        \"numerator\": 8,\n                        \"denominator\": 11\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-c094-71a8-b156-db33121eab5e\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 2.1,\n                        \"numerator\": 11,\n                        \"denominator\": 10\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-94ed-73b7-90a0-84de232831d5\",\n            \"market_name\": \"Corners Over/Under 10.5\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-950d-70a9-94ac-a57ca8e79113\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 2.2,\n                        \"numerator\": 6,\n                        \"denominator\": 5\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-9553-7014-8f89-4957c027d8f1\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.67,\n                        \"numerator\": 4,\n                        \"denominator\": 6\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-9675-71ab-98e5-3a3c2802d1b9\",\n            \"market_name\": \"Corners Over/Under 11.5\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-9695-7169-a746-dcc67ec63586\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 2.88,\n                        \"numerator\": 15,\n                        \"denominator\": 8\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-96d4-7290-8a46-03a111c712c7\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.4,\n                        \"numerator\": 2,\n                        \"denominator\": 5\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-a4da-7362-afaa-c9ada32aa7e6\",\n            \"market_name\": \"Home Total Corners 2.5\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-a4ee-7007-a93c-1458fa4ffa41\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.14,\n                        \"numerator\": 1,\n                        \"denominator\": 7\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-a51c-7018-9663-8bf8fe840733\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 5.5,\n                        \"numerator\": 9,\n                        \"denominator\": 2\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-9062-71a6-8e1b-f33a5d702d7a\",\n            \"market_name\": \"Home Total Corners 3.5\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-9090-72f3-853f-cf40f67a35d6\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.4,\n                        \"numerator\": 2,\n                        \"denominator\": 5\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-90d3-7327-93ba-0cac8f6e218e\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 2.88,\n                        \"numerator\": 15,\n                        \"denominator\": 8\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-8e88-7229-b6d9-7cde7254a641\",\n            \"market_name\": \"Home Total Corners 4.5\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-8e91-7088-9da0-e5bcd7607ed8\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.85,\n                        \"numerator\": 17,\n                        \"denominator\": 20\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-8eb7-73e5-a187-c2e8ba2bf6bc\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.85,\n                        \"numerator\": 17,\n                        \"denominator\": 20\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-9437-71b3-a997-c5acc91c74aa\",\n            \"market_name\": \"Home Total Corners 5.5\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_5.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-9457-7194-9d4b-49950b0cb321\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 2.75,\n                        \"numerator\": 7,\n                        \"denominator\": 4\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-949f-71a5-8151-c5c79ab0eecb\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.44,\n                        \"numerator\": 4,\n                        \"denominator\": 9\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-9139-7071-aeb0-d778a4c5e894\",\n            \"market_name\": \"Away Total Corners 2.5\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-9142-71c1-bc09-fe497bde6d61\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.1,\n                        \"numerator\": 1,\n                        \"denominator\": 10\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-917b-7049-998c-d26f9cf806df\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 7,\n                        \"numerator\": 6,\n                        \"denominator\": 1\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-95b2-7139-b26a-5623589bbb45\",\n            \"market_name\": \"Away Total Corners 3.5\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-95d6-730b-b06b-095921ed3312\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.29,\n                        \"numerator\": 2,\n                        \"denominator\": 7\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-961b-708e-ac64-0642dd80a407\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 3.6,\n                        \"numerator\": 13,\n                        \"denominator\": 5\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-91ba-73ce-80a1-99bf1eb239b6\",\n            \"market_name\": \"Away Total Corners 4.5\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-91da-73aa-b005-42c1a4e2f4b1\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.57,\n                        \"numerator\": 4,\n                        \"denominator\": 7\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-921d-7311-ae3b-16e93aad0a07\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 2.25,\n                        \"numerator\": 5,\n                        \"denominator\": 4\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a304e-96f5-713e-80f1-bbf4322a0a4c\",\n            \"market_name\": \"Away Total Corners 5.5\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_5.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a304e-9727-71c7-a8c0-b33e172af672\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 2.1,\n                        \"numerator\": 11,\n                        \"denominator\": 10\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a304e-977a-73c6-af6a-659467f11d99\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.67,\n                        \"numerator\": 4,\n                        \"denominator\": 6\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a3083-a855-7345-97ef-4cda6302da73\",\n            \"market_name\": \"Cards Over/Under 6.5\",\n            \"market_key\": \"OVER/UNDER_6.5_CARDS\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a3083-a884-72f6-97d6-4366a31ca160\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 5.5,\n                        \"numerator\": 9,\n                        \"denominator\": 2\n                    },\n                    \"order\": 1\n                },\n                {\n                    \"selection_id\": \"019a3083-a90d-7041-b9f0-1c91be6495dd\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.13,\n                        \"numerator\": 1,\n                        \"denominator\": 8\n                    },\n                    \"order\": 2\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a3083-a414-70e1-a3a7-22e11e77d9b5\",\n            \"market_name\": \"Cards Over/Under 2.5\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a3083-a431-71a0-87aa-b9cfa97bad3d\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.17,\n                        \"numerator\": 1,\n                        \"denominator\": 6\n                    },\n                    \"order\": 1\n                },\n                {\n                    \"selection_id\": \"019a3083-a488-723e-b934-1e1681c09998\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 5,\n                        \"numerator\": 4,\n                        \"denominator\": 1\n                    },\n                    \"order\": 2\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a3083-acfb-737d-a851-83f3f85aa242\",\n            \"market_name\": \"Cards Over/Under 5.5\",\n            \"market_key\": \"OVER/UNDER_5.5_CARDS\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a3083-ad1a-70bd-84d1-4a289534d96d\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 3.25,\n                        \"numerator\": 9,\n                        \"denominator\": 4\n                    },\n                    \"order\": 1\n                },\n                {\n                    \"selection_id\": \"019a3083-ad85-7078-8774-7af84755e956\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.33,\n                        \"numerator\": 1,\n                        \"denominator\": 3\n                    },\n                    \"order\": 2\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a3083-96dd-7118-a4c2-2f93a842f51f\",\n            \"market_name\": \"Cards Over/Under 3.5\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a3083-96e4-7258-965b-082b62c474de\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.5,\n                        \"numerator\": 1,\n                        \"denominator\": 2\n                    },\n                    \"order\": 1\n                },\n                {\n                    \"selection_id\": \"019a3083-971d-701f-944b-bad395da984d\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 2.5,\n                        \"numerator\": 6,\n                        \"denominator\": 4\n                    },\n                    \"order\": 2\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a3083-9e34-73fb-89a0-709b348e163d\",\n            \"market_name\": \"Home Team Total Cards 1.5\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a3083-9e9e-7154-8d6d-f39084d75308\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.5,\n                        \"numerator\": 1,\n                        \"denominator\": 2\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a3083-9ef7-71d4-a8b2-a72902ff741d\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 2.5,\n                        \"numerator\": 6,\n                        \"denominator\": 4\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a3083-aeda-73b2-bf97-1aac0f753b39\",\n            \"market_name\": \"Home Team Total Cards 2.5\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a3083-aef1-70f4-a68e-e866f7ff8527\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 2.5,\n                        \"numerator\": 6,\n                        \"denominator\": 4\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a3083-af32-7308-90ce-af7ca302d2eb\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.5,\n                        \"numerator\": 1,\n                        \"denominator\": 2\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a3083-9d3e-71b3-9d4b-e63d9183acb6\",\n            \"market_name\": \"Home Team Total Cards 3.5\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_3.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a3083-9d79-7057-9693-92c6895d0b6b\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 5.5,\n                        \"numerator\": 9,\n                        \"denominator\": 2\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a3083-9db7-732e-acb0-1d33b479d647\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.14,\n                        \"numerator\": 1,\n                        \"denominator\": 7\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a3083-abf6-7359-9e6b-2fefd8b4a3e3\",\n            \"market_name\": \"Away Team Total Cards 1.5\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a3083-abff-7240-99da-b4f719019e75\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 1.4,\n                        \"numerator\": 2,\n                        \"denominator\": 5\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a3083-ac61-71ac-a5c5-b6af87c795d4\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 2.8,\n                        \"numerator\": 9,\n                        \"denominator\": 5\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a3083-9c66-7203-b95a-3ab148516964\",\n            \"market_name\": \"Away Team Total Cards 2.5\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a3083-9c9b-7223-b44f-8566a9e04afc\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 2.38,\n                        \"numerator\": 11,\n                        \"denominator\": 8\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a3083-9ce9-73d9-bd90-efe627546a75\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.53,\n                        \"numerator\": 8,\n                        \"denominator\": 15\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a3083-a770-7326-8774-433e766de67c\",\n            \"market_name\": \"Away Team Total Cards 3.5\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_3.5\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a3083-a7c8-73f0-a4a0-9820139e55f1\",\n                    \"selection_name\": \"OVER\",\n                    \"odds\": {\n                        \"decimal\": 5,\n                        \"numerator\": 4,\n                        \"denominator\": 1\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a3083-a806-7250-b31a-d512605b0f83\",\n                    \"selection_name\": \"UNDER\",\n                    \"odds\": {\n                        \"decimal\": 1.17,\n                        \"numerator\": 1,\n                        \"denominator\": 6\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a34b1-dd49-7286-b7ac-f61246a2e09b\",\n            \"market_name\": \"Team To Have 7 Or More Shots On Target\",\n            \"market_key\": \"TEAM_TO_HAVE_7_OR_MORE_SHOTS_ON_TARGET\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a34b1-dd4e-73d9-993a-53d41b18951b\",\n                    \"selection_name\": \"NOTTM FOREST\",\n                    \"odds\": {\n                        \"decimal\": 7,\n                        \"numerator\": 6,\n                        \"denominator\": 1\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a34b1-dd7e-701c-93b0-315a2858b8ac\",\n                    \"selection_name\": \"MAN UTD\",\n                    \"odds\": {\n                        \"decimal\": 4.2,\n                        \"numerator\": 16,\n                        \"denominator\": 5\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a34b2-0fdf-71c4-8da2-b48d01e5bd00\",\n            \"market_name\": \"Team To Have 6 Or More Shots On Target\",\n            \"market_key\": \"TEAM_TO_HAVE_6_OR_MORE_SHOTS_ON_TARGET\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a34b2-0fe9-7027-bebd-6801441b0d4d\",\n                    \"selection_name\": \"NOTTM FOREST\",\n                    \"odds\": {\n                        \"decimal\": 4,\n                        \"numerator\": 3,\n                        \"denominator\": 1\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a34b2-102f-7285-8d9c-86ac757e86d5\",\n                    \"selection_name\": \"MAN UTD\",\n                    \"odds\": {\n                        \"decimal\": 2.63,\n                        \"numerator\": 13,\n                        \"denominator\": 8\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a34b1-ce7f-7088-a33a-a34415195e8c\",\n            \"market_name\": \"Team To Have 5 Or More Shots On Target\",\n            \"market_key\": \"TEAM_TO_HAVE_5_OR_MORE_SHOTS_ON_TARGET\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a34b1-ce98-710f-9a3e-bb420e8285ac\",\n                    \"selection_name\": \"NOTTM FOREST\",\n                    \"odds\": {\n                        \"decimal\": 2.5,\n                        \"numerator\": 6,\n                        \"denominator\": 4\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a34b1-ced8-7047-a4d8-d1d15604f797\",\n                    \"selection_name\": \"MAN UTD\",\n                    \"odds\": {\n                        \"decimal\": 1.83,\n                        \"numerator\": 5,\n                        \"denominator\": 6\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-7aa9-7165-a95e-578c965773b2\",\n            \"market_name\": \"Double Chance\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-7aae-73f0-8f6b-1fafd3b5299d\",\n                    \"selection_name\": \"HOME/DRAW\",\n                    \"odds\": {\n                        \"decimal\": 1.73,\n                        \"numerator\": 8,\n                        \"denominator\": 11\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-7afd-710c-824d-179bfd9e4c9d\",\n                    \"selection_name\": \"AWAY/DRAW\",\n                    \"odds\": {\n                        \"decimal\": 1.3,\n                        \"numerator\": 3,\n                        \"denominator\": 10\n                    },\n                    \"order\": 20\n                },\n                {\n                    \"selection_id\": \"019a2828-7b1f-7007-879e-7c961966f020\",\n                    \"selection_name\": \"HOME/AWAY\",\n                    \"odds\": {\n                        \"decimal\": 1.29,\n                        \"numerator\": 2,\n                        \"denominator\": 7\n                    },\n                    \"order\": 30\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-7c8d-7251-806a-32f43af5eafd\",\n            \"market_name\": \"Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-7c9d-720d-9808-a99369fe4783\",\n                    \"selection_name\": \"HOME\",\n                    \"odds\": {\n                        \"decimal\": 2.55,\n                        \"numerator\": 31,\n                        \"denominator\": 20\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-7ce7-721b-aa11-5d252424a6c8\",\n                    \"selection_name\": \"DRAW\",\n                    \"odds\": {\n                        \"decimal\": 1.5,\n                        \"numerator\": 1,\n                        \"denominator\": 2\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-8a64-7004-b0db-976396c46c46\",\n            \"market_name\": \"Match Odds\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-8a6c-7399-83d4-e862c0d0bf1e\",\n                    \"selection_name\": \"HOME\",\n                    \"odds\": {\n                        \"decimal\": 3.4,\n                        \"numerator\": 12,\n                        \"denominator\": 5\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-8a98-7288-99c9-5ebbd6dc601f\",\n                    \"selection_name\": \"DRAW\",\n                    \"odds\": {\n                        \"decimal\": 3.75,\n                        \"numerator\": 11,\n                        \"denominator\": 4\n                    },\n                    \"order\": 20\n                },\n                {\n                    \"selection_id\": \"019a2828-8ac1-7128-bbbd-6594b3639e99\",\n                    \"selection_name\": \"AWAY\",\n                    \"odds\": {\n                        \"decimal\": 2.05,\n                        \"numerator\": 21,\n                        \"denominator\": 20\n                    },\n                    \"order\": 30\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a2828-8ced-728e-93ff-11b49060d70a\",\n            \"market_name\": \"Both Teams To Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a2828-8cf2-705b-98b8-58eeac5fa65a\",\n                    \"selection_name\": \"YES\",\n                    \"odds\": {\n                        \"decimal\": 1.62,\n                        \"numerator\": 8,\n                        \"denominator\": 13\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a2828-8d28-72da-b2d1-64a619552d85\",\n                    \"selection_name\": \"NO\",\n                    \"odds\": {\n                        \"decimal\": 2.3,\n                        \"numerator\": 13,\n                        \"denominator\": 10\n                    },\n                    \"order\": 20\n                }\n            ]\n        },\n        {\n            \"market_id\": \"019a34b1-d121-7299-a47f-19ed559f7a89\",\n            \"market_name\": \"Match Shots On Target\",\n            \"market_key\": \"MATCH_SHOTS_ON_TARGET\",\n            \"selections\": [\n                {\n                    \"selection_id\": \"019a34b1-d13f-70d3-a401-f03e806531d1\",\n                    \"selection_name\": \"1 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 1,\n                        \"numerator\": 1,\n                        \"denominator\": 1000\n                    },\n                    \"order\": 10\n                },\n                {\n                    \"selection_id\": \"019a34b1-d175-7347-a9a6-ec07c7c05d84\",\n                    \"selection_name\": \"2 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 1,\n                        \"numerator\": 1,\n                        \"denominator\": 1000\n                    },\n                    \"order\": 20\n                },\n                {\n                    \"selection_id\": \"019a34b1-d19e-710f-b286-476cc217bb57\",\n                    \"selection_name\": \"3 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 1.01,\n                        \"numerator\": 1,\n                        \"denominator\": 100\n                    },\n                    \"order\": 30\n                },\n                {\n                    \"selection_id\": \"019a34b1-d1e0-722d-a883-15ec4b7679b3\",\n                    \"selection_name\": \"4 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 1.02,\n                        \"numerator\": 1,\n                        \"denominator\": 50\n                    },\n                    \"order\": 40\n                },\n                {\n                    \"selection_id\": \"019a34b1-d221-7361-8692-842afc3a02a9\",\n                    \"selection_name\": \"5 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 1.04,\n                        \"numerator\": 1,\n                        \"denominator\": 25\n                    },\n                    \"order\": 50\n                },\n                {\n                    \"selection_id\": \"019a34b1-d29d-73fa-8f26-169e814c1354\",\n                    \"selection_name\": \"6 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 1.14,\n                        \"numerator\": 1,\n                        \"denominator\": 7\n                    },\n                    \"order\": 60\n                },\n                {\n                    \"selection_id\": \"019a34b1-d2d7-70de-99de-83641fff8a52\",\n                    \"selection_name\": \"7 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 1.3,\n                        \"numerator\": 3,\n                        \"denominator\": 10\n                    },\n                    \"order\": 70\n                },\n                {\n                    \"selection_id\": \"019a34b1-d314-717e-9b8c-148529d43dc4\",\n                    \"selection_name\": \"8 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 1.53,\n                        \"numerator\": 8,\n                        \"denominator\": 15\n                    },\n                    \"order\": 80\n                },\n                {\n                    \"selection_id\": \"019a34b1-d34e-73d9-9288-b992d67d1226\",\n                    \"selection_name\": \"9 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 1.91,\n                        \"numerator\": 10,\n                        \"denominator\": 11\n                    },\n                    \"order\": 90\n                },\n                {\n                    \"selection_id\": \"019a34b1-d3a1-731e-bddb-b66f5b924578\",\n                    \"selection_name\": \"10 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 2.5,\n                        \"numerator\": 6,\n                        \"denominator\": 4\n                    },\n                    \"order\": 100\n                },\n                {\n                    \"selection_id\": \"019a34b1-d3cd-704d-8b02-be45cf661e63\",\n                    \"selection_name\": \"11 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 3.4,\n                        \"numerator\": 12,\n                        \"denominator\": 5\n                    },\n                    \"order\": 110\n                },\n                {\n                    \"selection_id\": \"019a34b1-d411-72f1-a802-5e8e307349af\",\n                    \"selection_name\": \"12 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 4.5,\n                        \"numerator\": 7,\n                        \"denominator\": 2\n                    },\n                    \"order\": 120\n                },\n                {\n                    \"selection_id\": \"019a34b1-d454-70ea-9870-cf1d7f1ea526\",\n                    \"selection_name\": \"13 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 7,\n                        \"numerator\": 6,\n                        \"denominator\": 1\n                    },\n                    \"order\": 130\n                },\n                {\n                    \"selection_id\": \"019a34b1-d490-7289-b000-8655bc157d45\",\n                    \"selection_name\": \"14 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 10,\n                        \"numerator\": 9,\n                        \"denominator\": 1\n                    },\n                    \"order\": 140\n                },\n                {\n                    \"selection_id\": \"019a34b1-d4e0-7187-9fc8-2a188b6e8304\",\n                    \"selection_name\": \"15 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 15,\n                        \"numerator\": 14,\n                        \"denominator\": 1\n                    },\n                    \"order\": 150\n                },\n                {\n                    \"selection_id\": \"019a34b1-d505-70e9-9bcd-d6910489ff95\",\n                    \"selection_name\": \"16 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 26,\n                        \"numerator\": 25,\n                        \"denominator\": 1\n                    },\n                    \"order\": 160\n                },\n                {\n                    \"selection_id\": \"019a34b1-d539-7319-a91b-4d0dff7c9aa4\",\n                    \"selection_name\": \"17 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 34,\n                        \"numerator\": 33,\n                        \"denominator\": 1\n                    },\n                    \"order\": 170\n                },\n                {\n                    \"selection_id\": \"019a34b1-d564-71ea-ab64-cc9a2d3a88db\",\n                    \"selection_name\": \"18 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 34,\n                        \"numerator\": 33,\n                        \"denominator\": 1\n                    },\n                    \"order\": 180\n                },\n                {\n                    \"selection_id\": \"019a34b1-d5c8-7199-a532-1e4b8942d502\",\n                    \"selection_name\": \"19 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 34,\n                        \"numerator\": 33,\n                        \"denominator\": 1\n                    },\n                    \"order\": 190\n                },\n                {\n                    \"selection_id\": \"019a34b1-d62f-71a9-84c5-3edc97c507b8\",\n                    \"selection_name\": \"20 OR MORE SHOTS ON TARGET\",\n                    \"odds\": {\n                        \"decimal\": 34,\n                        \"numerator\": 33,\n                        \"denominator\": 1\n                    },\n                    \"order\": 200\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"results\": 40,\n        \"filtering\": {\n            \"fixture_id\": \"019a281f-9e4d-738a-bf64-003fae7635ec\"\n        },\n        \"missing_groups\": {}\n    }\n}"}],"_postman_id":"4aa276d3-b1ac-40d2-a587-16b4c4f533c0"},{"name":"match-centre-player-stats","event":[{"listen":"test","script":{"id":"ae60cb9b-37f4-44b6-a58d-af049b6d097a","exec":[""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"9aff4f46-277a-402b-8955-9025d4631f00","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"5725055d-2c39-4856-803d-469436ac2853","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/match-centre-player-stats/:id","description":"<h3 id=\"match-centre-player-stats\">Match Centre Player Stats</h3>\n<p>This endpoint retrieves player statistics for a specific match.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: /match-centre-player-stats/:id</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will be in JSON format and will have the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"id\": \"\",\n    \"competitions\": {\n      \"international_qualifiers\": {\n        \"home\": \"\",\n        \"away\": \"\"\n      },\n      \"all\": {\n        \"home\": \"\",\n        \"away\": \"\"\n      }\n    },\n    \"players\": [\n      {\n        \"id\": \"\",\n        \"team_id\": \"\",\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"match_name\": \"\",\n        \"lineup\": null,\n        \"lineup_provisional\": null,\n        \"position\": \"\",\n        \"position_full\": \"\",\n        \"last_updated\": \"\",\n        \"stats\": {\n          \"international_qualifiers\": {\n            \"competition\": \"\",\n            \"matches_played\": 0,\n            \"minutes_played\": 0,\n            \"minutes_played_per_game\": 0,\n            \"minutes_played_raw\": null,\n            \"fouls_committed\": 0,\n            \"fouls_committed_per_90\": 0,\n            \"fouls_committed_raw\": null,\n            \"fouls_won\": 0,\n            \"fouls_won_per_90\": 0,\n            \"fouls_won_raw\": null,\n            \"yellow_cards\": 0,\n            \"yellow_cards_per_90\": 0,\n            \"yellow_cards_raw\": null,\n            \"shots_on_target\": 0,\n            \"shots_on_target_per_90\": 0,\n            \"shots_on_target_raw\": null,\n            \"shots\": 0,\n            \"shots_per_90\": 0,\n            \"shots_raw\": null,\n            \"direct_free_kicks\": 0,\n            \"direct_free_kicks_per_90\": 0,\n            \"direct_free_kicks_raw\": null,\n            \"goals\": 0,\n            \"goals_per_90\": 0,\n            \"goals_raw\": null,\n            \"assists\": 0,\n            \"assist_per_90\": 0,\n            \"assists_raw\": null,\n            \"penalties_taken\": 0,\n            \"penalties_taken_per_90\": 0,\n            \"penalties_taken_raw\": null,\n            \"tackles\": 0,\n            \"tackles_per_90\": 0,\n            \"tackles_raw\": null,\n            \"tackles_won\": 0,\n            \"tackles_won_per_90\": 0,\n            \"tackles_won_raw\": null,\n            \"saves_made\": 0,\n            \"saves_made_per_90\": 0,\n            \"saves_made_raw\": null,\n            \"goals_against\": 0,\n            \"goals_against_per_90\": 0,\n            \"goals_against_raw\": null,\n            \"clean_sheets\": 0,\n            \"clean_sheets_per_90\": 0,\n            \"clean_sheets_raw\": null\n          },\n          \"all\": {\n            \"competition\": \"\",\n            \"matches_played\": 0,\n            \"minutes_played\": 0,\n            \"minutes_played_per_game\": 0,\n            \"minutes_played_raw\": null,\n            \"fouls_committed\": 0,\n            \"fouls_committed_per_90\": 0,\n            \"fouls_committed_raw\": null,\n            \"fouls_won\": 0,\n            \"fouls_won_per_90\": 0,\n            \"fouls_won_raw\": null,\n            \"yellow_cards\": 0,\n            \"yellow_cards_per_90\": 0,\n            \"yellow_cards_raw\": null,\n            \"shots_on_target\": 0,\n            \"shots_on_target_per_90\": 0,\n            \"shots_on_target_raw\": null,\n            \"shots\": 0,\n            \"shots_per_90\": 0,\n            \"shots_raw\": null,\n            \"direct_free_kicks\": 0,\n            \"direct_free_kicks_per_90\": 0,\n            \"direct_free_kicks_raw\": null,\n            \"goals\": 0,\n            \"goals_per_90\": 0,\n            \"goals_raw\": null,\n            \"assists\": 0,\n            \"assist_per_90\": 0,\n            \"assists_raw\": null,\n            \"penalties_taken\": 0,\n            \"penalties_taken_per_90\": 0,\n            \"penalties_taken_raw\": null,\n            \"tackles\": 0,\n            \"tackles_per_90\": 0,\n            \"tackles_raw\": null,\n            \"tackles_won\": 0,\n            \"tackles_won_per_90\": 0,\n            \"tackles_won_raw\": null,\n            \"saves_made\": 0,\n            \"saves_made_per_90\": 0,\n            \"saves_made_raw\": null,\n            \"goals_against\": 0,\n            \"goals_against_per_90\": 0,\n            \"goals_against_raw\": null,\n            \"clean_sheets\": 0,\n            \"clean_sheets_per_90\": 0,\n            \"clean_sheets_raw\": null\n          }\n        }\n      }\n    ],\n    \"meta\": {\n      \"total_results\": 0\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["match-centre-player-stats",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"9f4a197d-e7f2-41e2-a0cc-7a3ddccefcf7","key":"id"}]}},"response":[{"id":"9de2c689-cbd0-40da-bd09-594fb21110f7","name":"match-centre-player-stats","originalRequest":{"method":"GET","header":[],"url":{"raw":"/match-centre-player-stats/:id","host":[""],"path":["match-centre-player-stats",":id"],"variable":[{"key":"id","value":"9fae4361-7554-45fc-ba79-4fe586eea353"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 14:44:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"85482"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"410e5bfd-96c6-4896-a8a7-e2ebb72eb117"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9OUEEH2joEEoWQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb90e6-361be4c7582308d00211fc36;Parent=18982ce6dd035cb5;Sampled=0;Lineage=1:502cf7ed:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n        \"competitions\": {\n            \"domestic\": {\n                \"home\": \"Premier League 25/26\",\n                \"away\": \"Premier League 25/26\"\n            }\n        },\n        \"players\": [\n            {\n                \"id\": \"1bnn3tokzwvl4vvw34yxsq9gq\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": \"Injured\",\n                \"shirt_number\": null,\n                \"country_flag\": \"ESP.png\",\n                \"first_name\": \"Nicolás\",\n                \"last_name\": \"González Iglesias\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"Nico González\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 7,\n                        \"minutes_played\": 437,\n                        \"minutes_played_per_game\": 62,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 5,\n                        \"fouls_committed_per_90\": 1.03,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 6,\n                        \"fouls_won_per_90\": 1.24,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.21,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 3,\n                        \"shots_per_90\": 0.62,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 13,\n                        \"tackles_per_90\": 2.68,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 11,\n                        \"tackles_won_per_90\": 2.27,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 4,\n                        \"goals_against_per_90\": 0.83,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 4,\n                        \"clean_sheets_per_90\": 0.83,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"1c4nu9s3t3p83pufjf3n3xqay\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 1,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"James Harrington\",\n                \"last_name\": \"Trafford\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"J. Trafford\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"GK\",\n                \"position_full\": \"Goalkeeper\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 3,\n                        \"minutes_played\": 270,\n                        \"minutes_played_per_game\": 90,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 1,\n                        \"fouls_won_per_90\": 0.34,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 0,\n                        \"shots_per_90\": 0,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 2,\n                        \"tackles_per_90\": 0.67,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 1,\n                        \"tackles_won_per_90\": 0.34,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 11,\n                        \"saves_made_per_90\": 3.67,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 4,\n                        \"goals_against_per_90\": 1.34,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 1,\n                        \"clean_sheets_per_90\": 0.34,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"1e9txzr9hqz94xtun6byo0vs9\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 2,\n                \"country_flag\": \"POL.png\",\n                \"first_name\": \"Matthew Stuart\",\n                \"last_name\": \"Cash\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"M. Cash\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"Right\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 8,\n                        \"minutes_played\": 698,\n                        \"minutes_played_per_game\": 87,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 7,\n                        \"fouls_committed_per_90\": 0.91,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 8,\n                        \"fouls_won_per_90\": 1.04,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 2,\n                        \"yellow_cards_per_90\": 0.26,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 2,\n                        \"shots_on_target_per_90\": 0.26,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 7,\n                        \"shots_per_90\": 0.91,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 1,\n                        \"goals_per_90\": 0.13,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 14,\n                        \"tackles_per_90\": 1.81,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 9,\n                        \"tackles_won_per_90\": 1.17,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 7,\n                        \"goals_against_per_90\": 0.91,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 2,\n                        \"clean_sheets_per_90\": 0.26,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"1ehcji0j9s8b0qsj8v5zinjvu\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 10,\n                \"country_flag\": \"FRA.png\",\n                \"first_name\": \"Mathis Rayan\",\n                \"last_name\": \"Cherki\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"R. Cherki\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 3,\n                        \"minutes_played\": 77,\n                        \"minutes_played_per_game\": 25,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 1,\n                        \"fouls_committed_per_90\": 1.17,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 1,\n                        \"fouls_won_per_90\": 1.17,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 1,\n                        \"shots_on_target_per_90\": 1.17,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 2,\n                        \"shots_per_90\": 2.34,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 1,\n                        \"goals_per_90\": 1.17,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 4,\n                        \"tackles_per_90\": 4.68,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 1,\n                        \"tackles_won_per_90\": 1.17,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 2,\n                        \"goals_against_per_90\": 2.34,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 2,\n                        \"clean_sheets_per_90\": 2.34,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"24fu5x2ajquvxns2ujamskn4k\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Stephen-Nevin Mutanda\",\n                \"last_name\": \"Mfuni\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"S. Mfuni\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"2eayhzdix8knmn810sbngsdt5\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 27,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Morgan Elliot\",\n                \"last_name\": \"Rogers\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"M. Rogers\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"AM\",\n                \"position_full\": \"Attacking Midfielder\",\n                \"position_side\": \"Centre\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 8,\n                        \"minutes_played\": 712,\n                        \"minutes_played_per_game\": 89,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 7,\n                        \"fouls_committed_per_90\": 0.89,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 8,\n                        \"fouls_won_per_90\": 1.02,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 5,\n                        \"shots_on_target_per_90\": 0.64,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 8,\n                        \"shots_per_90\": 1.02,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 1,\n                        \"goals_per_90\": 0.13,\n                        \"goals_raw\": null,\n                        \"assists\": 2,\n                        \"assist_per_90\": 0.26,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 5,\n                        \"tackles_per_90\": 0.64,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 1,\n                        \"tackles_won_per_90\": 0.13,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 8,\n                        \"goals_against_per_90\": 1.02,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 2,\n                        \"clean_sheets_per_90\": 0.26,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"2smmv9hdoiet7necaf00ol51x\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 5,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Tyrone Deon\",\n                \"last_name\": \"Mings\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"T. Mings\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 6,\n                        \"minutes_played\": 482,\n                        \"minutes_played_per_game\": 80,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 3,\n                        \"fouls_committed_per_90\": 0.57,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 3,\n                        \"fouls_won_per_90\": 0.57,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 3,\n                        \"shots_per_90\": 0.57,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 2,\n                        \"tackles_per_90\": 0.38,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 1,\n                        \"tackles_won_per_90\": 0.19,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 6,\n                        \"goals_against_per_90\": 1.13,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 2,\n                        \"clean_sheets_per_90\": 0.38,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"2t5s4f41jefzuzth0bhcixtcl\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 3,\n                \"country_flag\": \"PRT.png\",\n                \"first_name\": \"Rúben\",\n                \"last_name\": \"dos Santos Gato Alves Dias\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"Rúben Dias\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"Centre/Right\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 8,\n                        \"minutes_played\": 635,\n                        \"minutes_played_per_game\": 79,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 5,\n                        \"fouls_committed_per_90\": 0.71,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 3,\n                        \"fouls_won_per_90\": 0.43,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 0,\n                        \"shots_per_90\": 0,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 5,\n                        \"tackles_per_90\": 0.71,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 3,\n                        \"tackles_won_per_90\": 0.43,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 5,\n                        \"goals_against_per_90\": 0.71,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 4,\n                        \"clean_sheets_per_90\": 0.57,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"2w7xspkzg7b9ghl20me202ove\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 4,\n                \"country_flag\": \"NLD.png\",\n                \"first_name\": \"Tijjani Martinus Jan\",\n                \"last_name\": \"Reijnders Lekatompessy\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"T. Reijnders\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"Centre/Right\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 8,\n                        \"minutes_played\": 668,\n                        \"minutes_played_per_game\": 83,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 5,\n                        \"fouls_committed_per_90\": 0.68,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 7,\n                        \"fouls_won_per_90\": 0.95,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.14,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 5,\n                        \"shots_on_target_per_90\": 0.68,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 17,\n                        \"shots_per_90\": 2.3,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 1,\n                        \"goals_per_90\": 0.14,\n                        \"goals_raw\": null,\n                        \"assists\": 2,\n                        \"assist_per_90\": 0.27,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 6,\n                        \"tackles_per_90\": 0.81,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 3,\n                        \"tackles_won_per_90\": 0.41,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 6,\n                        \"goals_against_per_90\": 0.81,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 4,\n                        \"clean_sheets_per_90\": 0.54,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"3bxaxaw6l2s6nzukgtfup3pqs\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Reigan William Stephen\",\n                \"last_name\": \"Heskey\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"R. Heskey\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"ATT\",\n                \"position_full\": \"Attacker\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"3d34u92oy9jsmdj4pfu7p5jbo\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Sam Adrian\",\n                \"last_name\": \"Proctor\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"S. Proctor\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"GK\",\n                \"position_full\": \"Goalkeeper\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"3gem1jrrkgye0omb88fk1lsk5\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 5,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Stones\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"J. Stones\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 4,\n                        \"minutes_played\": 265,\n                        \"minutes_played_per_game\": 66,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 0,\n                        \"fouls_won_per_90\": 0,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 0,\n                        \"shots_per_90\": 0,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 0,\n                        \"tackles_per_90\": 0,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 0,\n                        \"tackles_won_per_90\": 0,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 5,\n                        \"goals_against_per_90\": 1.7,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 1,\n                        \"clean_sheets_per_90\": 0.34,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"3trkre1c81pzretsjsi8jk6sq\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 27,\n                \"country_flag\": \"PRT.png\",\n                \"first_name\": \"Matheus Luiz\",\n                \"last_name\": \"Nunes\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"Matheus Nunes\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"Right\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 6,\n                        \"minutes_played\": 425,\n                        \"minutes_played_per_game\": 70,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 3,\n                        \"fouls_committed_per_90\": 0.64,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 4,\n                        \"fouls_won_per_90\": 0.85,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.22,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 1,\n                        \"shots_on_target_per_90\": 0.22,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 3,\n                        \"shots_per_90\": 0.64,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 1,\n                        \"goals_per_90\": 0.22,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 6,\n                        \"tackles_per_90\": 1.28,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 3,\n                        \"tackles_won_per_90\": 0.64,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 3,\n                        \"goals_against_per_90\": 0.64,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 3,\n                        \"clean_sheets_per_90\": 0.64,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"3zl1q2gk6tdmzirsyfgm38no5\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 23,\n                \"country_flag\": \"ARG.png\",\n                \"first_name\": \"Damián Emiliano\",\n                \"last_name\": \"Martínez Romero\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"E. Martínez\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"GK\",\n                \"position_full\": \"Goalkeeper\",\n                \"position_side\": \"Centre\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 6,\n                        \"minutes_played\": 540,\n                        \"minutes_played_per_game\": 90,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 4,\n                        \"fouls_won_per_90\": 0.67,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.17,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 0,\n                        \"shots_per_90\": 0,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 0,\n                        \"tackles_per_90\": 0,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 0,\n                        \"tackles_won_per_90\": 0,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 12,\n                        \"saves_made_per_90\": 2,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 5,\n                        \"goals_against_per_90\": 0.84,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 1,\n                        \"clean_sheets_per_90\": 0.17,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"40zl8kgb2t0glvixqhe6fk6qc\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Divine Tayon Mahogany\",\n                \"last_name\": \"Mukasa\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"D. Mukasa\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"45x1fi7jqz4au3lkjkevwnrbo\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Kaden Elliot\",\n                \"last_name\": \"Braithwaite\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"K. Braithwaite\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"4cetkl0w2uq40ccti5ka6a4t1\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 25,\n                \"country_flag\": \"ITA.png\",\n                \"first_name\": \"Gianluigi\",\n                \"last_name\": \"Donnarumma\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"G. Donnarumma\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"GK\",\n                \"position_full\": \"Goalkeeper\",\n                \"position_side\": \"Centre\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 5,\n                        \"minutes_played\": 450,\n                        \"minutes_played_per_game\": 90,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 0,\n                        \"fouls_won_per_90\": 0,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.2,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 0,\n                        \"shots_per_90\": 0,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 0,\n                        \"tackles_per_90\": 0,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 0,\n                        \"tackles_won_per_90\": 0,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 7,\n                        \"saves_made_per_90\": 1.4,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 2,\n                        \"goals_against_per_90\": 0.4,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 3,\n                        \"clean_sheets_per_90\": 0.6,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"4m0bughfoyenolwza4i3araxg\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Travis\",\n                \"last_name\": \"Patterson\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"T. Patterson\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"50bxbwzi9f7h26j6wkyxlr40k\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Rhys\",\n                \"last_name\": \"Oakley\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"R. Oakley\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"GK\",\n                \"position_full\": \"Goalkeeper\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"57s7gfvt5btbfzm600wn7df55\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 14,\n                \"country_flag\": \"ESP.png\",\n                \"first_name\": \"Pau\",\n                \"last_name\": \"Francisco Torres\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"Pau Torres\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"Left/Centre\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 5,\n                        \"minutes_played\": 344,\n                        \"minutes_played_per_game\": 68,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 0,\n                        \"fouls_won_per_90\": 0,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 2,\n                        \"shots_per_90\": 0.53,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 7,\n                        \"tackles_per_90\": 1.84,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 5,\n                        \"tackles_won_per_90\": 1.31,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 4,\n                        \"goals_against_per_90\": 1.05,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 1,\n                        \"clean_sheets_per_90\": 0.27,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"58de7rbubnxjraen49dxpaqne\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 52,\n                \"country_flag\": \"NOR.png\",\n                \"first_name\": \"Oscar\",\n                \"last_name\": \"Bobb\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"O. Bobb\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 7,\n                        \"minutes_played\": 393,\n                        \"minutes_played_per_game\": 56,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 3,\n                        \"fouls_committed_per_90\": 0.69,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 9,\n                        \"fouls_won_per_90\": 2.07,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 3,\n                        \"shots_per_90\": 0.69,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 1,\n                        \"assist_per_90\": 0.23,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 6,\n                        \"tackles_per_90\": 1.38,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 4,\n                        \"tackles_won_per_90\": 0.92,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 4,\n                        \"goals_against_per_90\": 0.92,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 5,\n                        \"clean_sheets_per_90\": 1.15,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"5d6d4oc2rpau0mbbbt2dmtzv9\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"DEU.png\",\n                \"first_name\": \"Stefan\",\n                \"last_name\": \"Ortega Moreno\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"S. Ortega\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"GK\",\n                \"position_full\": \"Goalkeeper\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"5m0j33eoa5c8pqlr0tdf7undh\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 11,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Oliver George Arthur\",\n                \"last_name\": \"Watkins\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"O. Watkins\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"ATT\",\n                \"position_full\": \"Attacker\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 8,\n                        \"minutes_played\": 629,\n                        \"minutes_played_per_game\": 78,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 4,\n                        \"fouls_committed_per_90\": 0.58,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 9,\n                        \"fouls_won_per_90\": 1.29,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 3,\n                        \"shots_on_target_per_90\": 0.43,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 12,\n                        \"shots_per_90\": 1.72,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 1,\n                        \"goals_per_90\": 0.15,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 4,\n                        \"tackles_per_90\": 0.58,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 2,\n                        \"tackles_won_per_90\": 0.29,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 6,\n                        \"goals_against_per_90\": 0.86,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 4,\n                        \"clean_sheets_per_90\": 0.58,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"693z0rzfh3m0h0wsma9v8c9ux\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 47,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Philip Walter\",\n                \"last_name\": \"Foden\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"P. Foden\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"Left/Centre\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 6,\n                        \"minutes_played\": 443,\n                        \"minutes_played_per_game\": 73,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 4,\n                        \"fouls_committed_per_90\": 0.82,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 4,\n                        \"fouls_won_per_90\": 0.82,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.21,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 3,\n                        \"shots_on_target_per_90\": 0.61,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 10,\n                        \"shots_per_90\": 2.04,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 1,\n                        \"goals_per_90\": 0.21,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 7,\n                        \"tackles_per_90\": 1.43,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 6,\n                        \"tackles_won_per_90\": 1.22,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 1,\n                        \"goals_against_per_90\": 0.21,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 5,\n                        \"clean_sheets_per_90\": 1.02,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"6nwn2522yescgrx57wkcxjhwq\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 26,\n                \"country_flag\": \"BRA.png\",\n                \"first_name\": \"Sávio\",\n                \"last_name\": \"Moreira de Oliveira\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"Savinho\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"Right\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 5,\n                        \"minutes_played\": 253,\n                        \"minutes_played_per_game\": 50,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 2,\n                        \"fouls_committed_per_90\": 0.72,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 7,\n                        \"fouls_won_per_90\": 2.5,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 3,\n                        \"shots_on_target_per_90\": 1.07,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 4,\n                        \"shots_per_90\": 1.43,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 1,\n                        \"assist_per_90\": 0.36,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 1,\n                        \"tackles_per_90\": 0.36,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 0,\n                        \"tackles_won_per_90\": 0,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 2,\n                        \"goals_against_per_90\": 0.72,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 3,\n                        \"clean_sheets_per_90\": 1.07,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"7h2icfuwy00ilm14dw5xyl5g5\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 40,\n                \"country_flag\": \"NLD.png\",\n                \"first_name\": \"Marco\",\n                \"last_name\": \"Bizot\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"M. Bizot\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"GK\",\n                \"position_full\": \"Goalkeeper\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 2,\n                        \"minutes_played\": 180,\n                        \"minutes_played_per_game\": 90,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 1,\n                        \"fouls_committed_per_90\": 0.5,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 0,\n                        \"fouls_won_per_90\": 0,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.5,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 0,\n                        \"shots_per_90\": 0,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 0,\n                        \"tackles_per_90\": 0,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 0,\n                        \"tackles_won_per_90\": 0,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 4,\n                        \"saves_made_per_90\": 2,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 3,\n                        \"goals_against_per_90\": 1.5,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 1,\n                        \"clean_sheets_per_90\": 0.5,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"7jn9kl5wq29d41ekc2fz2rs2d\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 6,\n                \"country_flag\": \"NLD.png\",\n                \"first_name\": \"Nathan Benjamin\",\n                \"last_name\": \"Aké\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"N. Aké\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"Left/Centre\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 5,\n                        \"minutes_played\": 201,\n                        \"minutes_played_per_game\": 40,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 4,\n                        \"fouls_won_per_90\": 1.8,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 3,\n                        \"shots_per_90\": 1.35,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 3,\n                        \"tackles_per_90\": 1.35,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 3,\n                        \"tackles_won_per_90\": 1.35,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 3,\n                        \"goals_against_per_90\": 1.35,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 3,\n                        \"clean_sheets_per_90\": 1.35,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"7k0r5crdh9blj3edt31zwy0dm\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 29,\n                \"country_flag\": \"CIV.png\",\n                \"first_name\": \"Evann Ludovic\",\n                \"last_name\": \"Vidjannagni Guessand\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"E. Guessand\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"AM\",\n                \"position_full\": \"Attacking Midfielder\",\n                \"position_side\": \"Right\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 7,\n                        \"minutes_played\": 345,\n                        \"minutes_played_per_game\": 49,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 6,\n                        \"fouls_committed_per_90\": 1.57,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 6,\n                        \"fouls_won_per_90\": 1.57,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 2,\n                        \"shots_on_target_per_90\": 0.53,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 2,\n                        \"shots_per_90\": 0.53,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 13,\n                        \"tackles_per_90\": 3.4,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 7,\n                        \"tackles_won_per_90\": 1.83,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 4,\n                        \"goals_against_per_90\": 1.05,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 3,\n                        \"clean_sheets_per_90\": 0.79,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"7kbz6hqt79vasxqc2gvz2o3kk\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Benjamin David\",\n                \"last_name\": \"Broggio\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"B. Broggio\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"7q96z3aaee5jyccb8pjthi8kp\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 17,\n                \"country_flag\": \"NLD.png\",\n                \"first_name\": \"Donyell\",\n                \"last_name\": \"Malen\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"D. Malen\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"ST\",\n                \"position_full\": \"Striker\",\n                \"position_side\": \"Centre\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 8,\n                        \"minutes_played\": 292,\n                        \"minutes_played_per_game\": 36,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 1,\n                        \"fouls_committed_per_90\": 0.31,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 2,\n                        \"fouls_won_per_90\": 0.62,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 3,\n                        \"shots_on_target_per_90\": 0.93,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 9,\n                        \"shots_per_90\": 2.78,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 2,\n                        \"goals_per_90\": 0.62,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 2,\n                        \"tackles_per_90\": 0.62,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 2,\n                        \"tackles_won_per_90\": 0.62,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 6,\n                        \"goals_against_per_90\": 1.85,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 4,\n                        \"clean_sheets_per_90\": 1.24,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"7t9sy750fvi5vmto3uf4dzyfo\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Bradley-Paul\",\n                \"last_name\": \"Burrowes\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"B. Burrowes\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 1,\n                        \"minutes_played\": 16,\n                        \"minutes_played_per_game\": 16,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 1,\n                        \"fouls_won_per_90\": 5.63,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 0,\n                        \"shots_per_90\": 0,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 0,\n                        \"tackles_per_90\": 0,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 0,\n                        \"tackles_won_per_90\": 0,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 1,\n                        \"goals_against_per_90\": 5.63,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 0,\n                        \"clean_sheets_per_90\": 0,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"85gmjxvy1g5aj1lcizegwuaui\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 11,\n                \"country_flag\": \"BEL.png\",\n                \"first_name\": \"Jérémy Baffour\",\n                \"last_name\": \"Doku\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"J. Doku\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"Left\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 8,\n                        \"minutes_played\": 447,\n                        \"minutes_played_per_game\": 55,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 7,\n                        \"fouls_committed_per_90\": 1.41,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 12,\n                        \"fouls_won_per_90\": 2.42,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 4,\n                        \"shots_on_target_per_90\": 0.81,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 5,\n                        \"shots_per_90\": 1.01,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 3,\n                        \"assist_per_90\": 0.61,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 5,\n                        \"tackles_per_90\": 1.01,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 4,\n                        \"tackles_won_per_90\": 0.81,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 2,\n                        \"goals_against_per_90\": 0.41,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 6,\n                        \"clean_sheets_per_90\": 1.21,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"8qys6qtdwgsycxducl062zld5\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 4,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Ezri Ngoyo\",\n                \"last_name\": \"Konsa\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"E. Konsa\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"Centre/Right\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 7,\n                        \"minutes_played\": 606,\n                        \"minutes_played_per_game\": 86,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 3,\n                        \"fouls_committed_per_90\": 0.45,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 7,\n                        \"fouls_won_per_90\": 1.04,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 1,\n                        \"shots_on_target_per_90\": 0.15,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 1,\n                        \"shots_per_90\": 0.15,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 3,\n                        \"tackles_per_90\": 0.45,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 1,\n                        \"tackles_won_per_90\": 0.15,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 7,\n                        \"goals_against_per_90\": 1.04,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 2,\n                        \"clean_sheets_per_90\": 0.3,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"99d29g8af71vt1hrur06qvy7d\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Kalvin Mark\",\n                \"last_name\": \"Phillips\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"K. Phillips\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"9jj7t00bb5zflz78nlz3bvllg\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 26,\n                \"country_flag\": \"NLD.png\",\n                \"first_name\": \"Lamare Trenton Chansey\",\n                \"last_name\": \"Bogarde\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"L. Bogarde\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 6,\n                        \"minutes_played\": 284,\n                        \"minutes_played_per_game\": 47,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 6,\n                        \"fouls_committed_per_90\": 1.91,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 9,\n                        \"fouls_won_per_90\": 2.86,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.32,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 0,\n                        \"shots_per_90\": 0,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 4,\n                        \"tackles_per_90\": 1.27,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 3,\n                        \"tackles_won_per_90\": 0.96,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 2,\n                        \"goals_against_per_90\": 0.64,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 4,\n                        \"clean_sheets_per_90\": 1.27,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9jxhgh1vhc531ho0ez5alfazu\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ALG.png\",\n                \"first_name\": \"Rayan\",\n                \"last_name\": \"Aït-Nouri\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"R. Aït-Nouri\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 3,\n                        \"minutes_played\": 203,\n                        \"minutes_played_per_game\": 67,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 4,\n                        \"fouls_committed_per_90\": 1.78,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 1,\n                        \"fouls_won_per_90\": 0.45,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.45,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 2,\n                        \"shots_per_90\": 0.89,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 9,\n                        \"tackles_per_90\": 4,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 6,\n                        \"tackles_won_per_90\": 2.67,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 2,\n                        \"goals_against_per_90\": 0.89,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 2,\n                        \"clean_sheets_per_90\": 0.89,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9l3cvbbgw484v7la0bjv43mj9\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Marcus\",\n                \"last_name\": \"Bettinelli\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"M. Bettinelli\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"GK\",\n                \"position_full\": \"Goalkeeper\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"9prtaifv6stlujgywgq4wd08a\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 24,\n                \"country_flag\": \"HRV.png\",\n                \"first_name\": \"Joško\",\n                \"last_name\": \"Gvardiol\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"J. Gvardiol\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 4,\n                        \"minutes_played\": 340,\n                        \"minutes_played_per_game\": 85,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 1,\n                        \"fouls_committed_per_90\": 0.27,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 1,\n                        \"fouls_won_per_90\": 0.27,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 1,\n                        \"shots_on_target_per_90\": 0.27,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 3,\n                        \"shots_per_90\": 0.8,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 1,\n                        \"assist_per_90\": 0.27,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 3,\n                        \"tackles_per_90\": 0.8,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 3,\n                        \"tackles_won_per_90\": 0.8,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 2,\n                        \"goals_against_per_90\": 0.53,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 2,\n                        \"clean_sheets_per_90\": 0.53,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"9ysvzu336d2ahptkv7eoscl7u\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 22,\n                \"country_flag\": \"NLD.png\",\n                \"first_name\": \"Ian Ethan\",\n                \"last_name\": \"Maatsen\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"I. Maatsen\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"Left\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 5,\n                        \"minutes_played\": 151,\n                        \"minutes_played_per_game\": 30,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 1,\n                        \"fouls_committed_per_90\": 0.6,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 2,\n                        \"fouls_won_per_90\": 1.2,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.6,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 3,\n                        \"shots_per_90\": 1.79,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 4,\n                        \"tackles_per_90\": 2.39,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 4,\n                        \"tackles_won_per_90\": 2.39,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 4,\n                        \"goals_against_per_90\": 2.39,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 3,\n                        \"clean_sheets_per_90\": 1.79,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"a3ms8havadt1y9x381l325txx\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 3,\n                \"country_flag\": \"SWE.png\",\n                \"first_name\": \"Victor Jörgen\",\n                \"last_name\": \"Nilsson Lindelöf\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"V. Lindelöf\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 3,\n                        \"minutes_played\": 21,\n                        \"minutes_played_per_game\": 7,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 0,\n                        \"fouls_won_per_90\": 0,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 0,\n                        \"shots_per_90\": 0,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 0,\n                        \"tackles_per_90\": 0,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 0,\n                        \"tackles_won_per_90\": 0,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 0,\n                        \"goals_against_per_90\": 0,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 3,\n                        \"clean_sheets_per_90\": 12.86,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"ap4d3dgk8dlqhiidcrxksj0no\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Jaden Emile Tyrone\",\n                \"last_name\": \"Heskey\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"J. Heskey\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"ATT\",\n                \"position_full\": \"Attacker\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"aqvs12aqh0uczvrdi9cn02v4k\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 56,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Ryan\",\n                \"last_name\": \"McAidoo\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"R. McAidoo\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"ATT\",\n                \"position_full\": \"Attacker\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"atzboo800gv7gic2rgvgo0kq1\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 9,\n                \"country_flag\": \"NOR.png\",\n                \"first_name\": \"Erling\",\n                \"last_name\": \"Braut Haaland\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"E. Haaland\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"ST\",\n                \"position_full\": \"Striker\",\n                \"position_side\": \"Centre\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 8,\n                        \"minutes_played\": 686,\n                        \"minutes_played_per_game\": 85,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 7,\n                        \"fouls_committed_per_90\": 0.92,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 5,\n                        \"fouls_won_per_90\": 0.66,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 18,\n                        \"shots_on_target_per_90\": 2.37,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 34,\n                        \"shots_per_90\": 4.47,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 11,\n                        \"goals_per_90\": 1.45,\n                        \"goals_raw\": null,\n                        \"assists\": 1,\n                        \"assist_per_90\": 0.14,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 1,\n                        \"tackles_per_90\": 0.14,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 0,\n                        \"tackles_won_per_90\": 0,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 5,\n                        \"goals_against_per_90\": 0.66,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 5,\n                        \"clean_sheets_per_90\": 0.66,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"awifojlj7tvikhdfqftwhco44\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": \"Injured\",\n                \"shirt_number\": null,\n                \"country_flag\": \"ESP.png\",\n                \"first_name\": \"Andrés\",\n                \"last_name\": \"García Robledo\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"Andrés García\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"b3974hgsmyff5xtq7qf1onhlh\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 20,\n                \"country_flag\": \"PRT.png\",\n                \"first_name\": \"Bernardo\",\n                \"last_name\": \"Mota Veiga de Carvalho e Silva\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"Bernardo Silva\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 8,\n                        \"minutes_played\": 404,\n                        \"minutes_played_per_game\": 50,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 7,\n                        \"fouls_committed_per_90\": 1.56,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 5,\n                        \"fouls_won_per_90\": 1.12,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.23,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 1,\n                        \"shots_per_90\": 0.23,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 1,\n                        \"assist_per_90\": 0.23,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 7,\n                        \"tackles_per_90\": 1.56,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 4,\n                        \"tackles_won_per_90\": 0.9,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 2,\n                        \"goals_against_per_90\": 0.45,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 6,\n                        \"clean_sheets_per_90\": 1.34,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"b8if5dg0k9prjik99aiutewh5\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 7,\n                \"country_flag\": \"EGY.png\",\n                \"first_name\": \"Omar Khaled Mohamed Abdelsalam\",\n                \"last_name\": \"Marmoush\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"Omar Marmoush\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"ATT\",\n                \"position_full\": \"Attacker\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 3,\n                        \"minutes_played\": 151,\n                        \"minutes_played_per_game\": 50,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 1,\n                        \"fouls_committed_per_90\": 0.6,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 5,\n                        \"fouls_won_per_90\": 2.99,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 2,\n                        \"shots_on_target_per_90\": 1.2,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 5,\n                        \"shots_per_90\": 2.99,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 1,\n                        \"direct_free_kicks_per_90\": 0.6,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 1,\n                        \"assist_per_90\": 0.6,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 3,\n                        \"tackles_per_90\": 1.79,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 3,\n                        \"tackles_won_per_90\": 1.79,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 3,\n                        \"goals_against_per_90\": 1.79,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 1,\n                        \"clean_sheets_per_90\": 0.6,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"blth4klpu88kgh73abpjlgusp\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 44,\n                \"country_flag\": \"FRA.png\",\n                \"first_name\": \"Boubacar Bernard\",\n                \"last_name\": \"Kamara\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"B. Kamara\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"DM\",\n                \"position_full\": \"Defensive Midfielder\",\n                \"position_side\": \"Centre/Right\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 6,\n                        \"minutes_played\": 386,\n                        \"minutes_played_per_game\": 64,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 4,\n                        \"fouls_committed_per_90\": 0.94,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 11,\n                        \"fouls_won_per_90\": 2.57,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.24,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 1,\n                        \"shots_on_target_per_90\": 0.24,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 2,\n                        \"shots_per_90\": 0.47,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 2,\n                        \"assist_per_90\": 0.47,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 11,\n                        \"tackles_per_90\": 2.57,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 7,\n                        \"tackles_won_per_90\": 1.64,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 4,\n                        \"goals_against_per_90\": 0.94,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 2,\n                        \"clean_sheets_per_90\": 0.47,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"btvuam6p4391am219taqtcted\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 7,\n                \"country_flag\": \"SCO.png\",\n                \"first_name\": \"John\",\n                \"last_name\": \"McGinn\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"J. McGinn\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"AM\",\n                \"position_full\": \"Attacking Midfielder\",\n                \"position_side\": \"Left\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 8,\n                        \"minutes_played\": 641,\n                        \"minutes_played_per_game\": 80,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 11,\n                        \"fouls_committed_per_90\": 1.55,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 12,\n                        \"fouls_won_per_90\": 1.69,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.15,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 2,\n                        \"shots_on_target_per_90\": 0.29,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 8,\n                        \"shots_per_90\": 1.13,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 1,\n                        \"goals_per_90\": 0.15,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 9,\n                        \"tackles_per_90\": 1.27,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 6,\n                        \"tackles_won_per_90\": 0.85,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 6,\n                        \"goals_against_per_90\": 0.85,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 3,\n                        \"clean_sheets_per_90\": 0.43,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"bvsm83aa0lh523uld70zy1pn8\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"SCO.png\",\n                \"first_name\": \"Aidan Gerald\",\n                \"last_name\": \"Borland\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"A. Borland\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"cv8egyrq9dlfgeamk6b7fdgq1\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 19,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Jadon Malik\",\n                \"last_name\": \"Sancho\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"J. Sancho\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"ATT\",\n                \"position_full\": \"Attacker\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 1,\n                        \"minutes_played\": 8,\n                        \"minutes_played_per_game\": 8,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 0,\n                        \"fouls_won_per_90\": 0,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 1,\n                        \"shots_per_90\": 11.25,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 0,\n                        \"tackles_per_90\": 0,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 0,\n                        \"tackles_won_per_90\": 0,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 0,\n                        \"goals_against_per_90\": 0,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 1,\n                        \"clean_sheets_per_90\": 11.25,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"d0azo0spzov2hg6ul40l58e3u\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 82,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Rico Henry Mark\",\n                \"last_name\": \"Lewis\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"R. Lewis\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"DM\",\n                \"position_full\": \"Defensive Midfielder\",\n                \"position_side\": \"Centre\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 5,\n                        \"minutes_played\": 173,\n                        \"minutes_played_per_game\": 34,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 1,\n                        \"fouls_committed_per_90\": 0.53,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 3,\n                        \"fouls_won_per_90\": 1.57,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 1,\n                        \"shots_per_90\": 0.53,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 1,\n                        \"assist_per_90\": 0.53,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 3,\n                        \"tackles_per_90\": 1.57,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 1,\n                        \"tackles_won_per_90\": 0.53,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 3,\n                        \"goals_against_per_90\": 1.57,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 3,\n                        \"clean_sheets_per_90\": 1.57,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"d2oz9hkrhstz5jo2bpqqynecq\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"James Thomas\",\n                \"last_name\": \"Wright\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"J. Wright\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"GK\",\n                \"position_full\": \"Goalkeeper\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"d7ofv9d9sbp263uo76cm2qxhw\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"UZB.png\",\n                \"first_name\": \"Abdukodir\",\n                \"last_name\": \"Khusanov\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"A. Khusanov\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 4,\n                        \"minutes_played\": 229,\n                        \"minutes_played_per_game\": 57,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 3,\n                        \"fouls_committed_per_90\": 1.18,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 3,\n                        \"fouls_won_per_90\": 1.18,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.4,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 0,\n                        \"shots_per_90\": 0,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 7,\n                        \"tackles_per_90\": 2.76,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 4,\n                        \"tackles_won_per_90\": 1.58,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 1,\n                        \"goals_against_per_90\": 0.4,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 3,\n                        \"clean_sheets_per_90\": 1.18,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"do3duah478rhz9cg2icde4h9m\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 24,\n                \"country_flag\": \"BEL.png\",\n                \"first_name\": \"Amadou Ba Zeund Georges\",\n                \"last_name\": \"Mvom Onana\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"A. Onana\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"DM\",\n                \"position_full\": \"Defensive Midfielder\",\n                \"position_side\": \"Left/Centre\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 4,\n                        \"minutes_played\": 237,\n                        \"minutes_played_per_game\": 59,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 2,\n                        \"fouls_committed_per_90\": 0.76,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 3,\n                        \"fouls_won_per_90\": 1.14,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 1,\n                        \"yellow_cards_per_90\": 0.38,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 1,\n                        \"shots_on_target_per_90\": 0.38,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 2,\n                        \"shots_per_90\": 0.76,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 7,\n                        \"tackles_per_90\": 2.66,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 3,\n                        \"tackles_won_per_90\": 1.14,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 2,\n                        \"goals_against_per_90\": 0.76,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 2,\n                        \"clean_sheets_per_90\": 0.76,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"dqfk7czrayirrvonirtk2mk15\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ESP.png\",\n                \"first_name\": \"Rodrigo\",\n                \"last_name\": \"Hernández Cascante\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"Rodri\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 5,\n                        \"minutes_played\": 293,\n                        \"minutes_played_per_game\": 58,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 1,\n                        \"fouls_committed_per_90\": 0.31,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 5,\n                        \"fouls_won_per_90\": 1.54,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 1,\n                        \"shots_on_target_per_90\": 0.31,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 3,\n                        \"shots_per_90\": 0.93,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 6,\n                        \"tackles_per_90\": 1.85,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 1,\n                        \"tackles_won_per_90\": 0.31,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 3,\n                        \"goals_against_per_90\": 0.93,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 3,\n                        \"clean_sheets_per_90\": 0.93,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"drh7wx5zz8c4dwa9o8mrigjro\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 33,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Nico\",\n                \"last_name\": \"O'Reilly\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"N. O'Reilly\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Starting\",\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"Left\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 7,\n                        \"minutes_played\": 478,\n                        \"minutes_played_per_game\": 68,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 5,\n                        \"fouls_committed_per_90\": 0.95,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 2,\n                        \"fouls_won_per_90\": 0.38,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 2,\n                        \"yellow_cards_per_90\": 0.38,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 6,\n                        \"shots_per_90\": 1.13,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 1,\n                        \"assist_per_90\": 0.19,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 19,\n                        \"tackles_per_90\": 3.58,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 8,\n                        \"tackles_won_per_90\": 1.51,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 2,\n                        \"goals_against_per_90\": 0.38,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 5,\n                        \"clean_sheets_per_90\": 0.95,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"dxeju5zcb6j8etdgwq0kweor9\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 6,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Ross\",\n                \"last_name\": \"Barkley\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"R. Barkley\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 2,\n                        \"minutes_played\": 14,\n                        \"minutes_played_per_game\": 7,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 0,\n                        \"fouls_won_per_90\": 0,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 1,\n                        \"shots_per_90\": 6.43,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 1,\n                        \"tackles_per_90\": 6.43,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 1,\n                        \"tackles_won_per_90\": 6.43,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 0,\n                        \"goals_against_per_90\": 0,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 2,\n                        \"clean_sheets_per_90\": 12.86,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"dz2rfsmhib89jwilpuub10qcq\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 9,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Harvey Daniel James\",\n                \"last_name\": \"Elliott\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"H. Elliott\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 3,\n                        \"minutes_played\": 96,\n                        \"minutes_played_per_game\": 32,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 2,\n                        \"fouls_won_per_90\": 1.88,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 3,\n                        \"shots_per_90\": 2.82,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 0,\n                        \"tackles_per_90\": 0,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 0,\n                        \"tackles_won_per_90\": 0,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 2,\n                        \"goals_against_per_90\": 1.88,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 1,\n                        \"clean_sheets_per_90\": 0.94,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"e8gz0tmmdh1ql8qrn1ncrvnpx\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": \"Injured\",\n                \"shirt_number\": null,\n                \"country_flag\": \"FRA.png\",\n                \"first_name\": \"Lucas\",\n                \"last_name\": \"Digne\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"L. Digne\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"DF\",\n                \"position_full\": \"Defender\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 8,\n                        \"minutes_played\": 571,\n                        \"minutes_played_per_game\": 71,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 5,\n                        \"fouls_committed_per_90\": 0.79,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 5,\n                        \"fouls_won_per_90\": 0.79,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 2,\n                        \"yellow_cards_per_90\": 0.32,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 2,\n                        \"shots_on_target_per_90\": 0.32,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 4,\n                        \"shots_per_90\": 0.64,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 2,\n                        \"direct_free_kicks_per_90\": 0.32,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 2,\n                        \"assist_per_90\": 0.32,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 9,\n                        \"tackles_per_90\": 1.42,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 5,\n                        \"tackles_won_per_90\": 0.79,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 4,\n                        \"goals_against_per_90\": 0.64,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 4,\n                        \"clean_sheets_per_90\": 0.64,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"ebiqfsdzd3xnycfgzsjd8bo4\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": null,\n                \"country_flag\": \"ENG.png\",\n                \"first_name\": \"Jamaldeen Ayomide\",\n                \"last_name\": \"Jimoh-Aloba\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"J. Jimoh-Aloba\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {}\n            },\n            {\n                \"id\": \"ehopba709zukxj4vgcync942d\",\n                \"team_id\": \"9a94ad05-bdb5-4c9a-bb6c-5f6b902ca08f\",\n                \"availability\": null,\n                \"shirt_number\": 8,\n                \"country_flag\": \"HRV.png\",\n                \"first_name\": \"Mateo\",\n                \"last_name\": \"Kovačić\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"M. Kovačić\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 1,\n                        \"minutes_played\": 4,\n                        \"minutes_played_per_game\": 4,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 0,\n                        \"fouls_committed_per_90\": 0,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 0,\n                        \"fouls_won_per_90\": 0,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 0,\n                        \"shots_on_target_per_90\": 0,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 0,\n                        \"shots_per_90\": 0,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 0,\n                        \"tackles_per_90\": 0,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 0,\n                        \"tackles_won_per_90\": 0,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 0,\n                        \"goals_against_per_90\": 0,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 1,\n                        \"clean_sheets_per_90\": 22.5,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"eo4uva2gnx08xdazfaqzyz2dx\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": \"Injured\",\n                \"shirt_number\": null,\n                \"country_flag\": \"BEL.png\",\n                \"first_name\": \"Youri Marion A.\",\n                \"last_name\": \"Tielemans\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": false,\n                \"match_name\": \"Y. Tielemans\",\n                \"lineup\": null,\n                \"lineup_provisional\": null,\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 4,\n                        \"minutes_played\": 315,\n                        \"minutes_played_per_game\": 78,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 6,\n                        \"fouls_committed_per_90\": 1.72,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 3,\n                        \"fouls_won_per_90\": 0.86,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 0,\n                        \"yellow_cards_per_90\": 0,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 1,\n                        \"shots_on_target_per_90\": 0.29,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 5,\n                        \"shots_per_90\": 1.43,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 0,\n                        \"goals_per_90\": 0,\n                        \"goals_raw\": null,\n                        \"assists\": 0,\n                        \"assist_per_90\": 0,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 5,\n                        \"tackles_per_90\": 1.43,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 4,\n                        \"tackles_won_per_90\": 1.15,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 4,\n                        \"goals_against_per_90\": 1.15,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 2,\n                        \"clean_sheets_per_90\": 0.58,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            },\n            {\n                \"id\": \"l0qqn9tlgov91p5d1zzdupcl\",\n                \"team_id\": \"9a94ace9-3913-4f51-9b53-b68e32e77cfa\",\n                \"availability\": null,\n                \"shirt_number\": 10,\n                \"country_flag\": \"ARG.png\",\n                \"first_name\": \"Emiliano\",\n                \"last_name\": \"Buendía Stati\",\n                \"has_bet_builder_fouls_odds\": false,\n                \"has_bet_builder_shots_odds\": false,\n                \"has_bet_builder_goals_odds\": true,\n                \"match_name\": \"E. Buendía\",\n                \"lineup\": null,\n                \"lineup_provisional\": \"Substitute\",\n                \"position\": \"MD\",\n                \"position_full\": \"Midfielder\",\n                \"position_side\": \"\",\n                \"last_updated\": \"2025-10-24T09:51:06Z\",\n                \"stats\": {\n                    \"domestic\": {\n                        \"competition\": \"Premier League\",\n                        \"matches_played\": 7,\n                        \"minutes_played\": 329,\n                        \"minutes_played_per_game\": 47,\n                        \"minutes_played_raw\": null,\n                        \"fouls_committed\": 11,\n                        \"fouls_committed_per_90\": 3.01,\n                        \"fouls_committed_raw\": null,\n                        \"fouls_won\": 6,\n                        \"fouls_won_per_90\": 1.65,\n                        \"fouls_won_raw\": null,\n                        \"yellow_cards\": 2,\n                        \"yellow_cards_per_90\": 0.55,\n                        \"yellow_cards_raw\": null,\n                        \"shots_on_target\": 2,\n                        \"shots_on_target_per_90\": 0.55,\n                        \"shots_on_target_raw\": null,\n                        \"shots\": 11,\n                        \"shots_per_90\": 3.01,\n                        \"shots_raw\": null,\n                        \"direct_free_kicks\": 0,\n                        \"direct_free_kicks_per_90\": 0,\n                        \"direct_free_kicks_raw\": null,\n                        \"goals\": 2,\n                        \"goals_per_90\": 0.55,\n                        \"goals_raw\": null,\n                        \"assists\": 1,\n                        \"assist_per_90\": 0.28,\n                        \"assists_raw\": null,\n                        \"penalties_taken\": 0,\n                        \"penalties_taken_per_90\": 0,\n                        \"penalties_taken_raw\": null,\n                        \"tackles\": 12,\n                        \"tackles_per_90\": 3.29,\n                        \"tackles_raw\": null,\n                        \"tackles_won\": 8,\n                        \"tackles_won_per_90\": 2.19,\n                        \"tackles_won_raw\": null,\n                        \"saves_made\": 0,\n                        \"saves_made_per_90\": 0,\n                        \"saves_made_raw\": null,\n                        \"goals_against\": 3,\n                        \"goals_against_per_90\": 0.83,\n                        \"goals_against_raw\": null,\n                        \"clean_sheets\": 5,\n                        \"clean_sheets_per_90\": 1.37,\n                        \"clean_sheets_raw\": null\n                    }\n                }\n            }\n        ],\n        \"meta\": {\n            \"total_results\": 63\n        }\n    }\n}"}],"_postman_id":"5725055d-2c39-4856-803d-469436ac2853"},{"name":"match-centre-related-matches","event":[{"listen":"test","script":{"id":"f49c8685-30a2-4ba4-a291-397e242a871e","exec":["// Test 1: Status code is 200","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Response time is less than 4000ms","pm.test(\"Response time is less than 4000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 3: JSON schema validation","pm.test(\"Response matches expected JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"id\", \"competition_name\", \"competition_id\", \"kick_off\", \"country\", \"teams\"],","                    properties: {","                        id: { type: \"string\" },","                        competition_name: { type: \"string\" },","                        competition_id: { type: \"string\" },","                        sport_radar_competition_id: { type: \"string\" },","                        competition_logo: { type: \"string\" },","                        kick_off: { type: \"string\" },","                        tv_channel: { type: [\"string\", \"null\"] },","                        tv_channel_logo: { type: [\"string\", \"null\"] },","                        country: {","                            type: \"object\",","                            required: [\"name\", \"flag\"],","                            properties: {","                                name: { type: \"string\" },","                                flag: { type: \"string\" }","                            }","                        },","                        teams: {","                            type: \"object\",","                            required: [\"home\", \"away\"],","                            properties: {","                                home: {","                                    type: \"object\",","                                    required: [\"id\", \"name\", \"badge\"],","                                    properties: {","                                        id: { type: \"string\" },","                                        name: { type: \"string\" },","                                        badge: { type: \"string\" }","                                    }","                                },","                                away: {","                                    type: \"object\",","                                    required: [\"id\", \"name\", \"badge\"],","                                    properties: {","                                        id: { type: \"string\" },","                                        name: { type: \"string\" },","                                        badge: { type: \"string\" }","                                    }","                                }","                            }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"total_results\", \"timezone\", \"dates_checked\"],","                properties: {","                    results: { type: \"number\" },","                    total_results: { type: \"number\" },","                    timezone: { type: \"string\" },","                    dates_checked: {","                        type: \"array\",","                        items: { type: \"string\" }","                    }","                }","            }","        }","    };","","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"0776ccbe-3c07-4ec2-a20c-3441052fce51","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","","const fetchFixturesList = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/fixtures-list?timezone=Europe%2FLondon&sport=soccer&day=0\",","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, res) {","        if (err) {","            console.error(\"Error fetching fixtures list:\", err);","            return reject(err);","        }","","        const jsonData = res.json();","        console.log(\"fixtures-list status:\", res.code);","        console.log(\"fixtures-list response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData && jsonData.data && jsonData.data && jsonData.data.length > 0) {","            resolve(jsonData.data[0].fixture_id);","        } else {","            console.error(\"No fixtures found in response\");","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(\"No fixtures found in response\"));","        }","    });","});","","const fixtureId = await fetchFixturesList();","","pm.environment.set(\"id\", fixtureId);","","pm.request.url.variables.each(function(variable) {","    if (variable.key === \"id\") {","        variable.value = fixtureId;","    }","});","","console.log(\"Set fixture ID:\", fixtureId);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"8c6f2746-fa2b-4b67-8ec8-7c1659a69668","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/match-centre-related-matches/:id?timezone=Europe/London","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["match-centre-related-matches",":id"],"host":[""],"query":[{"key":"timezone","value":"Europe/London"}],"variable":[{"type":"any","value":"019cd0f7-8c08-725b-9150-6a956c0babce","key":"id"}]}},"response":[{"id":"c5e0ba47-b1af-4dfc-9032-5955c762ee5c","name":"match-centre-related-matches","originalRequest":{"method":"GET","header":[],"url":{"raw":"/match-centre-related-matches/:id?timezone=Europe/London","host":[""],"path":["match-centre-related-matches",":id"],"query":[{"key":"timezone","value":"Europe/London"}],"variable":[{"key":"id","value":"9fae4361-7554-45fc-ba79-4fe586eea353"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 14:45:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1942"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"0d8adf17-d370-4799-9e5c-33457f944b40"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9OVuFiGjoEEe8w="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb90f1-456d9a5676cd8e6307c15dcd;Parent=51fc5646c0a779bf;Sampled=0;Lineage=1:6d9f4f97:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"9fae436a-e5cd-49c4-9830-be1a0c2b2200\",\n            \"competition_name\": \"Premier League\",\n            \"competition_id\": \"9a94abbd-c337-4e95-862c-e8cb2cf29a61\",\n            \"sport_radar_competition_id\": \"sr:competition:17\",\n            \"competition_logo\": \"sr-competition-17.png\",\n            \"kick_off\": \"2025-10-24 20:00:00\",\n            \"tv_channel\": null,\n            \"tv_channel_logo\": null,\n            \"country\": {\n                \"name\": \"England\",\n                \"flag\": \"ENG.png\"\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a948073-83aa-4323-afe8-a6070cb27f53\",\n                    \"name\": \"Leeds\",\n                    \"badge\": \"sr-competitor-34.png\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace8-eb61-4da3-ac38-12c06d6903e5\",\n                    \"name\": \"West Ham\",\n                    \"badge\": \"sr-competitor-37.png\"\n                }\n            }\n        },\n        {\n            \"id\": \"9fae436d-c5d9-451a-aeaa-7d6d6fad7b24\",\n            \"competition_name\": \"Premier League\",\n            \"competition_id\": \"9a94abbd-c337-4e95-862c-e8cb2cf29a61\",\n            \"sport_radar_competition_id\": \"sr:competition:17\",\n            \"competition_logo\": \"sr-competition-17.png\",\n            \"kick_off\": \"2025-10-25 17:30:00\",\n            \"tv_channel\": null,\n            \"tv_channel_logo\": null,\n            \"country\": {\n                \"name\": \"England\",\n                \"flag\": \"ENG.png\"\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94ad06-7ea7-4dd0-886b-26a79541847c\",\n                    \"name\": \"Man Utd\",\n                    \"badge\": \"sr-competitor-35.png\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-737b-46ec-8cd0-d2ad93eea0b8\",\n                    \"name\": \"Brighton\",\n                    \"badge\": \"sr-competitor-30.png\"\n                }\n            }\n        },\n        {\n            \"id\": \"9fae4364-6265-4286-99e8-8792e7f8773e\",\n            \"competition_name\": \"Premier League\",\n            \"competition_id\": \"9a94abbd-c337-4e95-862c-e8cb2cf29a61\",\n            \"sport_radar_competition_id\": \"sr:competition:17\",\n            \"competition_logo\": \"sr-competition-17.png\",\n            \"kick_off\": \"2025-10-25 20:00:00\",\n            \"tv_channel\": null,\n            \"tv_channel_logo\": null,\n            \"country\": {\n                \"name\": \"England\",\n                \"flag\": \"ENG.png\"\n            },\n            \"teams\": {\n                \"home\": {\n                    \"id\": \"9a94c959-b7f0-4ad4-a03f-76b32647a5d0\",\n                    \"name\": \"Brentford\",\n                    \"badge\": \"sr-competitor-50.png\"\n                },\n                \"away\": {\n                    \"id\": \"9a94ace9-978e-4b3e-9143-502fc4f85204\",\n                    \"name\": \"Liverpool\",\n                    \"badge\": \"sr-competitor-44.png\"\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 3,\n        \"total_results\": 3,\n        \"timezone\": \"Europe/London\",\n        \"dates_checked\": [\n            \"2025-10-24\",\n            \"2025-10-25\",\n            \"2025-10-26\"\n        ]\n    }\n}"}],"_postman_id":"8c6f2746-fa2b-4b67-8ec8-7c1659a69668"},{"name":"match-centre-results","event":[{"listen":"test","script":{"id":"e338fc28-d04a-4181-929d-47ebb64534e0","exec":["// Test 1: Status code is 200","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Response time is less than 4000ms","pm.test(\"Response time is less than 4000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 3: JSON schema validation","pm.test(\"Response matches expected JSON schema\", function () {","    const teamSchema = {","        type: \"object\",","        required: [\"name\", \"badge\", \"score\"],","        properties: {","            id: { type: \"string\" },","            name: { type: \"string\" },","            badge: { type: \"string\" },","            score: {","                type: \"object\",","                required: [\"regular_time_goals\"],","                properties: {","                    regular_time_goals: { type: [\"number\", \"null\"] },","                    extra_time_goals: { type: [\"number\", \"null\"] },","                    penalty_shootout_goals: { type: [\"number\", \"null\"] }","                }","            }","        }","    };","","    const fixtureSchema = {","        type: \"object\",","        required: [\"fixture_id\", \"competition_name\", \"competition_id\", \"kick_off\", \"teams\", \"result\"],","        properties: {","            fixture_id: { type: \"string\" },","            competition_name: { type: \"string\" },","            competition_id: { type: \"string\" },","            kick_off: { type: \"string\" },","            competition_logo: { type: [\"string\", \"null\"] },","            country: {","                type: \"object\",","                properties: {","                    name: { type: [\"string\", \"null\"] },","                    flag: { type: [\"string\", \"null\"] }","                }","            },","            teams: {","                type: \"object\",","                required: [\"home\", \"away\"],","                properties: {","                    home: teamSchema,","                    away: teamSchema","                }","            },","            result: { type: \"string\" }","        }","    };","","    const schema = {","        type: \"object\",","        required: [\"data\"],","        properties: {","            data: {","                type: \"object\",","                required: [\"home_latest\", \"away_latest\"],","                properties: {","                    home_latest: {","                        type: \"array\",","                        items: fixtureSchema","                    },","                    away_latest: {","                        type: \"array\",","                        items: fixtureSchema","                    }","                }","            }","        }","    };","","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"ba42b257-478d-4dc6-a96e-b5ba085975f1","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","","const fetchFixtureId = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/fixtures-centre-matches?timezone=Europe/London&day=2\",","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, res) {","        if (err) {","            console.error(\"Error fetching fixtures:\", err);","            return reject(err);","        }","","        const jsonData = res.json();","        console.log(\"fixtures-centre-matches status:\", res.code);","        console.log(\"fixtures-centre-matches response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData && jsonData.data && jsonData.data.fixtures && jsonData.data.fixtures.length > 0) {","            const fixtureId = jsonData.data.fixtures[0].id;","            console.log(\"Fetched fixture ID:\", fixtureId);","            resolve(fixtureId);","        } else {","            const msg = \"No fixtures found in response\";","            console.error(msg);","            reject(new Error(msg));","        }","    });","});","","const fetchSelectionId = (fixtureId) => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/match-centre-markets/\" + fixtureId,","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, res) {","        if (err) {","            console.error(\"Error fetching markets:\", err);","            return reject(err);","        }","","        const jsonData = res.json();","        console.log(\"match-centre-markets status:\", res.code);","        console.log(\"match-centre-markets response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData && jsonData.data && jsonData.data.length > 0) {","            const firstMarket = jsonData.data[0];","            if (firstMarket.selections && firstMarket.selections.length > 0) {","                resolve(firstMarket.selections[0].selection_id);","            } else {","                const msg = \"No selections found in first market\";","                console.error(msg);","                reject(new Error(msg));","            }","        } else {","            const msg = \"No markets found in response\";","            console.error(msg);","            reject(new Error(msg));","        }","    });","});","","const fixtureId = await fetchFixtureId();","","pm.environment.set(\"id\", fixtureId);","","pm.request.url.variables.each(function(variable) {","    if (variable.key === \"id\") {","        variable.value = fixtureId;","    }","});","","const selectionId = await fetchSelectionId(fixtureId);","","pm.environment.set(\"selection_id\", selectionId);","","console.log(\"Set fixture ID:\", fixtureId);","console.log(\"Set selection ID:\", selectionId);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"78723e3c-3a7b-46dc-9a7a-46deb7df2645","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/match-centre-results/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["match-centre-results",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"019cd514-b4b5-738d-8175-7434cb684606","key":"id"}]}},"response":[{"id":"9d35c922-73b3-419b-b9aa-2beb720df1f0","name":"match-centre-results","originalRequest":{"method":"GET","header":[],"url":{"raw":"/match-centre-results/:id","host":[""],"path":["match-centre-results",":id"],"variable":[{"key":"id","value":"9fae4361-7554-45fc-ba79-4fe586eea353"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 14:45:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"16995"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"395f6296-e577-4273-a084-c65732068da7"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9OcsGlkjoEEPrQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb911d-0511aa6d465c00f234c4ad3e;Parent=0256c4de9d08dd6a;Sampled=0;Lineage=1:1fb28a68:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"home_latest\": [\n            {\n                \"fixture_id\": \"99101\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-09-25T16:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"id\": \"c9bf9e57-1685-4c89-bafb-ff5af830be8a\",\n                        \"name\": \"Brighton & Hove Albion\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/f/fd/Brighton_%26_Hove_Albion_logo.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Won\"\n            },\n            {\n                \"fixture_id\": \"99102\",\n                \"competition_name\": \"F.A Cup Semi Finals\",\n                \"competition_id\": \"FA-CUP\",\n                \"kick_off\": \"2024-04-21T19:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": 1,\n                            \"penalty_shootout_goals\": 4\n                        }\n                    },\n                    \"away\": {\n                        \"id\": \"a6f8f9d0-3b6e-46f8-8c33-2f8e1e4a41b9\",\n                        \"name\": \"Leicester City\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/6/63/Leicester02.png\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": 0,\n                            \"penalty_shootout_goals\": 3\n                        }\n                    }\n                },\n                \"result\": \"Won\"\n            },\n            {\n                \"fixture_id\": \"99103\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-10-05T16:30:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 3,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"id\": \"d067e915-6bfa-4a6f-89df-d02e341f75c2\",\n                        \"name\": \"Chelsea FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/c/cc/Chelsea_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 0,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Won\"\n            },\n            {\n                \"fixture_id\": \"99104\",\n                \"competition_name\": \"Champions League\",\n                \"competition_id\": \"UEFA-CL\",\n                \"kick_off\": \"2024-11-10T20:00:00Z\",\n                \"competition_logo\": \"https://upload.wikimedia.org/wikipedia/commons/e/e0/UEFA_Champions_League_logo_2.svg\",\n                \"country\": {\n                    \"name\": null,\n                    \"flag\": null\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"id\": \"35f6b9bb-4736-4e0d-b86a-9477e14b3f07\",\n                        \"name\": \"Bayern Munich\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/1/1f/FC_Bayern_München_logo_%282017%29.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Won\"\n            },\n            {\n                \"fixture_id\": \"99105\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-11-02T17:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"id\": \"9f6e9f61-c5cb-4fcb-bc9b-7f7dc645f411\",\n                        \"name\": \"West Ham United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/c/c2/West_Ham_United_FC_logo.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Draw\"\n            },\n            {\n                \"fixture_id\": \"99106\",\n                \"competition_name\": \"Champions League\",\n                \"competition_id\": \"UEFA-CL\",\n                \"kick_off\": \"2024-12-05T19:45:00Z\",\n                \"competition_logo\": \"https://upload.wikimedia.org/wikipedia/commons/e/e0/UEFA_Champions_League_logo_2.svg\",\n                \"country\": {\n                    \"name\": null,\n                    \"flag\": null\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 3,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"id\": \"3b601d8d-e7c4-4344-a45e-d83071e3a53b\",\n                        \"name\": \"Atletico Madrid\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/f/f4/Atletico_Madrid_2017_logo.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Won\"\n            },\n            {\n                \"fixture_id\": \"99107\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-12-12T18:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"id\": \"e8f2b073-6b5e-49e8-bfba-26be4567bf88\",\n                        \"name\": \"Manchester City\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/e/eb/Manchester_City_FC_badge.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Lost\"\n            },\n            {\n                \"fixture_id\": \"99108\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-10-15T19:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 0,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"id\": \"77d3f573-bf8b-46b9-b9ec-fbdf66b451c2\",\n                        \"name\": \"Tottenham Hotspur\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/b/b4/Tottenham_Hotspur.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Lost\"\n            }\n        ],\n        \"away_latest\": [\n            {\n                \"fixture_id\": \"99001\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-09-28T16:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Tottenham Hotspur\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/b/b4/Tottenham_Hotspur.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 0,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 3,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Won\"\n            },\n            {\n                \"fixture_id\": \"99002\",\n                \"competition_name\": \"F.A Cup Semi Finals\",\n                \"competition_id\": \"FA-CUP\",\n                \"kick_off\": \"2024-10-03T20:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Aston Villa\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/f/f9/Aston_Villa_FC_crest_%282016%29.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": 0,\n                            \"penalty_shootout_goals\": 6\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": 0,\n                            \"penalty_shootout_goals\": 7\n                        }\n                    }\n                },\n                \"result\": \"Won\"\n            },\n            {\n                \"fixture_id\": \"99003\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-10-10T15:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Arsenal FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/5/53/Arsenal_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Lost\"\n            },\n            {\n                \"fixture_id\": \"99004\",\n                \"competition_name\": \"Champions League\",\n                \"competition_id\": \"UEFA-CL\",\n                \"kick_off\": \"2024-10-15T19:00:00Z\",\n                \"competition_logo\": \"https://upload.wikimedia.org/wikipedia/commons/e/e0/UEFA_Champions_League_logo_2.svg\",\n                \"country\": {\n                    \"name\": null,\n                    \"flag\": null\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Real Madrid\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/5/56/Real_Madrid_CF.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Lost\"\n            },\n            {\n                \"fixture_id\": \"99005\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-10-08T16:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Everton FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7c/Everton_FC_logo.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Draw\"\n            },\n            {\n                \"fixture_id\": \"99006\",\n                \"competition_name\": \"Champions League\",\n                \"competition_id\": \"UEFA-CL\",\n                \"kick_off\": \"2024-11-01T20:00:00Z\",\n                \"competition_logo\": \"https://upload.wikimedia.org/wikipedia/commons/e/e0/UEFA_Champions_League_logo_2.svg\",\n                \"country\": {\n                    \"name\": null,\n                    \"flag\": null\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Paris Saint-Germain\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/a/a7/Paris_Saint-Germain_F.C..svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 3,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Lost\"\n            },\n            {\n                \"fixture_id\": \"99007\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-09-20T17:30:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Newcastle United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/5/56/Newcastle_United_Logo.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 0,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Won\"\n            },\n            {\n                \"fixture_id\": \"99008\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-11-05T18:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Chelsea FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/c/cc/Chelsea_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                },\n                \"result\": \"Draw\"\n            }\n        ],\n        \"head_to_head\": [\n            {\n                \"fixture_id\": \"99201\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-09-20T16:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                }\n            },\n            {\n                \"fixture_id\": \"99202\",\n                \"competition_name\": \"F.A Cup Semi Finals\",\n                \"competition_id\": \"FA-CUP\",\n                \"kick_off\": \"2024-04-15T19:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": 0,\n                            \"penalty_shootout_goals\": 5\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": 0,\n                            \"penalty_shootout_goals\": 4\n                        }\n                    }\n                }\n            },\n            {\n                \"fixture_id\": \"99203\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-10-08T15:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 3,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                }\n            },\n            {\n                \"fixture_id\": \"99204\",\n                \"competition_name\": \"Champions League\",\n                \"competition_id\": \"UEFA-CL\",\n                \"kick_off\": \"2024-11-12T20:00:00Z\",\n                \"competition_logo\": \"https://upload.wikimedia.org/wikipedia/commons/e/e0/UEFA_Champions_League_logo_2.svg\",\n                \"country\": {\n                    \"name\": null,\n                    \"flag\": null\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                }\n            },\n            {\n                \"fixture_id\": \"99205\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-12-20T18:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                }\n            },\n            {\n                \"fixture_id\": \"99206\",\n                \"competition_name\": \"Champions League\",\n                \"competition_id\": \"UEFA-CL\",\n                \"kick_off\": \"2024-12-05T19:45:00Z\",\n                \"competition_logo\": \"https://upload.wikimedia.org/wikipedia/commons/e/e0/UEFA_Champions_League_logo_2.svg\",\n                \"country\": {\n                    \"name\": null,\n                    \"flag\": null\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 3,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                }\n            },\n            {\n                \"fixture_id\": \"99207\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-10-25T17:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 0,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 2,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                }\n            },\n            {\n                \"fixture_id\": \"99208\",\n                \"competition_name\": \"Premier League\",\n                \"competition_id\": \"ENG-PL\",\n                \"kick_off\": \"2024-11-02T18:00:00Z\",\n                \"competition_logo\": null,\n                \"country\": {\n                    \"name\": \"England\",\n                    \"flag\": \"england.svg\"\n                },\n                \"teams\": {\n                    \"home\": {\n                        \"name\": \"Liverpool FC\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/0/0c/Liverpool_FC.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    },\n                    \"away\": {\n                        \"name\": \"Manchester United\",\n                        \"badge\": \"https://upload.wikimedia.org/wikipedia/en/7/7a/Manchester_United_FC_crest.svg\",\n                        \"score\": {\n                            \"regular_time_goals\": 1,\n                            \"extra_time_goals\": null,\n                            \"penalty_shootout_goals\": null\n                        }\n                    }\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"78723e3c-3a7b-46dc-9a7a-46deb7df2645"},{"name":"match-centre-team-stats","event":[{"listen":"test","script":{"id":"1d2dfb22-4495-4c30-b300-fbe28bf24484","exec":["// Test 1: Status code is 200","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Response time is less than 4000ms","pm.test(\"Response time is less than 4000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 3: JSON schema validation","pm.test(\"Response matches expected JSON schema\", function () {","    const statRowSchema = {","        type: \"object\",","        required: [\"label\", \"home\", \"away\"],","        properties: {","            label: { type: \"string\" },","            home: { type: \"string\" },","            away: { type: \"string\" }","        }","    };","","    const competitionStatsSchema = {","        type: \"object\",","        additionalProperties: {","            type: \"array\",","            items: statRowSchema","        }","    };","","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"object\",","                required: [\"id\", \"competitions\", \"stats\"],","                properties: {","                    id: { type: \"string\" },","                    competitions: {","                        type: \"object\",","                        additionalProperties: {","                            type: \"object\",","                            required: [\"home\", \"away\"],","                            properties: {","                                home: { type: \"string\" },","                                away: { type: \"string\" }","                            }","                        }","                    },","                    stats: {","                        type: \"object\",","                        additionalProperties: competitionStatsSchema","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"last_updated\"],","                properties: {","                    last_updated: { type: \"string\" }","                }","            }","        }","    };","","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"538b90ff-c410-4be4-8eb2-e4060d6d96db","exec":["const baseUrl = pm.environment.get(\"base_url\");","const apiKey = pm.environment.get(\"api_key\");","","const fetchFixturesList = () => new Promise((resolve, reject) => {","    pm.sendRequest({","        url: baseUrl + \"/fixtures-list?timezone=Europe%2FLondon&sport=soccer&day=0\",","        method: \"GET\",","        header: {","            \"x-api-key\": apiKey","        }","    }, function (err, res) {","        if (err) {","            console.error(\"Error fetching fixtures list:\", err);","            return reject(err);","        }","","        const jsonData = res.json();","        console.log(\"fixtures-list status:\", res.code);","        console.log(\"fixtures-list response:\", JSON.stringify(jsonData).substring(0, 200));","","        if (jsonData && jsonData.data && jsonData.data && jsonData.data.length > 0) {","            resolve(jsonData.data[0].fixture_id);","        } else {","            console.error(\"No fixtures found in response\");","            console.log(\"Full response:\", JSON.stringify(jsonData));","            reject(new Error(\"No fixtures found in response\"));","        }","    });","});","","const fixtureId = await fetchFixturesList();","","pm.environment.set(\"id\", fixtureId);","","pm.request.url.variables.each(function(variable) {","    if (variable.key === \"id\") {","        variable.value = fixtureId;","    }","});","","console.log(\"Set fixture ID:\", fixtureId);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"ef4fea4e-ebdc-46ec-bf80-2bfafb5a962e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/match-centre-team-stats/:id","description":"<h3 id=\"match-centre-team-stats\">Match Centre Team Stats</h3>\n<p>This endpoint retrieves team statistics for a specific match.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>/match-centre-team-stats/:id</code></p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will be in JSON format and follows the schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": \"\",\n        \"competitions\": {\n            \"international_qualifiers\": {\n                \"home\": \"\",\n                \"away\": \"\"\n            },\n            \"all\": {\n                \"home\": \"\",\n                \"away\": \"\"\n            }\n        },\n        \"stats\": {\n            \"form\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"goals\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"corners\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"cards\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"shots\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"fouls\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            }\n        }\n    },\n    \"meta\": {\n        \"last_updated\": \"\"\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["match-centre-team-stats",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"019ccac0-018f-702d-ad7a-c49d0a0594a6","key":"id"}]}},"response":[{"id":"11a93cdc-a02d-4f6d-a116-b4c8b1bd3c0b","name":"match-centre-team-stats","originalRequest":{"method":"GET","header":[],"url":{"raw":"/match-centre-team-stats/:id","host":[""],"path":["match-centre-team-stats",":id"],"variable":[{"key":"id","value":"9fae4361-7554-45fc-ba79-4fe586eea353"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 14:45:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"8658"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"dcdbc6b9-6242-40ea-afcb-2c60d53939a5"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9OaBE0FDoEENGQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb910c-57895b3d69d4284541f2b408;Parent=30e4029ec955ed56;Sampled=0;Lineage=1:fcc8e6e6:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\",\n        \"competitions\": {\n            \"domestic\": {\n                \"home\": \"Premier League 25/26\",\n                \"away\": \"Premier League 25/26\"\n            }\n        },\n        \"stats\": {\n            \"form\": {\n                \"domestic\": [\n                    {\n                        \"label\": \"Matches Played\",\n                        \"home\": \"8\",\n                        \"away\": \"8\"\n                    },\n                    {\n                        \"label\": \"Form\",\n                        \"home\": \"w,w,w,d,d,l,l,d\",\n                        \"away\": \"w,w,w,d,w,d,l,w\"\n                    },\n                    {\n                        \"label\": \"Won\",\n                        \"home\": \"3\",\n                        \"away\": \"5\"\n                    },\n                    {\n                        \"label\": \"Drawn\",\n                        \"home\": \"3\",\n                        \"away\": \"2\"\n                    },\n                    {\n                        \"label\": \"Lost\",\n                        \"home\": \"2\",\n                        \"away\": \"1\"\n                    },\n                    {\n                        \"label\": \"League Position\",\n                        \"home\": \"11\",\n                        \"away\": \"2\"\n                    }\n                ]\n            },\n            \"goals\": {\n                \"domestic\": [\n                    {\n                        \"label\": \"Matches Played\",\n                        \"home\": \"8\",\n                        \"away\": \"8\"\n                    },\n                    {\n                        \"label\": \"Goals For\",\n                        \"home\": \"1.00\",\n                        \"away\": \"2.00\"\n                    },\n                    {\n                        \"label\": \"Goals Against\",\n                        \"home\": \"1.00\",\n                        \"away\": \"0.50\"\n                    },\n                    {\n                        \"label\": \"Total Goals\",\n                        \"home\": \"2.00\",\n                        \"away\": \"2.50\"\n                    },\n                    {\n                        \"label\": \"Over 1.5 Goals\",\n                        \"home\": \"63\",\n                        \"away\": \"75\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 6\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Over 2.5 Goals\",\n                        \"home\": \"50\",\n                        \"away\": \"38\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 6\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Over 3.5 Goals\",\n                        \"home\": \"13\",\n                        \"away\": \"25\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 6\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Both Teams To Score\",\n                        \"home\": \"50\",\n                        \"away\": \"25\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"cards\": {\n                \"domestic\": [\n                    {\n                        \"label\": \"Matches Played\",\n                        \"home\": \"8\",\n                        \"away\": \"8\"\n                    },\n                    {\n                        \"label\": \"Cards Shown\",\n                        \"home\": \"1.75\",\n                        \"away\": \"1.00\"\n                    },\n                    {\n                        \"label\": \"Cards Against\",\n                        \"home\": \"2.25\",\n                        \"away\": \"1.75\"\n                    },\n                    {\n                        \"label\": \"Total Cards\",\n                        \"home\": \"4.00\",\n                        \"away\": \"2.75\"\n                    },\n                    {\n                        \"label\": \"Over 0.5 Team Cards\",\n                        \"home\": \"88\",\n                        \"away\": \"63\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Over 1.5 Team Cards\",\n                        \"home\": \"63\",\n                        \"away\": \"38\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Over 2.5 Team Cards\",\n                        \"home\": \"25\",\n                        \"away\": \"75\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Over 3.5 Team Cards\",\n                        \"home\": \"63\",\n                        \"away\": \"50\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"shots\": {\n                \"domestic\": [\n                    {\n                        \"label\": \"Matches Played\",\n                        \"home\": \"8\",\n                        \"away\": \"8\"\n                    },\n                    {\n                        \"label\": \"Shots\",\n                        \"home\": \"10.50\",\n                        \"away\": \"11.63\"\n                    },\n                    {\n                        \"label\": \"Shots Against\",\n                        \"home\": \"11.38\",\n                        \"away\": \"8.13\"\n                    },\n                    {\n                        \"label\": \"Shots on Target\",\n                        \"home\": \"3.13\",\n                        \"away\": \"4.50\"\n                    },\n                    {\n                        \"label\": \"Shots on Target Against\",\n                        \"home\": \"3.00\",\n                        \"away\": \"2.13\"\n                    },\n                    {\n                        \"label\": \"Over 2.5 Team Shots on Target\",\n                        \"home\": \"50\",\n                        \"away\": \"88\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 6\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Over 3.5 Team Shots on Target\",\n                        \"home\": \"38\",\n                        \"away\": \"75\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 6\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Over 4.5 Team Shots on Target\",\n                        \"home\": \"13\",\n                        \"away\": \"38\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 4\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 6\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Over 5.5 Team Shots on Target\",\n                        \"home\": \"13\",\n                        \"away\": \"38\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 1\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 2\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 4\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 3\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 4\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 6\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"fouls\": {\n                \"domestic\": [\n                    {\n                        \"label\": \"Matches Played\",\n                        \"home\": \"8\",\n                        \"away\": \"8\"\n                    },\n                    {\n                        \"label\": \"Fouls Committed\",\n                        \"home\": \"9.75\",\n                        \"away\": \"6.38\"\n                    },\n                    {\n                        \"label\": \"Fouls Won\",\n                        \"home\": \"12.63\",\n                        \"away\": \"9.13\"\n                    },\n                    {\n                        \"label\": \"Total Fouls\",\n                        \"home\": \"22.38\",\n                        \"away\": \"15.50\"\n                    },\n                    {\n                        \"label\": \"Over 8.5 Fouls Committed\",\n                        \"home\": \"63\",\n                        \"away\": \"13\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 10\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 9\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 15\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 9\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 13\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 5\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 10\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 6\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Over 9.5 Fouls Committed\",\n                        \"home\": \"38\",\n                        \"away\": \"13\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 10\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 9\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 15\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 9\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 13\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 5\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 10\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 6\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Over 10.5 Fouls Committed\",\n                        \"home\": \"25\",\n                        \"away\": \"0\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 10\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 9\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 15\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 9\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 13\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 5\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 10\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 6\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            }\n                        ]\n                    },\n                    {\n                        \"label\": \"Over 11.5 Fouls Committed\",\n                        \"home\": \"25\",\n                        \"away\": \"0\",\n                        \"home_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 10\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 9\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 15\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 9\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"W\",\n                                \"t\": 13\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            }\n                        ],\n                        \"away_results\": [\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 5\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 10\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 7\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 6\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 0\n                            },\n                            {\n                                \"wl\": \"L\",\n                                \"t\": 8\n                            }\n                        ]\n                    }\n                ]\n            }\n        }\n    },\n    \"meta\": {\n        \"last_updated\": \"2025-10-22T17:20:46Z\"\n    }\n}"}],"_postman_id":"ef4fea4e-ebdc-46ec-bf80-2bfafb5a962e"},{"name":"stats-centre-team-stats","event":[{"listen":"test","script":{"id":"3bd2f06e-df43-4ce3-b956-b8438e6bb309","exec":["pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","// Test 1: Status code is 200","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Test 2: Validate JSON response schema","pm.test(\"Response schema is valid\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"team_id\", \"team_name\", \"team_league\", \"team_badge\", \"league_group\", \"team_metrics\", \"results\", \"hit_rate\", \"next_opponent\", \"next_fixture_id\", \"team_ranking\"],","                    properties: {","                        team_id: { type: \"string\" },","                        team_name: { type: \"string\" },","                        team_league: { type: \"string\" },","                        team_badge: { type: \"string\" },","                        league_group: { type: \"string\" },","                        team_metrics: {","                            type: \"object\",","                            required: [\"matches_played\", \"corners_for\", \"corners_against\", \"average_total_corners\"],","                            properties: {","                                matches_played: { type: \"number\" },","                                corners_for: { type: \"number\" },","                                corners_against: { type: \"number\" },","                                average_total_corners: { type: \"number\" }","                            }","                        },","                        results: {","                            type: \"array\",","                            items: { type: \"string\" }","                        },","                        hit_rate: { type: [\"number\", \"null\"] },","                        next_opponent: { type: [\"string\", \"null\"] },","                        next_fixture_id: { type: [\"string\", \"null\"] },","                        team_ranking: { type: \"number\" }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"stat\", \"stat_format\", \"sort\", \"num_results\", \"product\"],","                properties: {","                    stat: { type: \"string\" },","                    stat_format: { type: \"string\" },","                    sort: { type: \"string\" },","                    limit: { type: [\"number\", \"null\"] },","                    num_results: { type: \"number\" },","                    product: { type: \"string\" }","                }","            }","        }","    };","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d4f19340-23bd-47fa-b686-0cead0cb6cb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/stats-centre-team-stats/?stat=corners&league_group=Elite Europe","description":"<h3 id=\"match-centre-team-stats\">Match Centre Team Stats</h3>\n<p>This endpoint retrieves team statistics for a specific match.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>/match-centre-team-stats/:id</code></p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will be in JSON format and follows the schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": \"\",\n        \"competitions\": {\n            \"international_qualifiers\": {\n                \"home\": \"\",\n                \"away\": \"\"\n            },\n            \"all\": {\n                \"home\": \"\",\n                \"away\": \"\"\n            }\n        },\n        \"stats\": {\n            \"form\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"goals\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"corners\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"cards\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"shots\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"fouls\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            }\n        }\n    },\n    \"meta\": {\n        \"last_updated\": \"\"\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["stats-centre-team-stats",""],"host":[""],"query":[{"key":"stat","value":"corners"},{"key":"league_group","value":"Elite Europe"}],"variable":[]}},"response":[{"id":"2a51142c-af27-4b57-82a8-554cbc1839b1","name":"Goals","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=goals","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"goals"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"130ec22f-1bd9-4892-895f-a95e3791d3e1","name":"Corners","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=corners","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"corners"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e3e3ba2c-f141-476d-8c69-82134178dd41","name":"Cards","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=cards","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"cards"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"96faefe5-0fab-40d0-a4f4-a6058394d2d0","name":"Wins","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=wins","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"wins"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"45ab3aa7-f312-4acf-97c1-f942d3837ec6","name":"BTTS","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=both_teams_to_score","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"both_teams_to_score"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1a23dda7-2a84-4b1b-9e90-5ff9186637eb","name":"Over x.5 goals","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=over_1.5_goals","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"over_1.5_goals"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e0b26136-12b3-4530-bd89-db1fe52d73da","name":"Over x.5 corners","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=over_7.5_corners","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"over_7.5_corners"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f9dbcdfd-4895-462b-a7b2-49a117502ee6","name":"Over x.5 cards","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=over_2.5_cards","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"over_2.5_cards"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"72eea655-46a6-4d83-94ea-3cd0c9328ab0","name":"League group filter: Brazil","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=goals&league_group=brazil","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"goals"},{"key":"league_group","value":"brazil"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"91a75a8b-ff53-47fd-88cb-2748db77a204","name":"League group filter: Elite Europe","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=corners&league_group=elite europe","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"corners"},{"key":"league_group","value":"elite europe"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1084b746-e160-47f2-9d02-d4d4ba15470f","name":"Stat format: Total","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=goals&stat_format=total","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"goals"},{"key":"stat_format","value":"total"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8efb8f74-b5f3-420b-b241-3e98b307c41d","name":"Stat format: Per Game","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=goals&stat_format=per_game","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"goals"},{"key":"stat_format","value":"per_game"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"316471c3-8d70-44e6-997f-d71f1ec05444","name":"Season ID filter","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=wins&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"wins"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4e9ad6c8-00bd-4676-8b77-93b7df39afa7","name":"Season ID + league group filter","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=wins&league_group=elite europe&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"wins"},{"key":"league_group","value":"elite europe"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9bc45fb9-246c-4fbf-bfbc-2ba6ed488669","name":"Sort: High to Low","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=goals&sort=high-to-low","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"goals"},{"key":"sort","value":"high-to-low"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cbdd20a9-9815-4aea-90bd-2399b221f5f4","name":"Sort: Low to High","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=goals&sort=low-to-high","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"goals"},{"key":"sort","value":"low-to-high"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4cdfb65d-bd1d-4efd-aad1-f68e412a75d9","name":"Limit: 5","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=goals&limit=5","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"goals"},{"key":"limit","value":"5"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"93e50bd0-d9d9-45a5-b63a-fb94f8fc8340","name":"Combination","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-team-stats?stat=over_2.5_goals&league_group=elite europe&stat_format=per_game&sort=low-to-high&limit=10","host":[""],"path":["stats-centre-team-stats"],"query":[{"key":"stat","value":"over_2.5_goals"},{"key":"league_group","value":"elite europe"},{"key":"stat_format","value":"per_game"},{"key":"sort","value":"low-to-high"},{"key":"limit","value":"10"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d4f19340-23bd-47fa-b686-0cead0cb6cb0"},{"name":"stats-centre-referee-stats","event":[{"listen":"test","script":{"id":"527367ca-5cb4-4c2e-97c2-219690cecd3d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response time is less than 4000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7c234c7b-e0a2-4c76-9b01-ee9f7ebe6f0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/stats-centre-referee-stats?stat=fouls_given&stat_type=total&season_id=9a947f07-b10b-4226-beb0-3f4aac91d6aa","description":"<h3 id=\"match-centre-team-stats\">Match Centre Team Stats</h3>\n<p>This endpoint retrieves team statistics for a specific match.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>/match-centre-team-stats/:id</code></p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will be in JSON format and follows the schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": \"\",\n        \"competitions\": {\n            \"international_qualifiers\": {\n                \"home\": \"\",\n                \"away\": \"\"\n            },\n            \"all\": {\n                \"home\": \"\",\n                \"away\": \"\"\n            }\n        },\n        \"stats\": {\n            \"form\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"goals\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"corners\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"cards\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"shots\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"fouls\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            }\n        }\n    },\n    \"meta\": {\n        \"last_updated\": \"\"\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["stats-centre-referee-stats"],"host":[""],"query":[{"key":"stat","value":"fouls_given"},{"key":"stat_type","value":"total"},{"key":"season_id","value":"9a947f07-b10b-4226-beb0-3f4aac91d6aa"}],"variable":[]}},"response":[{"id":"d8decddd-fc6f-436b-a1e8-0ccfef0393ac","name":"Fouls given","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-referee-stats?stat=fouls_given&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf","host":[""],"path":["stats-centre-referee-stats"],"query":[{"key":"stat","value":"fouls_given"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"dc92206e-21bf-4112-afdd-5ce91cd8c6be","name":"Yellow cards","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-referee-stats?stat=yellow_cards&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf","host":[""],"path":["stats-centre-referee-stats"],"query":[{"key":"stat","value":"yellow_cards"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"96fadc98-8601-4b4c-8788-8b343bdc8e4f","name":"Red cards","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-referee-stats?stat=red_cards&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf","host":[""],"path":["stats-centre-referee-stats"],"query":[{"key":"stat","value":"red_cards"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c9d892b1-c0f5-4664-a1fd-467110b31800","name":"League group filter: Brazil","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-referee-stats?stat=yellow_cards&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf&league_group=brazil","host":[""],"path":["stats-centre-referee-stats"],"query":[{"key":"stat","value":"yellow_cards"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"},{"key":"league_group","value":"brazil"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"8b0b6bfd-2ab6-485f-ac62-db6d193ce9b6","name":"League group filter: Elite Europe","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-referee-stats?stat=fouls_given&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf&league_group=elite_europe","host":[""],"path":["stats-centre-referee-stats"],"query":[{"key":"stat","value":"fouls_given"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"},{"key":"league_group","value":"elite_europe"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"011a646c-c7a5-4185-88ce-14884ec9f335","name":"Stat format: Total","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-referee-stats?stat=yellow_cards&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf&stat_format=total","host":[""],"path":["stats-centre-referee-stats"],"query":[{"key":"stat","value":"yellow_cards"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"},{"key":"stat_format","value":"total"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"48ba6c65-d598-4f29-849a-4785cf088984","name":"Stat format: Per Game","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-referee-stats?stat=yellow_cards&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf&stat_format=per_game","host":[""],"path":["stats-centre-referee-stats"],"query":[{"key":"stat","value":"yellow_cards"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"},{"key":"stat_format","value":"per_game"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f8fbb10a-c8e3-4d21-8d52-447ba5e182c5","name":"Sort: High to Low","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-referee-stats?stat=fouls_given&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf&sort=high-to-low","host":[""],"path":["stats-centre-referee-stats"],"query":[{"key":"stat","value":"fouls_given"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"},{"key":"sort","value":"high-to-low"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"028dc196-f5bd-47ce-98a2-83f8287e0d19","name":"Sort: Low to High","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-referee-stats?stat=fouls_given&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf&sort=low-to-high","host":[""],"path":["stats-centre-referee-stats"],"query":[{"key":"stat","value":"fouls_given"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"},{"key":"sort","value":"low-to-high"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7ffeb7e6-a520-4f8a-8046-37cd75318ee5","name":"Limit: 5","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-referee-stats?stat=red_cards&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf&limit=5","host":[""],"path":["stats-centre-referee-stats"],"query":[{"key":"stat","value":"red_cards"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"},{"key":"limit","value":"5"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cfee4ce9-6c0c-461d-afa4-9aeff5c45c8b","name":"Combination","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-referee-stats?stat=yellow_cards&league_group=elite_europe&season_id=9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf&stat_format=per_game&sort=low-to-high&limit=10","host":[""],"path":["stats-centre-referee-stats"],"query":[{"key":"stat","value":"yellow_cards"},{"key":"league_group","value":"elite_europe"},{"key":"season_id","value":"9f2ef0ff-f59d-4bec-a3e8-60c7dcc41ebf"},{"key":"stat_format","value":"per_game"},{"key":"sort","value":"low-to-high"},{"key":"limit","value":"10"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7c234c7b-e0a2-4c76-9b01-ee9f7ebe6f0f"},{"name":"stats-centre-player-stats","event":[{"listen":"test","script":{"id":"03a354b6-9726-4681-8e56-7d8594e18d0d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response time is less than 10000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(10000);","});","","pm.test(\"Response matches expected JSON schema\", function () {","    const playerMetricsSchema = {","        type: \"object\",","        required: [\"matches_played\"],","        properties: {","            matches_played: { type: [\"number\", \"null\"] },","            fouls_won_results: { type: \"array\", items: { type: [\"number\", \"null\"] } },","            fouls_committed_results: { type: \"array\", items: { type: [\"number\", \"null\"] } },","            yellow_cards_results: { type: \"array\", items: { type: [\"number\", \"null\"] } },","            fouls_won: { type: [\"number\", \"null\"] },","            fouls_committed: { type: [\"number\", \"null\"] },","            yellow_cards: { type: [\"number\", \"null\"] }","        }","    };","","    const playerSchema = {","        type: \"object\",","        required: [\"player_id\", \"player_name\", \"player_team\", \"player_country_flag\", \"league_group\", \"league_name\", \"next_opponent\", \"next_fixture_id\", \"player_metrics\", \"player_ranking\"],","        properties: {","            player_id: { type: [\"string\", \"null\"] },","            player_name: { type: [\"string\", \"null\"] },","            player_team: { type: [\"string\", \"null\"] },","            player_country_flag: { type: [\"string\", \"null\"] },","            league_group: { type: [\"string\", \"null\"] },","            league_name: { type: [\"string\", \"null\"] },","            next_opponent: { type: [\"string\", \"null\"] },","            next_fixture_id: { type: [\"string\", \"null\"] },","            player_metrics: playerMetricsSchema,","            player_ranking: { type: [\"number\", \"null\"] }","        }","    };","","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: playerSchema","            },","            meta: {","                type: \"object\",","                required: [\"stat\", \"stat_format\", \"sort\", \"primary_field\", \"limit\", \"num_results\"],","                properties: {","                    stat: { type: [\"string\", \"null\"] },","                    stat_format: { type: [\"string\", \"null\"] },","                    sort: { type: [\"string\", \"null\"] },","                    primary_field: { type: [\"string\", \"null\"] },","                    limit: { type: [\"number\", \"null\"] },","                    num_results: { type: [\"number\", \"null\"] }","                }","            }","        }","    };","","    pm.response.to.have.jsonSchema(schema);","});","","// 4. Data Array Non-Empty Test","pm.test(\"Data array is not empty\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData.data).to.be.an(\"array\").that.is.not.empty;","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"1006114e-d99d-4175-9036-fea8d5a0b0dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/stats-centre-player-stats/?stat=fouls","description":"<h3 id=\"match-centre-team-stats\">Match Centre Team Stats</h3>\n<p>This endpoint retrieves team statistics for a specific match.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>/match-centre-team-stats/:id</code></p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will be in JSON format and follows the schema below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": \"\",\n        \"competitions\": {\n            \"international_qualifiers\": {\n                \"home\": \"\",\n                \"away\": \"\"\n            },\n            \"all\": {\n                \"home\": \"\",\n                \"away\": \"\"\n            }\n        },\n        \"stats\": {\n            \"form\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"goals\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"corners\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"cards\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"shots\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            },\n            \"fouls\": {\n                \"international_qualifiers\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ],\n                \"all\": [\n                    {\n                        \"label\": \"\",\n                        \"home\": \"\",\n                        \"away\": \"\"\n                    }\n                ]\n            }\n        }\n    },\n    \"meta\": {\n        \"last_updated\": \"\"\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["stats-centre-player-stats",""],"host":[""],"query":[{"key":"stat","value":"fouls"}],"variable":[]}},"response":[{"id":"8c936411-1851-4628-86f6-ca7bbebc5841","name":"Goals","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats/?stat=goals","host":[""],"path":["stats-centre-player-stats",""],"query":[{"key":"stat","value":"goals"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7ee14d7e-b4c0-486b-bbee-a68019259191","name":"Shooting","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats/?stat=shooting","host":[""],"path":["stats-centre-player-stats",""],"query":[{"key":"stat","value":"shooting"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"62902de6-ed05-40f9-bcce-bced90d15f49","name":"Cards and fouls","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats/?stat=fouls","host":[""],"path":["stats-centre-player-stats",""],"query":[{"key":"stat","value":"fouls"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a60e0029-e5e6-47b9-9ce9-0aa6fcc0d3ba","name":"Tackles","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats/?stat=tackles","host":[""],"path":["stats-centre-player-stats",""],"query":[{"key":"stat","value":"tackles"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"010ccb6d-588d-44d1-98da-8555f6c85be7","name":"League group filter: Brazil","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats?stat=goals&league_group=brazil","host":[""],"path":["stats-centre-player-stats"],"query":[{"key":"stat","value":"goals"},{"key":"league_group","value":"brazil"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"04e033e1-bd6d-4a9d-932d-860ec8a8aa2a","name":"League group filter: Elite Europe","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats?stat=shooting&league_group=elite_europe","host":[""],"path":["stats-centre-player-stats"],"query":[{"key":"stat","value":"shooting"},{"key":"league_group","value":"elite_europe"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a62c9b4f-3df0-4481-9774-1dcce9944966","name":"Stat format: Total","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats?stat=goals&stat_format=total","host":[""],"path":["stats-centre-player-stats"],"query":[{"key":"stat","value":"goals"},{"key":"stat_format","value":"total"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"866c2574-7baa-4381-8802-8d2280dcab8e","name":"Stat format: Per Game","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats?stat=goals&stat_format=per_game","host":[""],"path":["stats-centre-player-stats"],"query":[{"key":"stat","value":"goals"},{"key":"stat_format","value":"per_game"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"59b1e210-b874-4c6d-9dfb-2c29ef06f285","name":"Sort: High to Low","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats?stat=tackles&sort=high-to-low","host":[""],"path":["stats-centre-player-stats"],"query":[{"key":"stat","value":"tackles"},{"key":"sort","value":"high-to-low"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"259eedf8-7328-4b46-a0b2-d20cd98f1530","name":"Sort: Low to High","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats?stat=tackles&sort=low-to-high","host":[""],"path":["stats-centre-player-stats"],"query":[{"key":"stat","value":"tackles"},{"key":"sort","value":"low-to-high"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3c38f1ed-43a5-4a56-939a-53c0b89a11c0","name":"Limit: 5","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats?stat=shooting&limit=5","host":[""],"path":["stats-centre-player-stats"],"query":[{"key":"stat","value":"shooting"},{"key":"limit","value":"5"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9f344e1e-7d0a-44f5-8864-34f3a18bbc11","name":"Combination","originalRequest":{"method":"GET","header":[],"url":{"raw":"/stats-centre-player-stats?stat=goals&league_group=elite_europe&stat_format=per_game&sort=low-to-high&limit=10","host":[""],"path":["stats-centre-player-stats"],"query":[{"key":"stat","value":"goals"},{"key":"league_group","value":"elite_europe"},{"key":"stat_format","value":"per_game"},{"key":"sort","value":"low-to-high"},{"key":"limit","value":"10"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1006114e-d99d-4175-9036-fea8d5a0b0dc"},{"name":"markets-list","event":[{"listen":"test","script":{"id":"6e484c42-fcef-41a1-97c4-75c08c067360","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response time is less than 4000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","pm.test(\"Response matches expected JSON schema\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"market\", \"market_key\", \"market_id\"],","                    properties: {","                        market: { type: \"string\" },","                        market_key: { type: \"string\" },","                        market_id: { type: \"string\" }","                    },","                    additionalProperties: false","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"filtering\"],","                properties: {","                    results: { type: \"number\" },","                    filtering: {","                        type: \"object\",","                        required: [\"id\", \"sport\"],","                        properties: {","                            id: { type: \"string\" },","                            sport: { type: \"string\" }","                        },","                        additionalProperties: false","                    }","                },","                additionalProperties: false","            }","        },","        additionalProperties: false","    };","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"d437f74c-3fcd-4a3d-a877-1ef7be183f34","exec":["const baseUrl = pm.environment.get(\"base_url\");\r","const apiKey = pm.environment.get(\"api_key\");\r","\r","const fetchFixturesList = () => new Promise((resolve, reject) => {\r","    pm.sendRequest({\r","        url: baseUrl + \"/fixtures-list?timezone=Europe/London&sport=soccer&day=0\",\r","        method: \"GET\",\r","        header: {\r","            \"x-api-key\": apiKey\r","        }\r","    }, function (err, res) {\r","        if (err) {\r","            console.error(\"Error fetching fixtures list:\", err);\r","            return reject(err);\r","        }\r","\r","        const jsonData = res.json();\r","        console.log(\"fixtures-list status:\", res.code);\r","        console.log(\"fixtures-list response:\", JSON.stringify(jsonData).substring(0, 200));\r","\r","        if (jsonData && jsonData.data && jsonData.data && jsonData.data.length > 0) {\r","            resolve(jsonData.data[0].fixture_id);\r","        } else {\r","            console.error(\"No fixtures found in response\");\r","            console.log(\"Full response:\", JSON.stringify(jsonData));\r","            reject(new Error(\"No fixtures found in response\"));\r","        }\r","    });\r","});\r","\r","const fixtureId = await fetchFixturesList();\r","\r","pm.environment.set(\"id\", fixtureId);\r","\r","pm.request.url.variables.each(function(variable) {\r","    if (variable.key === \"id\") {\r","        variable.value = fixtureId;\r","    }\r","});\r","\r","console.log(\"Set fixture ID:\", fixtureId);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"8c1af865-8bf0-4882-8f81-acb426c526b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/markets-list/:id?sport=sport_event","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["markets-list",":id"],"host":[""],"query":[{"disabled":true,"key":"sport","value":"racing_event"},{"key":"sport","value":"sport_event"}],"variable":[{"type":"any","value":"019ccac0-018f-702d-ad7a-c49d0a0594a6","key":"id"}]}},"response":[{"id":"b1f9ac4b-ded7-4d62-bc09-1fc6c0182473","name":"markets-list","originalRequest":{"method":"GET","header":[],"url":{"raw":"/markets-list/:id","host":[""],"path":["markets-list",":id"],"variable":[{"key":"id","value":"9fae4361-7554-45fc-ba79-4fe586eea353"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 15:04:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"10659"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"67c91e52-2cd1-48de-a489-6483faf9fe77"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9RHnGVCDoEEDJg="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb9563-14ada1c139ce9e7923774030;Parent=5f2b6f30e76c00fd;Sampled=0;Lineage=1:0083c83c:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"market\": \"Anytime Assist\",\n            \"market_key\": \"ANYTIME_ASSIST\",\n            \"market_id\": \"019a1596-4835-70b8-b3ab-806d7068cebe\"\n        },\n        {\n            \"market\": \"Anytime Goalscorer\",\n            \"market_key\": \"TO_SCORE\",\n            \"market_id\": \"019a07c5-6348-70b8-803f-c161a46a14da\"\n        },\n        {\n            \"market\": \"Away Team Over/Under 0.5\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"market_id\": \"019a07c5-6230-7048-9940-ff6c7f464b2e\"\n        },\n        {\n            \"market\": \"Away Team Over/Under 1.5\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"market_id\": \"019a07c5-5cbe-716f-abe4-7d6e24cf7d02\"\n        },\n        {\n            \"market\": \"Away Team Over/Under 2.5\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"market_id\": \"019a07c5-5b99-71f7-9f7f-32c37e731a94\"\n        },\n        {\n            \"market\": \"Away Team Over/Under 3.5\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_3.5_GOALS\",\n            \"market_id\": \"019a07c5-5be0-7229-974d-96452bb06fbf\"\n        },\n        {\n            \"market\": \"Away Team Over/Under 4.5\",\n            \"market_key\": \"AWAY_TEAM_OVER/UNDER_4.5_GOALS\",\n            \"market_id\": \"019a07c5-5b47-73c5-a5e6-1b813c6e8790\"\n        },\n        {\n            \"market\": \"Away Team Total Cards 0.5\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_0.5\",\n            \"market_id\": \"019a1130-9f02-7035-8a63-53f9f82312a2\"\n        },\n        {\n            \"market\": \"Away Team Total Cards 1.5\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_1.5\",\n            \"market_id\": \"019a1130-9bd5-73fb-966a-3b7e4c756781\"\n        },\n        {\n            \"market\": \"Away Team Total Cards 2.5\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_2.5\",\n            \"market_id\": \"019a1130-9cf5-70b7-a8e8-44aac269ded7\"\n        },\n        {\n            \"market\": \"Away Team Total Cards 3.5\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_3.5\",\n            \"market_id\": \"019a1130-9f97-71d2-a371-1379ccaa4002\"\n        },\n        {\n            \"market\": \"Away Team Total Cards 4.5\",\n            \"market_key\": \"AWAY_TEAM_TOTAL_CARDS_4.5\",\n            \"market_id\": \"019a1130-985a-739b-917a-4dbe4beddf95\"\n        },\n        {\n            \"market\": \"Away Total Corners 2.5\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_2.5\",\n            \"market_id\": \"019a10c3-0b54-7121-a315-3d488a2456af\"\n        },\n        {\n            \"market\": \"Away Total Corners 3.5\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_3.5\",\n            \"market_id\": \"019a10c3-0d08-72c4-a06e-7d65392140af\"\n        },\n        {\n            \"market\": \"Away Total Corners 4.5\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_4.5\",\n            \"market_id\": \"019a10c2-fde6-7073-bf6e-de6778001071\"\n        },\n        {\n            \"market\": \"Away Total Corners 5.5\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_5.5\",\n            \"market_id\": \"019a10c3-051c-7193-9688-cf0f2cb343d7\"\n        },\n        {\n            \"market\": \"Away Total Corners 6.5\",\n            \"market_key\": \"AWAY_TOTAL_CORNERS_6.5\",\n            \"market_id\": \"019a10c3-0c42-70bd-a98c-d44b1517403f\"\n        },\n        {\n            \"market\": \"Both Teams To Score\",\n            \"market_key\": \"BOTH_TEAMS_TO_SCORE\",\n            \"market_id\": \"019a07c5-5e0d-71e2-8a53-fe17ee6f152d\"\n        },\n        {\n            \"market\": \"Cards Over/Under 1.5\",\n            \"market_key\": \"OVER/UNDER_1.5_CARDS\",\n            \"market_id\": \"019a1130-98d4-7265-9638-e256450e3153\"\n        },\n        {\n            \"market\": \"Cards Over/Under 2.5\",\n            \"market_key\": \"OVER/UNDER_2.5_CARDS\",\n            \"market_id\": \"019a1130-9ab6-70a9-95f7-f22e7fb46d4e\"\n        },\n        {\n            \"market\": \"Cards Over/Under 3.5\",\n            \"market_key\": \"OVER/UNDER_3.5_CARDS\",\n            \"market_id\": \"019a1130-a975-7247-97c3-0f78a3b3bf2b\"\n        },\n        {\n            \"market\": \"Cards Over/Under 4.5\",\n            \"market_key\": \"OVER/UNDER_4.5_CARDS\",\n            \"market_id\": \"019a1130-9c4a-7094-8933-e0de9c703119\"\n        },\n        {\n            \"market\": \"Cards Over/Under 5.5\",\n            \"market_key\": \"OVER/UNDER_5.5_CARDS\",\n            \"market_id\": \"019a1130-9b72-7311-8d28-8d2ccac347dd\"\n        },\n        {\n            \"market\": \"Cards Over/Under 6.5\",\n            \"market_key\": \"OVER/UNDER_6.5_CARDS\",\n            \"market_id\": \"019a1130-9e67-7195-9439-853bd20447c2\"\n        },\n        {\n            \"market\": \"Corners Over/Under 10.5\",\n            \"market_key\": \"TOTAL_CORNERS_10.5\",\n            \"market_id\": \"019a10c3-0445-738e-bc19-e6ef705a927c\"\n        },\n        {\n            \"market\": \"Corners Over/Under 11.5\",\n            \"market_key\": \"TOTAL_CORNERS_11.5\",\n            \"market_id\": \"019a10c3-1018-72b7-94f2-f423b01bb9f3\"\n        },\n        {\n            \"market\": \"Corners Over/Under 12.5\",\n            \"market_key\": \"TOTAL_CORNERS_12.5\",\n            \"market_id\": \"019a10c3-0608-71dd-8fdb-c795c01302c2\"\n        },\n        {\n            \"market\": \"Corners Over/Under 13.5\",\n            \"market_key\": \"TOTAL_CORNERS_13.5\",\n            \"market_id\": \"019a10c3-0a78-7304-a284-851823b6dea6\"\n        },\n        {\n            \"market\": \"Corners Over/Under 14.5\",\n            \"market_key\": \"TOTAL_CORNERS_14.5\",\n            \"market_id\": \"019a10c2-fc4d-70cc-95fd-f739cfaf034a\"\n        },\n        {\n            \"market\": \"Corners Over/Under 15.5\",\n            \"market_key\": \"TOTAL_CORNERS_15.5\",\n            \"market_id\": \"019a10c3-0854-70e4-8037-3d277840c903\"\n        },\n        {\n            \"market\": \"Corners Over/Under 7.5\",\n            \"market_key\": \"TOTAL_CORNERS_7.5\",\n            \"market_id\": \"019a10c3-0dac-7064-ad4b-a9cb0fed782e\"\n        },\n        {\n            \"market\": \"Corners Over/Under 8.5\",\n            \"market_key\": \"TOTAL_CORNERS_8.5\",\n            \"market_id\": \"019a10c2-fedd-71cc-9634-680af21f31f7\"\n        },\n        {\n            \"market\": \"Corners Over/Under 9.5\",\n            \"market_key\": \"TOTAL_CORNERS_9.5\",\n            \"market_id\": \"019a10c3-09b2-725f-86f8-4c6d7e4cdb2e\"\n        },\n        {\n            \"market\": \"Double Chance\",\n            \"market_key\": \"DOUBLE_CHANCE\",\n            \"market_id\": \"019a07c5-5f92-72bf-bb06-f08ffb2bf959\"\n        },\n        {\n            \"market\": \"Draw No Bet\",\n            \"market_key\": \"DRAW_NO_BET\",\n            \"market_id\": \"019a07c5-62ab-71b7-ba33-11b51c876aba\"\n        },\n        {\n            \"market\": \"First Goalscorer\",\n            \"market_key\": \"FIRST_GOAL_SCORER\",\n            \"market_id\": \"019a07c5-5401-71a2-acf8-ccedf9201f55\"\n        },\n        {\n            \"market\": \"Goalkeeper To Make 1 Or More Saves\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_1_OR_MORE_SAVES\",\n            \"market_id\": \"019a15cd-bb2e-72a1-81c3-cbd9ab35474d\"\n        },\n        {\n            \"market\": \"Goalkeeper To Make 2 Or More Saves\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_2_OR_MORE_SAVES\",\n            \"market_id\": \"019a15cd-bbd4-7228-81b3-0f9203610d39\"\n        },\n        {\n            \"market\": \"Goalkeeper To Make 3 Or More Saves\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_3_OR_MORE_SAVES\",\n            \"market_id\": \"019a15cd-bb79-73cd-877d-ea798160de9b\"\n        },\n        {\n            \"market\": \"Goalkeeper To Make 4 Or More Saves\",\n            \"market_key\": \"GOALKEEPER_TO_MAKE_4_OR_MORE_SAVES\",\n            \"market_id\": \"019a15cd-bc39-7063-ab27-6279e21d04b9\"\n        },\n        {\n            \"market\": \"Home Team Over/Under 0.5\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_0.5_GOALS\",\n            \"market_id\": \"019a07c5-61ba-7047-8b68-f0ce1434d1b6\"\n        },\n        {\n            \"market\": \"Home Team Over/Under 1.5\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_1.5_GOALS\",\n            \"market_id\": \"019a07c5-5ef7-7086-a2e7-3041984fa8df\"\n        },\n        {\n            \"market\": \"Home Team Over/Under 2.5\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_2.5_GOALS\",\n            \"market_id\": \"019a07c5-6090-7004-8f6b-c0564c45a40f\"\n        },\n        {\n            \"market\": \"Home Team Over/Under 3.5\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_3.5_GOALS\",\n            \"market_id\": \"019a07c5-535a-715d-90e1-13dca6b2a42e\"\n        },\n        {\n            \"market\": \"Home Team Over/Under 4.5\",\n            \"market_key\": \"HOME_TEAM_OVER/UNDER_4.5_GOALS\",\n            \"market_id\": \"019a07c5-5ea6-7002-8e51-67c564a2f14a\"\n        },\n        {\n            \"market\": \"Home Team Total Cards 0.5\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_0.5\",\n            \"market_id\": \"019a1130-a048-7078-b17d-06c4f697cb7b\"\n        },\n        {\n            \"market\": \"Home Team Total Cards 1.5\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_1.5\",\n            \"market_id\": \"019a1130-9dbb-716d-a034-ed38a3e83602\"\n        },\n        {\n            \"market\": \"Home Team Total Cards 2.5\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_2.5\",\n            \"market_id\": \"019a1130-9a42-7392-aaed-b104f6c107b6\"\n        },\n        {\n            \"market\": \"Home Team Total Cards 3.5\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_3.5\",\n            \"market_id\": \"019a1130-97cb-7142-85a9-8a782568b4d1\"\n        },\n        {\n            \"market\": \"Home Team Total Cards 4.5\",\n            \"market_key\": \"HOME_TEAM_TOTAL_CARDS_4.5\",\n            \"market_id\": \"019a1130-99e5-702d-a623-ed817a21e4f2\"\n        },\n        {\n            \"market\": \"Home Total Corners 2.5\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_2.5\",\n            \"market_id\": \"019a10c3-079c-73d7-a72d-22b88697002d\"\n        },\n        {\n            \"market\": \"Home Total Corners 3.5\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_3.5\",\n            \"market_id\": \"019a10c3-0e71-700d-8c9f-41480b012578\"\n        },\n        {\n            \"market\": \"Home Total Corners 4.5\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_4.5\",\n            \"market_id\": \"019a10c3-06e8-738e-80be-99bbf0550dcd\"\n        },\n        {\n            \"market\": \"Home Total Corners 5.5\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_5.5\",\n            \"market_id\": \"019a10c3-0f5c-7016-8092-039c6fdc3fb2\"\n        },\n        {\n            \"market\": \"Home Total Corners 6.5\",\n            \"market_key\": \"HOME_TOTAL_CORNERS_6.5\",\n            \"market_id\": \"019a10c3-091e-70bd-b513-6bfa5b7420dc\"\n        },\n        {\n            \"market\": \"Match Odds\",\n            \"market_key\": \"MATCH_ODDS\",\n            \"market_id\": \"019a07c5-60f1-7117-9837-0b8275631148\"\n        },\n        {\n            \"market\": \"Over/Under 1.5 Goals\",\n            \"market_key\": \"OVER_UNDER_15\",\n            \"market_id\": \"019a07c5-61f4-7389-810a-1eb383af0b57\"\n        },\n        {\n            \"market\": \"Over/Under 2.5 Goals\",\n            \"market_key\": \"OVER_UNDER_25\",\n            \"market_id\": \"019a07c5-603f-731d-9cc1-2217ff907aed\"\n        },\n        {\n            \"market\": \"Over/Under 3.5 Goals\",\n            \"market_key\": \"OVER_UNDER_35\",\n            \"market_id\": \"019a07c5-5d38-706e-b3f7-64a6f1d4fbc7\"\n        },\n        {\n            \"market\": \"Over/Under 4.5 Goals\",\n            \"market_key\": \"OVER_UNDER_45\",\n            \"market_id\": \"019a07c5-5d99-73fa-b497-220b57aaa96a\"\n        },\n        {\n            \"market\": \"Over/Under 5.5 Goals\",\n            \"market_key\": \"OVER_UNDER_55\",\n            \"market_id\": \"019a07c5-5c7c-7255-975c-739393506b18\"\n        },\n        {\n            \"market\": \"Player To Be Fouled 1 Or More Times\",\n            \"market_key\": \"PLAYER_TO_WIN_1_OR_MORE_FOULS\",\n            \"market_id\": \"019a15cf-7d8a-729e-ac2e-6125eedc30fe\"\n        },\n        {\n            \"market\": \"Player To Be Fouled 2 Or More Times\",\n            \"market_key\": \"PLAYER_TO_WIN_2_OR_MORE_FOULS\",\n            \"market_id\": \"019a15cf-6fde-72cb-82bf-075cfcd39bc5\"\n        },\n        {\n            \"market\": \"Player To Be Fouled 3 Or More Times\",\n            \"market_key\": \"PLAYER_TO_WIN_3_OR_MORE_FOULS\",\n            \"market_id\": \"019a15cf-76e4-70f6-a435-fea4387b0985\"\n        },\n        {\n            \"market\": \"Player To Commit 1 Or More Fouls\",\n            \"market_key\": \"PLAYER_TO_COMMIT_1_OR_MORE_FOULS\",\n            \"market_id\": \"019a15b2-26cc-7340-a1c2-57705156ae1e\"\n        },\n        {\n            \"market\": \"Player To Commit 2 Or More Fouls\",\n            \"market_key\": \"PLAYER_TO_COMMIT_2_OR_MORE_FOULS\",\n            \"market_id\": \"019a15b2-311a-719f-9948-062f2e491bba\"\n        },\n        {\n            \"market\": \"Player To Commit 3 Or More Fouls\",\n            \"market_key\": \"PLAYER_TO_COMMIT_3_OR_MORE_FOULS\",\n            \"market_id\": \"019a15b2-4fde-709f-8322-c05eaac961ea\"\n        },\n        {\n            \"market\": \"Player To Have 1 Or More Shots\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS\",\n            \"market_id\": \"019a15b2-8151-70bd-9465-a766427c9e43\"\n        },\n        {\n            \"market\": \"Player To Have 1 Or More Shots On Target\",\n            \"market_key\": \"PLAYER_TO_HAVE_1_OR_MORE_SHOTS_ON_TARGET\",\n            \"market_id\": \"019a15b2-47a3-732b-b09a-f7dcdc8bcaff\"\n        },\n        {\n            \"market\": \"Player To Have 2 Or More Shots\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS\",\n            \"market_id\": \"019a15b2-3581-7294-b8d1-ceb440b3818e\"\n        },\n        {\n            \"market\": \"Player To Have 2 Or More Shots On Target\",\n            \"market_key\": \"PLAYER_TO_HAVE_2_OR_MORE_SHOTS_ON_TARGET\",\n            \"market_id\": \"019a15b2-5b76-733b-951f-fb12ad7edb77\"\n        },\n        {\n            \"market\": \"Player To Have 3 Or More Shots\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS\",\n            \"market_id\": \"019a15b2-7095-7381-9bc6-1e230f33e8b1\"\n        },\n        {\n            \"market\": \"Player To Have 3 Or More Shots On Target\",\n            \"market_key\": \"PLAYER_TO_HAVE_3_OR_MORE_SHOTS_ON_TARGET\",\n            \"market_id\": \"019a15b2-6630-70d8-a8e1-98042b5eec7b\"\n        },\n        {\n            \"market\": \"Player To Have 4 Or More Shots\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS\",\n            \"market_id\": \"019a15b2-94f4-7127-8669-5e8c4f4eb34a\"\n        },\n        {\n            \"market\": \"Player To Have 4 Or More Shots On Target\",\n            \"market_key\": \"PLAYER_TO_HAVE_4_OR_MORE_SHOTS_ON_TARGET\",\n            \"market_id\": \"019a15b2-a336-727c-a4f3-95823d08c3c1\"\n        },\n        {\n            \"market\": \"Player To Have 5 Or More Shots\",\n            \"market_key\": \"PLAYER_TO_HAVE_5_OR_MORE_SHOTS\",\n            \"market_id\": \"019a15b2-3e34-734e-88d5-c100d80c8d37\"\n        },\n        {\n            \"market\": \"Shown a Card\",\n            \"market_key\": \"TO_BE_BOOKED\",\n            \"market_id\": \"019a1130-a0f7-7183-a323-9e37222d9558\"\n        },\n        {\n            \"market\": \"To Score Or Assist\",\n            \"market_key\": \"TO_SCORE_OR_ASSIST\",\n            \"market_id\": \"019a1596-5244-722b-8448-8503fd3900e8\"\n        }\n    ],\n    \"meta\": {\n        \"results\": 78,\n        \"filtering\": {\n            \"id\": \"9fae4361-7554-45fc-ba79-4fe586eea353\"\n        }\n    }\n}"}],"_postman_id":"8c1af865-8bf0-4882-8f81-acb426c526b7"},{"name":"selections-list","event":[{"listen":"test","script":{"id":"c1032b95-a0e3-4c7c-ad60-46bb915d6fc7","exec":["pm.test('Response time is less than 4000ms', function () {","    pm.expect(pm.response.responseTime).to.be.below(4000);","});","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response schema is valid\", function () {","    const schema = {","        type: \"object\",","        required: [\"data\", \"meta\"],","        properties: {","            data: {","                type: \"array\",","                items: {","                    type: \"object\",","                    required: [\"selection_id\", \"selection\", \"sport\", \"team_association\", \"odds\"],","                    properties: {","                        selection_id: { type: \"string\" },","                        selection: { type: \"string\" },","                        sport: { type: \"string\" },","                        team_association: { type: [\"string\", \"null\"] },","                        odds: {","                            type: \"object\",","                            additionalProperties: { type: \"number\" }","                        }","                    }","                }","            },","            meta: {","                type: \"object\",","                required: [\"results\", \"filtering\", \"debug\"],","                properties: {","                    results: { type: \"number\" },","                    filtering: {","                        type: \"object\",","                        properties: {","                            id: { type: \"string\" }","                        }","                    },","                    debug: { type: \"boolean\" }","                }","            }","        }","    };","    pm.response.to.have.jsonSchema(schema);","});"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"f0d31076-332f-49b6-9e88-0b622376f553","exec":["const baseUrl = pm.environment.get(\"base_url\");\r","const apiKey = pm.environment.get(\"api_key\");\r","\r","const fetchFixturesList = () => new Promise((resolve, reject) => {\r","    pm.sendRequest({\r","        url: baseUrl + \"/fixtures-list?timezone=Europe/London&sport=soccer&day=0\",\r","        method: \"GET\",\r","        header: {\r","            \"x-api-key\": apiKey\r","        }\r","    }, function (err, res) {\r","        if (err) {\r","            console.error(\"Error fetching fixtures list:\", err);\r","            return reject(err);\r","        }\r","\r","        const jsonData = res.json();\r","        console.log(\"fixtures-list status:\", res.code);\r","        console.log(\"fixtures-list response:\", JSON.stringify(jsonData).substring(0, 200));\r","\r","        if (jsonData && jsonData.data && jsonData.data && jsonData.data.length > 0) {\r","            resolve(jsonData.data[0].fixture_id);\r","        } else {\r","            console.error(\"No fixtures found in response\");\r","            console.log(\"Full response:\", JSON.stringify(jsonData));\r","            reject(new Error(\"No fixtures found in response\"));\r","        }\r","    });\r","});\r","\r","const fetchMarketsList = (fixtureId) => new Promise((resolve, reject) => {\r","    pm.sendRequest({\r","        url: baseUrl + \"/markets-list/\" + fixtureId + \"?sport=sport_event\",\r","        method: \"GET\",\r","        header: {\r","            \"x-api-key\": apiKey\r","        }\r","    }, function (err, res) {\r","        if (err) {\r","            console.error(\"Error fetching markets-list:\", err);\r","            return reject(err);\r","        }\r","\r","        const jsonData = res.json();\r","        console.log(\"markets-list status:\", res.code);\r","        console.log(\"markets-list response:\", JSON.stringify(jsonData).substring(0, 200));\r","\r","        if (jsonData && jsonData.data && jsonData.data.length > 0) {\r","            resolve(jsonData.data[0].market_id);\r","        } else {\r","            console.error(\"No markets found in response\");\r","            console.log(\"Full response:\", JSON.stringify(jsonData));\r","            reject(new Error(\"No markets found in response\"));\r","        }\r","    });\r","});\r","\r","const fixtureId = await fetchFixturesList();\r","const marketId = await fetchMarketsList(fixtureId);\r","\r","pm.environment.set(\"id\", marketId);\r","pm.variables.set(\"id\", marketId);\r","\r","console.log(\"Set id to:\", marketId);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"b27d063c-9042-417f-ac89-0a5429e2feff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/selections-list/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["selections-list",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>Market id</p>\n","type":"text/plain"},"type":"any","value":"019cd8ce-4097-701d-953a-26446a367191","key":"id"}]}},"response":[{"id":"9a178019-79bf-4319-9d68-56f086f47e65","name":"selections-list","originalRequest":{"method":"GET","header":[],"url":{"raw":"/selections-list/:id","host":[""],"path":["selections-list",":id"],"variable":[{"key":"id","value":"019a1596-4835-70b8-b3ab-806d7068cebe"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 15:04:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"5644"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"4db3d708-ef5e-4ca2-91ca-5f1e70591290"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9RKKFcOjoEER-Q="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb9573-516f9c4f3c85bacd5cb812a7;Parent=3f14d34d36202eaf;Sampled=0;Lineage=1:14610b2d:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"selection_id\": \"019a1596-483e-7370-97d4-70db5d84a8ec\",\n            \"selection\": \"Phil Foden\",\n            \"odds\": {\n                \"paddypower\": 3.25,\n                \"skybet\": 3\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4890-71b0-b97d-a2eeec6e4d6d\",\n            \"selection\": \"Oscar Bobb\",\n            \"odds\": {\n                \"paddypower\": 3.75,\n                \"skybet\": 3.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-48d9-713d-ad01-5c398bd86ab6\",\n            \"selection\": \"Savinho\",\n            \"odds\": {\n                \"paddypower\": 3.75,\n                \"skybet\": 3.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-493b-70d6-a1cc-5f9272b7bdf6\",\n            \"selection\": \"Omar Marmoush\",\n            \"odds\": {\n                \"paddypower\": 4.2,\n                \"skybet\": 3.75\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-497b-7371-af26-5a47e5749ae3\",\n            \"selection\": \"Bernardo Silva\",\n            \"odds\": {\n                \"paddypower\": 4.33,\n                \"skybet\": 3.75\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-490a-704d-8423-7e1356df1819\",\n            \"selection\": \"Jeremy Doku\",\n            \"odds\": {\n                \"paddypower\": 4.33,\n                \"skybet\": 3.75\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-49ef-7021-bd64-1549f66b376c\",\n            \"selection\": \"Rayan Ait-Nouri\",\n            \"odds\": {\n                \"paddypower\": 4.33,\n                \"skybet\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-49ae-70e2-be3a-b8ac2ecba0bd\",\n            \"selection\": \"Rayan Cherki\",\n            \"odds\": {\n                \"paddypower\": 4.33,\n                \"skybet\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4a7f-7074-8e9a-3ed9cf5ea206\",\n            \"selection\": \"Bradley Burrowes\",\n            \"odds\": {\n                \"paddypower\": 4.5,\n                \"skybet\": 4.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4a22-7230-8458-a40a04eb0431\",\n            \"selection\": \"Evann Guessand\",\n            \"odds\": {\n                \"paddypower\": 4.5,\n                \"skybet\": 4\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4b5c-7315-8c4b-5c821b0e9e92\",\n            \"selection\": \"Divine Mukasa\",\n            \"odds\": {\n                \"paddypower\": 5,\n                \"skybet\": 4.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4acb-704e-86ce-42e807fec18c\",\n            \"selection\": \"Erling Haaland\",\n            \"odds\": {\n                \"paddypower\": 5,\n                \"skybet\": 4.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4f21-70c4-bcd5-4e8e31b858d3\",\n            \"selection\": \"John McGinn\",\n            \"odds\": {\n                \"paddypower\": 5,\n                \"skybet\": 4.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4b17-70ca-8852-563a55fd3c2f\",\n            \"selection\": \"Matheus Nunes\",\n            \"odds\": {\n                \"paddypower\": 5,\n                \"skybet\": 4.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4ba3-726b-8898-e9cadc42e10f\",\n            \"selection\": \"Tijjani Reijnders\",\n            \"odds\": {\n                \"paddypower\": 5,\n                \"skybet\": 4.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4bd1-7044-ba2f-a38af142d93a\",\n            \"selection\": \"Harvey Elliott\",\n            \"odds\": {\n                \"paddypower\": 5.5,\n                \"skybet\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4ce1-70c8-a851-5cc51373fa65\",\n            \"selection\": \"Jadon Sancho\",\n            \"odds\": {\n                \"paddypower\": 5.5,\n                \"skybet\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4c53-702d-8417-c5f3eafef7f8\",\n            \"selection\": \"Morgan Rogers\",\n            \"odds\": {\n                \"paddypower\": 5.5,\n                \"skybet\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4c15-7301-83ab-37874f46b5b3\",\n            \"selection\": \"Nico Gonzalez\",\n            \"odds\": {\n                \"paddypower\": 5.5,\n                \"skybet\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4c7b-7316-a94b-82ddcbd9a68a\",\n            \"selection\": \"Nico O'Reilly\",\n            \"odds\": {\n                \"paddypower\": 5.5,\n                \"skybet\": 5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4cad-7190-88ef-b2ceed00775a\",\n            \"selection\": \"Ollie Watkins\",\n            \"odds\": {\n                \"paddypower\": 6,\n                \"skybet\": 5.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4d41-7384-bee2-fb1a64d2c52a\",\n            \"selection\": \"Emiliano Buendia\",\n            \"odds\": {\n                \"paddypower\": 6.5,\n                \"skybet\": 5.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4d0b-72c3-805c-266b695a5a80\",\n            \"selection\": \"Mateo Kovacic\",\n            \"odds\": {\n                \"paddypower\": 6.5,\n                \"skybet\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4da4-72e7-b01b-515c03e1d7f3\",\n            \"selection\": \"Rodri\",\n            \"odds\": {\n                \"paddypower\": 6.5,\n                \"skybet\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4ddc-721d-9016-84a745722778\",\n            \"selection\": \"Ross Barkley\",\n            \"odds\": {\n                \"paddypower\": 6.5,\n                \"skybet\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4d6b-733f-9463-5c1d85bb8fcd\",\n            \"selection\": \"Donyell Malen\",\n            \"odds\": {\n                \"paddypower\": 7,\n                \"skybet\": 6\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4e52-700e-b41b-f7c5d6f2f08a\",\n            \"selection\": \"Rico Lewis\",\n            \"odds\": {\n                \"paddypower\": 8,\n                \"skybet\": 7\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4e13-7167-9f8c-0969b690566b\",\n            \"selection\": \"Ian Maatsen\",\n            \"odds\": {\n                \"paddypower\": 8.5,\n                \"skybet\": 7.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4ee1-73de-ba71-2a0c03a65c06\",\n            \"selection\": \"Lucas Digne\",\n            \"odds\": {\n                \"paddypower\": 8.5,\n                \"skybet\": 7.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4e9d-72a4-92f1-dd4b5debd418\",\n            \"selection\": \"Matty Cash\",\n            \"odds\": {\n                \"paddypower\": 9,\n                \"skybet\": 8\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4f55-720f-9135-7e38db7a015a\",\n            \"selection\": \"Josko Gvardiol\",\n            \"odds\": {\n                \"paddypower\": 9.5,\n                \"skybet\": 8.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4f96-73cc-abb6-2b96aee9bdde\",\n            \"selection\": \"Boubacar Kamara\",\n            \"odds\": {\n                \"paddypower\": 11,\n                \"skybet\": 9.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-4fd2-703a-b517-36c5f94bb2c7\",\n            \"selection\": \"Lamare Bogarde\",\n            \"odds\": {\n                \"paddypower\": 11,\n                \"skybet\": 9.5\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5005-721d-a928-45db54cbbc94\",\n            \"selection\": \"Victor Lindelof\",\n            \"odds\": {\n                \"paddypower\": 12,\n                \"skybet\": 10\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5058-73d9-87b9-9cbe46e2ae5e\",\n            \"selection\": \"Ezri Konsa\",\n            \"odds\": {\n                \"paddypower\": 14,\n                \"skybet\": 12\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-509a-707a-bda9-9cfbd5997eca\",\n            \"selection\": \"John Stones\",\n            \"odds\": {\n                \"paddypower\": 15,\n                \"skybet\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-50ce-72a1-a73f-655f8ed916bf\",\n            \"selection\": \"Amadou Onana\",\n            \"odds\": {\n                \"paddypower\": 17,\n                \"skybet\": 13\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5119-70e9-902b-5ae694cdcf83\",\n            \"selection\": \"Abdukodir Khusanov\",\n            \"odds\": {\n                \"paddypower\": 20,\n                \"skybet\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-5156-70c8-bff2-fdce1c18017e\",\n            \"selection\": \"Nathan Ake\",\n            \"odds\": {\n                \"paddypower\": 20,\n                \"skybet\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-519f-72f4-8e2e-204fa0844fd0\",\n            \"selection\": \"Ruben Dias\",\n            \"odds\": {\n                \"paddypower\": 20,\n                \"skybet\": 15\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-51d5-71b8-aa18-54ebedbc5ebb\",\n            \"selection\": \"Pau Torres\",\n            \"odds\": {\n                \"paddypower\": 21,\n                \"skybet\": 17\n            }\n        },\n        {\n            \"selection_id\": \"019a1596-520b-704b-b419-470e6c3e7957\",\n            \"selection\": \"Tyrone Mings\",\n            \"odds\": {\n                \"paddypower\": 26,\n                \"skybet\": 21\n            }\n        }\n    ],\n    \"meta\": {\n        \"results\": 42,\n        \"filtering\": {\n            \"id\": \"019a1596-4835-70b8-b3ab-806d7068cebe\"\n        }\n    }\n}"}],"_postman_id":"b27d063c-9042-417f-ac89-0a5429e2feff"},{"name":"update-horse","event":[{"listen":"test","script":{"id":"ce37d9d3-e397-4753-b7ed-58b88a2b87f9","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"fcf6dde8-05fb-4e6c-a38b-cc9a1f475876","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"action\": \"increment\"\n}","options":{"raw":{"language":"json"}}},"url":"/update-horse/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"01dac223-22a7-4d39-b770-dce8697e6a18","id":"01dac223-22a7-4d39-b770-dce8697e6a18","name":"ABC Core","type":"collection"}},"urlObject":{"path":["update-horse",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"9abe757a-7e5f-4b79-be85-72e9d66780c9","key":"id"}]}},"response":[{"id":"e4e571e7-5038-4c1c-af41-620b30f65f29","name":"update-horse","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"action\": \"increment\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/update-horse/:id","host":[""],"path":["update-horse",":id"],"variable":[{"key":"id","value":"9abe757a-7e5f-4b79-be85-72e9d66780c9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Date","value":"Fri, 24 Oct 2025 15:14:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"50"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"33476d93-516d-4182-bd43-97eb90008259"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amz-apigw-id","value":"S9SsbFTxDoEEhgw="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68fb97e8-278aaa38793b0e2977bc5df9;Parent=00e28dbf05dc0399;Sampled=0;Lineage=1:c69f9bb3:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Popularity incremented successfully\"\n}"}],"_postman_id":"fcf6dde8-05fb-4e6c-a38b-cc9a1f475876"}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"9e214228-c1f5-4de7-8e58-01e12513adec","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"32fd8f33-62ab-454f-b5ef-c2e277c6c3ae","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"base_url","value":""},{"key":"api_key","value":""},{"key":"fixture_id","value":""}]}