From 7cb49c6a495e72075b8509c4d9925bfeabac87eb Mon Sep 17 00:00:00 2001 From: AdrianoDev Date: Sat, 22 Aug 2026 08:29:53 +0200 Subject: [PATCH] longevity: l'oracolo del motore e la griglia di riferimento --- .../riferimento/genera-riferimento.py | 113 + tests/longevity/riferimento/riferimento.json | 38459 ++++++++++++++++ 2 files changed, 38572 insertions(+) create mode 100644 tests/longevity/riferimento/genera-riferimento.py create mode 100644 tests/longevity/riferimento/riferimento.json diff --git a/tests/longevity/riferimento/genera-riferimento.py b/tests/longevity/riferimento/genera-riferimento.py new file mode 100644 index 0000000..9df854d --- /dev/null +++ b/tests/longevity/riferimento/genera-riferimento.py @@ -0,0 +1,113 @@ +#!/usr/bin/env python3 +""" +Esegue il motore del cliente su una griglia fitta di ingressi e scrive i risultati +in riferimento.json. È il metro contro cui si misura il porting in TypeScript: +non serve a provare che l'oracolo è giusto, ma che il nostro porting gli è fedele. + +Uso: python3 tests/longevity/riferimento/genera-riferimento.py +""" +import json +import pathlib +import sys + +QUI = pathlib.Path(__file__).parent +sys.path.insert(0, str(QUI)) + +import isl_scoring_engine as m + +casi = [] + + +def prova(fn_nome, *args): + """Esegue una funzione dell'oracolo e registra ingressi e uscita.""" + fn = getattr(m, fn_nome) + casi.append({"fn": fn_nome, "args": list(args), "atteso": fn(*args)}) + + +def griglia(inizio, fine, passo): + """Valori da inizio a fine compreso, con arrotondamento pulito.""" + n, v = [], inizio + while v <= fine + 1e-9: + n.append(round(v, 4)) + v += passo + return n + + +# --- curve generiche del questionario: tutto il dominio, non un campione --- +for v in griglia(0, 14, 0.5): + prova("score_bell_curve", v, 4, 7, 9, 12) # q_ore_sonno + prova("score_decreasing", v, 0, 7) # q_caffeina e gemelle + prova("score_decreasing", v, 7, 14) # q_alcol_life: la soglia voluta +for v in griglia(0, 10, 0.5): + prova("score_direct_x10", v) +for v in griglia(0, 7, 0.5): + prova("score_increasing_plateau", v, 0, 4) + +# --- composizione corporea: attorno ai confini delle bande --- +for sesso in ("M", "F"): + for v in griglia(0, 45, 0.5): + prova("score_fat_percent", v, sesso) + for v in griglia(20, 60, 0.5): + prova("score_muscle_percent", v, sesso) + for v in griglia(0.5, 1.3, 0.01): + prova("score_whr", v, sesso) + +# --- cardio --- +for v in griglia(85, 100, 1): + prova("score_spo2", v) +for sbp in griglia(90, 200, 5): + for dbp in griglia(50, 120, 5): + prova("score_blood_pressure", sbp, dbp) +for v in griglia(0, 40, 1): + prova("score_hrr", v) +for sesso in ("M", "F"): + for eta in griglia(20, 75, 5): + for v in griglia(15, 70, 2.5): + prova("score_vo2max", v, eta, sesso) +for v in griglia(120, 200, 5): + prova("vo2max_from_step_test", v, "M") + prova("vo2max_from_step_test", v, "F") +for v in griglia(100, 300, 10): + prova("vo2max_from_mutt", v) +for w in griglia(50, 200, 10): + prova("vo2max_from_milfit", w, 75) +prova("vo2max_from_2km_walk", 15.5, 130, 40, 24) + +# --- forza --- +for sesso in ("M", "F"): + for eta in griglia(25, 75, 5): + for v in griglia(10, 70, 2.5): + prova("score_handgrip", v, eta, sesso) + for v in griglia(0, 60, 2): + prova("score_pushup", v, eta, sesso) + for v in griglia(0, 250, 5): + prova("score_plank", v, sesso) + for v in griglia(0, 120, 5): + prova("score_flexed_arm_hang", v, sesso) + for v in griglia(0, 60, 2): + prova("score_sit_to_stand_1min", v, 40, sesso) + for v in griglia(-30, 30, 1): + prova("score_sit_and_reach", v, sesso) + for eta in griglia(25, 75, 5): + for v in griglia(-30, 20, 2): + prova("score_back_scratch", v, eta, sesso) + +# --- sollevamenti sui rapporti col peso corporeo --- +for sesso in ("M", "F"): + for carico in griglia(20, 200, 10): + prova("score_bw_ratio_lift", carico, 80, 5, m.TIERS_BENCH_M, m.TIERS_BENCH_F, sesso) + prova("score_bw_ratio_lift", carico, 80, 5, m.TIERS_SQUAT_M, m.TIERS_SQUAT_F, sesso) + prova("score_bw_ratio_lift", carico, 80, 5, m.TIERS_ROW_M, m.TIERS_ROW_F, sesso) + +# --- stabilità --- +for v in griglia(0, 30, 1): + prova("score_flamingo", v) +for a in griglia(0, 180, 10): + prova("score_shoulder_mobility_wt", a, a) + +uscita = QUI / "riferimento.json" +uscita.write_text(json.dumps( + {"generato_da": "isl_scoring_engine.py", "casi": casi}, + indent=1, ensure_ascii=False, +)) +print(f"{len(casi)} casi scritti in {uscita}") diff --git a/tests/longevity/riferimento/riferimento.json b/tests/longevity/riferimento/riferimento.json new file mode 100644 index 0000000..dcad11a --- /dev/null +++ b/tests/longevity/riferimento/riferimento.json @@ -0,0 +1,38459 @@ +{ + "generato_da": "isl_scoring_engine.py", + "casi": [ + { + "fn": "score_bell_curve", + "args": [ + 0, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 0, + 0, + 7 + ], + "atteso": 100 + }, + { + "fn": "score_decreasing", + "args": [ + 0, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 0.5, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 0.5, + 0, + 7 + ], + "atteso": 92.9 + }, + { + "fn": "score_decreasing", + "args": [ + 0.5, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 1.0, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 1.0, + 0, + 7 + ], + "atteso": 85.7 + }, + { + "fn": "score_decreasing", + "args": [ + 1.0, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 1.5, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 1.5, + 0, + 7 + ], + "atteso": 78.6 + }, + { + "fn": "score_decreasing", + "args": [ + 1.5, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 2.0, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 2.0, + 0, + 7 + ], + "atteso": 71.4 + }, + { + "fn": "score_decreasing", + "args": [ + 2.0, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 2.5, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 2.5, + 0, + 7 + ], + "atteso": 64.3 + }, + { + "fn": "score_decreasing", + "args": [ + 2.5, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 3.0, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 3.0, + 0, + 7 + ], + "atteso": 57.1 + }, + { + "fn": "score_decreasing", + "args": [ + 3.0, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 3.5, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 3.5, + 0, + 7 + ], + "atteso": 50.0 + }, + { + "fn": "score_decreasing", + "args": [ + 3.5, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 4.0, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 4.0, + 0, + 7 + ], + "atteso": 42.9 + }, + { + "fn": "score_decreasing", + "args": [ + 4.0, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 4.5, + 4, + 7, + 9, + 12 + ], + "atteso": 25.0 + }, + { + "fn": "score_decreasing", + "args": [ + 4.5, + 0, + 7 + ], + "atteso": 35.7 + }, + { + "fn": "score_decreasing", + "args": [ + 4.5, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 5.0, + 4, + 7, + 9, + 12 + ], + "atteso": 40.0 + }, + { + "fn": "score_decreasing", + "args": [ + 5.0, + 0, + 7 + ], + "atteso": 28.6 + }, + { + "fn": "score_decreasing", + "args": [ + 5.0, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 5.5, + 4, + 7, + 9, + 12 + ], + "atteso": 55.0 + }, + { + "fn": "score_decreasing", + "args": [ + 5.5, + 0, + 7 + ], + "atteso": 21.4 + }, + { + "fn": "score_decreasing", + "args": [ + 5.5, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 6.0, + 4, + 7, + 9, + 12 + ], + "atteso": 70.0 + }, + { + "fn": "score_decreasing", + "args": [ + 6.0, + 0, + 7 + ], + "atteso": 14.3 + }, + { + "fn": "score_decreasing", + "args": [ + 6.0, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 6.5, + 4, + 7, + 9, + 12 + ], + "atteso": 85.0 + }, + { + "fn": "score_decreasing", + "args": [ + 6.5, + 0, + 7 + ], + "atteso": 7.1 + }, + { + "fn": "score_decreasing", + "args": [ + 6.5, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 7.0, + 4, + 7, + 9, + 12 + ], + "atteso": 100 + }, + { + "fn": "score_decreasing", + "args": [ + 7.0, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 7.0, + 7, + 14 + ], + "atteso": 100 + }, + { + "fn": "score_bell_curve", + "args": [ + 7.5, + 4, + 7, + 9, + 12 + ], + "atteso": 100 + }, + { + "fn": "score_decreasing", + "args": [ + 7.5, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 7.5, + 7, + 14 + ], + "atteso": 92.9 + }, + { + "fn": "score_bell_curve", + "args": [ + 8.0, + 4, + 7, + 9, + 12 + ], + "atteso": 100 + }, + { + "fn": "score_decreasing", + "args": [ + 8.0, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 8.0, + 7, + 14 + ], + "atteso": 85.7 + }, + { + "fn": "score_bell_curve", + "args": [ + 8.5, + 4, + 7, + 9, + 12 + ], + "atteso": 100 + }, + { + "fn": "score_decreasing", + "args": [ + 8.5, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 8.5, + 7, + 14 + ], + "atteso": 78.6 + }, + { + "fn": "score_bell_curve", + "args": [ + 9.0, + 4, + 7, + 9, + 12 + ], + "atteso": 100 + }, + { + "fn": "score_decreasing", + "args": [ + 9.0, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 9.0, + 7, + 14 + ], + "atteso": 71.4 + }, + { + "fn": "score_bell_curve", + "args": [ + 9.5, + 4, + 7, + 9, + 12 + ], + "atteso": 85.0 + }, + { + "fn": "score_decreasing", + "args": [ + 9.5, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 9.5, + 7, + 14 + ], + "atteso": 64.3 + }, + { + "fn": "score_bell_curve", + "args": [ + 10.0, + 4, + 7, + 9, + 12 + ], + "atteso": 70.0 + }, + { + "fn": "score_decreasing", + "args": [ + 10.0, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 10.0, + 7, + 14 + ], + "atteso": 57.1 + }, + { + "fn": "score_bell_curve", + "args": [ + 10.5, + 4, + 7, + 9, + 12 + ], + "atteso": 55.0 + }, + { + "fn": "score_decreasing", + "args": [ + 10.5, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 10.5, + 7, + 14 + ], + "atteso": 50.0 + }, + { + "fn": "score_bell_curve", + "args": [ + 11.0, + 4, + 7, + 9, + 12 + ], + "atteso": 40.0 + }, + { + "fn": "score_decreasing", + "args": [ + 11.0, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 11.0, + 7, + 14 + ], + "atteso": 42.9 + }, + { + "fn": "score_bell_curve", + "args": [ + 11.5, + 4, + 7, + 9, + 12 + ], + "atteso": 25.0 + }, + { + "fn": "score_decreasing", + "args": [ + 11.5, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 11.5, + 7, + 14 + ], + "atteso": 35.7 + }, + { + "fn": "score_bell_curve", + "args": [ + 12.0, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 12.0, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 12.0, + 7, + 14 + ], + "atteso": 28.6 + }, + { + "fn": "score_bell_curve", + "args": [ + 12.5, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 12.5, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 12.5, + 7, + 14 + ], + "atteso": 21.4 + }, + { + "fn": "score_bell_curve", + "args": [ + 13.0, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 13.0, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 13.0, + 7, + 14 + ], + "atteso": 14.3 + }, + { + "fn": "score_bell_curve", + "args": [ + 13.5, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 13.5, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 13.5, + 7, + 14 + ], + "atteso": 7.1 + }, + { + "fn": "score_bell_curve", + "args": [ + 14.0, + 4, + 7, + 9, + 12 + ], + "atteso": 10 + }, + { + "fn": "score_decreasing", + "args": [ + 14.0, + 0, + 7 + ], + "atteso": 0 + }, + { + "fn": "score_decreasing", + "args": [ + 14.0, + 7, + 14 + ], + "atteso": 0 + }, + { + "fn": "score_direct_x10", + "args": [ + 0 + ], + "atteso": 0 + }, + { + "fn": "score_direct_x10", + "args": [ + 0.5 + ], + "atteso": 5.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 1.0 + ], + "atteso": 10.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 1.5 + ], + "atteso": 15.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 2.0 + ], + "atteso": 20.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 2.5 + ], + "atteso": 25.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 3.0 + ], + "atteso": 30.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 3.5 + ], + "atteso": 35.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 4.0 + ], + "atteso": 40.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 4.5 + ], + "atteso": 45.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 5.0 + ], + "atteso": 50.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 5.5 + ], + "atteso": 55.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 6.0 + ], + "atteso": 60.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 6.5 + ], + "atteso": 65.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 7.0 + ], + "atteso": 70.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 7.5 + ], + "atteso": 75.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 8.0 + ], + "atteso": 80.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 8.5 + ], + "atteso": 85.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 9.0 + ], + "atteso": 90.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 9.5 + ], + "atteso": 95.0 + }, + { + "fn": "score_direct_x10", + "args": [ + 10.0 + ], + "atteso": 100 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 0, + 0, + 4 + ], + "atteso": 20 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 0.5, + 0, + 4 + ], + "atteso": 30.0 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 1.0, + 0, + 4 + ], + "atteso": 40.0 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 1.5, + 0, + 4 + ], + "atteso": 50.0 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 2.0, + 0, + 4 + ], + "atteso": 60.0 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 2.5, + 0, + 4 + ], + "atteso": 70.0 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 3.0, + 0, + 4 + ], + "atteso": 80.0 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 3.5, + 0, + 4 + ], + "atteso": 90.0 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 4.0, + 0, + 4 + ], + "atteso": 100 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 4.5, + 0, + 4 + ], + "atteso": 100 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 5.0, + 0, + 4 + ], + "atteso": 100 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 5.5, + 0, + 4 + ], + "atteso": 100 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 6.0, + 0, + 4 + ], + "atteso": 100 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 6.5, + 0, + 4 + ], + "atteso": 100 + }, + { + "fn": "score_increasing_plateau", + "args": [ + 7.0, + 0, + 4 + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 0, + "M" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 0.5, + "M" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 1.0, + "M" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 1.5, + "M" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 2.0, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 2.5, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 3.0, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 3.5, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 4.0, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 4.5, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 5.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 5.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 6.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 6.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 7.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 7.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 8.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 8.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 9.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 9.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 10.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 10.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 11.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 11.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 12.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 12.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 13.0, + "M" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 13.5, + "M" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 14.0, + "M" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 14.5, + "M" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 15.0, + "M" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 15.5, + "M" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 16.0, + "M" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 16.5, + "M" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 17.0, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 17.5, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 18.0, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 18.5, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 19.0, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 19.5, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 20.0, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 20.5, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 21.0, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 21.5, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 22.0, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 22.5, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 23.0, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 23.5, + "M" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 24.0, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 24.5, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 25.0, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 25.5, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 26.0, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 26.5, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 27.0, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 27.5, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 28.0, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 28.5, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 29.0, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 29.5, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 30.0, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 30.5, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 31.0, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 31.5, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 32.0, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 32.5, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 33.0, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 33.5, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 34.0, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 34.5, + "M" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 35.0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 35.5, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 36.0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 36.5, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 37.0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 37.5, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 38.0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 38.5, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 39.0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 39.5, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 40.0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 40.5, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 41.0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 41.5, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 42.0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 42.5, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 43.0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 43.5, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 44.0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 44.5, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 45.0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_muscle_percent", + "args": [ + 20, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 20.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 21.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 21.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 22.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 22.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 23.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 23.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 24.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 24.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 25.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 25.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 26.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 26.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 27.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 27.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 28.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 28.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 29.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 29.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 30.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 30.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 31.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 31.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 32.0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 32.5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 33.0, + "M" + ], + "atteso": 20.4 + }, + { + "fn": "score_muscle_percent", + "args": [ + 33.5, + "M" + ], + "atteso": 22.5 + }, + { + "fn": "score_muscle_percent", + "args": [ + 34.0, + "M" + ], + "atteso": 24.5 + }, + { + "fn": "score_muscle_percent", + "args": [ + 34.5, + "M" + ], + "atteso": 26.6 + }, + { + "fn": "score_muscle_percent", + "args": [ + 35.0, + "M" + ], + "atteso": 28.6 + }, + { + "fn": "score_muscle_percent", + "args": [ + 35.5, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_muscle_percent", + "args": [ + 36.0, + "M" + ], + "atteso": 32.7 + }, + { + "fn": "score_muscle_percent", + "args": [ + 36.5, + "M" + ], + "atteso": 34.8 + }, + { + "fn": "score_muscle_percent", + "args": [ + 37.0, + "M" + ], + "atteso": 36.8 + }, + { + "fn": "score_muscle_percent", + "args": [ + 37.5, + "M" + ], + "atteso": 38.9 + }, + { + "fn": "score_muscle_percent", + "args": [ + 38.0, + "M" + ], + "atteso": 40.9 + }, + { + "fn": "score_muscle_percent", + "args": [ + 38.5, + "M" + ], + "atteso": 43.0 + }, + { + "fn": "score_muscle_percent", + "args": [ + 39.0, + "M" + ], + "atteso": 45.0 + }, + { + "fn": "score_muscle_percent", + "args": [ + 39.5, + "M" + ], + "atteso": 47.1 + }, + { + "fn": "score_muscle_percent", + "args": [ + 40.0, + "M" + ], + "atteso": 49.1 + }, + { + "fn": "score_muscle_percent", + "args": [ + 40.5, + "M" + ], + "atteso": 51.2 + }, + { + "fn": "score_muscle_percent", + "args": [ + 41.0, + "M" + ], + "atteso": 53.2 + }, + { + "fn": "score_muscle_percent", + "args": [ + 41.5, + "M" + ], + "atteso": 55.3 + }, + { + "fn": "score_muscle_percent", + "args": [ + 42.0, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_muscle_percent", + "args": [ + 42.5, + "M" + ], + "atteso": 59.4 + }, + { + "fn": "score_muscle_percent", + "args": [ + 43.0, + "M" + ], + "atteso": 61.4 + }, + { + "fn": "score_muscle_percent", + "args": [ + 43.5, + "M" + ], + "atteso": 63.5 + }, + { + "fn": "score_muscle_percent", + "args": [ + 44.0, + "M" + ], + "atteso": 65.5 + }, + { + "fn": "score_muscle_percent", + "args": [ + 44.5, + "M" + ], + "atteso": 67.6 + }, + { + "fn": "score_muscle_percent", + "args": [ + 45.0, + "M" + ], + "atteso": 69.6 + }, + { + "fn": "score_muscle_percent", + "args": [ + 45.5, + "M" + ], + "atteso": 71.7 + }, + { + "fn": "score_muscle_percent", + "args": [ + 46.0, + "M" + ], + "atteso": 73.7 + }, + { + "fn": "score_muscle_percent", + "args": [ + 46.5, + "M" + ], + "atteso": 75.8 + }, + { + "fn": "score_muscle_percent", + "args": [ + 47.0, + "M" + ], + "atteso": 77.8 + }, + { + "fn": "score_muscle_percent", + "args": [ + 47.5, + "M" + ], + "atteso": 79.9 + }, + { + "fn": "score_muscle_percent", + "args": [ + 48.0, + "M" + ], + "atteso": 81.9 + }, + { + "fn": "score_muscle_percent", + "args": [ + 48.5, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_muscle_percent", + "args": [ + 49.0, + "M" + ], + "atteso": 86.1 + }, + { + "fn": "score_muscle_percent", + "args": [ + 49.5, + "M" + ], + "atteso": 88.1 + }, + { + "fn": "score_muscle_percent", + "args": [ + 50.0, + "M" + ], + "atteso": 90.2 + }, + { + "fn": "score_muscle_percent", + "args": [ + 50.5, + "M" + ], + "atteso": 92.2 + }, + { + "fn": "score_muscle_percent", + "args": [ + 51.0, + "M" + ], + "atteso": 94.3 + }, + { + "fn": "score_muscle_percent", + "args": [ + 51.5, + "M" + ], + "atteso": 96.3 + }, + { + "fn": "score_muscle_percent", + "args": [ + 52.0, + "M" + ], + "atteso": 98.4 + }, + { + "fn": "score_muscle_percent", + "args": [ + 52.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 53.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 53.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 54.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 54.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 55.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 55.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 56.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 56.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 57.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 57.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 58.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 58.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 59.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 59.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 60.0, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.5, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.51, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.52, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.53, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.54, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.56, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.57, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.58, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.59, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.6, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.61, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.62, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.63, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.64, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.66, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.67, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.68, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.69, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.7, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.71, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.72, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.73, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.74, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.76, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.77, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.78, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.79, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.8, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.81, + "M" + ], + "atteso": 96.0 + }, + { + "fn": "score_whr", + "args": [ + 0.82, + "M" + ], + "atteso": 92.0 + }, + { + "fn": "score_whr", + "args": [ + 0.83, + "M" + ], + "atteso": 88.0 + }, + { + "fn": "score_whr", + "args": [ + 0.84, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_whr", + "args": [ + 0.85, + "M" + ], + "atteso": 80.0 + }, + { + "fn": "score_whr", + "args": [ + 0.86, + "M" + ], + "atteso": 76.0 + }, + { + "fn": "score_whr", + "args": [ + 0.87, + "M" + ], + "atteso": 72.0 + }, + { + "fn": "score_whr", + "args": [ + 0.88, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_whr", + "args": [ + 0.89, + "M" + ], + "atteso": 64.0 + }, + { + "fn": "score_whr", + "args": [ + 0.9, + "M" + ], + "atteso": 60 + }, + { + "fn": "score_whr", + "args": [ + 0.91, + "M" + ], + "atteso": 57.0 + }, + { + "fn": "score_whr", + "args": [ + 0.92, + "M" + ], + "atteso": 54.0 + }, + { + "fn": "score_whr", + "args": [ + 0.93, + "M" + ], + "atteso": 51.0 + }, + { + "fn": "score_whr", + "args": [ + 0.94, + "M" + ], + "atteso": 48.0 + }, + { + "fn": "score_whr", + "args": [ + 0.95, + "M" + ], + "atteso": 45.0 + }, + { + "fn": "score_whr", + "args": [ + 0.96, + "M" + ], + "atteso": 42.0 + }, + { + "fn": "score_whr", + "args": [ + 0.97, + "M" + ], + "atteso": 39.0 + }, + { + "fn": "score_whr", + "args": [ + 0.98, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_whr", + "args": [ + 0.99, + "M" + ], + "atteso": 33.0 + }, + { + "fn": "score_whr", + "args": [ + 1.0, + "M" + ], + "atteso": 30.0 + }, + { + "fn": "score_whr", + "args": [ + 1.01, + "M" + ], + "atteso": 27.0 + }, + { + "fn": "score_whr", + "args": [ + 1.02, + "M" + ], + "atteso": 24.0 + }, + { + "fn": "score_whr", + "args": [ + 1.03, + "M" + ], + "atteso": 21.0 + }, + { + "fn": "score_whr", + "args": [ + 1.04, + "M" + ], + "atteso": 18.0 + }, + { + "fn": "score_whr", + "args": [ + 1.05, + "M" + ], + "atteso": 15.0 + }, + { + "fn": "score_whr", + "args": [ + 1.06, + "M" + ], + "atteso": 12.0 + }, + { + "fn": "score_whr", + "args": [ + 1.07, + "M" + ], + "atteso": 9.0 + }, + { + "fn": "score_whr", + "args": [ + 1.08, + "M" + ], + "atteso": 6.0 + }, + { + "fn": "score_whr", + "args": [ + 1.09, + "M" + ], + "atteso": 3.0 + }, + { + "fn": "score_whr", + "args": [ + 1.1, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.11, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.12, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.13, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.14, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.15, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.16, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.17, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.18, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.19, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.2, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.21, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.22, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.23, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.24, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.25, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.26, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.27, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.28, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.29, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.3, + "M" + ], + "atteso": 0 + }, + { + "fn": "score_fat_percent", + "args": [ + 0, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 0.5, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 1.0, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 1.5, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 2.0, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 2.5, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 3.0, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 3.5, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 4.0, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 4.5, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 5.0, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 5.5, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 6.0, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 6.5, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 7.0, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 7.5, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 8.0, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 8.5, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 9.0, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 9.5, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_fat_percent", + "args": [ + 10.0, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 10.5, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 11.0, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 11.5, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 12.0, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 12.5, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 13.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 13.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 14.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 14.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 15.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 15.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 16.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 16.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 17.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 17.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 18.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 18.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 19.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 19.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_fat_percent", + "args": [ + 20.0, + "F" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 20.5, + "F" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 21.0, + "F" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 21.5, + "F" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 22.0, + "F" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 22.5, + "F" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 23.0, + "F" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 23.5, + "F" + ], + "atteso": 90 + }, + { + "fn": "score_fat_percent", + "args": [ + 24.0, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 24.5, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 25.0, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 25.5, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 26.0, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 26.5, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 27.0, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 27.5, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 28.0, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 28.5, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 29.0, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 29.5, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 30.0, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 30.5, + "F" + ], + "atteso": 65 + }, + { + "fn": "score_fat_percent", + "args": [ + 31.0, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 31.5, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 32.0, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 32.5, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 33.0, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 33.5, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 34.0, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 34.5, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 35.0, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 35.5, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 36.0, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 36.5, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 37.0, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 37.5, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 38.0, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 38.5, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 39.0, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 39.5, + "F" + ], + "atteso": 30 + }, + { + "fn": "score_fat_percent", + "args": [ + 40.0, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 40.5, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 41.0, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 41.5, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 42.0, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 42.5, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 43.0, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 43.5, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 44.0, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 44.5, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_fat_percent", + "args": [ + 45.0, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_muscle_percent", + "args": [ + 20, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 20.5, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 21.0, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 21.5, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 22.0, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 22.5, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 23.0, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 23.5, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 24.0, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 24.5, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 25.0, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 25.5, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 26.0, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 26.5, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 27.0, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 27.5, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_muscle_percent", + "args": [ + 28.0, + "F" + ], + "atteso": 20.9 + }, + { + "fn": "score_muscle_percent", + "args": [ + 28.5, + "F" + ], + "atteso": 23.0 + }, + { + "fn": "score_muscle_percent", + "args": [ + 29.0, + "F" + ], + "atteso": 25.2 + }, + { + "fn": "score_muscle_percent", + "args": [ + 29.5, + "F" + ], + "atteso": 27.4 + }, + { + "fn": "score_muscle_percent", + "args": [ + 30.0, + "F" + ], + "atteso": 29.6 + }, + { + "fn": "score_muscle_percent", + "args": [ + 30.5, + "F" + ], + "atteso": 31.7 + }, + { + "fn": "score_muscle_percent", + "args": [ + 31.0, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_muscle_percent", + "args": [ + 31.5, + "F" + ], + "atteso": 36.1 + }, + { + "fn": "score_muscle_percent", + "args": [ + 32.0, + "F" + ], + "atteso": 38.3 + }, + { + "fn": "score_muscle_percent", + "args": [ + 32.5, + "F" + ], + "atteso": 40.4 + }, + { + "fn": "score_muscle_percent", + "args": [ + 33.0, + "F" + ], + "atteso": 42.6 + }, + { + "fn": "score_muscle_percent", + "args": [ + 33.5, + "F" + ], + "atteso": 44.8 + }, + { + "fn": "score_muscle_percent", + "args": [ + 34.0, + "F" + ], + "atteso": 47.0 + }, + { + "fn": "score_muscle_percent", + "args": [ + 34.5, + "F" + ], + "atteso": 49.1 + }, + { + "fn": "score_muscle_percent", + "args": [ + 35.0, + "F" + ], + "atteso": 51.3 + }, + { + "fn": "score_muscle_percent", + "args": [ + 35.5, + "F" + ], + "atteso": 53.5 + }, + { + "fn": "score_muscle_percent", + "args": [ + 36.0, + "F" + ], + "atteso": 55.7 + }, + { + "fn": "score_muscle_percent", + "args": [ + 36.5, + "F" + ], + "atteso": 57.8 + }, + { + "fn": "score_muscle_percent", + "args": [ + 37.0, + "F" + ], + "atteso": 60.0 + }, + { + "fn": "score_muscle_percent", + "args": [ + 37.5, + "F" + ], + "atteso": 62.2 + }, + { + "fn": "score_muscle_percent", + "args": [ + 38.0, + "F" + ], + "atteso": 64.3 + }, + { + "fn": "score_muscle_percent", + "args": [ + 38.5, + "F" + ], + "atteso": 66.5 + }, + { + "fn": "score_muscle_percent", + "args": [ + 39.0, + "F" + ], + "atteso": 68.7 + }, + { + "fn": "score_muscle_percent", + "args": [ + 39.5, + "F" + ], + "atteso": 70.9 + }, + { + "fn": "score_muscle_percent", + "args": [ + 40.0, + "F" + ], + "atteso": 73.0 + }, + { + "fn": "score_muscle_percent", + "args": [ + 40.5, + "F" + ], + "atteso": 75.2 + }, + { + "fn": "score_muscle_percent", + "args": [ + 41.0, + "F" + ], + "atteso": 77.4 + }, + { + "fn": "score_muscle_percent", + "args": [ + 41.5, + "F" + ], + "atteso": 79.6 + }, + { + "fn": "score_muscle_percent", + "args": [ + 42.0, + "F" + ], + "atteso": 81.7 + }, + { + "fn": "score_muscle_percent", + "args": [ + 42.5, + "F" + ], + "atteso": 83.9 + }, + { + "fn": "score_muscle_percent", + "args": [ + 43.0, + "F" + ], + "atteso": 86.1 + }, + { + "fn": "score_muscle_percent", + "args": [ + 43.5, + "F" + ], + "atteso": 88.3 + }, + { + "fn": "score_muscle_percent", + "args": [ + 44.0, + "F" + ], + "atteso": 90.4 + }, + { + "fn": "score_muscle_percent", + "args": [ + 44.5, + "F" + ], + "atteso": 92.6 + }, + { + "fn": "score_muscle_percent", + "args": [ + 45.0, + "F" + ], + "atteso": 94.8 + }, + { + "fn": "score_muscle_percent", + "args": [ + 45.5, + "F" + ], + "atteso": 97.0 + }, + { + "fn": "score_muscle_percent", + "args": [ + 46.0, + "F" + ], + "atteso": 99.1 + }, + { + "fn": "score_muscle_percent", + "args": [ + 46.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 47.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 47.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 48.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 48.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 49.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 49.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 50.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 50.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 51.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 51.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 52.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 52.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 53.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 53.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 54.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 54.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 55.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 55.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 56.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 56.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 57.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 57.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 58.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 58.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 59.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 59.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_muscle_percent", + "args": [ + 60.0, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.5, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.51, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.52, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.53, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.54, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.56, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.57, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.58, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.59, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.6, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.61, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.62, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.63, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.64, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.66, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.67, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.68, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.69, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.7, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.71, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.72, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.73, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.74, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_whr", + "args": [ + 0.76, + "F" + ], + "atteso": 96.0 + }, + { + "fn": "score_whr", + "args": [ + 0.77, + "F" + ], + "atteso": 92.0 + }, + { + "fn": "score_whr", + "args": [ + 0.78, + "F" + ], + "atteso": 88.0 + }, + { + "fn": "score_whr", + "args": [ + 0.79, + "F" + ], + "atteso": 84.0 + }, + { + "fn": "score_whr", + "args": [ + 0.8, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_whr", + "args": [ + 0.81, + "F" + ], + "atteso": 76.0 + }, + { + "fn": "score_whr", + "args": [ + 0.82, + "F" + ], + "atteso": 72.0 + }, + { + "fn": "score_whr", + "args": [ + 0.83, + "F" + ], + "atteso": 68.0 + }, + { + "fn": "score_whr", + "args": [ + 0.84, + "F" + ], + "atteso": 64.0 + }, + { + "fn": "score_whr", + "args": [ + 0.85, + "F" + ], + "atteso": 60 + }, + { + "fn": "score_whr", + "args": [ + 0.86, + "F" + ], + "atteso": 57.0 + }, + { + "fn": "score_whr", + "args": [ + 0.87, + "F" + ], + "atteso": 54.0 + }, + { + "fn": "score_whr", + "args": [ + 0.88, + "F" + ], + "atteso": 51.0 + }, + { + "fn": "score_whr", + "args": [ + 0.89, + "F" + ], + "atteso": 48.0 + }, + { + "fn": "score_whr", + "args": [ + 0.9, + "F" + ], + "atteso": 45.0 + }, + { + "fn": "score_whr", + "args": [ + 0.91, + "F" + ], + "atteso": 42.0 + }, + { + "fn": "score_whr", + "args": [ + 0.92, + "F" + ], + "atteso": 39.0 + }, + { + "fn": "score_whr", + "args": [ + 0.93, + "F" + ], + "atteso": 36.0 + }, + { + "fn": "score_whr", + "args": [ + 0.94, + "F" + ], + "atteso": 33.0 + }, + { + "fn": "score_whr", + "args": [ + 0.95, + "F" + ], + "atteso": 30.0 + }, + { + "fn": "score_whr", + "args": [ + 0.96, + "F" + ], + "atteso": 27.0 + }, + { + "fn": "score_whr", + "args": [ + 0.97, + "F" + ], + "atteso": 24.0 + }, + { + "fn": "score_whr", + "args": [ + 0.98, + "F" + ], + "atteso": 21.0 + }, + { + "fn": "score_whr", + "args": [ + 0.99, + "F" + ], + "atteso": 18.0 + }, + { + "fn": "score_whr", + "args": [ + 1.0, + "F" + ], + "atteso": 15.0 + }, + { + "fn": "score_whr", + "args": [ + 1.01, + "F" + ], + "atteso": 12.0 + }, + { + "fn": "score_whr", + "args": [ + 1.02, + "F" + ], + "atteso": 9.0 + }, + { + "fn": "score_whr", + "args": [ + 1.03, + "F" + ], + "atteso": 6.0 + }, + { + "fn": "score_whr", + "args": [ + 1.04, + "F" + ], + "atteso": 3.0 + }, + { + "fn": "score_whr", + "args": [ + 1.05, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.06, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.07, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.08, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.09, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.1, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.11, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.12, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.13, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.14, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.15, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.16, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.17, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.18, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.19, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.2, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.21, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.22, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.23, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.24, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.25, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.26, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.27, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.28, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.29, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_whr", + "args": [ + 1.3, + "F" + ], + "atteso": 0 + }, + { + "fn": "score_spo2", + "args": [ + 85 + ], + "atteso": 15 + }, + { + "fn": "score_spo2", + "args": [ + 86 + ], + "atteso": 15 + }, + { + "fn": "score_spo2", + "args": [ + 87 + ], + "atteso": 15 + }, + { + "fn": "score_spo2", + "args": [ + 88 + ], + "atteso": 15 + }, + { + "fn": "score_spo2", + "args": [ + 89 + ], + "atteso": 15 + }, + { + "fn": "score_spo2", + "args": [ + 90 + ], + "atteso": 50 + }, + { + "fn": "score_spo2", + "args": [ + 91 + ], + "atteso": 50 + }, + { + "fn": "score_spo2", + "args": [ + 92 + ], + "atteso": 50 + }, + { + "fn": "score_spo2", + "args": [ + 93 + ], + "atteso": 50 + }, + { + "fn": "score_spo2", + "args": [ + 94 + ], + "atteso": 50 + }, + { + "fn": "score_spo2", + "args": [ + 95 + ], + "atteso": 85 + }, + { + "fn": "score_spo2", + "args": [ + 96 + ], + "atteso": 85 + }, + { + "fn": "score_spo2", + "args": [ + 97 + ], + "atteso": 100 + }, + { + "fn": "score_spo2", + "args": [ + 98 + ], + "atteso": 100 + }, + { + "fn": "score_spo2", + "args": [ + 99 + ], + "atteso": 100 + }, + { + "fn": "score_spo2", + "args": [ + 100 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 50 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 55 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 60 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 65 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 70 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 75 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 80 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 85 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 90, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 50 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 55 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 60 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 65 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 70 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 75 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 80 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 85 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 95, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 50 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 55 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 60 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 65 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 70 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 75 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 80 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 85 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 100, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 50 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 55 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 60 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 65 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 70 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 75 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 80 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 85 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 105, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 50 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 55 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 60 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 65 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 70 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 75 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 80 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 85 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 110, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 50 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 55 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 60 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 65 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 70 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 75 + ], + "atteso": 100 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 80 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 85 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 115, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 50 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 55 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 60 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 65 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 70 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 75 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 80 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 85 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 120, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 50 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 55 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 60 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 65 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 70 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 75 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 80 + ], + "atteso": 90 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 85 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 125, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 50 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 55 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 60 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 65 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 70 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 75 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 80 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 85 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 130, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 50 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 55 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 60 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 65 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 70 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 75 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 80 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 85 + ], + "atteso": 70 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 135, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 50 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 55 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 60 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 65 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 70 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 75 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 80 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 85 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 140, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 50 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 55 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 60 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 65 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 70 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 75 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 80 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 85 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 145, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 50 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 55 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 60 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 65 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 70 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 75 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 80 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 85 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 150, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 50 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 55 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 60 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 65 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 70 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 75 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 80 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 85 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 90 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 95 + ], + "atteso": 45 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 155, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 50 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 55 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 60 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 65 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 70 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 75 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 80 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 85 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 90 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 95 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 160, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 50 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 55 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 60 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 65 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 70 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 75 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 80 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 85 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 90 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 95 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 165, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 50 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 55 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 60 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 65 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 70 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 75 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 80 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 85 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 90 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 95 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 170, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 50 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 55 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 60 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 65 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 70 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 75 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 80 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 85 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 90 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 95 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 100 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 105 + ], + "atteso": 25 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 175, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 50 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 55 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 60 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 65 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 70 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 75 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 80 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 85 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 90 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 95 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 100 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 105 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 180, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 50 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 55 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 60 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 65 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 70 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 75 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 80 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 85 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 90 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 95 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 100 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 105 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 185, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 50 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 55 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 60 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 65 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 70 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 75 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 80 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 85 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 90 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 95 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 100 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 105 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 190, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 50 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 55 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 60 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 65 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 70 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 75 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 80 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 85 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 90 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 95 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 100 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 105 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 195, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 50 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 55 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 60 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 65 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 70 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 75 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 80 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 85 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 90 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 95 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 100 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 105 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 110 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 115 + ], + "atteso": 5 + }, + { + "fn": "score_blood_pressure", + "args": [ + 200, + 120 + ], + "atteso": 5 + }, + { + "fn": "score_hrr", + "args": [ + 0 + ], + "atteso": 20 + }, + { + "fn": "score_hrr", + "args": [ + 1 + ], + "atteso": 24.2 + }, + { + "fn": "score_hrr", + "args": [ + 2 + ], + "atteso": 28.3 + }, + { + "fn": "score_hrr", + "args": [ + 3 + ], + "atteso": 32.5 + }, + { + "fn": "score_hrr", + "args": [ + 4 + ], + "atteso": 36.7 + }, + { + "fn": "score_hrr", + "args": [ + 5 + ], + "atteso": 40.8 + }, + { + "fn": "score_hrr", + "args": [ + 6 + ], + "atteso": 45.0 + }, + { + "fn": "score_hrr", + "args": [ + 7 + ], + "atteso": 49.2 + }, + { + "fn": "score_hrr", + "args": [ + 8 + ], + "atteso": 53.3 + }, + { + "fn": "score_hrr", + "args": [ + 9 + ], + "atteso": 57.5 + }, + { + "fn": "score_hrr", + "args": [ + 10 + ], + "atteso": 61.7 + }, + { + "fn": "score_hrr", + "args": [ + 11 + ], + "atteso": 65.8 + }, + { + "fn": "score_hrr", + "args": [ + 12 + ], + "atteso": 70 + }, + { + "fn": "score_hrr", + "args": [ + 13 + ], + "atteso": 71.7 + }, + { + "fn": "score_hrr", + "args": [ + 14 + ], + "atteso": 73.3 + }, + { + "fn": "score_hrr", + "args": [ + 15 + ], + "atteso": 75.0 + }, + { + "fn": "score_hrr", + "args": [ + 16 + ], + "atteso": 76.7 + }, + { + "fn": "score_hrr", + "args": [ + 17 + ], + "atteso": 78.3 + }, + { + "fn": "score_hrr", + "args": [ + 18 + ], + "atteso": 80.0 + }, + { + "fn": "score_hrr", + "args": [ + 19 + ], + "atteso": 81.7 + }, + { + "fn": "score_hrr", + "args": [ + 20 + ], + "atteso": 83.3 + }, + { + "fn": "score_hrr", + "args": [ + 21 + ], + "atteso": 85.0 + }, + { + "fn": "score_hrr", + "args": [ + 22 + ], + "atteso": 86.7 + }, + { + "fn": "score_hrr", + "args": [ + 23 + ], + "atteso": 88.3 + }, + { + "fn": "score_hrr", + "args": [ + 24 + ], + "atteso": 90.0 + }, + { + "fn": "score_hrr", + "args": [ + 25 + ], + "atteso": 91.7 + }, + { + "fn": "score_hrr", + "args": [ + 26 + ], + "atteso": 93.3 + }, + { + "fn": "score_hrr", + "args": [ + 27 + ], + "atteso": 95.0 + }, + { + "fn": "score_hrr", + "args": [ + 28 + ], + "atteso": 96.7 + }, + { + "fn": "score_hrr", + "args": [ + 29 + ], + "atteso": 98.3 + }, + { + "fn": "score_hrr", + "args": [ + 30 + ], + "atteso": 100 + }, + { + "fn": "score_hrr", + "args": [ + 31 + ], + "atteso": 100 + }, + { + "fn": "score_hrr", + "args": [ + 32 + ], + "atteso": 100 + }, + { + "fn": "score_hrr", + "args": [ + 33 + ], + "atteso": 100 + }, + { + "fn": "score_hrr", + "args": [ + 34 + ], + "atteso": 100 + }, + { + "fn": "score_hrr", + "args": [ + 35 + ], + "atteso": 100 + }, + { + "fn": "score_hrr", + "args": [ + 36 + ], + "atteso": 100 + }, + { + "fn": "score_hrr", + "args": [ + 37 + ], + "atteso": 100 + }, + { + "fn": "score_hrr", + "args": [ + 38 + ], + "atteso": 100 + }, + { + "fn": "score_hrr", + "args": [ + 39 + ], + "atteso": 100 + }, + { + "fn": "score_hrr", + "args": [ + 40 + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 20, + "M" + ], + "atteso": 25.1 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 20, + "M" + ], + "atteso": 27.6 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 20, + "M" + ], + "atteso": 30.1 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 20, + "M" + ], + "atteso": 32.6 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 20, + "M" + ], + "atteso": 35.1 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 20, + "M" + ], + "atteso": 37.6 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 20, + "M" + ], + "atteso": 40.2 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 20, + "M" + ], + "atteso": 44.8 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 20, + "M" + ], + "atteso": 49.5 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 20, + "M" + ], + "atteso": 54.2 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 20, + "M" + ], + "atteso": 58.8 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 20, + "M" + ], + "atteso": 63.5 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 20, + "M" + ], + "atteso": 68.1 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 20, + "M" + ], + "atteso": 72.8 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 20, + "M" + ], + "atteso": 77.5 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 20, + "M" + ], + "atteso": 82.1 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 20, + "M" + ], + "atteso": 86.8 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 20, + "M" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 20, + "M" + ], + "atteso": 96.1 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 20, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 20, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 20, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 20, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 25, + "M" + ], + "atteso": 25.1 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 25, + "M" + ], + "atteso": 27.6 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 25, + "M" + ], + "atteso": 30.1 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 25, + "M" + ], + "atteso": 32.6 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 25, + "M" + ], + "atteso": 35.1 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 25, + "M" + ], + "atteso": 37.6 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 25, + "M" + ], + "atteso": 40.2 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 25, + "M" + ], + "atteso": 44.8 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 25, + "M" + ], + "atteso": 49.5 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 25, + "M" + ], + "atteso": 54.2 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 25, + "M" + ], + "atteso": 58.8 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 25, + "M" + ], + "atteso": 63.5 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 25, + "M" + ], + "atteso": 68.1 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 25, + "M" + ], + "atteso": 72.8 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 25, + "M" + ], + "atteso": 77.5 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 25, + "M" + ], + "atteso": 82.1 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 25, + "M" + ], + "atteso": 86.8 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 25, + "M" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 25, + "M" + ], + "atteso": 96.1 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 30, + "M" + ], + "atteso": 26.1 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 30, + "M" + ], + "atteso": 28.8 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 30, + "M" + ], + "atteso": 31.5 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 30, + "M" + ], + "atteso": 34.2 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 30, + "M" + ], + "atteso": 36.8 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 30, + "M" + ], + "atteso": 39.5 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 30, + "M" + ], + "atteso": 44.1 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 30, + "M" + ], + "atteso": 49.1 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 30, + "M" + ], + "atteso": 54.1 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 30, + "M" + ], + "atteso": 59.0 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 30, + "M" + ], + "atteso": 64.0 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 30, + "M" + ], + "atteso": 69.0 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 30, + "M" + ], + "atteso": 74.0 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 30, + "M" + ], + "atteso": 79.0 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 30, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 30, + "M" + ], + "atteso": 88.9 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 30, + "M" + ], + "atteso": 93.9 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 30, + "M" + ], + "atteso": 98.9 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 35, + "M" + ], + "atteso": 26.1 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 35, + "M" + ], + "atteso": 28.8 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 35, + "M" + ], + "atteso": 31.5 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 35, + "M" + ], + "atteso": 34.2 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 35, + "M" + ], + "atteso": 36.8 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 35, + "M" + ], + "atteso": 39.5 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 35, + "M" + ], + "atteso": 44.1 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 35, + "M" + ], + "atteso": 49.1 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 35, + "M" + ], + "atteso": 54.1 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 35, + "M" + ], + "atteso": 59.0 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 35, + "M" + ], + "atteso": 64.0 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 35, + "M" + ], + "atteso": 69.0 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 35, + "M" + ], + "atteso": 74.0 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 35, + "M" + ], + "atteso": 79.0 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 35, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 35, + "M" + ], + "atteso": 88.9 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 35, + "M" + ], + "atteso": 93.9 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 35, + "M" + ], + "atteso": 98.9 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 40, + "M" + ], + "atteso": 26.5 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 40, + "M" + ], + "atteso": 29.2 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 40, + "M" + ], + "atteso": 32.0 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 40, + "M" + ], + "atteso": 34.7 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 40, + "M" + ], + "atteso": 37.5 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 40, + "M" + ], + "atteso": 40.4 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 40, + "M" + ], + "atteso": 45.5 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 40, + "M" + ], + "atteso": 50.6 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 40, + "M" + ], + "atteso": 55.7 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 40, + "M" + ], + "atteso": 60.8 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 40, + "M" + ], + "atteso": 65.9 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 40, + "M" + ], + "atteso": 71.0 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 40, + "M" + ], + "atteso": 76.1 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 40, + "M" + ], + "atteso": 81.2 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 40, + "M" + ], + "atteso": 86.3 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 40, + "M" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 40, + "M" + ], + "atteso": 96.5 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 45, + "M" + ], + "atteso": 26.5 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 45, + "M" + ], + "atteso": 29.2 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 45, + "M" + ], + "atteso": 32.0 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 45, + "M" + ], + "atteso": 34.7 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 45, + "M" + ], + "atteso": 37.5 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 45, + "M" + ], + "atteso": 40.4 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 45, + "M" + ], + "atteso": 45.5 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 45, + "M" + ], + "atteso": 50.6 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 45, + "M" + ], + "atteso": 55.7 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 45, + "M" + ], + "atteso": 60.8 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 45, + "M" + ], + "atteso": 65.9 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 45, + "M" + ], + "atteso": 71.0 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 45, + "M" + ], + "atteso": 76.1 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 45, + "M" + ], + "atteso": 81.2 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 45, + "M" + ], + "atteso": 86.3 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 45, + "M" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 45, + "M" + ], + "atteso": 96.5 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 50, + "M" + ], + "atteso": 28.2 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 50, + "M" + ], + "atteso": 31.3 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 50, + "M" + ], + "atteso": 34.3 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 50, + "M" + ], + "atteso": 37.3 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 50, + "M" + ], + "atteso": 40.7 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 50, + "M" + ], + "atteso": 46.3 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 50, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 50, + "M" + ], + "atteso": 57.6 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 50, + "M" + ], + "atteso": 63.2 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 50, + "M" + ], + "atteso": 68.9 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 50, + "M" + ], + "atteso": 74.5 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 50, + "M" + ], + "atteso": 80.2 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 50, + "M" + ], + "atteso": 85.8 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 50, + "M" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 50, + "M" + ], + "atteso": 97.1 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 55, + "M" + ], + "atteso": 28.2 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 55, + "M" + ], + "atteso": 31.3 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 55, + "M" + ], + "atteso": 34.3 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 55, + "M" + ], + "atteso": 37.3 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 55, + "M" + ], + "atteso": 40.7 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 55, + "M" + ], + "atteso": 46.3 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 55, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 55, + "M" + ], + "atteso": 57.6 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 55, + "M" + ], + "atteso": 63.2 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 55, + "M" + ], + "atteso": 68.9 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 55, + "M" + ], + "atteso": 74.5 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 55, + "M" + ], + "atteso": 80.2 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 55, + "M" + ], + "atteso": 85.8 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 55, + "M" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 55, + "M" + ], + "atteso": 97.1 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 60, + "M" + ], + "atteso": 29.8 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 60, + "M" + ], + "atteso": 33.1 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 60, + "M" + ], + "atteso": 36.4 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 60, + "M" + ], + "atteso": 39.7 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 60, + "M" + ], + "atteso": 45.5 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 60, + "M" + ], + "atteso": 51.6 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 60, + "M" + ], + "atteso": 57.8 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 60, + "M" + ], + "atteso": 63.9 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 60, + "M" + ], + "atteso": 70 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 60, + "M" + ], + "atteso": 76.1 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 60, + "M" + ], + "atteso": 82.2 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 60, + "M" + ], + "atteso": 88.4 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 60, + "M" + ], + "atteso": 94.5 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 65, + "M" + ], + "atteso": 29.8 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 65, + "M" + ], + "atteso": 33.1 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 65, + "M" + ], + "atteso": 36.4 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 65, + "M" + ], + "atteso": 39.7 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 65, + "M" + ], + "atteso": 45.5 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 65, + "M" + ], + "atteso": 51.6 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 65, + "M" + ], + "atteso": 57.8 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 65, + "M" + ], + "atteso": 63.9 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 65, + "M" + ], + "atteso": 70 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 65, + "M" + ], + "atteso": 76.1 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 65, + "M" + ], + "atteso": 82.2 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 65, + "M" + ], + "atteso": 88.4 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 65, + "M" + ], + "atteso": 94.5 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 70, + "M" + ], + "atteso": 33.1 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 70, + "M" + ], + "atteso": 36.9 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 70, + "M" + ], + "atteso": 41.4 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 70, + "M" + ], + "atteso": 48.6 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 70, + "M" + ], + "atteso": 55.7 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 70, + "M" + ], + "atteso": 62.9 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 70, + "M" + ], + "atteso": 70 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 70, + "M" + ], + "atteso": 77.1 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 70, + "M" + ], + "atteso": 84.3 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 70, + "M" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 70, + "M" + ], + "atteso": 98.6 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 75, + "M" + ], + "atteso": 33.1 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 75, + "M" + ], + "atteso": 36.9 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 75, + "M" + ], + "atteso": 41.4 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 75, + "M" + ], + "atteso": 48.6 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 75, + "M" + ], + "atteso": 55.7 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 75, + "M" + ], + "atteso": 62.9 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 75, + "M" + ], + "atteso": 70 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 75, + "M" + ], + "atteso": 77.1 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 75, + "M" + ], + "atteso": 84.3 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 75, + "M" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 75, + "M" + ], + "atteso": 98.6 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 20, + "F" + ], + "atteso": 28.2 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 20, + "F" + ], + "atteso": 31.3 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 20, + "F" + ], + "atteso": 34.3 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 20, + "F" + ], + "atteso": 37.3 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 20, + "F" + ], + "atteso": 40.7 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 20, + "F" + ], + "atteso": 46.3 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 20, + "F" + ], + "atteso": 52.0 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 20, + "F" + ], + "atteso": 57.6 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 20, + "F" + ], + "atteso": 63.2 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 20, + "F" + ], + "atteso": 68.9 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 20, + "F" + ], + "atteso": 74.5 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 20, + "F" + ], + "atteso": 80.2 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 20, + "F" + ], + "atteso": 85.8 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 20, + "F" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 20, + "F" + ], + "atteso": 97.1 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 20, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 20, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 20, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 20, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 20, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 20, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 20, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 20, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 25, + "F" + ], + "atteso": 28.2 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 25, + "F" + ], + "atteso": 31.3 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 25, + "F" + ], + "atteso": 34.3 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 25, + "F" + ], + "atteso": 37.3 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 25, + "F" + ], + "atteso": 40.7 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 25, + "F" + ], + "atteso": 46.3 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 25, + "F" + ], + "atteso": 52.0 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 25, + "F" + ], + "atteso": 57.6 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 25, + "F" + ], + "atteso": 63.2 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 25, + "F" + ], + "atteso": 68.9 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 25, + "F" + ], + "atteso": 74.5 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 25, + "F" + ], + "atteso": 80.2 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 25, + "F" + ], + "atteso": 85.8 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 25, + "F" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 25, + "F" + ], + "atteso": 97.1 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 30, + "F" + ], + "atteso": 28.7 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 30, + "F" + ], + "atteso": 31.8 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 30, + "F" + ], + "atteso": 34.9 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 30, + "F" + ], + "atteso": 38.1 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 30, + "F" + ], + "atteso": 42.2 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 30, + "F" + ], + "atteso": 48.0 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 30, + "F" + ], + "atteso": 53.8 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 30, + "F" + ], + "atteso": 59.6 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 30, + "F" + ], + "atteso": 65.4 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 30, + "F" + ], + "atteso": 71.2 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 30, + "F" + ], + "atteso": 76.9 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 30, + "F" + ], + "atteso": 82.7 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 30, + "F" + ], + "atteso": 88.5 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 30, + "F" + ], + "atteso": 94.3 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 35, + "F" + ], + "atteso": 28.7 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 35, + "F" + ], + "atteso": 31.8 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 35, + "F" + ], + "atteso": 34.9 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 35, + "F" + ], + "atteso": 38.1 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 35, + "F" + ], + "atteso": 42.2 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 35, + "F" + ], + "atteso": 48.0 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 35, + "F" + ], + "atteso": 53.8 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 35, + "F" + ], + "atteso": 59.6 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 35, + "F" + ], + "atteso": 65.4 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 35, + "F" + ], + "atteso": 71.2 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 35, + "F" + ], + "atteso": 76.9 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 35, + "F" + ], + "atteso": 82.7 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 35, + "F" + ], + "atteso": 88.5 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 35, + "F" + ], + "atteso": 94.3 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 40, + "F" + ], + "atteso": 30.4 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 40, + "F" + ], + "atteso": 33.8 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 40, + "F" + ], + "atteso": 37.1 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 40, + "F" + ], + "atteso": 41.0 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 40, + "F" + ], + "atteso": 47.3 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 40, + "F" + ], + "atteso": 53.6 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 40, + "F" + ], + "atteso": 59.9 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 40, + "F" + ], + "atteso": 66.2 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 40, + "F" + ], + "atteso": 72.5 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 40, + "F" + ], + "atteso": 78.8 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 40, + "F" + ], + "atteso": 85.1 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 40, + "F" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 40, + "F" + ], + "atteso": 97.7 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 45, + "F" + ], + "atteso": 30.4 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 45, + "F" + ], + "atteso": 33.8 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 45, + "F" + ], + "atteso": 37.1 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 45, + "F" + ], + "atteso": 41.0 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 45, + "F" + ], + "atteso": 47.3 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 45, + "F" + ], + "atteso": 53.6 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 45, + "F" + ], + "atteso": 59.9 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 45, + "F" + ], + "atteso": 66.2 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 45, + "F" + ], + "atteso": 72.5 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 45, + "F" + ], + "atteso": 78.8 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 45, + "F" + ], + "atteso": 85.1 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 45, + "F" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 45, + "F" + ], + "atteso": 97.7 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 50, + "F" + ], + "atteso": 33.1 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 50, + "F" + ], + "atteso": 36.9 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 50, + "F" + ], + "atteso": 41.4 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 50, + "F" + ], + "atteso": 48.6 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 50, + "F" + ], + "atteso": 55.7 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 50, + "F" + ], + "atteso": 62.9 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 50, + "F" + ], + "atteso": 70 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 50, + "F" + ], + "atteso": 77.1 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 50, + "F" + ], + "atteso": 84.3 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 50, + "F" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 50, + "F" + ], + "atteso": 98.6 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 55, + "F" + ], + "atteso": 33.1 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 55, + "F" + ], + "atteso": 36.9 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 55, + "F" + ], + "atteso": 41.4 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 55, + "F" + ], + "atteso": 48.6 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 55, + "F" + ], + "atteso": 55.7 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 55, + "F" + ], + "atteso": 62.9 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 55, + "F" + ], + "atteso": 70 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 55, + "F" + ], + "atteso": 77.1 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 55, + "F" + ], + "atteso": 84.3 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 55, + "F" + ], + "atteso": 91.4 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 55, + "F" + ], + "atteso": 98.6 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 60, + "F" + ], + "atteso": 35.6 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 60, + "F" + ], + "atteso": 39.9 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 60, + "F" + ], + "atteso": 47.8 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 60, + "F" + ], + "atteso": 55.7 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 60, + "F" + ], + "atteso": 63.7 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 60, + "F" + ], + "atteso": 71.6 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 60, + "F" + ], + "atteso": 79.5 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 60, + "F" + ], + "atteso": 87.5 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 60, + "F" + ], + "atteso": 95.4 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 65, + "F" + ], + "atteso": 35.6 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 65, + "F" + ], + "atteso": 39.9 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 65, + "F" + ], + "atteso": 47.8 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 65, + "F" + ], + "atteso": 55.7 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 65, + "F" + ], + "atteso": 63.7 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 65, + "F" + ], + "atteso": 71.6 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 65, + "F" + ], + "atteso": 79.5 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 65, + "F" + ], + "atteso": 87.5 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 65, + "F" + ], + "atteso": 95.4 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 70, + "F" + ], + "atteso": 40.2 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 70, + "F" + ], + "atteso": 49.5 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 70, + "F" + ], + "atteso": 58.8 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 70, + "F" + ], + "atteso": 68.1 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 70, + "F" + ], + "atteso": 77.5 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 70, + "F" + ], + "atteso": 86.8 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 70, + "F" + ], + "atteso": 96.1 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 15, + 75, + "F" + ], + "atteso": 40.2 + }, + { + "fn": "score_vo2max", + "args": [ + 17.5, + 75, + "F" + ], + "atteso": 49.5 + }, + { + "fn": "score_vo2max", + "args": [ + 20.0, + 75, + "F" + ], + "atteso": 58.8 + }, + { + "fn": "score_vo2max", + "args": [ + 22.5, + 75, + "F" + ], + "atteso": 68.1 + }, + { + "fn": "score_vo2max", + "args": [ + 25.0, + 75, + "F" + ], + "atteso": 77.5 + }, + { + "fn": "score_vo2max", + "args": [ + 27.5, + 75, + "F" + ], + "atteso": 86.8 + }, + { + "fn": "score_vo2max", + "args": [ + 30.0, + 75, + "F" + ], + "atteso": 96.1 + }, + { + "fn": "score_vo2max", + "args": [ + 32.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 35.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 37.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 40.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 42.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 45.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 47.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 50.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 52.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 55.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 57.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 60.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 62.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 65.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 67.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_vo2max", + "args": [ + 70.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 120, + "M" + ], + "atteso": 60.93 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 120, + "F" + ], + "atteso": 43.646 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 125, + "M" + ], + "atteso": 58.83 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 125, + "F" + ], + "atteso": 42.7225 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 130, + "M" + ], + "atteso": 56.73 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 130, + "F" + ], + "atteso": 41.79900000000001 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 135, + "M" + ], + "atteso": 54.63 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 135, + "F" + ], + "atteso": 40.8755 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 140, + "M" + ], + "atteso": 52.53 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 140, + "F" + ], + "atteso": 39.952 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 145, + "M" + ], + "atteso": 50.43 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 145, + "F" + ], + "atteso": 39.0285 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 150, + "M" + ], + "atteso": 48.33 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 150, + "F" + ], + "atteso": 38.105000000000004 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 155, + "M" + ], + "atteso": 46.230000000000004 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 155, + "F" + ], + "atteso": 37.1815 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 160, + "M" + ], + "atteso": 44.129999999999995 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 160, + "F" + ], + "atteso": 36.258 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 165, + "M" + ], + "atteso": 42.03 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 165, + "F" + ], + "atteso": 35.334500000000006 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 170, + "M" + ], + "atteso": 39.93000000000001 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 170, + "F" + ], + "atteso": 34.411 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 175, + "M" + ], + "atteso": 37.83 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 175, + "F" + ], + "atteso": 33.487500000000004 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 180, + "M" + ], + "atteso": 35.730000000000004 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 180, + "F" + ], + "atteso": 32.564 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 185, + "M" + ], + "atteso": 33.629999999999995 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 185, + "F" + ], + "atteso": 31.640500000000003 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 190, + "M" + ], + "atteso": 31.53 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 190, + "F" + ], + "atteso": 30.717 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 195, + "M" + ], + "atteso": 29.430000000000007 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 195, + "F" + ], + "atteso": 29.7935 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 200, + "M" + ], + "atteso": 27.33 + }, + { + "fn": "vo2max_from_step_test", + "args": [ + 200, + "F" + ], + "atteso": 28.870000000000005 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 100 + ], + "atteso": 23.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 110 + ], + "atteso": 25.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 120 + ], + "atteso": 27.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 130 + ], + "atteso": 29.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 140 + ], + "atteso": 31.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 150 + ], + "atteso": 33.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 160 + ], + "atteso": 35.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 170 + ], + "atteso": 37.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 180 + ], + "atteso": 39.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 190 + ], + "atteso": 41.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 200 + ], + "atteso": 43.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 210 + ], + "atteso": 45.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 220 + ], + "atteso": 47.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 230 + ], + "atteso": 49.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 240 + ], + "atteso": 51.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 250 + ], + "atteso": 53.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 260 + ], + "atteso": 55.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 270 + ], + "atteso": 57.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 280 + ], + "atteso": 59.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 290 + ], + "atteso": 61.5 + }, + { + "fn": "vo2max_from_mutt", + "args": [ + 300 + ], + "atteso": 63.5 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 50, + 75 + ], + "atteso": 14.2 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 60, + 75 + ], + "atteso": 15.64 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 70, + 75 + ], + "atteso": 17.08 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 80, + 75 + ], + "atteso": 18.52 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 90, + 75 + ], + "atteso": 19.96 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 100, + 75 + ], + "atteso": 21.4 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 110, + 75 + ], + "atteso": 22.84 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 120, + 75 + ], + "atteso": 24.28 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 130, + 75 + ], + "atteso": 25.72 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 140, + 75 + ], + "atteso": 27.16 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 150, + 75 + ], + "atteso": 28.6 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 160, + 75 + ], + "atteso": 30.04 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 170, + 75 + ], + "atteso": 31.480000000000004 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 180, + 75 + ], + "atteso": 32.92 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 190, + 75 + ], + "atteso": 34.36 + }, + { + "fn": "vo2max_from_milfit", + "args": [ + 200, + 75 + ], + "atteso": 35.8 + }, + { + "fn": "vo2max_from_2km_walk", + "args": [ + 15.5, + 130, + 40, + 24 + ], + "atteso": 40.75000000000001 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 25, + "M" + ], + "atteso": 20.2 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 25, + "M" + ], + "atteso": 24.3 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 25, + "M" + ], + "atteso": 28.3 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 25, + "M" + ], + "atteso": 32.3 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 25, + "M" + ], + "atteso": 36.3 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 25, + "M" + ], + "atteso": 40.4 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 25, + "M" + ], + "atteso": 44.4 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 25, + "M" + ], + "atteso": 48.4 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 25, + "M" + ], + "atteso": 52.4 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 25, + "M" + ], + "atteso": 56.5 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 25, + "M" + ], + "atteso": 60.5 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 25, + "M" + ], + "atteso": 64.5 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 25, + "M" + ], + "atteso": 68.5 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 25, + "M" + ], + "atteso": 72.6 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 25, + "M" + ], + "atteso": 76.6 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 25, + "M" + ], + "atteso": 80.6 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 25, + "M" + ], + "atteso": 84.6 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 25, + "M" + ], + "atteso": 88.7 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 25, + "M" + ], + "atteso": 92.7 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 25, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 25, + "M" + ], + "atteso": 15.5 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 25, + "M" + ], + "atteso": 20.9 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 25, + "M" + ], + "atteso": 26.4 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 25, + "M" + ], + "atteso": 31.8 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 25, + "M" + ], + "atteso": 37.3 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 25, + "M" + ], + "atteso": 42.7 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 25, + "M" + ], + "atteso": 48.2 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 25, + "M" + ], + "atteso": 53.6 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 25, + "M" + ], + "atteso": 59.1 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 25, + "M" + ], + "atteso": 64.5 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 25, + "M" + ], + "atteso": 70 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 25, + "M" + ], + "atteso": 74.5 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 25, + "M" + ], + "atteso": 79.1 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 25, + "M" + ], + "atteso": 83.6 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 25, + "M" + ], + "atteso": 88.2 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 25, + "M" + ], + "atteso": 92.7 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 25, + "M" + ], + "atteso": 97.3 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 25, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 30, + "M" + ], + "atteso": 21.3 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 30, + "M" + ], + "atteso": 25.4 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 30, + "M" + ], + "atteso": 29.5 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 30, + "M" + ], + "atteso": 33.6 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 30, + "M" + ], + "atteso": 37.8 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 30, + "M" + ], + "atteso": 41.9 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 30, + "M" + ], + "atteso": 46.0 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 30, + "M" + ], + "atteso": 50.2 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 30, + "M" + ], + "atteso": 54.3 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 30, + "M" + ], + "atteso": 58.4 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 30, + "M" + ], + "atteso": 62.5 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 30, + "M" + ], + "atteso": 66.7 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 30, + "M" + ], + "atteso": 70.8 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 30, + "M" + ], + "atteso": 74.9 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 30, + "M" + ], + "atteso": 79.0 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 30, + "M" + ], + "atteso": 83.2 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 30, + "M" + ], + "atteso": 87.3 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 30, + "M" + ], + "atteso": 91.4 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 30, + "M" + ], + "atteso": 95.5 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 30, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 30, + "M" + ], + "atteso": 15.5 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 30, + "M" + ], + "atteso": 20.9 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 30, + "M" + ], + "atteso": 26.4 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 30, + "M" + ], + "atteso": 31.8 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 30, + "M" + ], + "atteso": 37.3 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 30, + "M" + ], + "atteso": 42.7 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 30, + "M" + ], + "atteso": 48.2 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 30, + "M" + ], + "atteso": 53.6 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 30, + "M" + ], + "atteso": 59.1 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 30, + "M" + ], + "atteso": 64.5 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 30, + "M" + ], + "atteso": 70 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 30, + "M" + ], + "atteso": 74.5 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 30, + "M" + ], + "atteso": 79.1 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 30, + "M" + ], + "atteso": 83.6 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 30, + "M" + ], + "atteso": 88.2 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 30, + "M" + ], + "atteso": 92.7 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 30, + "M" + ], + "atteso": 97.3 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 30, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 35, + "M" + ], + "atteso": 22.3 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 35, + "M" + ], + "atteso": 26.6 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 35, + "M" + ], + "atteso": 30.8 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 35, + "M" + ], + "atteso": 35.0 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 35, + "M" + ], + "atteso": 39.3 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 35, + "M" + ], + "atteso": 43.5 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 35, + "M" + ], + "atteso": 47.7 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 35, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 35, + "M" + ], + "atteso": 56.2 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 35, + "M" + ], + "atteso": 60.5 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 35, + "M" + ], + "atteso": 64.7 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 35, + "M" + ], + "atteso": 68.9 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 35, + "M" + ], + "atteso": 73.2 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 35, + "M" + ], + "atteso": 77.4 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 35, + "M" + ], + "atteso": 81.6 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 35, + "M" + ], + "atteso": 85.9 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 35, + "M" + ], + "atteso": 90.1 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 35, + "M" + ], + "atteso": 94.3 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 35, + "M" + ], + "atteso": 98.6 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 35, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 35, + "M" + ], + "atteso": 15.5 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 35, + "M" + ], + "atteso": 20.9 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 35, + "M" + ], + "atteso": 26.4 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 35, + "M" + ], + "atteso": 31.8 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 35, + "M" + ], + "atteso": 37.3 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 35, + "M" + ], + "atteso": 42.7 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 35, + "M" + ], + "atteso": 48.2 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 35, + "M" + ], + "atteso": 53.6 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 35, + "M" + ], + "atteso": 59.1 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 35, + "M" + ], + "atteso": 64.5 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 35, + "M" + ], + "atteso": 70 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 35, + "M" + ], + "atteso": 74.5 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 35, + "M" + ], + "atteso": 79.1 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 35, + "M" + ], + "atteso": 83.6 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 35, + "M" + ], + "atteso": 88.2 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 35, + "M" + ], + "atteso": 92.7 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 35, + "M" + ], + "atteso": 97.3 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 35, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 40, + "M" + ], + "atteso": 23.5 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 40, + "M" + ], + "atteso": 27.8 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 40, + "M" + ], + "atteso": 32.2 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 40, + "M" + ], + "atteso": 36.5 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 40, + "M" + ], + "atteso": 40.9 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 40, + "M" + ], + "atteso": 45.2 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 40, + "M" + ], + "atteso": 49.6 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 40, + "M" + ], + "atteso": 53.9 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 40, + "M" + ], + "atteso": 58.3 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 40, + "M" + ], + "atteso": 62.6 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 40, + "M" + ], + "atteso": 67.0 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 40, + "M" + ], + "atteso": 71.3 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 40, + "M" + ], + "atteso": 75.7 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 40, + "M" + ], + "atteso": 80.0 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 40, + "M" + ], + "atteso": 84.3 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 40, + "M" + ], + "atteso": 88.7 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 40, + "M" + ], + "atteso": 93.0 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 40, + "M" + ], + "atteso": 97.4 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 40, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 40, + "M" + ], + "atteso": 15.5 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 40, + "M" + ], + "atteso": 20.9 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 40, + "M" + ], + "atteso": 26.4 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 40, + "M" + ], + "atteso": 31.8 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 40, + "M" + ], + "atteso": 37.3 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 40, + "M" + ], + "atteso": 42.7 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 40, + "M" + ], + "atteso": 48.2 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 40, + "M" + ], + "atteso": 53.6 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 40, + "M" + ], + "atteso": 59.1 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 40, + "M" + ], + "atteso": 64.5 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 40, + "M" + ], + "atteso": 70 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 40, + "M" + ], + "atteso": 74.5 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 40, + "M" + ], + "atteso": 79.1 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 40, + "M" + ], + "atteso": 83.6 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 40, + "M" + ], + "atteso": 88.2 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 40, + "M" + ], + "atteso": 92.7 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 40, + "M" + ], + "atteso": 97.3 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 45, + "M" + ], + "atteso": 20.9 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 45, + "M" + ], + "atteso": 25.5 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 45, + "M" + ], + "atteso": 30.0 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 45, + "M" + ], + "atteso": 34.5 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 45, + "M" + ], + "atteso": 39.1 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 45, + "M" + ], + "atteso": 43.6 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 45, + "M" + ], + "atteso": 48.2 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 45, + "M" + ], + "atteso": 52.7 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 45, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 45, + "M" + ], + "atteso": 61.8 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 45, + "M" + ], + "atteso": 66.4 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 45, + "M" + ], + "atteso": 70.9 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 45, + "M" + ], + "atteso": 75.5 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 45, + "M" + ], + "atteso": 80.0 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 45, + "M" + ], + "atteso": 84.5 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 45, + "M" + ], + "atteso": 89.1 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 45, + "M" + ], + "atteso": 93.6 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 45, + "M" + ], + "atteso": 98.2 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 45, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 45, + "M" + ], + "atteso": 16.2 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 45, + "M" + ], + "atteso": 22.3 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 45, + "M" + ], + "atteso": 28.5 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 45, + "M" + ], + "atteso": 34.6 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 45, + "M" + ], + "atteso": 40.8 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 45, + "M" + ], + "atteso": 46.9 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 45, + "M" + ], + "atteso": 53.1 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 45, + "M" + ], + "atteso": 59.2 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 45, + "M" + ], + "atteso": 65.4 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 45, + "M" + ], + "atteso": 71.3 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 45, + "M" + ], + "atteso": 76.4 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 45, + "M" + ], + "atteso": 81.5 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 45, + "M" + ], + "atteso": 86.7 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 45, + "M" + ], + "atteso": 91.8 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 45, + "M" + ], + "atteso": 96.9 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 50, + "M" + ], + "atteso": 22.9 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 50, + "M" + ], + "atteso": 27.6 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 50, + "M" + ], + "atteso": 32.4 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 50, + "M" + ], + "atteso": 37.1 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 50, + "M" + ], + "atteso": 41.9 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 50, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 50, + "M" + ], + "atteso": 51.4 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 50, + "M" + ], + "atteso": 56.2 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 50, + "M" + ], + "atteso": 61.0 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 50, + "M" + ], + "atteso": 65.7 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 50, + "M" + ], + "atteso": 70.5 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 50, + "M" + ], + "atteso": 75.2 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 50, + "M" + ], + "atteso": 80.0 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 50, + "M" + ], + "atteso": 84.8 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 50, + "M" + ], + "atteso": 89.5 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 50, + "M" + ], + "atteso": 94.3 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 50, + "M" + ], + "atteso": 99.0 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 50, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 50, + "M" + ], + "atteso": 16.2 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 50, + "M" + ], + "atteso": 22.3 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 50, + "M" + ], + "atteso": 28.5 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 50, + "M" + ], + "atteso": 34.6 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 50, + "M" + ], + "atteso": 40.8 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 50, + "M" + ], + "atteso": 46.9 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 50, + "M" + ], + "atteso": 53.1 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 50, + "M" + ], + "atteso": 59.2 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 50, + "M" + ], + "atteso": 65.4 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 50, + "M" + ], + "atteso": 71.3 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 50, + "M" + ], + "atteso": 76.4 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 50, + "M" + ], + "atteso": 81.5 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 50, + "M" + ], + "atteso": 86.7 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 50, + "M" + ], + "atteso": 91.8 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 50, + "M" + ], + "atteso": 96.9 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 55, + "M" + ], + "atteso": 25.0 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 55, + "M" + ], + "atteso": 30.0 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 55, + "M" + ], + "atteso": 35.0 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 55, + "M" + ], + "atteso": 40.0 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 55, + "M" + ], + "atteso": 45.0 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 55, + "M" + ], + "atteso": 50.0 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 55, + "M" + ], + "atteso": 55.0 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 55, + "M" + ], + "atteso": 60.0 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 55, + "M" + ], + "atteso": 65.0 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 55, + "M" + ], + "atteso": 70.0 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 55, + "M" + ], + "atteso": 75.0 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 55, + "M" + ], + "atteso": 80.0 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 55, + "M" + ], + "atteso": 85.0 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 55, + "M" + ], + "atteso": 90.0 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 55, + "M" + ], + "atteso": 95.0 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 55, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 55, + "M" + ], + "atteso": 17.1 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 55, + "M" + ], + "atteso": 24.1 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 55, + "M" + ], + "atteso": 31.2 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 55, + "M" + ], + "atteso": 38.2 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 55, + "M" + ], + "atteso": 45.3 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 55, + "M" + ], + "atteso": 52.4 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 55, + "M" + ], + "atteso": 59.4 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 55, + "M" + ], + "atteso": 66.5 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 55, + "M" + ], + "atteso": 72.9 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 55, + "M" + ], + "atteso": 78.8 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 55, + "M" + ], + "atteso": 84.7 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 55, + "M" + ], + "atteso": 90.6 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 55, + "M" + ], + "atteso": 96.5 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 60, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 60, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 60, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 60, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 60, + "M" + ], + "atteso": 22.1 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 60, + "M" + ], + "atteso": 27.4 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 60, + "M" + ], + "atteso": 32.6 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 60, + "M" + ], + "atteso": 37.9 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 60, + "M" + ], + "atteso": 43.2 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 60, + "M" + ], + "atteso": 48.4 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 60, + "M" + ], + "atteso": 53.7 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 60, + "M" + ], + "atteso": 58.9 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 60, + "M" + ], + "atteso": 64.2 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 60, + "M" + ], + "atteso": 69.5 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 60, + "M" + ], + "atteso": 74.7 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 60, + "M" + ], + "atteso": 80.0 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 60, + "M" + ], + "atteso": 85.3 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 60, + "M" + ], + "atteso": 90.5 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 60, + "M" + ], + "atteso": 95.8 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 60, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 60, + "M" + ], + "atteso": 17.1 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 60, + "M" + ], + "atteso": 24.1 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 60, + "M" + ], + "atteso": 31.2 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 60, + "M" + ], + "atteso": 38.2 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 60, + "M" + ], + "atteso": 45.3 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 60, + "M" + ], + "atteso": 52.4 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 60, + "M" + ], + "atteso": 59.4 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 60, + "M" + ], + "atteso": 66.5 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 60, + "M" + ], + "atteso": 72.9 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 60, + "M" + ], + "atteso": 78.8 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 60, + "M" + ], + "atteso": 84.7 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 60, + "M" + ], + "atteso": 90.6 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 60, + "M" + ], + "atteso": 96.5 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 65, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 65, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 65, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 65, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 65, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 65, + "M" + ], + "atteso": 30.9 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 65, + "M" + ], + "atteso": 36.6 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 65, + "M" + ], + "atteso": 42.3 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 65, + "M" + ], + "atteso": 47.9 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 65, + "M" + ], + "atteso": 53.6 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 65, + "M" + ], + "atteso": 59.2 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 65, + "M" + ], + "atteso": 64.9 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 65, + "M" + ], + "atteso": 70.6 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 65, + "M" + ], + "atteso": 76.2 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 65, + "M" + ], + "atteso": 81.9 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 65, + "M" + ], + "atteso": 87.5 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 65, + "M" + ], + "atteso": 93.2 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 65, + "M" + ], + "atteso": 98.9 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 65, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 65, + "M" + ], + "atteso": 18.3 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 65, + "M" + ], + "atteso": 26.6 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 65, + "M" + ], + "atteso": 34.8 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 65, + "M" + ], + "atteso": 43.1 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 65, + "M" + ], + "atteso": 51.4 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 65, + "M" + ], + "atteso": 59.7 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 65, + "M" + ], + "atteso": 67.9 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 65, + "M" + ], + "atteso": 75.2 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 65, + "M" + ], + "atteso": 82.1 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 65, + "M" + ], + "atteso": 89.0 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 65, + "M" + ], + "atteso": 95.9 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 70, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 70, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 70, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 70, + "M" + ], + "atteso": 22.9 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 70, + "M" + ], + "atteso": 29.0 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 70, + "M" + ], + "atteso": 35.1 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 70, + "M" + ], + "atteso": 41.2 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 70, + "M" + ], + "atteso": 47.3 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 70, + "M" + ], + "atteso": 53.5 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 70, + "M" + ], + "atteso": 59.6 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 70, + "M" + ], + "atteso": 65.7 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 70, + "M" + ], + "atteso": 71.8 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 70, + "M" + ], + "atteso": 78.0 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 70, + "M" + ], + "atteso": 84.1 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 70, + "M" + ], + "atteso": 90.2 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 70, + "M" + ], + "atteso": 96.3 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 70, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 70, + "M" + ], + "atteso": 18.3 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 70, + "M" + ], + "atteso": 26.6 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 70, + "M" + ], + "atteso": 34.8 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 70, + "M" + ], + "atteso": 43.1 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 70, + "M" + ], + "atteso": 51.4 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 70, + "M" + ], + "atteso": 59.7 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 70, + "M" + ], + "atteso": 67.9 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 70, + "M" + ], + "atteso": 75.2 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 70, + "M" + ], + "atteso": 82.1 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 70, + "M" + ], + "atteso": 89.0 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 70, + "M" + ], + "atteso": 95.9 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 75, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 75, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 75, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 75, + "M" + ], + "atteso": 26.7 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 75, + "M" + ], + "atteso": 33.3 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 75, + "M" + ], + "atteso": 40.0 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 75, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 75, + "M" + ], + "atteso": 53.3 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 75, + "M" + ], + "atteso": 60.0 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 75, + "M" + ], + "atteso": 66.7 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 75, + "M" + ], + "atteso": 73.3 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 75, + "M" + ], + "atteso": 80.0 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 75, + "M" + ], + "atteso": 86.7 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 75, + "M" + ], + "atteso": 93.3 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 75, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 75, + "M" + ], + "atteso": 20.0 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 75, + "M" + ], + "atteso": 30.0 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 75, + "M" + ], + "atteso": 40 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 75, + "M" + ], + "atteso": 50.0 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 75, + "M" + ], + "atteso": 60.0 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 75, + "M" + ], + "atteso": 70 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 75, + "M" + ], + "atteso": 78.3 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 75, + "M" + ], + "atteso": 86.7 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 75, + "M" + ], + "atteso": 95.0 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_plank", + "args": [ + 5, + "M" + ], + "atteso": 10.6 + }, + { + "fn": "score_plank", + "args": [ + 10, + "M" + ], + "atteso": 11.3 + }, + { + "fn": "score_plank", + "args": [ + 15, + "M" + ], + "atteso": 11.9 + }, + { + "fn": "score_plank", + "args": [ + 20, + "M" + ], + "atteso": 12.5 + }, + { + "fn": "score_plank", + "args": [ + 25, + "M" + ], + "atteso": 13.2 + }, + { + "fn": "score_plank", + "args": [ + 30, + "M" + ], + "atteso": 13.8 + }, + { + "fn": "score_plank", + "args": [ + 35, + "M" + ], + "atteso": 14.4 + }, + { + "fn": "score_plank", + "args": [ + 40, + "M" + ], + "atteso": 15.1 + }, + { + "fn": "score_plank", + "args": [ + 45, + "M" + ], + "atteso": 15.7 + }, + { + "fn": "score_plank", + "args": [ + 50, + "M" + ], + "atteso": 16.3 + }, + { + "fn": "score_plank", + "args": [ + 55, + "M" + ], + "atteso": 17.0 + }, + { + "fn": "score_plank", + "args": [ + 60, + "M" + ], + "atteso": 17.6 + }, + { + "fn": "score_plank", + "args": [ + 65, + "M" + ], + "atteso": 18.2 + }, + { + "fn": "score_plank", + "args": [ + 70, + "M" + ], + "atteso": 18.9 + }, + { + "fn": "score_plank", + "args": [ + 75, + "M" + ], + "atteso": 19.5 + }, + { + "fn": "score_plank", + "args": [ + 80, + "M" + ], + "atteso": 21.1 + }, + { + "fn": "score_plank", + "args": [ + 85, + "M" + ], + "atteso": 26.7 + }, + { + "fn": "score_plank", + "args": [ + 90, + "M" + ], + "atteso": 32.2 + }, + { + "fn": "score_plank", + "args": [ + 95, + "M" + ], + "atteso": 37.8 + }, + { + "fn": "score_plank", + "args": [ + 100, + "M" + ], + "atteso": 41.8 + }, + { + "fn": "score_plank", + "args": [ + 105, + "M" + ], + "atteso": 44.8 + }, + { + "fn": "score_plank", + "args": [ + 110, + "M" + ], + "atteso": 47.8 + }, + { + "fn": "score_plank", + "args": [ + 115, + "M" + ], + "atteso": 50.8 + }, + { + "fn": "score_plank", + "args": [ + 120, + "M" + ], + "atteso": 53.8 + }, + { + "fn": "score_plank", + "args": [ + 125, + "M" + ], + "atteso": 56.7 + }, + { + "fn": "score_plank", + "args": [ + 130, + "M" + ], + "atteso": 59.6 + }, + { + "fn": "score_plank", + "args": [ + 135, + "M" + ], + "atteso": 62.4 + }, + { + "fn": "score_plank", + "args": [ + 140, + "M" + ], + "atteso": 65.3 + }, + { + "fn": "score_plank", + "args": [ + 145, + "M" + ], + "atteso": 68.1 + }, + { + "fn": "score_plank", + "args": [ + 150, + "M" + ], + "atteso": 71.0 + }, + { + "fn": "score_plank", + "args": [ + 155, + "M" + ], + "atteso": 73.9 + }, + { + "fn": "score_plank", + "args": [ + 160, + "M" + ], + "atteso": 76.0 + }, + { + "fn": "score_plank", + "args": [ + 165, + "M" + ], + "atteso": 77.7 + }, + { + "fn": "score_plank", + "args": [ + 170, + "M" + ], + "atteso": 79.4 + }, + { + "fn": "score_plank", + "args": [ + 175, + "M" + ], + "atteso": 81.1 + }, + { + "fn": "score_plank", + "args": [ + 180, + "M" + ], + "atteso": 82.8 + }, + { + "fn": "score_plank", + "args": [ + 185, + "M" + ], + "atteso": 84.5 + }, + { + "fn": "score_plank", + "args": [ + 190, + "M" + ], + "atteso": 86.2 + }, + { + "fn": "score_plank", + "args": [ + 195, + "M" + ], + "atteso": 88.0 + }, + { + "fn": "score_plank", + "args": [ + 200, + "M" + ], + "atteso": 89.7 + }, + { + "fn": "score_plank", + "args": [ + 205, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 210, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 215, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 220, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 225, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 230, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 235, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 240, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 245, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 250, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 0, + "M" + ], + "atteso": 10 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 5, + "M" + ], + "atteso": 18.3 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 10, + "M" + ], + "atteso": 26.7 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 15, + "M" + ], + "atteso": 35.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 20, + "M" + ], + "atteso": 42.2 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 25, + "M" + ], + "atteso": 47.8 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 30, + "M" + ], + "atteso": 53.3 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 35, + "M" + ], + "atteso": 58.9 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 40, + "M" + ], + "atteso": 64.4 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 45, + "M" + ], + "atteso": 70 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 50, + "M" + ], + "atteso": 76.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 55, + "M" + ], + "atteso": 82.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 60, + "M" + ], + "atteso": 88.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 65, + "M" + ], + "atteso": 94.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 80, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 85, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 90, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 95, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 100, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 105, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 110, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 115, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 120, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 0, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 2, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 4, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 6, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 8, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 10, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 12, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 14, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 16, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 18, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 20, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 22, + 40, + "M" + ], + "atteso": 25.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 24, + 40, + "M" + ], + "atteso": 30.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 26, + 40, + "M" + ], + "atteso": 35.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 28, + 40, + "M" + ], + "atteso": 40.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 30, + 40, + "M" + ], + "atteso": 45.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 32, + 40, + "M" + ], + "atteso": 50.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 34, + 40, + "M" + ], + "atteso": 55.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 36, + 40, + "M" + ], + "atteso": 60.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 38, + 40, + "M" + ], + "atteso": 65.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 40, + 40, + "M" + ], + "atteso": 70.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 42, + 40, + "M" + ], + "atteso": 75.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 44, + 40, + "M" + ], + "atteso": 80.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 46, + 40, + "M" + ], + "atteso": 85.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 48, + 40, + "M" + ], + "atteso": 90.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 50, + 40, + "M" + ], + "atteso": 95.0 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 52, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 54, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 56, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 58, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 60, + 40, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -29, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -28, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -27, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -26, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -24, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -23, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -22, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -21, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -20, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -19, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -18, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -17, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -16, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -15, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -14, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -13, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -12, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -11, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -10, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -9, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -8, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -7, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -6, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -5, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -4, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -3, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -2, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -1, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 0, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 1, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 2, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 3, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 4, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 5, + "M" + ], + "atteso": 22.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 6, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 7, + "M" + ], + "atteso": 28.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 8, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 9, + "M" + ], + "atteso": 33.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 10, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 11, + "M" + ], + "atteso": 38.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 12, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 13, + "M" + ], + "atteso": 44.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 14, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 15, + "M" + ], + "atteso": 49.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 16, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 17, + "M" + ], + "atteso": 54.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 18, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 19, + "M" + ], + "atteso": 60.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 20, + "M" + ], + "atteso": 62.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 21, + "M" + ], + "atteso": 65.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 22, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 23, + "M" + ], + "atteso": 70.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 24, + "M" + ], + "atteso": 73.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 25, + "M" + ], + "atteso": 76.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 26, + "M" + ], + "atteso": 78.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 27, + "M" + ], + "atteso": 81.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 28, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 29, + "M" + ], + "atteso": 86.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 30, + "M" + ], + "atteso": 89.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 25, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 25, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 25, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 25, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 25, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 25, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 25, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 25, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 30, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 30, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 30, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 30, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 30, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 30, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 30, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 30, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 30, + "M" + ], + "atteso": 62.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 30, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 35, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 35, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 35, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 35, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 35, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 35, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 35, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 35, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 35, + "M" + ], + "atteso": 62.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 35, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 35, + "M" + ], + "atteso": 73.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 35, + "M" + ], + "atteso": 78.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 40, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 40, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 40, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 40, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 40, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 40, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 40, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 40, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 40, + "M" + ], + "atteso": 62.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 40, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 40, + "M" + ], + "atteso": 73.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 40, + "M" + ], + "atteso": 78.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 40, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 40, + "M" + ], + "atteso": 89.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 45, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 45, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 45, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 45, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 45, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 45, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 45, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 45, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 45, + "M" + ], + "atteso": 62.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 45, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 45, + "M" + ], + "atteso": 73.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 45, + "M" + ], + "atteso": 78.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 45, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 45, + "M" + ], + "atteso": 89.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 45, + "M" + ], + "atteso": 94.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 45, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 50, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 50, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 50, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 50, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 50, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 50, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 50, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 50, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 50, + "M" + ], + "atteso": 62.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 50, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 50, + "M" + ], + "atteso": 73.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 50, + "M" + ], + "atteso": 78.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 50, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 50, + "M" + ], + "atteso": 89.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 50, + "M" + ], + "atteso": 94.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 50, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 55, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 55, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 55, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 55, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 55, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 55, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 55, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 55, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 55, + "M" + ], + "atteso": 62.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 55, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 55, + "M" + ], + "atteso": 73.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 55, + "M" + ], + "atteso": 78.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 55, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 55, + "M" + ], + "atteso": 89.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 55, + "M" + ], + "atteso": 94.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 55, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 60, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 60, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 60, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 60, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 60, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 60, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 60, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 60, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 60, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 60, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 60, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 60, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 60, + "M" + ], + "atteso": 62.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 60, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 60, + "M" + ], + "atteso": 73.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 60, + "M" + ], + "atteso": 78.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 60, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 60, + "M" + ], + "atteso": 89.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 60, + "M" + ], + "atteso": 94.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 60, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 65, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 65, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 65, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 65, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 65, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 65, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 65, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 65, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 65, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 65, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 65, + "M" + ], + "atteso": 62.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 65, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 65, + "M" + ], + "atteso": 73.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 65, + "M" + ], + "atteso": 78.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 65, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 65, + "M" + ], + "atteso": 89.3 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 65, + "M" + ], + "atteso": 94.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 65, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 70, + "M" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 70, + "M" + ], + "atteso": 25.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 70, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 70, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 70, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 70, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 70, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 70, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 70, + "M" + ], + "atteso": 62.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 70, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 70, + "M" + ], + "atteso": 73.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 70, + "M" + ], + "atteso": 78.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 70, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 70, + "M" + ], + "atteso": 89.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 70, + "M" + ], + "atteso": 94.7 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 70, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 75, + "M" + ], + "atteso": 30.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 75, + "M" + ], + "atteso": 36.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 75, + "M" + ], + "atteso": 41.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 75, + "M" + ], + "atteso": 46.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 75, + "M" + ], + "atteso": 52.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 75, + "M" + ], + "atteso": 57.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 75, + "M" + ], + "atteso": 62.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 75, + "M" + ], + "atteso": 68.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 75, + "M" + ], + "atteso": 73.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 75, + "M" + ], + "atteso": 78.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 75, + "M" + ], + "atteso": 84.0 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 75, + "M" + ], + "atteso": 89.3 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 75, + "M" + ], + "atteso": 94.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 75, + "M" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 25, + "F" + ], + "atteso": 26.7 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 25, + "F" + ], + "atteso": 33.3 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 25, + "F" + ], + "atteso": 40.0 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 25, + "F" + ], + "atteso": 46.7 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 25, + "F" + ], + "atteso": 53.3 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 25, + "F" + ], + "atteso": 60.0 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 25, + "F" + ], + "atteso": 66.7 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 25, + "F" + ], + "atteso": 73.3 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 25, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 25, + "F" + ], + "atteso": 86.7 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 25, + "F" + ], + "atteso": 93.3 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 25, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 25, + "F" + ], + "atteso": 18.0 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 25, + "F" + ], + "atteso": 26.0 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 25, + "F" + ], + "atteso": 34.0 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 25, + "F" + ], + "atteso": 42.0 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 25, + "F" + ], + "atteso": 50.0 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 25, + "F" + ], + "atteso": 58.0 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 25, + "F" + ], + "atteso": 66.0 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 25, + "F" + ], + "atteso": 73.3 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 25, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 25, + "F" + ], + "atteso": 86.7 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 25, + "F" + ], + "atteso": 93.3 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 25, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 30, + "F" + ], + "atteso": 20.9 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 30, + "F" + ], + "atteso": 27.7 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 30, + "F" + ], + "atteso": 34.5 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 30, + "F" + ], + "atteso": 41.4 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 30, + "F" + ], + "atteso": 48.2 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 30, + "F" + ], + "atteso": 55.0 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 30, + "F" + ], + "atteso": 61.8 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 30, + "F" + ], + "atteso": 68.6 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 30, + "F" + ], + "atteso": 75.5 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 30, + "F" + ], + "atteso": 82.3 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 30, + "F" + ], + "atteso": 89.1 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 30, + "F" + ], + "atteso": 95.9 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 30, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 30, + "F" + ], + "atteso": 18.0 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 30, + "F" + ], + "atteso": 26.0 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 30, + "F" + ], + "atteso": 34.0 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 30, + "F" + ], + "atteso": 42.0 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 30, + "F" + ], + "atteso": 50.0 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 30, + "F" + ], + "atteso": 58.0 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 30, + "F" + ], + "atteso": 66.0 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 30, + "F" + ], + "atteso": 73.3 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 30, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 30, + "F" + ], + "atteso": 86.7 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 30, + "F" + ], + "atteso": 93.3 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 30, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 35, + "F" + ], + "atteso": 21.9 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 35, + "F" + ], + "atteso": 28.8 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 35, + "F" + ], + "atteso": 35.8 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 35, + "F" + ], + "atteso": 42.8 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 35, + "F" + ], + "atteso": 49.8 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 35, + "F" + ], + "atteso": 56.7 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 35, + "F" + ], + "atteso": 63.7 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 35, + "F" + ], + "atteso": 70.7 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 35, + "F" + ], + "atteso": 77.7 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 35, + "F" + ], + "atteso": 84.7 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 35, + "F" + ], + "atteso": 91.6 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 35, + "F" + ], + "atteso": 98.6 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 35, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 35, + "F" + ], + "atteso": 18.0 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 35, + "F" + ], + "atteso": 26.0 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 35, + "F" + ], + "atteso": 34.0 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 35, + "F" + ], + "atteso": 42.0 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 35, + "F" + ], + "atteso": 50.0 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 35, + "F" + ], + "atteso": 58.0 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 35, + "F" + ], + "atteso": 66.0 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 35, + "F" + ], + "atteso": 73.3 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 35, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 35, + "F" + ], + "atteso": 86.7 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 35, + "F" + ], + "atteso": 93.3 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 35, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 40, + "F" + ], + "atteso": 22.9 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 40, + "F" + ], + "atteso": 30.0 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 40, + "F" + ], + "atteso": 37.1 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 40, + "F" + ], + "atteso": 44.3 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 40, + "F" + ], + "atteso": 51.4 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 40, + "F" + ], + "atteso": 58.6 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 40, + "F" + ], + "atteso": 65.7 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 40, + "F" + ], + "atteso": 72.9 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 40, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 40, + "F" + ], + "atteso": 87.1 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 40, + "F" + ], + "atteso": 94.3 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 40, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 40, + "F" + ], + "atteso": 18.0 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 40, + "F" + ], + "atteso": 26.0 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 40, + "F" + ], + "atteso": 34.0 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 40, + "F" + ], + "atteso": 42.0 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 40, + "F" + ], + "atteso": 50.0 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 40, + "F" + ], + "atteso": 58.0 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 40, + "F" + ], + "atteso": 66.0 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 40, + "F" + ], + "atteso": 73.3 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 40, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 40, + "F" + ], + "atteso": 86.7 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 40, + "F" + ], + "atteso": 93.3 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 45, + "F" + ], + "atteso": 24.4 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 45, + "F" + ], + "atteso": 31.9 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 45, + "F" + ], + "atteso": 39.3 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 45, + "F" + ], + "atteso": 46.7 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 45, + "F" + ], + "atteso": 54.1 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 45, + "F" + ], + "atteso": 61.5 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 45, + "F" + ], + "atteso": 68.9 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 45, + "F" + ], + "atteso": 76.3 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 45, + "F" + ], + "atteso": 83.7 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 45, + "F" + ], + "atteso": 91.1 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 45, + "F" + ], + "atteso": 98.5 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 45, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 45, + "F" + ], + "atteso": 19.6 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 45, + "F" + ], + "atteso": 29.2 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 45, + "F" + ], + "atteso": 38.8 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 45, + "F" + ], + "atteso": 48.4 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 45, + "F" + ], + "atteso": 58.0 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 45, + "F" + ], + "atteso": 67.6 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 45, + "F" + ], + "atteso": 76.0 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 45, + "F" + ], + "atteso": 84.0 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 45, + "F" + ], + "atteso": 92.0 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 45, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 50, + "F" + ], + "atteso": 26.2 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 50, + "F" + ], + "atteso": 33.8 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 50, + "F" + ], + "atteso": 41.5 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 50, + "F" + ], + "atteso": 49.2 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 50, + "F" + ], + "atteso": 56.9 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 50, + "F" + ], + "atteso": 64.6 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 50, + "F" + ], + "atteso": 72.3 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 50, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 50, + "F" + ], + "atteso": 87.7 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 50, + "F" + ], + "atteso": 95.4 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 50, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 50, + "F" + ], + "atteso": 19.6 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 50, + "F" + ], + "atteso": 29.2 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 50, + "F" + ], + "atteso": 38.8 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 50, + "F" + ], + "atteso": 48.4 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 50, + "F" + ], + "atteso": 58.0 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 50, + "F" + ], + "atteso": 67.6 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 50, + "F" + ], + "atteso": 76.0 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 50, + "F" + ], + "atteso": 84.0 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 50, + "F" + ], + "atteso": 92.0 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 55, + "F" + ], + "atteso": 28.0 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 55, + "F" + ], + "atteso": 36.0 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 55, + "F" + ], + "atteso": 44.0 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 55, + "F" + ], + "atteso": 52.0 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 55, + "F" + ], + "atteso": 60.0 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 55, + "F" + ], + "atteso": 68.0 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 55, + "F" + ], + "atteso": 76.0 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 55, + "F" + ], + "atteso": 84.0 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 55, + "F" + ], + "atteso": 92.0 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 55, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 55, + "F" + ], + "atteso": 22.0 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 55, + "F" + ], + "atteso": 34.0 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 55, + "F" + ], + "atteso": 46.0 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 55, + "F" + ], + "atteso": 58.0 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 55, + "F" + ], + "atteso": 70 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 55, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 55, + "F" + ], + "atteso": 90.0 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 60, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 60, + "F" + ], + "atteso": 21.7 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 60, + "F" + ], + "atteso": 30.0 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 60, + "F" + ], + "atteso": 38.3 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 60, + "F" + ], + "atteso": 46.7 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 60, + "F" + ], + "atteso": 55.0 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 60, + "F" + ], + "atteso": 63.3 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 60, + "F" + ], + "atteso": 71.7 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 60, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 60, + "F" + ], + "atteso": 88.3 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 60, + "F" + ], + "atteso": 96.7 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 60, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 60, + "F" + ], + "atteso": 22.0 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 60, + "F" + ], + "atteso": 34.0 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 60, + "F" + ], + "atteso": 46.0 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 60, + "F" + ], + "atteso": 58.0 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 60, + "F" + ], + "atteso": 70 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 60, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 60, + "F" + ], + "atteso": 90.0 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 65, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 65, + "F" + ], + "atteso": 25.0 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 65, + "F" + ], + "atteso": 34.0 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 65, + "F" + ], + "atteso": 43.0 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 65, + "F" + ], + "atteso": 52.0 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 65, + "F" + ], + "atteso": 61.0 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 65, + "F" + ], + "atteso": 70.0 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 65, + "F" + ], + "atteso": 79.0 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 65, + "F" + ], + "atteso": 87.9 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 65, + "F" + ], + "atteso": 96.9 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 65, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 65, + "F" + ], + "atteso": 26.0 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 65, + "F" + ], + "atteso": 42.0 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 65, + "F" + ], + "atteso": 58.0 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 65, + "F" + ], + "atteso": 73.3 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 65, + "F" + ], + "atteso": 86.7 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 70, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 70, + "F" + ], + "atteso": 28.9 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 70, + "F" + ], + "atteso": 38.6 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 70, + "F" + ], + "atteso": 48.4 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 70, + "F" + ], + "atteso": 58.2 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 70, + "F" + ], + "atteso": 67.9 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 70, + "F" + ], + "atteso": 77.7 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 70, + "F" + ], + "atteso": 87.5 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 70, + "F" + ], + "atteso": 97.3 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 70, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 70, + "F" + ], + "atteso": 26.0 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 70, + "F" + ], + "atteso": 42.0 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 70, + "F" + ], + "atteso": 58.0 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 70, + "F" + ], + "atteso": 73.3 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 70, + "F" + ], + "atteso": 86.7 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 10, + 75, + "F" + ], + "atteso": 22.8 + }, + { + "fn": "score_handgrip", + "args": [ + 12.5, + 75, + "F" + ], + "atteso": 33.5 + }, + { + "fn": "score_handgrip", + "args": [ + 15.0, + 75, + "F" + ], + "atteso": 44.2 + }, + { + "fn": "score_handgrip", + "args": [ + 17.5, + 75, + "F" + ], + "atteso": 54.9 + }, + { + "fn": "score_handgrip", + "args": [ + 20.0, + 75, + "F" + ], + "atteso": 65.6 + }, + { + "fn": "score_handgrip", + "args": [ + 22.5, + 75, + "F" + ], + "atteso": 76.3 + }, + { + "fn": "score_handgrip", + "args": [ + 25.0, + 75, + "F" + ], + "atteso": 87.0 + }, + { + "fn": "score_handgrip", + "args": [ + 27.5, + 75, + "F" + ], + "atteso": 97.6 + }, + { + "fn": "score_handgrip", + "args": [ + 30.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 32.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 35.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 37.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 40.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 42.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 45.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 47.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 50.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 52.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 55.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 57.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 60.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 62.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 65.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 67.5, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_handgrip", + "args": [ + 70.0, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 0, + 75, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_pushup", + "args": [ + 2, + 75, + "F" + ], + "atteso": 34.0 + }, + { + "fn": "score_pushup", + "args": [ + 4, + 75, + "F" + ], + "atteso": 58.0 + }, + { + "fn": "score_pushup", + "args": [ + 6, + 75, + "F" + ], + "atteso": 80.0 + }, + { + "fn": "score_pushup", + "args": [ + 8, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 10, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 12, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 14, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 16, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 18, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 20, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 22, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 24, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 26, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 28, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 30, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 32, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 34, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 36, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 38, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 40, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 42, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 44, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 46, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 48, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 50, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 52, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 54, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 56, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 58, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_pushup", + "args": [ + 60, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 0, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_plank", + "args": [ + 5, + "F" + ], + "atteso": 11.4 + }, + { + "fn": "score_plank", + "args": [ + 10, + "F" + ], + "atteso": 12.9 + }, + { + "fn": "score_plank", + "args": [ + 15, + "F" + ], + "atteso": 14.3 + }, + { + "fn": "score_plank", + "args": [ + 20, + "F" + ], + "atteso": 15.7 + }, + { + "fn": "score_plank", + "args": [ + 25, + "F" + ], + "atteso": 17.1 + }, + { + "fn": "score_plank", + "args": [ + 30, + "F" + ], + "atteso": 18.6 + }, + { + "fn": "score_plank", + "args": [ + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_plank", + "args": [ + 40, + "F" + ], + "atteso": 23.6 + }, + { + "fn": "score_plank", + "args": [ + 45, + "F" + ], + "atteso": 27.1 + }, + { + "fn": "score_plank", + "args": [ + 50, + "F" + ], + "atteso": 30.7 + }, + { + "fn": "score_plank", + "args": [ + 55, + "F" + ], + "atteso": 34.3 + }, + { + "fn": "score_plank", + "args": [ + 60, + "F" + ], + "atteso": 37.9 + }, + { + "fn": "score_plank", + "args": [ + 65, + "F" + ], + "atteso": 41.4 + }, + { + "fn": "score_plank", + "args": [ + 70, + "F" + ], + "atteso": 45.0 + }, + { + "fn": "score_plank", + "args": [ + 75, + "F" + ], + "atteso": 48.6 + }, + { + "fn": "score_plank", + "args": [ + 80, + "F" + ], + "atteso": 52.1 + }, + { + "fn": "score_plank", + "args": [ + 85, + "F" + ], + "atteso": 55.8 + }, + { + "fn": "score_plank", + "args": [ + 90, + "F" + ], + "atteso": 60.0 + }, + { + "fn": "score_plank", + "args": [ + 95, + "F" + ], + "atteso": 64.2 + }, + { + "fn": "score_plank", + "args": [ + 100, + "F" + ], + "atteso": 68.3 + }, + { + "fn": "score_plank", + "args": [ + 105, + "F" + ], + "atteso": 72.5 + }, + { + "fn": "score_plank", + "args": [ + 110, + "F" + ], + "atteso": 75.9 + }, + { + "fn": "score_plank", + "args": [ + 115, + "F" + ], + "atteso": 78.1 + }, + { + "fn": "score_plank", + "args": [ + 120, + "F" + ], + "atteso": 80.3 + }, + { + "fn": "score_plank", + "args": [ + 125, + "F" + ], + "atteso": 82.5 + }, + { + "fn": "score_plank", + "args": [ + 130, + "F" + ], + "atteso": 84.7 + }, + { + "fn": "score_plank", + "args": [ + 135, + "F" + ], + "atteso": 86.9 + }, + { + "fn": "score_plank", + "args": [ + 140, + "F" + ], + "atteso": 89.1 + }, + { + "fn": "score_plank", + "args": [ + 145, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 150, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 155, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 160, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 165, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 170, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 175, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 180, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 185, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 190, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 195, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 200, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 205, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 210, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 215, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 220, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 225, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 230, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 235, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 240, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 245, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_plank", + "args": [ + 250, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 0, + "F" + ], + "atteso": 10 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 5, + "F" + ], + "atteso": 25.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 10, + "F" + ], + "atteso": 40 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 15, + "F" + ], + "atteso": 50.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 20, + "F" + ], + "atteso": 60.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 25, + "F" + ], + "atteso": 70 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 30, + "F" + ], + "atteso": 76.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 35, + "F" + ], + "atteso": 82.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 40, + "F" + ], + "atteso": 88.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 45, + "F" + ], + "atteso": 94.0 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 50, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 80, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 85, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 90, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 95, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 100, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 105, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 110, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 115, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flexed_arm_hang", + "args": [ + 120, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 0, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 2, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 4, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 6, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 8, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 10, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 12, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 14, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 16, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 18, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 20, + 40, + "F" + ], + "atteso": 24.9 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 22, + 40, + "F" + ], + "atteso": 30.4 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 24, + 40, + "F" + ], + "atteso": 35.9 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 26, + 40, + "F" + ], + "atteso": 41.4 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 28, + 40, + "F" + ], + "atteso": 46.8 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 30, + 40, + "F" + ], + "atteso": 52.3 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 32, + 40, + "F" + ], + "atteso": 57.8 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 34, + 40, + "F" + ], + "atteso": 63.3 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 36, + 40, + "F" + ], + "atteso": 68.8 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 38, + 40, + "F" + ], + "atteso": 74.3 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 40, + 40, + "F" + ], + "atteso": 79.8 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 42, + 40, + "F" + ], + "atteso": 85.3 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 44, + 40, + "F" + ], + "atteso": 90.7 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 46, + 40, + "F" + ], + "atteso": 96.2 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 48, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 50, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 52, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 54, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 56, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 58, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_sit_to_stand_1min", + "args": [ + 60, + 40, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -29, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -28, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -27, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -26, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -24, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -23, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -22, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -21, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -20, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -19, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -18, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -17, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -16, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -15, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -14, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -13, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -12, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -11, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -10, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -9, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -8, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -7, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -6, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -5, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -4, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -3, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -2, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + -1, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 0, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 1, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 2, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 3, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 4, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 5, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 6, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 7, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 8, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 9, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 10, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 11, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 12, + "F" + ], + "atteso": 22.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 13, + "F" + ], + "atteso": 25.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 14, + "F" + ], + "atteso": 28.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 15, + "F" + ], + "atteso": 30.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 16, + "F" + ], + "atteso": 33.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 17, + "F" + ], + "atteso": 36.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 18, + "F" + ], + "atteso": 38.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 19, + "F" + ], + "atteso": 41.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 20, + "F" + ], + "atteso": 44.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 21, + "F" + ], + "atteso": 46.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 22, + "F" + ], + "atteso": 49.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 23, + "F" + ], + "atteso": 52.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 24, + "F" + ], + "atteso": 54.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 25, + "F" + ], + "atteso": 57.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 26, + "F" + ], + "atteso": 60.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 27, + "F" + ], + "atteso": 62.7 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 28, + "F" + ], + "atteso": 65.3 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 29, + "F" + ], + "atteso": 68.0 + }, + { + "fn": "score_sit_and_reach", + "args": [ + 30, + "F" + ], + "atteso": 70.7 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 25, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 25, + "F" + ], + "atteso": 23.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 25, + "F" + ], + "atteso": 28.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 25, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 25, + "F" + ], + "atteso": 39.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 30, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 30, + "F" + ], + "atteso": 23.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 30, + "F" + ], + "atteso": 28.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 30, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 30, + "F" + ], + "atteso": 39.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 30, + "F" + ], + "atteso": 44.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 30, + "F" + ], + "atteso": 49.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 35, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 35, + "F" + ], + "atteso": 23.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 35, + "F" + ], + "atteso": 28.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 35, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 35, + "F" + ], + "atteso": 39.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 35, + "F" + ], + "atteso": 44.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 35, + "F" + ], + "atteso": 49.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 35, + "F" + ], + "atteso": 55.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 35, + "F" + ], + "atteso": 60.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 40, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 40, + "F" + ], + "atteso": 23.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 40, + "F" + ], + "atteso": 28.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 40, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 40, + "F" + ], + "atteso": 39.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 40, + "F" + ], + "atteso": 44.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 40, + "F" + ], + "atteso": 49.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 40, + "F" + ], + "atteso": 55.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 40, + "F" + ], + "atteso": 60.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 40, + "F" + ], + "atteso": 65.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 40, + "F" + ], + "atteso": 71.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 45, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 45, + "F" + ], + "atteso": 23.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 45, + "F" + ], + "atteso": 28.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 45, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 45, + "F" + ], + "atteso": 39.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 45, + "F" + ], + "atteso": 44.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 45, + "F" + ], + "atteso": 49.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 45, + "F" + ], + "atteso": 55.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 45, + "F" + ], + "atteso": 60.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 45, + "F" + ], + "atteso": 65.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 45, + "F" + ], + "atteso": 71.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 45, + "F" + ], + "atteso": 76.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 45, + "F" + ], + "atteso": 81.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 50, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 50, + "F" + ], + "atteso": 23.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 50, + "F" + ], + "atteso": 28.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 50, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 50, + "F" + ], + "atteso": 39.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 50, + "F" + ], + "atteso": 44.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 50, + "F" + ], + "atteso": 49.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 50, + "F" + ], + "atteso": 55.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 50, + "F" + ], + "atteso": 60.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 50, + "F" + ], + "atteso": 65.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 50, + "F" + ], + "atteso": 71.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 50, + "F" + ], + "atteso": 76.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 50, + "F" + ], + "atteso": 81.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 50, + "F" + ], + "atteso": 87.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 50, + "F" + ], + "atteso": 92.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 55, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 55, + "F" + ], + "atteso": 23.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 55, + "F" + ], + "atteso": 28.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 55, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 55, + "F" + ], + "atteso": 39.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 55, + "F" + ], + "atteso": 44.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 55, + "F" + ], + "atteso": 49.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 55, + "F" + ], + "atteso": 55.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 55, + "F" + ], + "atteso": 60.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 55, + "F" + ], + "atteso": 65.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 55, + "F" + ], + "atteso": 71.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 55, + "F" + ], + "atteso": 76.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 55, + "F" + ], + "atteso": 81.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 55, + "F" + ], + "atteso": 87.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 55, + "F" + ], + "atteso": 92.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 55, + "F" + ], + "atteso": 97.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 55, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 60, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 60, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 60, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 60, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 60, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 60, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 60, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 60, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 60, + "F" + ], + "atteso": 23.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 60, + "F" + ], + "atteso": 28.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 60, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 60, + "F" + ], + "atteso": 39.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 60, + "F" + ], + "atteso": 44.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 60, + "F" + ], + "atteso": 49.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 60, + "F" + ], + "atteso": 55.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 60, + "F" + ], + "atteso": 60.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 60, + "F" + ], + "atteso": 65.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 60, + "F" + ], + "atteso": 71.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 60, + "F" + ], + "atteso": 76.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 60, + "F" + ], + "atteso": 81.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 60, + "F" + ], + "atteso": 87.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 60, + "F" + ], + "atteso": 92.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 60, + "F" + ], + "atteso": 97.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 60, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 65, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 65, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 65, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 65, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 65, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 65, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 65, + "F" + ], + "atteso": 23.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 65, + "F" + ], + "atteso": 28.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 65, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 65, + "F" + ], + "atteso": 39.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 65, + "F" + ], + "atteso": 44.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 65, + "F" + ], + "atteso": 49.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 65, + "F" + ], + "atteso": 55.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 65, + "F" + ], + "atteso": 60.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 65, + "F" + ], + "atteso": 65.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 65, + "F" + ], + "atteso": 71.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 65, + "F" + ], + "atteso": 76.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 65, + "F" + ], + "atteso": 81.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 65, + "F" + ], + "atteso": 87.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 65, + "F" + ], + "atteso": 92.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 65, + "F" + ], + "atteso": 97.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 65, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 70, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 70, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 70, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 70, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 70, + "F" + ], + "atteso": 23.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 70, + "F" + ], + "atteso": 28.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 70, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 70, + "F" + ], + "atteso": 39.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 70, + "F" + ], + "atteso": 44.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 70, + "F" + ], + "atteso": 49.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 70, + "F" + ], + "atteso": 55.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 70, + "F" + ], + "atteso": 60.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 70, + "F" + ], + "atteso": 65.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 70, + "F" + ], + "atteso": 71.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 70, + "F" + ], + "atteso": 76.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 70, + "F" + ], + "atteso": 81.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 70, + "F" + ], + "atteso": 87.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 70, + "F" + ], + "atteso": 92.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 70, + "F" + ], + "atteso": 97.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 70, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + -30, + 75, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -28, + 75, + "F" + ], + "atteso": 20 + }, + { + "fn": "score_back_scratch", + "args": [ + -26, + 75, + "F" + ], + "atteso": 23.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -24, + 75, + "F" + ], + "atteso": 28.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -22, + 75, + "F" + ], + "atteso": 33.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -20, + 75, + "F" + ], + "atteso": 39.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -18, + 75, + "F" + ], + "atteso": 44.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -16, + 75, + "F" + ], + "atteso": 49.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -14, + 75, + "F" + ], + "atteso": 55.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -12, + 75, + "F" + ], + "atteso": 60.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -10, + 75, + "F" + ], + "atteso": 65.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -8, + 75, + "F" + ], + "atteso": 71.2 + }, + { + "fn": "score_back_scratch", + "args": [ + -6, + 75, + "F" + ], + "atteso": 76.5 + }, + { + "fn": "score_back_scratch", + "args": [ + -4, + 75, + "F" + ], + "atteso": 81.9 + }, + { + "fn": "score_back_scratch", + "args": [ + -2, + 75, + "F" + ], + "atteso": 87.2 + }, + { + "fn": "score_back_scratch", + "args": [ + 0, + 75, + "F" + ], + "atteso": 92.5 + }, + { + "fn": "score_back_scratch", + "args": [ + 2, + 75, + "F" + ], + "atteso": 97.9 + }, + { + "fn": "score_back_scratch", + "args": [ + 4, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 6, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 8, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 10, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 12, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 14, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 16, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 18, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_back_scratch", + "args": [ + 20, + 75, + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 20, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 21.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 20, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 17.5 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 20, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 22.5 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 30, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 26.9 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 30, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 21.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 30, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 28.8 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 40, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 33.8 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 40, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 25.0 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 40, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 43.5 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 50, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 42.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 50, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 28.8 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 50, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 60.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 60, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 50.6 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 60, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 33.8 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 60, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 71.5 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 70, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 59.1 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 70, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 39.4 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 70, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 82.8 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 80, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 70.0 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 80, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 45.0 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 80, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 94.0 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 90, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 81.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 90, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 50.6 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 90, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 100, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 92.5 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 100, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 56.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 100, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 110, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 110, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 63.8 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 110, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 120, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 120, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 75.0 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 120, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 130, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 130, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 86.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 130, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 140, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 140, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 97.5 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 140, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 150, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 150, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 150, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 160, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 160, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 160, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 170, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 170, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 170, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 180, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 180, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 180, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 190, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 190, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 190, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 200, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 200, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 200, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "M" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 20, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 28.8 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 20, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 21.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 20, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 28.8 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 30, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 42.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 30, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 26.9 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 30, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 54.4 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 40, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 56.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 40, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 33.1 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 40, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 75.0 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 50, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 73.8 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 50, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 40.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 50, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 90.3 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 60, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 87.5 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 60, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 47.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 60, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 70, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 98.8 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 70, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 54.2 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 70, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 80, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 80, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 62.5 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 80, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 90, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 90, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 76.6 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 90, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 100, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 100, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 90.6 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 100, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 110, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 110, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 110, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 120, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 120, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 120, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 130, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 130, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 130, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 140, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 140, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 140, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 150, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 150, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 150, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 160, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 160, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 160, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 170, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 170, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 170, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 180, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 180, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 180, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 190, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 190, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 190, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 200, + 80, + 5, + [ + [ + 0.5, + 30 + ], + [ + 1.0, + 60 + ], + [ + 1.25, + 80 + ], + [ + 1.5, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.6, + 60 + ], + [ + 0.75, + 80 + ], + [ + 1.0, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 200, + 80, + 5, + [ + [ + 0.75, + 30 + ], + [ + 1.5, + 60 + ], + [ + 1.75, + 80 + ], + [ + 2.0, + 100 + ] + ], + [ + [ + 0.5, + 30 + ], + [ + 1.1, + 60 + ], + [ + 1.3, + 80 + ], + [ + 1.5, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_bw_ratio_lift", + "args": [ + 200, + 80, + 5, + [ + [ + 0.45, + 30 + ], + [ + 0.7, + 60 + ], + [ + 0.95, + 80 + ], + [ + 1.2, + 100 + ] + ], + [ + [ + 0.3, + 30 + ], + [ + 0.45, + 60 + ], + [ + 0.6, + 80 + ], + [ + 0.8, + 100 + ] + ], + "F" + ], + "atteso": 100 + }, + { + "fn": "score_flamingo", + "args": [ + 0 + ], + "atteso": 100 + }, + { + "fn": "score_flamingo", + "args": [ + 1 + ], + "atteso": 100 + }, + { + "fn": "score_flamingo", + "args": [ + 2 + ], + "atteso": 100 + }, + { + "fn": "score_flamingo", + "args": [ + 3 + ], + "atteso": 100 + }, + { + "fn": "score_flamingo", + "args": [ + 4 + ], + "atteso": 95.0 + }, + { + "fn": "score_flamingo", + "args": [ + 5 + ], + "atteso": 90.0 + }, + { + "fn": "score_flamingo", + "args": [ + 6 + ], + "atteso": 85.0 + }, + { + "fn": "score_flamingo", + "args": [ + 7 + ], + "atteso": 80 + }, + { + "fn": "score_flamingo", + "args": [ + 8 + ], + "atteso": 76.2 + }, + { + "fn": "score_flamingo", + "args": [ + 9 + ], + "atteso": 72.5 + }, + { + "fn": "score_flamingo", + "args": [ + 10 + ], + "atteso": 68.8 + }, + { + "fn": "score_flamingo", + "args": [ + 11 + ], + "atteso": 65.0 + }, + { + "fn": "score_flamingo", + "args": [ + 12 + ], + "atteso": 61.2 + }, + { + "fn": "score_flamingo", + "args": [ + 13 + ], + "atteso": 57.5 + }, + { + "fn": "score_flamingo", + "args": [ + 14 + ], + "atteso": 53.8 + }, + { + "fn": "score_flamingo", + "args": [ + 15 + ], + "atteso": 50 + }, + { + "fn": "score_flamingo", + "args": [ + 16 + ], + "atteso": 47.3 + }, + { + "fn": "score_flamingo", + "args": [ + 17 + ], + "atteso": 44.7 + }, + { + "fn": "score_flamingo", + "args": [ + 18 + ], + "atteso": 42.0 + }, + { + "fn": "score_flamingo", + "args": [ + 19 + ], + "atteso": 39.3 + }, + { + "fn": "score_flamingo", + "args": [ + 20 + ], + "atteso": 36.7 + }, + { + "fn": "score_flamingo", + "args": [ + 21 + ], + "atteso": 34.0 + }, + { + "fn": "score_flamingo", + "args": [ + 22 + ], + "atteso": 31.3 + }, + { + "fn": "score_flamingo", + "args": [ + 23 + ], + "atteso": 28.7 + }, + { + "fn": "score_flamingo", + "args": [ + 24 + ], + "atteso": 26.0 + }, + { + "fn": "score_flamingo", + "args": [ + 25 + ], + "atteso": 23.3 + }, + { + "fn": "score_flamingo", + "args": [ + 26 + ], + "atteso": 20.7 + }, + { + "fn": "score_flamingo", + "args": [ + 27 + ], + "atteso": 18.0 + }, + { + "fn": "score_flamingo", + "args": [ + 28 + ], + "atteso": 15.3 + }, + { + "fn": "score_flamingo", + "args": [ + 29 + ], + "atteso": 12.7 + }, + { + "fn": "score_flamingo", + "args": [ + 30 + ], + "atteso": 10 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 0, + 0 + ], + "atteso": 0 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 10, + 10 + ], + "atteso": 5.6 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 20, + 20 + ], + "atteso": 11.1 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 30, + 30 + ], + "atteso": 16.7 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 40, + 40 + ], + "atteso": 22.2 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 50, + 50 + ], + "atteso": 27.8 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 60, + 60 + ], + "atteso": 33.3 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 70, + 70 + ], + "atteso": 38.9 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 80, + 80 + ], + "atteso": 44.4 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 90, + 90 + ], + "atteso": 50.0 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 100, + 100 + ], + "atteso": 55.6 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 110, + 110 + ], + "atteso": 61.1 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 120, + 120 + ], + "atteso": 66.7 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 130, + 130 + ], + "atteso": 72.2 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 140, + 140 + ], + "atteso": 77.8 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 150, + 150 + ], + "atteso": 83.3 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 160, + 160 + ], + "atteso": 88.9 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 170, + 170 + ], + "atteso": 94.4 + }, + { + "fn": "score_shoulder_mobility_wt", + "args": [ + 180, + 180 + ], + "atteso": 100 + } + ] +} \ No newline at end of file