diff --git a/core/migrations/0033_heightpercentile_and_more.py b/core/migrations/0033_heightpercentile_and_more.py new file mode 100644 index 00000000..cb8cfdfe --- /dev/null +++ b/core/migrations/0033_heightpercentile_and_more.py @@ -0,0 +1,92 @@ +# Generated by Django 4.2.8 on 2023-12-19 11:28 + +from django.db import migrations, models, transaction +from django.utils import dateparse +import csv + + +def add_to_ORM(HeightPercentile: models.Model, alias, filepath: str, sex: str): + with open(filepath) as csvfile: + height_reader = csv.DictReader(csvfile) + data_list = [] + for row in height_reader: + data_list.append( + HeightPercentile( + age_in_days=dateparse.parse_duration(f'P{row["Day"]}D'), + sex=sex, + p3_height=row["P3"], + p15_height=row["P15"], + p50_height=row["P50"], + p85_height=row["P85"], + p97_height=row["P97"], + ) + ) + HeightPercentile.objects.using(alias).bulk_create(data_list, batch_size=50) + + +def insert_height_percentiles(apps, schema_editor): + HeightPercentile: models.Model = apps.get_model("core", "HeightPercentile") + db_alias = schema_editor.connection.alias + with transaction.atomic(): + add_to_ORM( + HeightPercentile, + db_alias, + "core/migrations/height_percentile_boys.csv", + "boy", + ) + with transaction.atomic(): + add_to_ORM( + HeightPercentile, + db_alias, + "core/migrations/height_percentile_girls.csv", + "girl", + ) + + +def remove_height_percentiles(apps, schema_editor): + HeightPercentile: models.Model = apps.get_model("core", "HeightPercentile") + db_alias = schema_editor.connection.alias + with transaction.atomic(): + HeightPercentile.objects.using(db_alias).all().delete() + + +class Migration(migrations.Migration): + dependencies = [ + ("core", "0032_child_birth_time"), + ] + + operations = [ + migrations.CreateModel( + name="HeightPercentile", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("age_in_days", models.DurationField()), + ("p3_height", models.FloatField()), + ("p15_height", models.FloatField()), + ("p50_height", models.FloatField()), + ("p85_height", models.FloatField()), + ("p97_height", models.FloatField()), + ( + "sex", + models.CharField( + choices=[("girl", "Girl"), ("boy", "Boy")], max_length=255 + ), + ), + ], + ), + migrations.AddConstraint( + model_name="heightpercentile", + constraint=models.UniqueConstraint( + fields=("age_in_days", "sex"), name="unique_age_sex_height" + ), + ), + migrations.RunPython(insert_height_percentiles, remove_height_percentiles), + ] diff --git a/core/migrations/height_percentile_boys.csv b/core/migrations/height_percentile_boys.csv new file mode 100644 index 00000000..2caca521 --- /dev/null +++ b/core/migrations/height_percentile_boys.csv @@ -0,0 +1,1858 @@ +Day,L,M,S,P01,P1,P3,P5,P10,P15,P25,P50,P75,P85,P90,P95,P97,P99,P999 +0,1,49.8842,0.03795,44.034,45.48,46.324,46.77,47.458,47.922,48.607,49.884,51.161,51.846,52.31,52.998,53.445,54.288,55.734 +1,1,50.0601,0.03785,44.205,45.652,46.496,46.943,47.632,48.096,48.782,50.06,51.338,52.024,52.488,53.177,53.624,54.468,55.915 +2,1,50.2359,0.03775,44.376,45.824,46.669,47.117,47.806,48.27,48.957,50.236,51.515,52.201,52.666,53.355,53.803,54.648,56.096 +3,1,50.4118,0.03764,44.548,45.998,46.843,47.291,47.98,48.445,49.132,50.412,51.692,52.378,52.844,53.533,53.981,54.826,56.276 +4,1,50.5876,0.03754,44.719,46.17,47.016,47.464,48.154,48.619,49.307,50.588,51.868,52.556,53.021,53.711,54.159,55.005,56.456 +5,1,50.7635,0.03744,44.89,46.342,47.189,47.637,48.328,48.794,49.482,50.764,52.045,52.733,53.199,53.89,54.338,55.185,56.637 +6,1,50.9393,0.03734,45.061,46.514,47.362,47.811,48.502,48.968,49.656,50.939,52.222,52.911,53.377,54.068,54.517,55.364,56.817 +7,1,51.1152,0.03723,45.234,46.688,47.536,47.985,48.676,49.143,49.832,51.115,52.399,53.088,53.554,54.245,54.694,55.542,56.996 +8,1,51.291,0.03713,45.406,46.861,47.709,48.158,48.85,49.317,50.006,51.291,52.576,53.265,53.732,54.424,54.873,55.721,57.176 +9,1,51.4669,0.03703,45.577,47.033,47.882,48.332,49.024,49.492,50.181,51.467,52.752,53.442,53.909,54.602,55.051,55.9,57.356 +10,1,51.6427,0.03693,45.749,47.206,48.056,48.506,49.199,49.666,50.356,51.643,52.929,53.619,54.087,54.78,55.23,56.079,57.536 +11,1,51.8186,0.03682,45.923,47.38,48.23,48.68,49.373,49.841,50.532,51.819,53.106,53.796,54.264,54.957,55.407,56.257,57.715 +12,1,51.9944,0.03672,46.094,47.553,48.404,48.854,49.548,50.016,50.707,51.994,53.282,53.973,54.441,55.135,55.585,56.436,57.894 +13,1,52.1702,0.03662,46.266,47.726,48.577,49.028,49.722,50.19,50.882,52.17,53.459,54.15,54.619,55.313,55.763,56.615,58.074 +14,1,52.3461,0.03652,46.439,47.899,48.751,49.202,49.896,50.365,51.057,52.346,53.636,54.327,54.796,55.491,55.942,56.793,58.254 +15,1,52.4978,0.03645,46.585,48.046,48.899,49.35,50.045,50.515,51.207,52.498,53.788,54.481,54.95,55.645,56.097,56.949,58.411 +16,1,52.6488,0.03639,46.728,48.192,49.045,49.497,50.193,50.663,51.357,52.649,53.941,54.634,55.104,55.8,56.252,57.106,58.569 +17,1,52.799,0.03633,46.871,48.337,49.191,49.644,50.341,50.811,51.505,52.799,54.093,54.787,55.257,55.954,56.407,57.261,58.727 +18,1,52.9483,0.03627,47.014,48.481,49.336,49.789,50.487,50.958,51.653,52.948,54.244,54.939,55.409,56.107,56.56,57.416,58.883 +19,1,53.0967,0.03621,47.155,48.624,49.481,49.934,50.633,51.104,51.8,53.097,54.393,55.089,55.561,56.259,56.713,57.569,59.038 +20,1,53.2441,0.03615,47.296,48.766,49.624,50.078,50.777,51.249,51.946,53.244,54.542,55.239,55.711,56.41,56.864,57.722,59.192 +21,1,53.3905,0.03609,47.436,48.908,49.766,50.221,50.921,51.393,52.091,53.391,54.69,55.388,55.86,56.56,57.015,57.873,59.345 +22,1,53.536,0.03603,47.575,49.049,49.908,50.363,51.064,51.537,52.235,53.536,54.837,55.535,56.008,56.709,57.164,58.023,59.497 +23,1,53.6805,0.03597,47.714,49.189,50.049,50.504,51.206,51.679,52.378,53.681,54.983,55.682,56.155,56.857,57.312,58.172,59.647 +24,1,53.8239,0.03592,47.849,49.326,50.188,50.644,51.346,51.82,52.52,53.824,55.128,55.828,56.302,57.004,57.46,58.322,59.798 +25,1,53.9664,0.03586,47.986,49.464,50.327,50.783,51.486,51.961,52.661,53.966,55.272,55.972,56.447,57.15,57.606,58.468,59.947 +26,1,54.1079,0.03581,48.12,49.6,50.464,50.921,51.625,52.1,52.801,54.108,55.415,56.116,56.591,57.295,57.752,58.615,60.096 +27,1,54.2485,0.03575,48.255,49.737,50.601,51.058,51.763,52.238,52.94,54.249,55.557,56.259,56.734,57.439,57.896,58.76,60.242 +28,1,54.3881,0.0357,48.388,49.871,50.736,51.194,51.9,52.376,53.078,54.388,55.698,56.4,56.876,57.582,58.04,58.905,60.388 +29,1,54.5268,0.03565,48.52,50.005,50.871,51.329,52.036,52.512,53.216,54.527,55.838,56.542,57.018,57.724,58.183,59.049,60.534 +30,1,54.6645,0.03559,48.652,50.139,51.005,51.464,52.171,52.648,53.352,54.665,55.977,56.681,57.158,57.865,58.324,59.19,60.677 +31,1,54.8012,0.03554,48.783,50.27,51.138,51.598,52.305,52.783,53.488,54.801,56.115,56.82,57.297,58.005,58.464,59.332,60.82 +32,1,54.9368,0.03549,48.912,50.401,51.27,51.73,52.438,52.916,53.622,54.937,56.252,56.958,57.435,58.144,58.604,59.472,60.962 +33,1,55.0714,0.03544,49.04,50.531,51.401,51.861,52.57,53.049,53.755,55.071,56.388,57.094,57.573,58.282,58.742,59.612,61.103 +34,1,55.2049,0.03539,49.168,50.66,51.53,51.991,52.701,53.18,53.887,55.205,56.523,57.23,57.709,58.418,58.879,59.75,61.242 +35,1,55.3374,0.03534,49.294,50.788,51.659,52.121,52.831,53.311,54.018,55.337,56.656,57.364,57.844,58.554,59.016,59.887,61.381 +36,1,55.4688,0.03529,49.42,50.915,51.787,52.249,52.96,53.44,54.148,55.469,56.789,57.498,57.977,58.689,59.15,60.023,61.518 +37,1,55.5992,0.03524,49.544,51.041,51.914,52.376,53.088,53.568,54.278,55.599,56.921,57.63,58.11,58.822,59.284,60.157,61.654 +38,1,55.7285,0.0352,49.667,51.165,52.039,52.502,53.215,53.695,54.405,55.729,57.052,57.762,58.242,58.955,59.418,60.292,61.79 +39,1,55.8568,0.03515,49.79,51.289,52.164,52.627,53.341,53.822,54.533,55.857,57.181,57.892,58.373,59.086,59.549,60.424,61.924 +40,1,55.9841,0.0351,49.912,51.413,52.288,52.752,53.466,53.947,54.659,55.984,57.31,58.021,58.502,59.216,59.68,60.555,62.057 +41,1,56.1104,0.03506,50.031,51.534,52.41,52.875,53.589,54.071,54.784,56.11,57.437,58.149,58.632,59.346,59.81,60.687,62.19 +42,1,56.2357,0.03501,50.152,51.656,52.533,52.997,53.713,54.195,54.908,56.236,57.564,58.276,58.759,59.474,59.939,60.816,62.32 +43,1,56.3599,0.03496,50.271,51.776,52.654,53.119,53.835,54.318,55.031,56.36,57.689,58.402,58.885,59.601,60.066,60.944,62.449 +44,1,56.4833,0.03492,50.388,51.895,52.774,53.239,53.956,54.439,55.153,56.483,57.814,58.528,59.011,59.728,60.193,61.072,62.578 +45,1,56.6056,0.03488,50.504,52.012,52.892,53.358,54.075,54.559,55.274,56.606,57.937,58.652,59.136,59.853,60.319,61.199,62.707 +46,1,56.7269,0.03483,50.621,52.131,53.011,53.477,54.195,54.679,55.394,56.727,58.06,58.775,59.259,59.977,60.443,61.323,62.833 +47,1,56.8472,0.03479,50.736,52.246,53.128,53.594,54.313,54.797,55.513,56.847,58.181,58.897,59.382,60.1,60.567,61.448,62.959 +48,1,56.9666,0.03475,50.849,52.361,53.243,53.71,54.43,54.915,55.631,56.967,58.302,59.018,59.504,60.223,60.69,61.572,63.084 +49,1,57.0851,0.0347,50.964,52.477,53.36,53.827,54.547,55.032,55.749,57.085,58.421,59.138,59.624,60.343,60.811,61.693,63.206 +50,1,57.2026,0.03466,51.076,52.59,53.474,53.941,54.662,55.148,55.865,57.203,58.54,59.257,59.743,60.464,60.932,61.815,63.329 +51,1,57.3192,0.03462,51.187,52.703,53.587,54.055,54.776,55.263,55.981,57.319,58.658,59.376,59.862,60.583,61.051,61.936,63.451 +52,1,57.4349,0.03458,51.297,52.815,53.699,54.168,54.89,55.376,56.095,57.435,58.775,59.493,59.98,60.702,61.17,62.055,63.572 +53,1,57.5497,0.03454,51.407,52.925,53.811,54.28,55.002,55.49,56.209,57.55,58.89,59.61,60.097,60.819,61.288,62.174,63.692 +54,1,57.6637,0.0345,51.516,53.036,53.922,54.391,55.114,55.602,56.322,57.664,59.006,59.726,60.213,60.936,61.405,62.292,63.811 +55,1,57.7767,0.03446,51.624,53.145,54.032,54.502,55.225,55.713,56.434,57.777,59.12,59.84,60.328,61.052,61.521,62.408,63.929 +56,1,57.8889,0.03442,51.732,53.254,54.141,54.611,55.335,55.824,56.545,57.889,59.233,59.954,60.442,61.166,61.636,62.524,64.046 +57,1,58.0003,0.03438,51.838,53.361,54.25,54.72,55.445,55.934,56.655,58,59.345,60.067,60.556,61.28,61.751,62.639,64.162 +58,1,58.1109,0.03434,51.944,53.469,54.358,54.829,55.554,56.043,56.765,58.111,59.457,60.179,60.668,61.393,61.864,62.753,64.278 +59,1,58.2207,0.03431,52.048,53.574,54.464,54.935,55.661,56.15,56.873,58.221,59.568,60.291,60.781,61.506,61.978,62.868,64.394 +60,1,58.3299,0.03427,52.153,53.68,54.57,55.042,55.768,56.258,56.982,58.33,59.678,60.402,60.892,61.618,62.09,62.98,64.507 +61,1,58.4384,0.03423,52.257,53.785,54.676,55.148,55.875,56.365,57.089,58.438,59.788,60.512,61.002,61.729,62.201,63.092,64.62 +62,1,58.5463,0.0342,52.359,53.888,54.78,55.253,55.98,56.471,57.196,58.546,59.897,60.622,61.112,61.84,62.312,63.204,64.734 +63,1,58.6536,0.03416,52.462,53.993,54.885,55.358,56.086,56.577,57.302,58.654,60.005,60.73,61.221,61.949,62.422,63.315,64.845 +64,1,58.7603,0.03412,52.565,54.096,54.989,55.463,56.191,56.682,57.408,58.76,60.113,60.838,61.33,62.058,62.531,63.424,64.956 +65,1,58.8664,0.03409,52.665,54.198,55.092,55.566,56.295,56.787,57.513,58.866,60.22,60.946,61.438,62.167,62.641,63.535,65.068 +66,1,58.9718,0.03405,52.767,54.301,55.195,55.669,56.398,56.891,57.617,58.972,60.326,61.053,61.545,62.275,62.748,63.643,65.177 +67,1,59.0766,0.03402,52.866,54.401,55.297,55.771,56.501,56.994,57.721,59.077,60.432,61.16,61.652,62.382,62.857,63.752,65.287 +68,1,59.1808,0.03398,52.966,54.503,55.399,55.873,56.604,57.097,57.824,59.181,60.537,61.265,61.758,62.489,62.963,63.859,65.395 +69,1,59.2843,0.03395,53.065,54.602,55.499,55.974,56.705,57.198,57.927,59.284,60.642,61.37,61.864,62.595,63.07,63.967,65.504 +70,1,59.3872,0.03392,53.162,54.701,55.599,56.074,56.806,57.299,58.028,59.387,60.746,61.475,61.969,62.701,63.176,64.073,65.612 +71,1,59.4894,0.03388,53.261,54.801,55.699,56.174,56.906,57.4,58.13,59.489,60.849,61.578,62.072,62.805,63.28,64.178,65.718 +72,1,59.591,0.03385,53.358,54.898,55.797,56.273,57.006,57.5,58.23,59.591,60.952,61.682,62.176,62.909,63.385,64.284,65.824 +73,1,59.692,0.03382,53.453,54.996,55.895,56.371,57.105,57.6,58.33,59.692,61.054,61.784,62.279,63.013,63.489,64.388,65.931 +74,1,59.7923,0.03379,53.549,55.092,55.992,56.469,57.203,57.698,58.43,59.792,61.155,61.886,62.382,63.116,63.592,64.492,66.036 +75,1,59.892,0.03375,53.646,55.19,56.09,56.567,57.302,57.797,58.529,59.892,61.255,61.987,62.482,63.217,63.694,64.594,66.138 +76,1,59.991,0.03372,53.74,55.285,56.186,56.664,57.399,57.894,58.627,59.991,61.355,62.088,62.583,63.318,63.796,64.697,66.242 +77,1,60.0894,0.03369,53.833,55.38,56.282,56.76,57.495,57.991,58.724,60.089,61.455,62.188,62.684,63.419,63.897,64.799,66.345 +78,1,60.1872,0.03366,53.927,55.474,56.377,56.855,57.591,58.087,58.821,60.187,61.554,62.287,62.783,63.52,63.998,64.9,66.448 +79,1,60.2843,0.03363,54.019,55.568,56.471,56.95,57.686,58.183,58.917,60.284,61.652,62.386,62.882,63.619,64.097,65.001,66.549 +80,1,60.3808,0.0336,54.111,55.661,56.565,57.044,57.781,58.278,59.012,60.381,61.749,62.484,62.981,63.718,64.197,65.1,66.65 +81,1,60.4767,0.03357,54.203,55.754,56.658,57.137,57.875,58.373,59.107,60.477,61.846,62.581,63.079,63.816,64.295,65.2,66.75 +82,1,60.5719,0.03354,54.294,55.846,56.751,57.23,57.968,58.466,59.202,60.572,61.942,62.677,63.175,63.914,64.393,65.298,66.85 +83,1,60.6665,0.03351,54.384,55.937,56.843,57.323,58.061,58.559,59.295,60.667,62.038,62.774,63.272,64.01,64.49,65.396,66.949 +84,1,60.7605,0.03348,54.474,56.028,56.934,57.414,58.153,58.652,59.388,60.761,62.133,62.869,63.368,64.107,64.587,65.493,67.047 +85,1,60.8539,0.03345,54.564,56.118,57.025,57.506,58.245,58.744,59.481,60.854,62.227,62.964,63.463,64.202,64.682,65.589,67.144 +86,1,60.9466,0.03342,54.652,56.208,57.116,57.596,58.336,58.836,59.573,60.947,62.32,63.058,63.557,64.297,64.777,65.685,67.241 +87,1,61.0388,0.0334,54.739,56.296,57.204,57.685,58.426,58.926,59.664,61.039,62.414,63.152,63.651,64.392,64.873,65.782,67.339 +88,1,61.1303,0.03337,54.826,56.385,57.294,57.775,58.516,59.016,59.754,61.13,62.506,63.245,63.745,64.486,64.967,65.876,67.434 +89,1,61.2212,0.03334,54.914,56.473,57.382,57.864,58.605,59.106,59.844,61.221,62.598,63.337,63.837,64.579,65.06,65.97,67.529 +90,1,61.3115,0.03331,55,56.56,57.47,57.952,58.694,59.195,59.934,61.312,62.689,63.428,63.929,64.671,65.153,66.063,67.623 +91,1,61.4013,0.03329,55.085,56.646,57.557,58.039,58.782,59.283,60.023,61.401,62.78,63.52,64.021,64.763,65.246,66.156,67.718 +92,1,61.4904,0.03326,55.17,56.733,57.644,58.126,58.869,59.371,60.111,61.49,62.87,63.61,64.111,64.854,65.337,66.248,67.81 +93,1,61.579,0.03323,55.256,56.819,57.73,58.213,58.957,59.458,60.199,61.579,62.959,63.7,64.201,64.945,65.428,66.339,67.902 +94,1,61.667,0.03321,55.338,56.903,57.815,58.298,59.042,59.544,60.286,61.667,63.048,63.79,64.292,65.036,65.519,66.431,67.996 +95,1,61.7543,0.03318,55.422,56.988,57.901,58.384,59.128,59.631,60.372,61.754,63.136,63.878,64.38,65.125,65.608,66.521,68.086 +96,1,61.8411,0.03316,55.504,57.071,57.984,58.468,59.213,59.716,60.458,61.841,63.224,63.966,64.469,65.214,65.698,66.612,68.178 +97,1,61.9274,0.03313,55.587,57.155,58.069,58.553,59.298,59.801,60.544,61.927,63.311,64.054,64.557,65.302,65.786,66.7,68.267 +98,1,62.013,0.03311,55.668,57.236,58.151,58.636,59.382,59.885,60.628,62.013,63.398,64.141,64.644,65.39,65.875,66.79,68.358 +99,1,62.0981,0.03308,55.75,57.319,58.235,58.719,59.466,59.969,60.713,62.098,63.484,64.227,64.731,65.477,65.962,66.877,68.446 +100,1,62.1826,0.03306,55.83,57.4,58.316,58.801,59.548,60.052,60.796,62.183,63.569,64.313,64.817,65.564,66.049,66.965,68.535 +101,1,62.2665,0.03303,55.911,57.482,58.398,58.884,59.631,60.135,60.879,62.267,63.654,64.398,64.902,65.649,66.135,67.051,68.622 +102,1,62.3499,0.03301,55.99,57.562,58.479,58.965,59.712,60.217,60.962,62.35,63.738,64.483,64.988,65.735,66.221,67.138,68.71 +103,1,62.4327,0.03298,56.07,57.643,58.56,59.046,59.794,60.299,61.044,62.433,63.821,64.567,65.071,65.82,66.305,67.223,68.796 +104,1,62.5149,0.03296,56.148,57.721,58.64,59.126,59.874,60.379,61.125,62.515,63.905,64.65,65.156,65.904,66.39,67.308,68.882 +105,1,62.5966,0.03294,56.225,57.8,58.719,59.205,59.954,60.46,61.206,62.597,63.987,64.734,65.239,65.988,66.475,67.393,68.968 +106,1,62.6778,0.03291,56.303,57.879,58.798,59.285,60.034,60.54,61.287,62.678,64.069,64.816,65.321,66.071,66.557,67.476,69.052 +107,1,62.7584,0.03289,56.38,57.957,58.876,59.363,60.113,60.619,61.366,62.758,64.151,64.898,65.404,66.154,66.641,67.56,69.137 +108,1,62.8384,0.03287,56.456,58.033,58.954,59.441,60.191,60.698,61.445,62.838,64.232,64.979,65.485,66.236,66.723,67.643,69.221 +109,1,62.918,0.03284,56.533,58.111,59.032,59.519,60.27,60.776,61.524,62.918,64.312,65.06,65.566,66.317,66.804,67.725,69.303 +110,1,62.9969,0.03282,56.608,58.187,59.108,59.596,60.347,60.854,61.602,62.997,64.391,65.14,65.647,66.398,66.886,67.807,69.386 +111,1,63.0754,0.0328,56.682,58.262,59.184,59.672,60.424,60.931,61.68,63.075,64.471,65.22,65.727,66.478,66.967,67.888,69.469 +112,1,63.1533,0.03278,56.756,58.337,59.26,59.748,60.5,61.008,61.757,63.153,64.55,65.299,65.806,66.558,67.047,67.969,69.551 +113,1,63.2307,0.03276,56.829,58.412,59.335,59.823,60.576,61.084,61.834,63.231,64.628,65.378,65.885,66.638,67.127,68.05,69.632 +114,1,63.3076,0.03273,56.904,58.487,59.41,59.899,60.652,61.16,61.91,63.308,64.705,65.455,65.963,66.716,67.205,68.128,69.711 +115,1,63.3839,0.03271,56.977,58.561,59.484,59.974,60.727,61.235,61.985,63.384,64.782,65.533,66.041,66.794,67.283,68.207,69.791 +116,1,63.4598,0.03269,57.049,58.634,59.558,60.048,60.801,61.31,62.061,63.46,64.859,65.61,66.118,66.872,67.362,68.286,69.87 +117,1,63.5351,0.03267,57.121,58.706,59.631,60.121,60.875,61.384,62.135,63.535,64.935,65.686,66.195,66.949,67.439,68.364,69.949 +118,1,63.6099,0.03265,57.192,58.778,59.704,60.194,60.948,61.457,62.209,63.61,65.011,65.762,66.272,67.026,67.516,68.441,70.028 +119,1,63.6842,0.03263,57.263,58.85,59.776,60.266,61.021,61.53,62.283,63.684,65.086,65.838,66.347,67.102,67.593,68.518,70.106 +120,1,63.758,0.03261,57.333,58.921,59.848,60.338,61.093,61.603,62.356,63.758,65.16,65.913,66.423,67.178,67.668,68.595,70.183 +121,1,63.8313,0.03259,57.403,58.992,59.919,60.41,61.165,61.675,62.428,63.831,65.234,65.987,66.497,67.253,67.744,68.671,70.26 +122,1,63.9041,0.03257,57.472,59.062,59.989,60.481,61.237,61.747,62.5,63.904,65.308,66.061,66.571,67.328,67.819,68.746,70.336 +123,1,63.9765,0.03255,57.541,59.132,60.06,60.551,61.308,61.818,62.572,63.977,65.381,66.135,66.645,67.402,67.893,68.821,70.412 +124,1,64.0483,0.03253,57.61,59.201,60.13,60.621,61.378,61.889,62.643,64.048,65.454,66.208,66.718,67.475,67.967,68.895,70.487 +125,1,64.1197,0.03251,57.678,59.27,60.199,60.691,61.448,61.959,62.714,64.12,65.526,66.28,66.791,67.548,68.04,68.969,70.561 +126,1,64.1906,0.03249,57.746,59.339,60.268,60.76,61.518,62.029,62.784,64.191,65.597,66.352,66.863,67.621,68.113,69.042,70.635 +127,1,64.261,0.03247,57.813,59.407,60.337,60.829,61.587,62.098,62.854,64.261,65.668,66.424,66.935,67.693,68.185,69.115,70.709 +128,1,64.331,0.03245,57.88,59.475,60.405,60.897,61.656,62.167,62.923,64.331,65.739,66.495,67.006,67.765,68.257,69.187,70.782 +129,1,64.4006,0.03243,57.947,59.542,60.473,60.965,61.724,62.236,62.992,64.401,65.809,66.565,67.077,67.836,68.329,69.259,70.855 +130,1,64.4697,0.03241,58.013,59.609,60.54,61.033,61.792,62.304,63.06,64.47,65.879,66.635,67.147,67.907,68.4,69.331,70.927 +131,1,64.5383,0.03239,58.078,59.675,60.607,61.1,61.859,62.372,63.128,64.538,65.948,66.705,67.217,67.977,68.47,69.401,70.998 +132,1,64.6066,0.03238,58.142,59.74,60.672,61.166,61.926,62.438,63.196,64.607,66.018,66.775,67.288,68.048,68.541,69.473,71.071 +133,1,64.6744,0.03236,58.207,59.806,60.738,61.232,61.992,62.505,63.263,64.674,66.086,66.844,67.357,68.117,68.611,69.543,71.142 +134,1,64.7418,0.03234,58.272,59.871,60.804,61.298,62.059,62.572,63.33,64.742,66.154,66.912,67.425,68.186,68.68,69.613,71.212 +135,1,64.8088,0.03232,58.336,59.936,60.869,61.363,62.124,62.638,63.396,64.809,66.222,66.98,67.493,68.254,68.748,69.682,71.282 +136,1,64.8755,0.0323,58.4,60.001,60.934,61.429,62.19,62.704,63.462,64.876,66.289,67.047,67.561,68.322,68.817,69.75,71.351 +137,1,64.9417,0.03229,58.462,60.063,60.998,61.492,62.254,62.768,63.527,64.942,66.356,67.115,67.629,68.391,68.886,69.82,71.422 +138,1,65.0075,0.03227,58.525,60.127,61.062,61.557,62.319,62.833,63.593,65.007,66.422,67.182,67.696,68.458,68.953,69.888,71.49 +139,1,65.073,0.03225,58.588,60.191,61.126,61.621,62.384,62.898,63.658,65.073,66.488,67.248,67.762,68.525,69.02,69.955,71.558 +140,1,65.138,0.03223,58.65,60.254,61.189,61.685,62.448,62.962,63.722,65.138,66.554,67.314,67.828,68.591,69.087,70.022,71.626 +141,1,65.2027,0.03222,58.711,60.315,61.251,61.747,62.51,63.025,63.786,65.203,66.62,67.38,67.895,68.658,69.154,70.09,71.695 +142,1,65.2671,0.0322,58.773,60.378,61.314,61.81,62.574,63.089,63.85,65.267,66.685,67.445,67.96,68.724,69.22,70.156,71.762 +143,1,65.331,0.03218,58.834,60.44,61.377,61.873,62.637,63.152,63.913,65.331,66.749,67.51,68.025,68.789,69.285,70.222,71.828 +144,1,65.3946,0.03217,58.894,60.501,61.438,61.934,62.699,63.214,63.976,65.395,66.814,67.575,68.091,68.855,69.351,70.289,71.896 +145,1,65.4579,0.03215,58.955,60.562,61.5,61.996,62.761,63.277,64.038,65.458,66.877,67.639,68.155,68.919,69.416,70.354,71.961 +146,1,65.5208,0.03214,59.013,60.622,61.56,62.057,62.822,63.338,64.1,65.521,66.941,67.703,68.22,68.985,69.481,70.42,72.028 +147,1,65.5834,0.03212,59.074,60.683,61.621,62.118,62.884,63.4,64.163,65.583,67.004,67.767,68.283,69.048,69.545,70.484,72.093 +148,1,65.6456,0.0321,59.134,60.743,61.682,62.18,62.945,63.462,64.224,65.646,67.067,67.83,68.346,69.112,69.609,70.548,72.157 +149,1,65.7075,0.03209,59.192,60.802,61.742,62.239,63.005,63.522,64.285,65.708,67.13,67.893,68.41,69.176,69.673,70.613,72.223 +150,1,65.769,0.03207,59.251,60.862,61.802,62.3,63.066,63.583,64.346,65.769,67.192,67.955,68.472,69.238,69.736,70.676,72.287 +151,1,65.8303,0.03206,59.308,60.92,61.861,62.359,63.126,63.643,64.407,65.83,67.254,68.018,68.535,69.302,69.8,70.74,72.352 +152,1,65.8912,0.03204,59.367,60.98,61.921,62.419,63.186,63.703,64.467,65.891,67.315,68.079,68.597,69.364,69.862,70.802,72.415 +153,1,65.9518,0.03203,59.424,61.038,61.979,62.477,63.245,63.762,64.527,65.952,67.377,68.141,68.659,69.426,69.925,70.866,72.48 +154,1,66.0121,0.03201,59.482,61.096,62.038,62.536,63.304,63.822,64.587,66.012,67.437,68.202,68.72,69.488,69.986,70.928,72.542 +155,1,66.0721,0.032,59.538,61.153,62.096,62.594,63.363,63.881,64.646,66.072,67.498,68.263,68.782,69.55,70.049,70.991,72.606 +156,1,66.1317,0.03198,59.596,61.212,62.154,62.653,63.421,63.94,64.705,66.132,67.558,68.324,68.842,69.61,70.109,71.052,72.667 +157,1,66.1911,0.03197,59.652,61.268,62.211,62.71,63.479,63.998,64.764,66.191,67.618,68.384,68.903,69.672,70.171,71.114,72.73 +158,1,66.2502,0.03196,59.707,61.324,62.268,62.767,63.537,64.056,64.822,66.25,67.678,68.445,68.964,69.733,70.233,71.176,72.793 +159,1,66.3089,0.03194,59.764,61.382,62.326,62.825,63.595,64.114,64.88,66.309,67.737,68.504,69.023,69.793,70.292,71.236,72.854 +160,1,66.3674,0.03193,59.819,61.438,62.382,62.882,63.652,64.171,64.938,66.367,67.797,68.564,69.083,69.853,70.353,71.297,72.916 +161,1,66.4256,0.03191,59.875,61.495,62.439,62.939,63.709,64.229,64.996,66.426,67.855,68.622,69.142,69.912,70.412,71.357,72.976 +162,1,66.4835,0.0319,59.93,61.55,62.495,62.995,63.766,64.285,65.053,66.484,67.914,68.682,69.201,69.972,70.472,71.417,73.037 +163,1,66.5412,0.03189,59.984,61.605,62.55,63.051,63.822,64.342,65.11,66.541,67.972,68.741,69.261,70.032,70.532,71.478,73.099 +164,1,66.5985,0.03187,60.039,61.661,62.607,63.107,63.878,64.399,65.167,66.599,68.03,68.798,69.319,70.09,70.59,71.536,73.158 +165,1,66.6556,0.03186,60.093,61.715,62.661,63.163,63.934,64.455,65.223,66.656,68.088,68.857,69.377,70.149,70.65,71.596,73.218 +166,1,66.7125,0.03185,60.146,61.769,62.716,63.218,63.989,64.51,65.279,66.713,68.146,68.915,69.436,70.207,70.709,71.656,73.279 +167,1,66.7691,0.03183,60.202,61.825,62.772,63.273,64.045,64.566,65.336,66.769,68.203,68.972,69.493,70.265,70.766,71.713,73.337 +168,1,66.8254,0.03182,60.254,61.879,62.826,63.328,64.1,64.622,65.391,66.825,68.26,69.029,69.55,70.323,70.825,71.772,73.396 +169,1,66.8815,0.03181,60.307,61.932,62.88,63.382,64.155,64.676,65.447,66.882,68.316,69.087,69.608,70.381,70.883,71.831,73.456 +170,1,66.9373,0.0318,60.359,61.985,62.934,63.436,64.209,64.731,65.502,66.937,68.373,69.143,69.665,70.439,70.941,71.889,73.515 +171,1,66.993,0.03179,60.412,62.039,62.987,63.49,64.264,64.786,65.557,66.993,68.429,69.2,69.722,70.496,70.999,71.947,73.574 +172,1,67.0483,0.03177,60.466,62.093,63.042,63.545,64.318,64.841,65.612,67.048,68.485,69.256,69.778,70.552,71.055,72.004,73.631 +173,1,67.1035,0.03176,60.518,62.146,63.095,63.598,64.372,64.895,65.666,67.104,68.541,69.312,69.835,70.609,71.112,72.061,73.689 +174,1,67.1584,0.03175,60.569,62.198,63.148,63.651,64.426,64.948,65.72,67.158,68.597,69.368,69.891,70.666,71.169,72.119,73.748 +175,1,67.2132,0.03174,60.621,62.25,63.201,63.704,64.479,65.002,65.774,67.213,68.652,69.424,69.947,70.722,71.226,72.176,73.806 +176,1,67.2677,0.03173,60.672,62.302,63.253,63.757,64.532,65.056,65.828,67.268,68.707,69.48,70.003,70.778,71.282,72.233,73.864 +177,1,67.3219,0.03171,60.725,62.356,63.307,63.811,64.586,65.109,65.882,67.322,68.762,69.534,70.058,70.833,71.337,72.288,73.919 +178,1,67.376,0.0317,60.776,62.407,63.359,63.863,64.639,65.162,65.935,67.376,68.817,69.59,70.113,70.889,71.393,72.345,73.976 +179,1,67.4299,0.03169,60.827,62.459,63.411,63.915,64.691,65.215,65.989,67.43,68.871,69.645,70.168,70.945,71.449,72.401,74.033 +180,1,67.4836,0.03168,60.877,62.51,63.463,63.967,64.744,65.268,66.042,67.484,68.926,69.699,70.223,71,71.505,72.457,74.09 +181,1,67.5371,0.03167,60.927,62.561,63.514,64.019,64.796,65.32,66.094,67.537,68.98,69.754,70.278,71.055,71.56,72.513,74.147 +182,1,67.5904,0.03166,60.978,62.612,63.566,64.071,64.848,65.373,66.147,67.59,69.034,69.808,70.333,71.11,71.615,72.569,74.203 +183,1,67.6435,0.03165,61.028,62.663,63.617,64.122,64.9,65.425,66.199,67.644,69.088,69.862,70.387,71.165,71.67,72.624,74.259 +184,1,67.6964,0.03164,61.077,62.714,63.668,64.173,64.951,65.476,66.252,67.696,69.141,69.916,70.441,71.22,71.725,72.679,74.315 +185,1,67.7491,0.03163,61.127,62.764,63.719,64.224,65.003,65.528,66.304,67.749,69.194,69.97,70.495,71.274,71.779,72.734,74.371 +186,1,67.8017,0.03162,61.177,62.814,63.769,64.275,65.054,65.58,66.356,67.802,69.248,70.024,70.549,71.328,71.834,72.789,74.427 +187,1,67.8541,0.03161,61.226,62.864,63.82,64.326,65.105,65.631,66.407,67.854,69.301,70.077,70.603,71.382,71.888,72.844,74.482 +188,1,67.9062,0.0316,61.275,62.914,63.87,64.377,65.156,65.682,66.459,67.906,69.354,70.13,70.656,71.436,71.942,72.898,74.537 +189,1,67.9583,0.03159,61.324,62.964,63.921,64.427,65.207,65.733,66.51,67.958,69.406,70.183,70.71,71.489,71.996,72.953,74.592 +190,1,68.0101,0.03158,61.373,63.014,63.971,64.477,65.258,65.784,66.561,68.01,69.459,70.236,70.763,71.543,72.05,73.007,74.647 +191,1,68.0618,0.03157,61.422,63.063,64.021,64.527,65.308,65.835,66.613,68.062,69.511,70.289,70.815,71.596,72.103,73.06,74.702 +192,1,68.1133,0.03156,61.47,63.112,64.07,64.577,65.358,65.885,66.663,68.113,69.563,70.341,70.868,71.649,72.156,73.114,74.756 +193,1,68.1647,0.03155,61.519,63.162,64.12,64.627,65.409,65.936,66.714,68.165,69.615,70.394,70.921,71.702,72.21,73.168,74.811 +194,1,68.2158,0.03154,61.567,63.211,64.169,64.677,65.459,65.986,66.765,68.216,69.667,70.446,70.973,71.755,72.262,73.221,74.865 +195,1,68.2669,0.03153,61.615,63.26,64.219,64.726,65.508,66.036,66.815,68.267,69.719,70.498,71.025,71.807,72.315,73.274,74.918 +196,1,68.3177,0.03152,61.663,63.308,64.268,64.776,65.558,66.086,66.865,68.318,69.77,70.55,71.077,71.86,72.368,73.327,74.972 +197,1,68.3685,0.03152,61.709,63.355,64.315,64.824,65.607,66.135,66.915,68.369,69.822,70.602,71.13,71.913,72.422,73.382,75.028 +198,1,68.419,0.03151,61.757,63.404,64.364,64.873,65.656,66.185,66.965,68.419,69.873,70.653,71.182,71.965,72.474,73.434,75.081 +199,1,68.4695,0.0315,61.805,63.452,64.413,64.922,65.705,66.234,67.015,68.47,69.924,70.705,71.234,72.017,72.526,73.487,75.134 +200,1,68.5198,0.03149,61.852,63.5,64.462,64.971,65.755,66.283,67.064,68.52,69.975,70.756,71.285,72.069,72.578,73.539,75.188 +201,1,68.5699,0.03148,61.899,63.548,64.51,65.019,65.804,66.333,67.114,68.57,70.026,70.807,71.336,72.12,72.63,73.592,75.24 +202,1,68.6199,0.03147,61.947,63.596,64.558,65.068,65.852,66.382,67.163,68.62,70.076,70.858,71.387,72.172,72.681,73.644,75.293 +203,1,68.6698,0.03147,61.992,63.642,64.605,65.115,65.9,66.43,67.212,68.67,70.127,70.91,71.439,72.224,72.734,73.697,75.348 +204,1,68.7195,0.03146,62.039,63.69,64.653,65.163,65.949,66.479,67.261,68.72,70.178,70.96,71.49,72.276,72.786,73.749,75.4 +205,1,68.7691,0.03145,62.086,63.738,64.701,65.212,65.997,66.528,67.31,68.769,70.228,71.011,71.541,72.327,72.837,73.8,75.453 +206,1,68.8186,0.03144,62.132,63.785,64.749,65.26,66.046,66.576,67.359,68.819,70.278,71.061,71.591,72.377,72.888,73.852,75.505 +207,1,68.8679,0.03144,62.177,63.831,64.796,65.306,66.093,66.624,67.407,68.868,70.328,71.112,71.643,72.429,72.94,73.905,75.559 +208,1,68.9171,0.03143,62.223,63.878,64.843,65.354,66.141,66.672,67.456,68.917,70.378,71.162,71.693,72.48,72.991,73.956,75.611 +209,1,68.9662,0.03142,62.27,63.925,64.891,65.402,66.189,66.72,67.505,68.966,70.428,71.212,71.743,72.53,73.042,74.007,75.662 +210,1,69.0152,0.03141,62.316,63.972,64.938,65.45,66.237,66.768,67.553,69.015,70.477,71.262,71.793,72.581,73.092,74.058,75.714 +211,1,69.0641,0.03141,62.36,64.018,64.984,65.496,66.284,66.816,67.601,69.064,70.527,71.312,71.844,72.632,73.144,74.111,75.768 +212,1,69.1128,0.0314,62.407,64.064,65.031,65.543,66.332,66.864,67.649,69.113,70.577,71.362,71.894,72.682,73.194,74.161,75.819 +213,1,69.1615,0.03139,62.453,64.111,65.078,65.591,66.379,66.911,67.697,69.162,70.626,71.412,71.944,72.732,73.245,74.212,75.87 +214,1,69.21,0.03139,62.496,64.156,65.124,65.637,66.426,66.958,67.745,69.21,70.675,71.462,71.994,72.783,73.296,74.264,75.924 +215,1,69.2584,0.03138,62.542,64.202,65.171,65.684,66.473,67.006,67.793,69.258,70.724,71.511,72.044,72.833,73.346,74.314,75.974 +216,1,69.3067,0.03137,62.588,64.249,65.218,65.731,66.52,67.053,67.84,69.307,70.773,71.56,72.093,72.883,73.396,74.365,76.025 +217,1,69.3549,0.03137,62.632,64.294,65.263,65.776,66.567,67.1,67.887,69.355,70.822,71.61,72.143,72.934,73.447,74.416,76.078 +218,1,69.4031,0.03136,62.677,64.34,65.31,65.823,66.614,67.147,67.935,69.403,70.871,71.659,72.192,72.983,73.497,74.466,76.129 +219,1,69.4511,0.03136,62.721,64.384,65.355,65.869,66.66,67.194,67.982,69.451,70.92,71.708,72.242,73.034,73.547,74.518,76.182 +220,1,69.499,0.03135,62.766,64.43,65.401,65.915,66.707,67.241,68.029,69.499,70.969,71.757,72.291,73.083,73.597,74.568,76.232 +221,1,69.5468,0.03134,62.811,64.476,65.447,65.962,66.754,67.288,68.077,69.547,71.017,71.806,72.34,73.132,73.646,74.617,76.282 +222,1,69.5945,0.03134,62.854,64.521,65.492,66.007,66.799,67.334,68.123,69.595,71.066,71.855,72.39,73.182,73.697,74.668,76.335 +223,1,69.6421,0.03133,62.9,64.566,65.538,66.053,66.846,67.381,68.17,69.642,71.114,71.903,72.438,73.231,73.746,74.718,76.385 +224,1,69.6896,0.03133,62.942,64.61,65.583,66.098,66.891,67.427,68.217,69.69,71.162,71.953,72.488,73.281,73.796,74.769,76.437 +225,1,69.737,0.03132,62.987,64.656,65.629,66.144,66.938,67.473,68.264,69.737,71.21,72.001,72.536,73.33,73.845,74.818,76.487 +226,1,69.7844,0.03132,63.03,64.7,65.674,66.189,66.983,67.519,68.31,69.784,71.259,72.05,72.585,73.379,73.895,74.869,76.539 +227,1,69.8316,0.03131,63.075,64.745,65.719,66.235,67.03,67.566,68.357,69.832,71.306,72.098,72.634,73.428,73.944,74.918,76.588 +228,1,69.8787,0.03131,63.118,64.789,65.764,66.28,67.075,67.611,68.403,69.879,71.354,72.146,72.683,73.477,73.994,74.969,76.64 +229,1,69.9258,0.0313,63.162,64.834,65.809,66.326,67.121,67.657,68.45,69.926,71.402,72.194,72.731,73.526,74.042,75.017,76.689 +230,1,69.9728,0.0313,63.205,64.878,65.854,66.37,67.166,67.703,68.496,69.973,71.45,72.243,72.78,73.575,74.092,75.068,76.741 +231,1,70.0197,0.03129,63.249,64.923,65.899,66.416,67.212,67.749,68.542,70.02,71.497,72.29,72.827,73.623,74.14,75.117,76.79 +232,1,70.0665,0.03129,63.292,64.966,65.943,66.46,67.257,67.794,68.588,70.067,71.545,72.339,72.876,73.673,74.19,75.167,76.841 +233,1,70.1132,0.03128,63.336,65.011,65.988,66.506,67.303,67.84,68.634,70.113,71.592,72.386,72.924,73.721,74.238,75.215,76.891 +234,1,70.1599,0.03128,63.378,65.054,66.032,66.55,67.347,67.885,68.68,70.16,71.64,72.434,72.972,73.77,74.287,75.265,76.942 +235,1,70.2064,0.03127,63.422,65.099,66.077,66.595,67.393,67.931,68.726,70.206,71.687,72.482,73.02,73.817,74.335,75.314,76.991 +236,1,70.2529,0.03127,63.464,65.142,66.121,66.639,67.438,67.976,68.771,70.253,71.735,72.53,73.068,73.866,74.385,75.363,77.042 +237,1,70.2994,0.03126,63.508,65.187,66.166,66.685,67.483,68.022,68.817,70.299,71.782,72.577,73.116,73.914,74.433,75.412,77.09 +238,1,70.3457,0.03126,63.55,65.23,66.21,66.729,67.528,68.067,68.862,70.346,71.829,72.625,73.164,73.963,74.482,75.461,77.141 +239,1,70.392,0.03126,63.592,65.273,66.253,66.773,67.572,68.111,68.908,70.392,71.876,72.673,73.212,74.011,74.531,75.511,77.192 +240,1,70.4382,0.03125,63.636,65.317,66.298,66.818,67.617,68.157,68.954,70.438,71.923,72.72,73.259,74.059,74.578,75.559,77.24 +241,1,70.4843,0.03125,63.678,65.36,66.342,66.861,67.662,68.201,68.999,70.484,71.97,72.767,73.307,74.107,74.627,75.608,77.291 +242,1,70.5304,0.03125,63.719,65.403,66.385,66.905,67.706,68.246,69.044,70.53,72.017,72.815,73.355,74.156,74.676,75.658,77.342 +243,1,70.5764,0.03124,63.763,65.447,66.43,66.95,67.751,68.291,69.089,70.576,72.064,72.862,73.402,74.203,74.723,75.706,77.39 +244,1,70.6224,0.03124,63.805,65.49,66.473,66.993,67.795,68.336,69.134,70.622,72.11,72.909,73.45,74.251,74.772,75.755,77.44 +245,1,70.6683,0.03123,63.848,65.534,66.517,67.038,67.84,68.381,69.18,70.668,72.157,72.956,73.497,74.298,74.819,75.802,77.488 +246,1,70.7141,0.03123,63.89,65.577,66.561,67.082,67.884,68.425,69.225,70.714,72.204,73.003,73.544,74.347,74.868,75.852,77.539 +247,1,70.7598,0.03123,63.931,65.619,66.604,67.125,67.928,68.469,69.269,70.76,72.25,73.05,73.592,74.395,74.916,75.901,77.589 +248,1,70.8055,0.03122,63.974,65.663,66.648,67.169,67.973,68.514,69.315,70.806,72.296,73.097,73.638,74.442,74.963,75.948,77.637 +249,1,70.8511,0.03122,64.016,65.705,66.691,67.213,68.016,68.559,69.359,70.851,72.343,73.144,73.686,74.489,75.011,75.997,77.687 +250,1,70.8967,0.03122,64.057,65.748,66.734,67.256,68.06,68.603,69.404,70.897,72.39,73.191,73.733,74.537,75.06,76.046,77.737 +251,1,70.9422,0.03122,64.098,65.79,66.777,67.299,68.104,68.647,69.448,70.942,72.436,73.238,73.781,74.585,75.108,76.095,77.786 +252,1,70.9876,0.03121,64.141,65.834,66.821,67.343,68.148,68.691,69.493,70.988,72.482,73.284,73.827,74.632,75.155,76.142,77.834 +253,1,71.033,0.03121,64.182,65.876,66.863,67.386,68.192,68.735,69.538,71.033,72.528,73.331,73.874,74.68,75.203,76.19,77.884 +254,1,71.0783,0.03121,64.223,65.918,66.906,67.429,68.235,68.779,69.582,71.078,72.575,73.377,73.921,74.727,75.251,76.239,77.934 +255,1,71.1235,0.03121,64.264,65.96,66.949,67.472,68.279,68.823,69.626,71.124,72.621,73.424,73.968,74.775,75.298,76.287,77.983 +256,1,71.1687,0.0312,64.307,66.003,66.992,67.516,68.323,68.867,69.671,71.169,72.666,73.47,74.014,74.821,75.345,76.334,78.03 +257,1,71.2138,0.0312,64.348,66.045,67.035,67.559,68.366,68.911,69.715,71.214,72.712,73.517,74.061,74.868,75.393,76.383,78.08 +258,1,71.2589,0.0312,64.388,66.087,67.077,67.602,68.41,68.955,69.759,71.259,72.758,73.563,74.108,74.916,75.44,76.431,78.129 +259,1,71.3039,0.0312,64.429,66.129,67.12,67.645,68.453,68.998,69.803,71.304,72.804,73.61,74.155,74.963,75.488,76.479,78.179 +260,1,71.3488,0.03119,64.472,66.172,67.163,67.688,68.497,69.042,69.848,71.349,72.85,73.655,74.201,75.009,75.534,76.526,78.226 +261,1,71.3937,0.03119,64.512,66.213,67.206,67.731,68.54,69.086,69.892,71.394,72.896,73.702,74.247,75.056,75.582,76.574,78.275 +262,1,71.4385,0.03119,64.553,66.255,67.248,67.773,68.583,69.129,69.936,71.439,72.941,73.748,74.294,75.104,75.629,76.622,78.324 +263,1,71.4832,0.03119,64.593,66.296,67.29,67.816,68.626,69.172,69.979,71.483,72.987,73.794,74.34,75.151,75.677,76.67,78.373 +264,1,71.5279,0.03119,64.634,66.338,67.332,67.858,68.669,69.216,70.023,71.528,73.033,73.84,74.387,75.197,75.724,76.718,78.422 +265,1,71.5725,0.03118,64.676,66.381,67.375,67.902,68.713,69.26,70.067,71.573,73.078,73.885,74.432,75.243,75.77,76.764,78.469 +266,1,71.6171,0.03118,64.717,66.422,67.417,67.944,68.755,69.303,70.111,71.617,73.123,73.931,74.479,75.29,75.817,76.812,78.518 +267,1,71.6616,0.03118,64.757,66.464,67.459,67.986,68.798,69.346,70.155,71.662,73.169,73.977,74.525,75.337,75.864,76.86,78.566 +268,1,71.706,0.03118,64.797,66.505,67.501,68.028,68.841,69.389,70.198,71.706,73.214,74.023,74.571,75.384,75.911,76.907,78.615 +269,1,71.7504,0.03118,64.837,66.546,67.543,68.071,68.883,69.432,70.241,71.75,73.259,74.069,74.617,75.43,75.958,76.955,78.664 +270,1,71.7947,0.03118,64.877,66.587,67.584,68.113,68.926,69.475,70.285,71.795,73.305,74.115,74.664,75.477,76.005,77.002,78.712 +271,1,71.839,0.03118,64.917,66.628,67.626,68.155,68.968,69.517,70.328,71.839,73.35,74.161,74.71,75.523,76.052,77.05,78.761 +272,1,71.8832,0.03118,64.957,66.669,67.668,68.197,69.011,69.56,70.371,71.883,73.395,74.206,74.756,75.57,76.099,77.097,78.809 +273,1,71.9273,0.03117,64.999,66.712,67.711,68.24,69.054,69.604,70.415,71.927,73.439,74.251,74.801,75.615,76.144,77.143,78.856 +274,1,71.9714,0.03117,65.039,66.753,67.752,68.281,69.096,69.646,70.458,71.971,73.485,74.296,74.846,75.661,76.191,77.19,78.904 +275,1,72.0154,0.03117,65.079,66.793,67.794,68.323,69.139,69.689,70.501,72.015,73.529,74.342,74.892,75.708,76.237,77.237,78.952 +276,1,72.0594,0.03117,65.118,66.834,67.835,68.365,69.181,69.731,70.544,72.059,73.574,74.387,74.938,75.754,76.284,77.285,79 +277,1,72.1033,0.03117,65.158,66.875,67.876,68.407,69.223,69.774,70.587,72.103,73.619,74.433,74.984,75.8,76.33,77.332,79.048 +278,1,72.1472,0.03117,65.198,66.916,67.918,68.448,69.265,69.816,70.63,72.147,73.664,74.478,75.029,75.846,76.377,77.379,79.097 +279,1,72.1909,0.03117,65.237,66.956,67.959,68.49,69.307,69.859,70.673,72.191,73.709,74.523,75.075,75.892,76.423,77.426,79.145 +280,1,72.2347,0.03117,65.277,66.997,68,68.531,69.349,69.901,70.716,72.235,73.753,74.568,75.12,75.938,76.469,77.473,79.193 +281,1,72.2783,0.03117,65.316,67.037,68.041,68.573,69.391,69.943,70.759,72.278,73.798,74.613,75.166,75.984,76.516,77.519,79.24 +282,1,72.3219,0.03117,65.356,67.078,68.082,68.614,69.433,69.985,70.801,72.322,73.842,74.658,75.211,76.03,76.562,77.566,79.288 +283,1,72.3655,0.03117,65.395,67.118,68.123,68.655,69.475,70.028,70.844,72.366,73.887,74.703,75.256,76.076,76.608,77.613,79.336 +284,1,72.4089,0.03117,65.434,67.158,68.164,68.696,69.516,70.07,70.887,72.409,73.931,74.748,75.301,76.121,76.654,77.659,79.384 +285,1,72.4523,0.03117,65.474,67.199,68.205,68.738,69.558,70.112,70.929,72.452,73.976,74.793,75.346,76.167,76.7,77.706,79.431 +286,1,72.4957,0.03117,65.513,67.239,68.246,68.779,69.6,70.154,70.972,72.496,74.02,74.838,75.392,76.213,76.746,77.753,79.479 +287,1,72.539,0.03117,65.552,67.279,68.286,68.82,69.641,70.196,71.014,72.539,74.064,74.882,75.437,76.258,76.792,77.799,79.526 +288,1,72.5822,0.03117,65.591,67.319,68.327,68.861,69.683,70.237,71.056,72.582,74.108,74.927,75.482,76.303,76.837,77.845,79.574 +289,1,72.6253,0.03117,65.63,67.359,68.368,68.902,69.724,70.279,71.098,72.625,74.152,74.972,75.526,76.349,76.883,77.892,79.621 +290,1,72.6684,0.03117,65.669,67.399,68.408,68.943,69.766,70.321,71.141,72.668,74.196,75.016,75.571,76.394,76.929,77.938,79.668 +291,1,72.7115,0.03117,65.708,67.439,68.449,68.984,69.807,70.363,71.183,72.712,74.24,75.06,75.616,76.439,76.974,77.984,79.715 +292,1,72.7544,0.03117,65.747,67.479,68.489,69.024,69.848,70.404,71.225,72.754,74.284,75.105,75.661,76.485,77.02,78.03,79.762 +293,1,72.7974,0.03117,65.785,67.519,68.53,69.065,69.889,70.446,71.267,72.797,74.328,75.149,75.705,76.53,77.065,78.076,79.809 +294,1,72.8402,0.03117,65.824,67.558,68.57,69.106,69.931,70.487,71.309,72.84,74.372,75.193,75.75,76.575,77.11,78.122,79.856 +295,1,72.883,0.03117,65.863,67.598,68.61,69.146,69.972,70.528,71.351,72.883,74.415,75.238,75.794,76.62,77.156,78.168,79.903 +296,1,72.9257,0.03117,65.901,67.638,68.65,69.187,70.013,70.57,71.393,72.926,74.459,75.282,75.839,76.665,77.201,78.214,79.95 +297,1,72.9684,0.03117,65.94,67.677,68.691,69.227,70.054,70.611,71.434,72.968,74.502,75.326,75.883,76.709,77.246,78.26,79.997 +298,1,73.011,0.03117,65.978,67.717,68.731,69.268,70.095,70.652,71.476,73.011,74.546,75.37,75.927,76.754,77.291,78.305,80.044 +299,1,73.0535,0.03118,66.015,67.755,68.769,69.307,70.134,70.693,71.517,73.054,74.59,75.414,75.973,76.8,77.338,78.352,80.092 +300,1,73.096,0.03118,66.053,67.794,68.809,69.347,70.175,70.734,71.559,73.096,74.633,75.458,76.017,76.845,77.383,78.398,80.139 +301,1,73.1384,0.03118,66.091,67.833,68.849,69.387,70.216,70.775,71.6,73.138,74.677,75.502,76.061,76.889,77.427,78.444,80.186 +302,1,73.1808,0.03118,66.13,67.873,68.889,69.428,70.257,70.816,71.642,73.181,74.72,75.546,76.105,76.934,77.472,78.489,80.232 +303,1,73.2231,0.03118,66.168,67.912,68.929,69.468,70.297,70.857,71.683,73.223,74.763,75.589,76.149,76.978,77.517,78.534,80.278 +304,1,73.2653,0.03118,66.206,67.951,68.969,69.508,70.338,70.898,71.724,73.265,74.806,75.633,76.193,77.023,77.562,78.58,80.325 +305,1,73.3075,0.03118,66.244,67.99,69.009,69.548,70.378,70.938,71.766,73.308,74.849,75.677,76.237,77.067,77.606,78.625,80.371 +306,1,73.3497,0.03118,66.282,68.029,69.048,69.588,70.419,70.979,71.807,73.35,74.892,75.72,76.281,77.112,77.651,78.67,80.417 +307,1,73.3917,0.03119,66.318,68.066,69.086,69.626,70.458,71.019,71.848,73.392,74.936,75.764,76.325,77.157,77.697,78.717,80.466 +308,1,73.4337,0.03119,66.356,68.105,69.126,69.666,70.498,71.06,71.889,73.434,74.979,75.808,76.369,77.201,77.741,78.762,80.512 +309,1,73.4757,0.03119,66.394,68.144,69.165,69.706,70.539,71.1,71.93,73.476,75.021,75.851,76.413,77.245,77.786,78.807,80.558 +310,1,73.5176,0.03119,66.432,68.183,69.205,69.746,70.579,71.141,71.971,73.518,75.064,75.894,76.456,77.289,77.83,78.852,80.604 +311,1,73.5594,0.03119,66.469,68.222,69.244,69.786,70.619,71.181,72.012,73.559,75.107,75.937,76.5,77.333,77.875,78.897,80.649 +312,1,73.6012,0.03119,66.507,68.261,69.284,69.825,70.659,71.222,72.053,73.601,75.15,75.98,76.543,77.377,77.919,78.942,80.695 +313,1,73.6429,0.0312,66.543,68.298,69.321,69.864,70.698,71.262,72.093,73.643,75.193,76.024,76.587,77.422,77.964,78.988,80.743 +314,1,73.6845,0.0312,66.58,68.336,69.361,69.903,70.738,71.302,72.134,73.685,75.235,76.067,76.631,77.466,78.008,79.033,80.789 +315,1,73.7261,0.0312,66.618,68.375,69.4,69.943,70.778,71.342,72.175,73.726,75.278,76.11,76.674,77.51,78.052,79.077,80.834 +316,1,73.7677,0.0312,66.655,68.413,69.439,69.982,70.818,71.382,72.215,73.768,75.32,76.153,76.717,77.553,78.096,79.122,80.88 +317,1,73.8091,0.0312,66.693,68.452,69.478,70.021,70.858,71.422,72.256,73.809,75.362,76.196,76.76,77.597,78.14,79.166,80.925 +318,1,73.8506,0.03121,66.728,68.489,69.516,70.059,70.897,71.462,72.296,73.851,75.405,76.239,76.804,77.642,78.186,79.213,80.973 +319,1,73.8919,0.03121,66.765,68.527,69.554,70.099,70.936,71.502,72.336,73.892,75.447,76.282,76.847,77.685,78.229,79.257,81.018 +320,1,73.9333,0.03121,66.803,68.565,69.593,70.138,70.976,71.542,72.377,73.933,75.49,76.325,76.89,77.729,78.273,79.301,81.064 +321,1,73.9745,0.03121,66.84,68.604,69.632,70.177,71.016,71.582,72.417,73.975,75.532,76.367,76.933,77.772,78.317,79.345,81.109 +322,1,74.0157,0.03122,66.875,68.64,69.67,70.215,71.054,71.621,72.457,74.016,75.574,76.411,76.977,77.817,78.362,79.391,81.157 +323,1,74.0569,0.03122,66.912,68.678,69.708,70.254,71.094,71.661,72.497,74.057,75.616,76.453,77.02,77.86,78.405,79.436,81.202 +324,1,74.0979,0.03122,66.949,68.716,69.747,70.293,71.133,71.7,72.538,74.098,75.658,76.496,77.063,77.903,78.449,79.48,81.247 +325,1,74.139,0.03122,66.986,68.754,69.786,70.332,71.173,71.74,72.578,74.139,75.7,76.538,77.105,77.946,78.492,79.524,81.292 +326,1,74.18,0.03123,67.021,68.791,69.823,70.369,71.211,71.779,72.617,74.18,75.743,76.581,77.149,77.991,78.537,79.569,81.339 +327,1,74.2209,0.03123,67.058,68.829,69.861,70.408,71.25,71.819,72.657,74.221,75.784,76.623,77.191,78.034,78.58,79.613,81.384 +328,1,74.2618,0.03123,67.095,68.867,69.9,70.447,71.29,71.858,72.698,74.262,75.826,76.665,77.234,78.077,78.624,79.657,81.429 +329,1,74.3026,0.03124,67.13,68.903,69.937,70.485,71.328,71.897,72.737,74.303,75.868,76.708,77.277,78.121,78.668,79.703,81.476 +330,1,74.3433,0.03124,67.166,68.94,69.975,70.523,71.367,71.936,72.777,74.343,75.91,76.75,77.32,78.163,78.711,79.746,81.52 +331,1,74.3841,0.03124,67.203,68.978,70.014,70.562,71.406,71.976,72.817,74.384,75.951,76.793,77.362,78.206,78.755,79.79,81.565 +332,1,74.4247,0.03124,67.24,69.016,70.052,70.6,71.445,72.015,72.856,74.425,75.993,76.834,77.404,78.249,78.798,79.834,81.61 +333,1,74.4653,0.03125,67.274,69.052,70.089,70.638,71.483,72.053,72.896,74.465,76.035,76.877,77.448,78.293,78.842,79.879,81.656 +334,1,74.5059,0.03125,67.311,69.089,70.127,70.676,71.522,72.093,72.935,74.506,76.076,76.919,77.49,78.336,78.885,79.922,81.701 +335,1,74.5464,0.03125,67.347,69.127,70.165,70.715,71.561,72.132,72.975,74.546,76.118,76.961,77.532,78.378,78.928,79.966,81.745 +336,1,74.5868,0.03126,67.382,69.163,70.202,70.752,71.599,72.17,73.014,74.587,76.159,77.003,77.575,78.422,78.972,80.011,81.792 +337,1,74.6272,0.03126,67.418,69.2,70.24,70.79,71.638,72.209,73.054,74.627,76.201,77.045,77.617,78.464,79.015,80.054,81.836 +338,1,74.6676,0.03126,67.455,69.238,70.278,70.828,71.676,72.248,73.093,74.668,76.242,77.087,77.659,78.507,79.058,80.098,81.881 +339,1,74.7079,0.03127,67.489,69.273,70.314,70.865,71.714,72.287,73.132,74.708,76.284,77.129,77.702,78.55,79.102,80.143,81.927 +340,1,74.7481,0.03127,67.525,69.311,70.352,70.903,71.753,72.326,73.172,74.748,76.325,77.171,77.744,78.593,79.144,80.186,81.971 +341,1,74.7883,0.03127,67.561,69.348,70.39,70.942,71.791,72.364,73.211,74.788,76.366,77.212,77.785,78.635,79.187,80.229,82.015 +342,1,74.8285,0.03128,67.595,69.383,70.426,70.978,71.829,72.403,73.25,74.829,76.407,77.254,77.828,78.679,79.231,80.274,82.062 +343,1,74.8686,0.03128,67.632,69.421,70.464,71.017,71.867,72.441,73.289,74.869,76.448,77.296,77.87,78.721,79.273,80.317,82.106 +344,1,74.9086,0.03128,67.668,69.458,70.502,71.054,71.906,72.48,73.328,74.909,76.489,77.337,77.911,78.763,79.316,80.36,82.149 +345,1,74.9486,0.03129,67.702,69.493,70.538,71.091,71.943,72.518,73.367,74.949,76.53,77.379,77.954,78.806,79.359,80.404,82.196 +346,1,74.9886,0.03129,67.738,69.53,70.576,71.129,71.982,72.557,73.406,74.989,76.571,77.42,77.996,78.848,79.402,80.447,82.24 +347,1,75.0285,0.0313,67.771,69.565,70.612,71.166,72.019,72.595,73.445,75.029,76.612,77.462,78.038,78.891,79.445,80.492,82.286 +348,1,75.0683,0.0313,67.807,69.602,70.649,71.203,72.057,72.633,73.483,75.068,76.653,77.504,78.079,78.933,79.487,80.534,82.329 +349,1,75.1081,0.0313,67.843,69.639,70.687,71.241,72.095,72.672,73.522,75.108,76.694,77.545,78.121,78.975,79.53,80.577,82.373 +350,1,75.1479,0.03131,67.877,69.674,70.723,71.278,72.133,72.709,73.561,75.148,76.735,77.587,78.163,79.018,79.573,80.622,82.419 +351,1,75.1876,0.03131,67.913,69.711,70.76,71.315,72.171,72.748,73.6,75.188,76.775,77.627,78.205,79.06,79.615,80.664,82.462 +352,1,75.2273,0.03132,67.946,69.746,70.796,71.352,72.208,72.785,73.638,75.227,76.816,77.669,78.247,79.103,79.659,80.708,82.508 +353,1,75.2669,0.03132,67.982,69.783,70.833,71.389,72.246,72.824,73.677,75.267,76.857,77.71,78.288,79.144,79.701,80.751,82.552 +354,1,75.3065,0.03132,68.018,69.82,70.87,71.427,72.284,72.862,73.716,75.307,76.897,77.751,78.329,79.186,79.743,80.793,82.595 +355,1,75.346,0.03133,68.051,69.854,70.906,71.463,72.321,72.899,73.754,75.346,76.938,77.793,78.371,79.229,79.786,80.838,82.641 +356,1,75.3855,0.03133,68.087,69.891,70.943,71.501,72.359,72.938,73.792,75.386,76.979,77.833,78.412,79.27,79.828,80.88,82.684 +357,1,75.425,0.03134,68.12,69.926,70.979,71.537,72.396,72.975,73.831,75.425,77.019,77.875,78.454,79.313,79.871,80.924,82.73 +358,1,75.4644,0.03134,68.156,69.962,71.016,71.574,72.433,73.013,73.869,75.464,77.06,77.916,78.495,79.355,79.913,80.966,82.773 +359,1,75.5037,0.03135,68.189,69.997,71.052,71.61,72.47,73.05,73.907,75.504,77.1,77.957,78.537,79.397,79.956,81.01,82.818 +360,1,75.5431,0.03135,68.225,70.034,71.089,71.648,72.508,73.089,73.946,75.543,77.14,77.998,78.578,79.439,79.997,81.053,82.862 +361,1,75.5824,0.03136,68.258,70.068,71.124,71.684,72.545,73.126,73.984,75.582,77.181,78.039,78.62,79.481,80.04,81.096,82.907 +362,1,75.6216,0.03136,68.293,70.105,71.161,71.721,72.582,73.164,74.022,75.622,77.221,78.079,78.661,79.522,80.082,81.139,82.95 +363,1,75.6608,0.03136,68.329,70.141,71.198,71.758,72.62,73.202,74.06,75.661,77.261,78.12,78.702,79.564,80.123,81.181,82.993 +364,1,75.6999,0.03137,68.362,70.176,71.234,71.794,72.657,73.239,74.098,75.7,77.302,78.161,78.743,79.606,80.166,81.224,83.038 +365,1,75.7391,0.03137,68.397,70.212,71.27,71.831,72.694,73.277,74.137,75.739,77.342,78.202,78.784,79.647,80.208,81.266,83.081 +366,1,75.7781,0.03138,68.43,70.246,71.306,71.867,72.731,73.314,74.174,75.778,77.382,78.243,78.826,79.689,80.25,81.31,83.126 +367,1,75.8172,0.03138,68.465,70.282,71.343,71.904,72.768,73.351,74.212,75.817,77.422,78.283,78.866,79.731,80.292,81.352,83.169 +368,1,75.8562,0.03139,68.498,70.317,71.378,71.94,72.805,73.388,74.25,75.856,77.462,78.324,78.908,79.773,80.335,81.396,83.214 +369,1,75.8951,0.03139,68.533,70.353,71.414,71.976,72.842,73.426,74.288,75.895,77.502,78.364,78.948,79.814,80.376,81.437,83.257 +370,1,75.934,0.0314,68.566,70.387,71.45,72.012,72.878,73.463,74.326,75.934,77.542,78.405,78.99,79.856,80.418,81.481,83.302 +371,1,75.9729,0.0314,68.601,70.423,71.486,72.049,72.916,73.5,74.364,75.973,77.582,78.445,79.03,79.897,80.46,81.523,83.345 +372,1,76.0117,0.03141,68.634,70.457,71.521,72.085,72.952,73.537,74.401,76.012,77.622,78.486,79.071,79.939,80.502,81.566,83.39 +373,1,76.0505,0.03141,68.669,70.493,71.558,72.121,72.989,73.575,74.439,76.051,77.662,78.526,79.112,79.98,80.543,81.608,83.432 +374,1,76.0892,0.03142,68.701,70.528,71.593,72.157,73.025,73.611,74.477,76.089,77.702,78.567,79.153,80.022,80.586,81.651,83.477 +375,1,76.1279,0.03142,68.736,70.563,71.629,72.194,73.063,73.649,74.515,76.128,77.741,78.607,79.193,80.062,80.627,81.692,83.52 +376,1,76.1665,0.03143,68.769,70.597,71.664,72.229,73.099,73.685,74.552,76.167,77.781,78.648,79.234,80.104,80.669,81.736,83.564 +377,1,76.2051,0.03143,68.804,70.633,71.7,72.265,73.136,73.723,74.59,76.205,77.821,78.687,79.275,80.145,80.71,81.777,83.607 +378,1,76.2437,0.03144,68.836,70.667,71.735,72.301,73.172,73.759,74.627,76.244,77.861,78.728,79.316,80.187,80.752,81.82,83.651 +379,1,76.2822,0.03144,68.871,70.703,71.771,72.337,73.209,73.797,74.665,76.282,77.9,78.768,79.356,80.227,80.793,81.862,83.694 +380,1,76.3207,0.03145,68.903,70.737,71.806,72.373,73.245,73.833,74.702,76.321,77.94,78.808,79.397,80.269,80.835,81.905,83.738 +381,1,76.3591,0.03146,68.936,70.771,71.841,72.408,73.28,73.869,74.739,76.359,77.979,78.849,79.438,80.31,80.877,81.948,83.783 +382,1,76.3975,0.03146,68.97,70.806,71.877,72.444,73.317,73.906,74.776,76.398,78.019,78.889,79.478,80.351,80.918,81.989,83.825 +383,1,76.4358,0.03147,69.002,70.84,71.912,72.479,73.353,73.943,74.813,76.436,78.058,78.929,79.518,80.392,80.96,82.032,83.869 +384,1,76.4741,0.03147,69.037,70.875,71.948,72.516,73.39,73.98,74.851,76.474,78.097,78.968,79.558,80.433,81,82.073,83.911 +385,1,76.5124,0.03148,69.069,70.909,71.982,72.551,73.426,74.016,74.888,76.512,78.137,79.009,79.599,80.474,81.042,82.116,83.956 +386,1,76.5506,0.03148,69.104,70.945,72.018,72.587,73.462,74.053,74.925,76.551,78.176,79.048,79.639,80.514,81.083,82.157,83.997 +387,1,76.5888,0.03149,69.136,70.978,72.053,72.622,73.498,74.089,74.962,76.589,78.216,79.088,79.68,80.556,81.125,82.199,84.042 +388,1,76.6269,0.03149,69.17,71.013,72.089,72.658,73.535,74.126,74.999,76.627,78.254,79.128,79.719,80.596,81.165,82.24,84.084 +389,1,76.665,0.0315,69.202,71.047,72.123,72.693,73.57,74.162,75.036,76.665,78.294,79.168,79.76,80.637,81.207,82.283,84.128 +390,1,76.703,0.03151,69.234,71.08,72.157,72.728,73.606,74.198,75.073,76.703,78.333,79.208,79.8,80.678,81.249,82.326,84.172 +391,1,76.741,0.03151,69.268,71.116,72.193,72.764,73.642,74.235,75.11,76.741,78.372,79.247,79.84,80.718,81.289,82.366,84.214 +392,1,76.779,0.03152,69.3,71.149,72.227,72.798,73.678,74.271,75.147,76.779,78.411,79.287,79.88,80.76,81.331,82.409,84.258 +393,1,76.8169,0.03152,69.335,71.184,72.263,72.834,73.714,74.307,75.184,76.817,78.45,79.326,79.92,80.8,81.371,82.45,84.299 +394,1,76.8548,0.03153,69.366,71.218,72.297,72.869,73.749,74.343,75.22,76.855,78.489,79.366,79.96,80.841,81.412,82.492,84.343 +395,1,76.8926,0.03154,69.398,71.251,72.331,72.904,73.785,74.379,75.257,76.893,78.528,79.406,80.001,80.882,81.454,82.534,84.387 +396,1,76.9304,0.03154,69.432,71.286,72.367,72.939,73.821,74.416,75.294,76.93,78.567,79.445,80.04,80.921,81.494,82.575,84.428 +397,1,76.9682,0.03155,69.464,71.319,72.401,72.974,73.856,74.451,75.33,76.968,78.606,79.485,80.08,80.962,81.535,82.617,84.472 +398,1,77.0059,0.03155,69.498,71.354,72.436,73.01,73.892,74.488,75.367,77.006,78.645,79.524,80.119,81.002,81.575,82.658,84.514 +399,1,77.0435,0.03156,69.53,71.387,72.47,73.044,73.927,74.523,75.403,77.044,78.684,79.564,80.16,81.043,81.617,82.7,84.557 +400,1,77.0812,0.03157,69.561,71.42,72.504,73.079,73.963,74.559,75.44,77.081,78.723,79.603,80.2,81.084,81.658,82.742,84.601 +401,1,77.1187,0.03157,69.595,71.455,72.54,73.114,73.999,74.595,75.477,77.119,78.761,79.642,80.239,81.123,81.698,82.783,84.642 +402,1,77.1563,0.03158,69.627,71.488,72.574,73.148,74.034,74.631,75.513,77.156,78.8,79.682,80.279,81.164,81.739,82.825,84.686 +403,1,77.1938,0.03159,69.658,71.521,72.607,73.183,74.069,74.666,75.549,77.194,78.839,79.721,80.319,81.205,81.78,82.867,84.729 +404,1,77.2313,0.03159,69.692,71.556,72.643,73.218,74.105,74.703,75.586,77.231,78.877,79.76,80.358,81.244,81.82,82.907,84.771 +405,1,77.2687,0.0316,69.723,71.588,72.676,73.252,74.14,74.738,75.622,77.269,78.916,79.799,80.398,81.285,81.861,82.949,84.814 +406,1,77.306,0.0316,69.757,71.623,72.711,73.288,74.175,74.774,75.658,77.306,78.954,79.838,80.437,81.324,81.901,82.989,84.855 +407,1,77.3434,0.03161,69.788,71.656,72.745,73.322,74.21,74.81,75.694,77.343,78.992,79.877,80.477,81.365,81.942,83.031,84.898 +408,1,77.3807,0.03162,69.82,71.689,72.779,73.356,74.245,74.845,75.73,77.381,79.031,79.917,80.516,81.405,81.983,83.073,84.942 +409,1,77.4179,0.03162,69.853,71.723,72.814,73.391,74.281,74.881,75.767,77.418,79.069,79.955,80.555,81.444,82.022,83.113,84.983 +410,1,77.4551,0.03163,69.884,71.756,72.847,73.425,74.315,74.916,75.803,77.455,79.108,79.994,80.595,81.485,82.063,83.154,85.026 +411,1,77.4923,0.03164,69.915,71.788,72.881,73.459,74.35,74.951,75.839,77.492,79.146,80.033,80.634,81.525,82.104,83.196,85.069 +412,1,77.5295,0.03164,69.949,71.823,72.916,73.495,74.386,74.987,75.875,77.53,79.184,80.072,80.673,81.564,82.143,83.236,85.11 +413,1,77.5665,0.03165,69.98,71.855,72.949,73.528,74.42,75.022,75.911,77.567,79.222,80.111,80.713,81.605,82.184,83.278,85.153 +414,1,77.6036,0.03166,70.011,71.888,72.983,73.562,74.455,75.057,75.946,77.604,79.261,80.15,80.752,81.645,82.225,83.319,85.196 +415,1,77.6406,0.03166,70.044,71.922,73.017,73.597,74.49,75.093,75.983,77.641,79.299,80.188,80.791,81.684,82.264,83.359,85.237 +416,1,77.6776,0.03167,70.075,71.955,73.051,73.631,74.525,75.128,76.018,77.678,79.337,80.227,80.83,81.724,82.304,83.401,85.28 +417,1,77.7145,0.03168,70.106,71.987,73.084,73.665,74.559,75.163,76.054,77.715,79.375,80.266,80.87,81.764,82.345,83.442,85.323 +418,1,77.7514,0.03168,70.14,72.021,73.119,73.7,74.595,75.198,76.09,77.751,79.413,80.304,80.908,81.803,82.384,83.482,85.363 +419,1,77.7883,0.03169,70.171,72.054,73.152,73.734,74.629,75.233,76.126,77.788,79.451,80.343,80.947,81.843,82.425,83.523,85.406 +420,1,77.8251,0.0317,70.201,72.086,73.185,73.767,74.663,75.268,76.161,77.825,79.489,80.382,80.987,81.883,82.465,83.564,85.449 +421,1,77.8618,0.0317,70.234,72.12,73.22,73.802,74.699,75.304,76.197,77.862,79.527,80.42,81.025,81.922,82.504,83.604,85.489 +422,1,77.8986,0.03171,70.265,72.152,73.253,73.836,74.733,75.338,76.232,77.899,79.565,80.459,81.064,81.962,82.544,83.645,85.532 +423,1,77.9353,0.03172,70.296,72.184,73.286,73.869,74.767,75.373,76.268,77.935,79.603,80.497,81.103,82.002,82.585,83.686,85.575 +424,1,77.9719,0.03172,70.329,72.218,73.32,73.904,74.802,75.409,76.304,77.972,79.64,80.535,81.142,82.04,82.624,83.726,85.615 +425,1,78.0085,0.03173,70.36,72.25,73.353,73.937,74.836,75.443,76.339,78.009,79.678,80.574,81.181,82.08,82.664,83.767,85.657 +426,1,78.0451,0.03174,70.39,72.282,73.386,73.971,74.871,75.478,76.374,78.045,79.716,80.613,81.22,82.12,82.704,83.808,85.7 +427,1,78.0817,0.03175,70.421,72.314,73.419,74.004,74.905,75.512,76.41,78.082,79.754,80.651,81.259,82.159,82.744,83.849,85.743 +428,1,78.1182,0.03175,70.454,72.348,73.453,74.039,74.94,75.548,76.445,78.118,79.791,80.689,81.297,82.198,82.783,83.888,85.783 +429,1,78.1546,0.03176,70.484,72.38,73.486,74.072,74.974,75.582,76.48,78.155,79.829,80.727,81.336,82.237,82.823,83.929,85.825 +430,1,78.1911,0.03177,70.515,72.412,73.519,74.105,75.008,75.616,76.516,78.191,79.867,80.766,81.375,82.277,82.863,83.97,85.868 +431,1,78.2275,0.03177,70.547,72.446,73.553,74.14,75.042,75.652,76.551,78.228,79.904,80.803,81.413,82.315,82.902,84.009,85.908 +432,1,78.2638,0.03178,70.578,72.478,73.586,74.173,75.076,75.686,76.586,78.264,79.941,80.842,81.451,82.355,82.942,84.05,85.95 +433,1,78.3001,0.03179,70.608,72.509,73.619,74.206,75.11,75.72,76.621,78.3,79.979,80.88,81.49,82.394,82.982,84.091,85.992 +434,1,78.3364,0.0318,70.638,72.541,73.651,74.239,75.144,75.755,76.656,78.336,80.017,80.918,81.529,82.434,83.022,84.132,86.034 +435,1,78.3727,0.0318,70.671,72.575,73.685,74.273,75.179,75.79,76.692,78.373,80.054,80.956,81.567,82.472,83.06,84.171,86.074 +436,1,78.4089,0.03181,70.701,72.607,73.718,74.306,75.212,75.824,76.727,78.409,80.091,80.994,81.605,82.511,83.1,84.211,86.117 +437,1,78.4451,0.03182,70.731,72.638,73.75,74.339,75.246,75.858,76.761,78.445,80.129,81.032,81.644,82.551,83.14,84.252,86.159 +438,1,78.4812,0.03183,70.762,72.67,73.783,74.372,75.28,75.892,76.796,78.481,80.166,81.07,81.683,82.59,83.18,84.293,86.201 +439,1,78.5173,0.03183,70.794,72.703,73.817,74.406,75.314,75.927,76.832,78.517,80.203,81.108,81.72,82.628,83.218,84.331,86.24 +440,1,78.5534,0.03184,70.824,72.735,73.849,74.439,75.348,75.961,76.866,78.553,80.24,81.146,81.759,82.667,83.258,84.372,86.283 +441,1,78.5894,0.03185,70.854,72.766,73.882,74.472,75.382,75.995,76.901,78.589,80.278,81.184,81.797,82.707,83.297,84.412,86.324 +442,1,78.6254,0.03186,70.884,72.798,73.914,74.505,75.415,76.029,76.936,78.625,80.315,81.222,81.836,82.746,83.337,84.453,86.366 +443,1,78.6614,0.03186,70.917,72.831,73.948,74.539,75.45,76.064,76.971,78.661,80.352,81.259,81.873,82.784,83.375,84.492,86.406 +444,1,78.6973,0.03187,70.947,72.863,73.98,74.572,75.483,76.098,77.006,78.697,80.389,81.297,81.912,82.823,83.414,84.532,86.448 +445,1,78.7332,0.03188,70.977,72.894,74.012,74.605,75.516,76.132,77.04,78.733,80.426,81.335,81.95,82.862,83.454,84.572,86.49 +446,1,78.7691,0.03189,71.007,72.925,74.045,74.637,75.55,76.166,77.075,78.769,80.463,81.373,81.988,82.901,83.494,84.613,86.532 +447,1,78.8049,0.03189,71.039,72.959,74.078,74.671,75.584,76.2,77.11,78.805,80.5,81.41,82.026,82.939,83.532,84.651,86.571 +448,1,78.8407,0.0319,71.069,72.99,74.11,74.704,75.618,76.234,77.144,78.841,80.537,81.447,82.064,82.978,83.571,84.692,86.613 +449,1,78.8764,0.03191,71.098,73.021,74.143,74.736,75.651,76.268,77.179,78.876,80.574,81.485,82.102,83.016,83.61,84.732,86.654 +450,1,78.9122,0.03192,71.128,73.052,74.175,74.769,75.684,76.302,77.213,78.912,80.611,81.523,82.14,83.055,83.65,84.772,86.696 +451,1,78.9479,0.03192,71.16,73.085,74.208,74.803,75.718,76.336,77.248,78.948,80.648,81.56,82.177,83.093,83.688,84.81,86.735 +452,1,78.9835,0.03193,71.19,73.117,74.24,74.835,75.751,76.37,77.282,78.984,80.685,81.597,82.216,83.132,83.727,84.85,86.777 +453,1,79.0191,0.03194,71.22,73.148,74.272,74.868,75.785,76.403,77.317,79.019,80.721,81.635,82.254,83.17,83.766,84.89,86.818 +454,1,79.0547,0.03195,71.249,73.179,74.304,74.9,75.818,76.437,77.351,79.055,80.758,81.673,82.292,83.209,83.805,84.931,86.86 +455,1,79.0903,0.03196,71.279,73.21,74.336,74.933,75.851,76.47,77.385,79.09,80.795,81.71,82.33,83.248,83.844,84.971,86.902 +456,1,79.1258,0.03196,71.311,73.243,74.37,74.966,75.885,76.505,77.42,79.126,80.831,81.747,82.367,83.285,83.882,85.009,86.941 +457,1,79.1613,0.03197,71.341,73.274,74.401,74.999,75.918,76.538,77.454,79.161,80.868,81.784,82.405,83.324,83.921,85.049,86.982 +458,1,79.1968,0.03198,71.37,73.305,74.433,75.031,75.951,76.572,77.489,79.197,80.905,81.822,82.443,83.363,83.96,85.089,87.023 +459,1,79.2322,0.03199,71.4,73.336,74.465,75.063,75.984,76.605,77.523,79.232,80.942,81.859,82.48,83.401,83.999,85.129,87.065 +460,1,79.2676,0.032,71.429,73.367,74.497,75.095,76.017,76.639,77.557,79.268,80.978,81.897,82.518,83.44,84.038,85.169,87.106 +461,1,79.303,0.032,71.461,73.399,74.53,75.129,76.051,76.673,77.591,79.303,81.015,81.933,82.555,83.477,84.076,85.207,87.145 +462,1,79.3383,0.03201,71.49,73.43,74.562,75.161,76.084,76.706,77.625,79.338,81.051,81.97,82.593,83.516,84.115,85.246,87.186 +463,1,79.3736,0.03202,71.52,73.461,74.593,75.193,76.116,76.739,77.659,79.374,81.088,82.008,82.631,83.554,84.154,85.286,87.228 +464,1,79.4089,0.03203,71.549,73.492,74.625,75.225,76.149,76.773,77.693,79.409,81.124,82.045,82.668,83.593,84.193,85.326,87.269 +465,1,79.4441,0.03204,71.578,73.523,74.657,75.257,76.182,76.806,77.727,79.444,81.161,82.082,82.706,83.631,84.231,85.366,87.31 +466,1,79.4793,0.03204,71.61,73.555,74.69,75.291,76.216,76.84,77.762,79.479,81.197,82.119,82.743,83.668,84.269,85.403,87.349 +467,1,79.5145,0.03205,71.639,73.586,74.721,75.323,76.249,76.873,77.796,79.515,81.233,82.156,82.78,83.706,84.308,85.443,87.39 +468,1,79.5496,0.03206,71.668,73.617,74.753,75.355,76.281,76.906,77.829,79.55,81.27,82.193,82.818,83.745,84.346,85.483,87.431 +469,1,79.5847,0.03207,71.698,73.647,74.784,75.387,76.314,76.939,77.863,79.585,81.306,82.23,82.856,83.783,84.385,85.522,87.472 +470,1,79.6198,0.03208,71.727,73.678,74.816,75.419,76.346,76.973,77.897,79.62,81.343,82.267,82.893,83.821,84.424,85.562,87.513 +471,1,79.6548,0.03209,71.756,73.708,74.847,75.45,76.379,77.006,77.931,79.655,81.379,82.304,82.931,83.859,84.462,85.601,87.554 +472,1,79.6898,0.03209,71.787,73.741,74.88,75.484,76.413,77.039,77.965,79.69,81.415,82.34,82.967,83.896,84.499,85.639,87.592 +473,1,79.7248,0.0321,71.816,73.771,74.912,75.515,76.445,77.072,77.999,79.725,81.451,82.377,83.005,83.934,84.538,85.678,87.633 +474,1,79.7598,0.03211,71.845,73.802,74.943,75.547,76.478,77.105,78.032,79.76,81.487,82.414,83.042,83.972,84.577,85.718,87.674 +475,1,79.7947,0.03212,71.874,73.832,74.974,75.579,76.51,77.138,78.066,79.795,81.523,82.451,83.079,84.01,84.615,85.757,87.715 +476,1,79.8296,0.03213,71.903,73.863,75.006,75.611,76.543,77.171,78.1,79.83,81.56,82.488,83.117,84.049,84.654,85.797,87.756 +477,1,79.8644,0.03214,71.932,73.893,75.037,75.642,76.575,77.204,78.133,79.864,81.596,82.525,83.154,84.086,84.692,85.836,87.797 +478,1,79.8993,0.03214,71.964,73.925,75.069,75.675,76.608,77.238,78.167,79.899,81.631,82.561,83.19,84.123,84.729,85.873,87.835 +479,1,79.9341,0.03215,71.993,73.956,75.101,75.707,76.641,77.271,78.201,79.934,81.667,82.598,83.228,84.161,84.768,85.913,87.876 +480,1,79.9688,0.03216,72.021,73.986,75.132,75.739,76.673,77.303,78.234,79.969,81.703,82.634,83.265,84.199,84.806,85.952,87.916 +481,1,80.0036,0.03217,72.05,74.016,75.163,75.77,76.705,77.336,78.268,80.004,81.74,82.671,83.302,84.237,84.844,85.991,87.957 +482,1,80.0383,0.03218,72.079,74.046,75.194,75.802,76.737,77.369,78.301,80.038,81.776,82.708,83.339,84.275,84.883,86.03,87.998 +483,1,80.0729,0.03219,72.108,74.077,75.225,75.833,76.77,77.401,78.334,80.073,81.811,82.744,83.376,84.313,84.921,86.069,88.038 +484,1,80.1076,0.0322,72.136,74.107,75.256,75.865,76.802,77.434,78.368,80.108,81.847,82.781,83.413,84.35,84.959,86.108,88.079 +485,1,80.1422,0.0322,72.168,74.139,75.289,75.898,76.835,77.468,78.402,80.142,81.883,82.817,83.449,84.387,84.996,86.146,88.117 +486,1,80.1768,0.03221,72.196,74.169,75.32,75.929,76.867,77.5,78.435,80.177,81.919,82.853,83.486,84.425,85.034,86.185,88.157 +487,1,80.2113,0.03222,72.225,74.199,75.351,75.96,76.899,77.533,78.468,80.211,81.954,82.89,83.523,84.462,85.072,86.224,88.198 +488,1,80.2459,0.03223,72.254,74.229,75.382,75.992,76.931,77.565,78.501,80.246,81.99,82.926,83.56,84.5,85.11,86.263,88.238 +489,1,80.2804,0.03224,72.282,74.259,75.412,76.023,76.963,77.598,78.535,80.28,82.026,82.963,83.597,84.538,85.148,86.302,88.279 +490,1,80.3148,0.03225,72.311,74.289,75.443,76.054,76.995,77.63,78.568,80.315,82.062,82.999,83.634,84.575,85.186,86.34,88.319 +491,1,80.3493,0.03226,72.339,74.319,75.474,76.086,77.027,77.663,78.601,80.349,82.098,83.036,83.671,84.613,85.224,86.379,88.359 +492,1,80.3837,0.03226,72.37,74.351,75.506,76.118,77.06,77.696,78.635,80.384,82.133,83.071,83.707,84.649,85.261,86.416,88.397 +493,1,80.4181,0.03227,72.399,74.381,75.537,76.15,77.092,77.728,78.668,80.418,82.168,83.108,83.744,84.687,85.299,86.455,88.438 +494,1,80.4524,0.03228,72.427,74.411,75.568,76.181,77.124,77.761,78.701,80.452,82.204,83.144,83.781,84.724,85.337,86.494,88.478 +495,1,80.4867,0.03229,72.455,74.441,75.599,76.212,77.156,77.793,78.734,80.487,82.24,83.18,83.817,84.762,85.375,86.533,88.518 +496,1,80.521,0.0323,72.484,74.471,75.629,76.243,77.188,77.825,78.767,80.521,82.275,83.217,83.854,84.799,85.413,86.571,88.558 +497,1,80.5553,0.03231,72.512,74.5,75.66,76.274,77.22,77.858,78.8,80.555,82.311,83.253,83.891,84.836,85.451,86.61,88.598 +498,1,80.5895,0.03232,72.541,74.53,75.691,76.305,77.252,77.89,78.833,80.59,82.346,83.289,83.927,84.874,85.488,86.649,88.638 +499,1,80.6237,0.03233,72.569,74.56,75.721,76.336,77.283,77.922,78.866,80.624,82.382,83.325,83.964,84.911,85.526,86.687,88.679 +500,1,80.6578,0.03234,72.597,74.59,75.752,76.367,77.315,77.954,78.898,80.658,82.417,83.361,84.001,84.948,85.564,86.726,88.719 +501,1,80.692,0.03234,72.628,74.621,75.784,76.4,77.348,77.987,78.932,80.692,82.452,83.397,84.036,84.984,85.6,86.763,88.756 +502,1,80.7261,0.03235,72.656,74.651,75.814,76.431,77.379,78.019,78.965,80.726,82.488,83.433,84.073,85.022,85.638,86.801,88.796 +503,1,80.7602,0.03236,72.684,74.681,75.845,76.462,77.411,78.052,78.997,80.76,82.523,83.469,84.109,85.059,85.675,86.84,88.836 +504,1,80.7942,0.03237,72.712,74.71,75.875,76.492,77.443,78.084,79.03,80.794,82.558,83.505,84.146,85.096,85.713,86.878,88.876 +505,1,80.8282,0.03238,72.74,74.74,75.906,76.523,77.474,78.116,79.063,80.828,82.593,83.541,84.182,85.133,85.751,86.917,88.916 +506,1,80.8622,0.03239,72.768,74.769,75.936,76.554,77.506,78.148,79.096,80.862,82.629,83.577,84.219,85.17,85.788,86.955,88.956 +507,1,80.8961,0.0324,72.796,74.799,75.966,76.585,77.537,78.18,79.128,80.896,82.664,83.613,84.255,85.207,85.826,86.994,88.996 +508,1,80.9301,0.03241,72.825,74.828,75.997,76.616,77.569,78.212,79.161,80.93,82.699,83.649,84.292,85.244,85.863,87.032,89.036 +509,1,80.964,0.03242,72.853,74.858,76.027,76.647,77.6,78.244,79.194,80.964,82.734,83.684,84.328,85.281,85.901,87.07,89.075 +510,1,80.9978,0.03243,72.881,74.887,76.057,76.677,77.631,78.275,79.226,80.998,82.77,83.72,84.364,85.318,85.938,87.109,89.115 +511,1,81.0317,0.03244,72.909,74.917,76.088,76.708,77.663,78.307,79.259,81.032,82.805,83.756,84.4,85.355,85.976,87.147,89.155 +512,1,81.0655,0.03245,72.936,74.946,76.118,76.739,77.694,78.339,79.291,81.066,82.84,83.792,84.437,85.392,86.013,87.185,89.195 +513,1,81.0992,0.03245,72.967,74.977,76.15,76.77,77.727,78.372,79.324,81.099,82.874,83.827,84.472,85.428,86.049,87.221,89.232 +514,1,81.133,0.03246,72.995,75.006,76.18,76.801,77.758,78.403,79.357,81.133,82.909,83.863,84.508,85.465,86.086,87.26,89.271 +515,1,81.1667,0.03247,73.022,75.036,76.21,76.832,77.789,78.435,79.389,81.167,82.944,83.898,84.544,85.502,86.123,87.298,89.311 +516,1,81.2004,0.03248,73.05,75.065,76.24,76.862,77.82,78.467,79.422,81.2,82.979,83.934,84.58,85.539,86.161,87.336,89.351 +517,1,81.234,0.03249,73.078,75.094,76.27,76.893,77.852,78.499,79.454,81.234,83.014,83.969,84.616,85.575,86.198,87.374,89.39 +518,1,81.2677,0.0325,73.106,75.123,76.3,76.923,77.883,78.53,79.486,81.268,83.049,84.005,84.653,85.612,86.235,87.412,89.43 +519,1,81.3013,0.03251,73.133,75.153,76.33,76.954,77.914,78.562,79.519,81.301,83.084,84.041,84.689,85.649,86.272,87.45,89.469 +520,1,81.3348,0.03252,73.161,75.182,76.36,76.984,77.945,78.593,79.551,81.335,83.119,84.076,84.725,85.685,86.31,87.488,89.508 +521,1,81.3684,0.03253,73.189,75.211,76.39,77.015,77.976,78.625,79.583,81.368,83.154,84.112,84.761,85.722,86.347,87.526,89.548 +522,1,81.4019,0.03254,73.216,75.24,76.42,77.045,78.007,78.657,79.615,81.402,83.189,84.147,84.796,85.759,86.384,87.564,89.587 +523,1,81.4353,0.03255,73.244,75.269,76.45,77.075,78.038,78.688,79.647,81.435,83.223,84.183,84.832,85.795,86.421,87.602,89.627 +524,1,81.4688,0.03256,73.272,75.298,76.48,77.106,78.069,78.72,79.68,81.469,83.258,84.218,84.868,85.832,86.458,87.64,89.666 +525,1,81.5022,0.03257,73.299,75.327,76.51,77.136,78.1,78.751,79.712,81.502,83.293,84.253,84.904,85.869,86.495,87.678,89.705 +526,1,81.5356,0.03258,73.327,75.356,76.539,77.166,78.131,78.782,79.744,81.536,83.327,84.289,84.94,85.905,86.532,87.715,89.745 +527,1,81.569,0.03259,73.354,75.385,76.569,77.196,78.162,78.814,79.776,81.569,83.362,84.324,84.976,85.942,86.569,87.753,89.784 +528,1,81.6023,0.0326,73.382,75.414,76.599,77.227,78.193,78.845,79.808,81.602,83.397,84.359,85.012,85.978,86.606,87.791,89.823 +529,1,81.6356,0.03261,73.409,75.443,76.629,77.257,78.224,78.876,79.84,81.636,83.431,84.395,85.047,86.014,86.643,87.829,89.862 +530,1,81.6689,0.03261,73.439,75.473,76.66,77.288,78.256,78.909,79.873,81.669,83.465,84.429,85.082,86.05,86.678,87.864,89.899 +531,1,81.7021,0.03262,73.466,75.502,76.69,77.318,78.287,78.94,79.905,81.702,83.5,84.464,85.118,86.086,86.715,87.902,89.938 +532,1,81.7353,0.03263,73.494,75.531,76.719,77.348,78.317,78.971,79.936,81.735,83.534,84.499,85.153,86.122,86.751,87.94,89.977 +533,1,81.7685,0.03264,73.521,75.56,76.749,77.379,78.348,79.002,79.968,81.769,83.569,84.535,85.189,86.158,86.788,87.977,90.016 +534,1,81.8017,0.03265,73.548,75.588,76.778,77.409,78.379,79.034,80,81.802,83.603,84.57,85.225,86.195,86.825,88.015,90.055 +535,1,81.8348,0.03266,73.575,75.617,76.808,77.439,78.41,79.065,80.032,81.835,83.638,84.605,85.26,86.231,86.862,88.052,90.094 +536,1,81.8679,0.03267,73.603,75.646,76.837,77.469,78.44,79.096,80.064,81.868,83.672,84.64,85.296,86.267,86.898,88.09,90.133 +537,1,81.9009,0.03268,73.63,75.674,76.867,77.498,78.471,79.127,80.096,81.901,83.706,84.675,85.331,86.303,86.935,88.127,90.172 +538,1,81.934,0.03269,73.657,75.703,76.896,77.528,78.501,79.158,80.127,81.934,83.741,84.71,85.367,86.34,86.972,88.165,90.211 +539,1,81.967,0.0327,73.684,75.732,76.926,77.558,78.532,79.189,80.159,81.967,83.775,84.745,85.402,86.376,87.008,88.202,90.25 +540,1,82,0.03271,73.711,75.76,76.955,77.588,78.563,79.22,80.191,82,83.809,84.78,85.437,86.412,87.045,88.24,90.289 +541,1,82.0329,0.03272,73.738,75.789,76.985,77.618,78.593,79.251,80.222,82.033,83.843,84.815,85.473,86.448,87.081,88.277,90.327 +542,1,82.0659,0.03273,73.765,75.817,77.014,77.648,78.624,79.282,80.254,82.066,83.878,84.85,85.508,86.484,87.118,88.315,90.366 +543,1,82.0987,0.03274,73.792,75.846,77.043,77.677,78.654,79.313,80.286,82.099,83.912,84.885,85.543,86.52,87.154,88.352,90.405 +544,1,82.1316,0.03275,73.819,75.874,77.073,77.707,78.684,79.344,80.317,82.132,83.946,84.919,85.579,86.556,87.191,88.389,90.444 +545,1,82.1644,0.03276,73.846,75.903,77.102,77.737,78.715,79.375,80.349,82.164,83.98,84.954,85.614,86.592,87.227,88.426,90.482 +546,1,82.1973,0.03277,73.873,75.931,77.131,77.767,78.745,79.406,80.38,82.197,84.014,84.989,85.649,86.628,87.263,88.464,90.521 +547,1,82.23,0.03278,73.9,75.959,77.16,77.796,78.776,79.436,80.412,82.23,84.048,85.024,85.684,86.664,87.3,88.501,90.56 +548,1,82.2628,0.03279,73.927,75.988,77.19,77.826,78.806,79.467,80.443,82.263,84.082,85.058,85.72,86.7,87.336,88.538,90.598 +549,1,82.2955,0.0328,73.954,76.016,77.219,77.856,78.836,79.498,80.475,82.296,84.116,85.093,85.755,86.735,87.372,88.575,90.637 +550,1,82.3282,0.03281,73.981,76.044,77.248,77.885,78.866,79.529,80.506,82.328,84.15,85.128,85.79,86.771,87.409,88.612,90.675 +551,1,82.3609,0.03282,74.008,76.073,77.277,77.915,78.897,79.559,80.538,82.361,84.184,85.162,85.825,86.807,87.445,88.649,90.714 +552,1,82.3935,0.03283,74.034,76.101,77.306,77.944,78.927,79.59,80.569,82.394,84.218,85.197,85.86,86.843,87.481,88.686,90.753 +553,1,82.4261,0.03284,74.061,76.129,77.335,77.974,78.957,79.621,80.6,82.426,84.252,85.232,85.895,86.879,87.517,88.723,90.791 +554,1,82.4587,0.03285,74.088,76.157,77.364,78.003,78.987,79.651,80.632,82.459,84.286,85.266,85.93,86.914,87.553,88.76,90.829 +555,1,82.4912,0.03286,74.115,76.185,77.393,78.033,79.017,79.682,80.663,82.491,84.32,85.301,85.965,86.95,87.589,88.797,90.868 +556,1,82.5237,0.03287,74.141,76.213,77.422,78.062,79.047,79.712,80.694,82.524,84.353,85.335,86,86.985,87.625,88.834,90.906 +557,1,82.5562,0.03288,74.168,76.241,77.451,78.091,79.077,79.743,80.725,82.556,84.387,85.37,86.035,87.021,87.662,88.871,90.944 +558,1,82.5887,0.03289,74.195,76.27,77.48,78.121,79.108,79.773,80.757,82.589,84.421,85.404,86.07,87.057,87.698,88.908,90.983 +559,1,82.6211,0.0329,74.221,76.298,77.509,78.15,79.138,79.804,80.788,82.621,84.455,85.438,86.105,87.092,87.734,88.945,91.021 +560,1,82.6535,0.03291,74.248,76.326,77.538,78.179,79.168,79.834,80.819,82.654,84.488,85.473,86.139,87.128,87.769,88.981,91.059 +561,1,82.6859,0.03292,74.274,76.354,77.566,78.209,79.197,79.865,80.85,82.686,84.522,85.507,86.174,87.163,87.805,89.018,91.098 +562,1,82.7182,0.03293,74.301,76.381,77.595,78.238,79.227,79.895,80.881,82.718,84.555,85.541,86.209,87.199,87.841,89.055,91.136 +563,1,82.7505,0.03294,74.327,76.409,77.624,78.267,79.257,79.925,80.912,82.751,84.589,85.576,86.244,87.234,87.877,89.092,91.174 +564,1,82.7828,0.03295,74.354,76.437,77.653,78.296,79.287,79.956,80.943,82.783,84.623,85.61,86.278,87.269,87.913,89.128,91.212 +565,1,82.8151,0.03296,74.38,76.465,77.681,78.325,79.317,79.986,80.974,82.815,84.656,85.644,86.313,87.305,87.949,89.165,91.25 +566,1,82.8473,0.03297,74.406,76.493,77.71,78.354,79.347,80.016,81.005,82.847,84.69,85.678,86.348,87.34,87.985,89.202,91.288 +567,1,82.8795,0.03298,74.433,76.521,77.739,78.384,79.377,80.047,81.036,82.88,84.723,85.712,86.382,87.375,88.02,89.238,91.326 +568,1,82.9117,0.03299,74.459,76.549,77.767,78.413,79.406,80.077,81.067,82.912,84.757,85.747,86.417,87.411,88.056,89.275,91.364 +569,1,82.9438,0.033,74.485,76.576,77.796,78.442,79.436,80.107,81.098,82.944,84.79,85.781,86.452,87.446,88.092,89.311,91.402 +570,1,82.9759,0.03301,74.512,76.604,77.824,78.471,79.466,80.137,81.128,82.976,84.823,85.815,86.486,87.481,88.127,89.348,91.44 +571,1,83.008,0.03302,74.538,76.632,77.853,78.5,79.495,80.167,81.159,83.008,84.857,85.849,86.521,87.516,88.163,89.384,91.478 +572,1,83.04,0.03303,74.564,76.659,77.881,78.528,79.525,80.197,81.19,83.04,84.89,85.883,86.555,87.552,88.199,89.421,91.516 +573,1,83.0721,0.03304,74.59,76.687,77.91,78.557,79.555,80.227,81.221,83.072,84.923,85.917,86.59,87.587,88.234,89.457,91.554 +574,1,83.1041,0.03305,74.616,76.715,77.938,78.586,79.584,80.257,81.252,83.104,84.957,85.951,86.624,87.622,88.27,89.494,91.592 +575,1,83.136,0.03306,74.643,76.742,77.967,78.615,79.614,80.287,81.282,83.136,84.99,85.985,86.658,87.657,88.305,89.53,91.629 +576,1,83.168,0.03308,74.666,76.768,77.994,78.643,79.642,80.317,81.312,83.168,85.024,86.019,86.694,87.693,88.342,89.568,91.67 +577,1,83.1999,0.03309,74.692,76.795,78.022,78.671,79.672,80.347,81.343,83.2,85.057,86.053,86.728,87.728,88.378,89.605,91.708 +578,1,83.2318,0.0331,74.718,76.823,78.05,78.7,79.701,80.376,81.374,83.232,85.09,86.087,86.762,87.763,88.413,89.641,91.745 +579,1,83.2637,0.03311,74.744,76.85,78.079,78.729,79.731,80.406,81.404,83.264,85.123,86.121,86.797,87.798,88.449,89.677,91.783 +580,1,83.2955,0.03312,74.77,76.878,78.107,78.758,79.76,80.436,81.435,83.296,85.156,86.155,86.831,87.833,88.484,89.713,91.821 +581,1,83.3273,0.03313,74.796,76.905,78.135,78.786,79.789,80.466,81.465,83.327,85.189,86.189,86.865,87.868,88.519,89.749,91.858 +582,1,83.3591,0.03314,74.822,76.933,78.163,78.815,79.819,80.496,81.496,83.359,85.222,86.222,86.899,87.903,88.555,89.786,91.896 +583,1,83.3908,0.03315,74.848,76.96,78.192,78.844,79.848,80.526,81.526,83.391,85.255,86.256,86.934,87.938,88.59,89.822,91.933 +584,1,83.4226,0.03316,74.874,76.987,78.22,78.872,79.877,80.556,81.557,83.423,85.288,86.29,86.968,87.973,88.625,89.858,91.971 +585,1,83.4543,0.03317,74.9,77.015,78.248,78.901,79.907,80.585,81.587,83.454,85.321,86.323,87.002,88.008,88.661,89.894,92.009 +586,1,83.4859,0.03318,74.926,77.042,78.276,78.93,79.936,80.615,81.618,83.486,85.354,86.357,87.036,88.042,88.696,89.93,92.046 +587,1,83.5176,0.03319,74.952,77.069,78.304,78.958,79.965,80.645,81.648,83.518,85.387,86.391,87.07,88.077,88.731,89.966,92.084 +588,1,83.5492,0.0332,74.977,77.096,78.332,78.987,79.994,80.674,81.678,83.549,85.42,86.424,87.104,88.112,88.766,90.002,92.121 +589,1,83.5808,0.03321,75.003,77.124,78.36,79.015,80.024,80.704,81.709,83.581,85.453,86.458,87.138,88.146,88.801,90.038,92.158 +590,1,83.6124,0.03322,75.029,77.151,78.388,79.044,80.053,80.734,81.739,83.612,85.486,86.491,87.172,88.181,88.836,90.074,92.196 +591,1,83.6439,0.03323,75.055,77.178,78.416,79.072,80.082,80.763,81.769,83.644,85.519,86.525,87.206,88.216,88.872,90.11,92.233 +592,1,83.6754,0.03324,75.08,77.205,78.444,79.1,80.111,80.793,81.799,83.675,85.551,86.558,87.24,88.25,88.907,90.146,92.27 +593,1,83.7069,0.03325,75.106,77.232,78.472,79.129,80.14,80.822,81.83,83.707,85.584,86.592,87.274,88.285,88.942,90.182,92.308 +594,1,83.7384,0.03326,75.132,77.259,78.5,79.157,80.169,80.852,81.86,83.738,85.617,86.625,87.308,88.32,88.977,90.218,92.345 +595,1,83.7698,0.03327,75.157,77.286,78.528,79.186,80.198,80.881,81.89,83.77,85.65,86.658,87.342,88.354,89.012,90.253,92.382 +596,1,83.8012,0.03329,75.18,77.311,78.554,79.212,80.226,80.91,81.92,83.801,85.683,86.693,87.376,88.39,89.048,90.291,92.422 +597,1,83.8326,0.0333,75.206,77.338,78.582,79.241,80.255,80.939,81.95,83.833,85.716,86.726,87.41,88.424,89.083,90.327,92.459 +598,1,83.864,0.03331,75.231,77.365,78.61,79.269,80.284,80.969,81.98,83.864,85.748,86.759,87.444,88.459,89.118,90.363,92.497 +599,1,83.8953,0.03332,75.257,77.392,78.638,79.297,80.313,80.998,82.01,83.895,85.781,86.793,87.478,88.493,89.153,90.398,92.534 +600,1,83.9267,0.03333,75.282,77.419,78.666,79.326,80.342,81.028,82.04,83.927,85.813,86.826,87.512,88.528,89.188,90.434,92.571 +601,1,83.9579,0.03334,75.308,77.446,78.693,79.354,80.371,81.057,82.07,83.958,85.846,86.859,87.545,88.562,89.223,90.47,92.608 +602,1,83.9892,0.03335,75.333,77.473,78.721,79.382,80.4,81.086,82.1,83.989,85.878,86.892,87.579,88.597,89.257,90.505,92.645 +603,1,84.0205,0.03336,75.359,77.5,78.749,79.41,80.428,81.115,82.13,84.021,85.911,86.926,87.613,88.631,89.292,90.541,92.682 +604,1,84.0517,0.03337,75.384,77.527,78.776,79.438,80.457,81.145,82.16,84.052,85.944,86.959,87.646,88.665,89.327,90.577,92.719 +605,1,84.0829,0.03338,75.41,77.554,78.804,79.466,80.486,81.174,82.19,84.083,85.976,86.992,87.68,88.699,89.362,90.612,92.756 +606,1,84.114,0.03339,75.435,77.58,78.832,79.494,80.515,81.203,82.22,84.114,86.008,87.025,87.713,88.734,89.396,90.648,92.793 +607,1,84.1452,0.0334,75.46,77.607,78.859,79.522,80.543,81.232,82.25,84.145,86.041,87.058,87.747,88.768,89.431,90.683,92.83 +608,1,84.1763,0.03341,75.486,77.634,78.887,79.55,80.572,81.262,82.279,84.176,86.073,87.091,87.78,88.802,89.466,90.719,92.867 +609,1,84.2074,0.03342,75.511,77.661,78.914,79.578,80.601,81.291,82.309,84.207,86.106,87.124,87.814,88.836,89.5,90.754,92.904 +610,1,84.2385,0.03344,75.534,77.685,78.94,79.605,80.628,81.319,82.339,84.239,86.138,87.158,87.849,88.872,89.537,90.792,92.943 +611,1,84.2695,0.03345,75.559,77.712,78.968,79.633,80.657,81.348,82.368,84.27,86.171,87.191,87.882,88.906,89.571,90.827,92.98 +612,1,84.3006,0.03346,75.584,77.739,78.995,79.661,80.686,81.377,82.398,84.301,86.203,87.224,87.915,88.94,89.606,90.863,93.017 +613,1,84.3316,0.03347,75.609,77.765,79.023,79.689,80.714,81.406,82.428,84.332,86.235,87.257,87.949,88.974,89.64,90.898,93.054 +614,1,84.3626,0.03348,75.634,77.792,79.05,79.717,80.743,81.435,82.458,84.363,86.268,87.29,87.982,89.008,89.675,90.933,93.091 +615,1,84.3935,0.03349,75.659,77.818,79.078,79.745,80.771,81.464,82.487,84.394,86.3,87.323,88.016,89.042,89.709,90.969,93.128 +616,1,84.4245,0.0335,75.685,77.845,79.105,79.772,80.8,81.493,82.517,84.425,86.332,87.356,88.049,89.077,89.744,91.004,93.164 +617,1,84.4554,0.03351,75.71,77.872,79.133,79.8,80.828,81.522,82.547,84.455,86.364,87.389,88.082,89.111,89.778,91.039,93.201 +618,1,84.4862,0.03352,75.735,77.898,79.16,79.828,80.857,81.551,82.576,84.486,86.396,87.421,88.116,89.144,89.813,91.074,93.238 +619,1,84.5171,0.03353,75.76,77.925,79.187,79.856,80.885,81.58,82.606,84.517,86.429,87.454,88.149,89.178,89.847,91.11,93.274 +620,1,84.5479,0.03354,75.785,77.951,79.214,79.884,80.914,81.609,82.635,84.548,86.461,87.487,88.182,89.212,89.881,91.145,93.311 +621,1,84.5787,0.03356,75.807,77.975,79.24,79.91,80.941,81.637,82.664,84.579,86.493,87.521,88.216,89.248,89.917,91.182,93.35 +622,1,84.6095,0.03357,75.832,78.002,79.267,79.938,80.969,81.666,82.694,84.61,86.525,87.553,88.25,89.281,89.952,91.217,93.387 +623,1,84.6403,0.03358,75.857,78.028,79.295,79.965,80.998,81.695,82.723,84.64,86.557,87.586,88.283,89.315,89.986,91.252,93.423 +624,1,84.671,0.03359,75.882,78.055,79.322,79.993,81.026,81.723,82.753,84.671,86.589,87.619,88.316,89.349,90.02,91.287,93.46 +625,1,84.7017,0.0336,75.907,78.081,79.349,80.02,81.054,81.752,82.782,84.702,86.621,87.651,88.349,89.383,90.054,91.322,93.496 +626,1,84.7324,0.03361,75.932,78.107,79.376,80.048,81.083,81.781,82.812,84.732,86.653,87.684,88.382,89.417,90.089,91.358,93.533 +627,1,84.7631,0.03362,75.957,78.134,79.403,80.076,81.111,81.81,82.841,84.763,86.685,87.717,88.415,89.45,90.123,91.393,93.569 +628,1,84.7937,0.03363,75.982,78.16,79.43,80.103,81.139,81.838,82.87,84.794,86.717,87.749,88.448,89.484,90.157,91.428,93.606 +629,1,84.8243,0.03364,76.006,78.186,79.457,80.131,81.167,81.867,82.9,84.824,86.749,87.782,88.481,89.518,90.191,91.463,93.642 +630,1,84.8549,0.03365,76.031,78.212,79.485,80.158,81.196,81.896,82.929,84.855,86.781,87.814,88.514,89.552,90.225,91.497,93.679 +631,1,84.8855,0.03367,76.053,78.237,79.51,80.184,81.223,81.923,82.958,84.886,86.813,87.848,88.548,89.587,90.261,91.534,93.718 +632,1,84.916,0.03368,76.078,78.263,79.537,80.212,81.251,81.952,82.987,84.916,86.845,87.88,88.581,89.62,90.295,91.569,93.754 +633,1,84.9465,0.03369,76.103,78.289,79.564,80.239,81.279,81.98,83.016,84.947,86.877,87.913,88.614,89.654,90.329,91.604,93.79 +634,1,84.977,0.0337,76.127,78.315,79.591,80.267,81.307,82.009,83.045,84.977,86.909,87.945,88.647,89.687,90.363,91.639,93.827 +635,1,85.0075,0.03371,76.152,78.341,79.618,80.294,81.335,82.037,83.075,85.008,86.94,87.978,88.68,89.721,90.397,91.674,93.863 +636,1,85.0379,0.03372,76.177,78.367,79.645,80.321,81.363,82.066,83.104,85.038,86.972,88.01,88.713,89.754,90.431,91.709,93.899 +637,1,85.0683,0.03373,76.201,78.393,79.672,80.349,81.391,82.094,83.133,85.068,87.004,88.042,88.746,89.788,90.465,91.743,93.935 +638,1,85.0987,0.03374,76.226,78.419,79.699,80.376,81.419,82.123,83.162,85.099,87.035,88.075,88.778,89.821,90.499,91.778,93.971 +639,1,85.1291,0.03375,76.251,78.445,79.725,80.403,81.447,82.151,83.191,85.129,87.067,88.107,88.811,89.855,90.533,91.813,94.008 +640,1,85.1594,0.03377,76.272,78.469,79.751,80.429,81.474,82.179,83.22,85.159,87.099,88.14,88.845,89.89,90.568,91.85,94.046 +641,1,85.1897,0.03378,76.297,78.495,79.777,80.456,81.502,82.207,83.249,85.19,87.131,88.172,88.878,89.923,90.602,91.884,94.082 +642,1,85.22,0.03379,76.321,78.521,79.804,80.484,81.53,82.236,83.278,85.22,87.162,88.204,88.91,89.956,90.636,91.919,94.119 +643,1,85.2503,0.0338,76.346,78.547,79.831,80.511,81.558,82.264,83.307,85.25,87.194,88.237,88.943,89.99,90.67,91.954,94.155 +644,1,85.2805,0.03381,76.37,78.573,79.858,80.538,81.585,82.292,83.336,85.281,87.225,88.269,88.976,90.023,90.703,91.988,94.191 +645,1,85.3108,0.03382,76.395,78.599,79.884,80.565,81.613,82.32,83.365,85.311,87.257,88.301,89.008,90.057,90.737,92.023,94.227 +646,1,85.341,0.03383,76.419,78.625,79.911,80.592,81.641,82.349,83.394,85.341,87.288,88.333,89.041,90.09,90.771,92.057,94.263 +647,1,85.3711,0.03384,76.444,78.65,79.938,80.619,81.669,82.377,83.423,85.371,87.32,88.365,89.073,90.123,90.805,92.092,94.299 +648,1,85.4013,0.03385,76.468,78.676,79.964,80.646,81.697,82.405,83.451,85.401,87.351,88.397,89.106,90.156,90.838,92.126,94.335 +649,1,85.4314,0.03387,76.49,78.7,79.989,80.672,81.723,82.432,83.48,85.431,87.383,88.43,89.14,90.191,90.874,92.163,94.373 +650,1,85.4615,0.03388,76.514,78.726,80.016,80.699,81.751,82.461,83.509,85.462,87.414,88.462,89.172,90.224,90.907,92.197,94.409 +651,1,85.4916,0.03389,76.538,78.751,80.042,80.726,81.779,82.489,83.537,85.492,87.446,88.494,89.205,90.257,90.941,92.232,94.445 +652,1,85.5217,0.0339,76.563,78.777,80.069,80.753,81.806,82.517,83.566,85.522,87.477,88.527,89.237,90.29,90.974,92.266,94.481 +653,1,85.5517,0.03391,76.587,78.803,80.095,80.78,81.834,82.545,83.595,85.552,87.508,88.558,89.27,90.324,91.008,92.301,94.517 +654,1,85.5817,0.03392,76.611,78.828,80.122,80.807,81.861,82.573,83.624,85.582,87.54,88.59,89.302,90.357,91.042,92.335,94.552 +655,1,85.6117,0.03393,76.635,78.854,80.148,80.834,81.889,82.601,83.652,85.612,87.571,88.622,89.334,90.39,91.075,92.369,94.588 +656,1,85.6417,0.03394,76.659,78.88,80.175,80.861,81.917,82.629,83.681,85.642,87.602,88.654,89.367,90.423,91.109,92.404,94.624 +657,1,85.6716,0.03396,76.681,78.903,80.2,80.886,81.943,82.656,83.709,85.672,87.634,88.687,89.4,90.457,91.144,92.44,94.662 +658,1,85.7015,0.03397,76.705,78.929,80.226,80.913,81.971,82.684,83.738,85.702,87.665,88.719,89.432,90.49,91.177,92.474,94.698 +659,1,85.7314,0.03398,76.729,78.954,80.252,80.94,81.998,82.712,83.767,85.731,87.696,88.751,89.465,90.523,91.21,92.508,94.734 +660,1,85.7613,0.03399,76.753,78.98,80.279,80.967,82.026,82.74,83.795,85.761,87.727,88.783,89.497,90.556,91.244,92.543,94.769 +661,1,85.7912,0.034,76.777,79.005,80.305,80.993,82.053,82.768,83.824,85.791,87.759,88.814,89.529,90.589,91.277,92.577,94.805 +662,1,85.821,0.03401,76.801,79.031,80.331,81.02,82.08,82.796,83.852,85.821,87.79,88.846,89.562,90.622,91.311,92.611,94.841 +663,1,85.8508,0.03402,76.825,79.056,80.358,81.047,82.108,82.824,83.881,85.851,87.821,88.878,89.594,90.655,91.344,92.645,94.876 +664,1,85.8806,0.03404,76.847,79.08,80.382,81.072,82.134,82.851,83.909,85.881,87.852,88.91,89.627,90.689,91.379,92.681,94.915 +665,1,85.9104,0.03405,76.871,79.105,80.409,81.099,82.162,82.879,83.937,85.91,87.883,88.942,89.659,90.722,91.412,92.716,94.95 +666,1,85.9401,0.03406,76.895,79.131,80.435,81.125,82.189,82.906,83.966,85.94,87.914,88.974,89.691,90.755,91.445,92.75,94.986 +667,1,85.9698,0.03407,76.919,79.156,80.461,81.152,82.216,82.934,83.994,85.97,87.945,89.006,89.723,90.788,91.479,92.784,95.021 +668,1,85.9995,0.03408,76.942,79.181,80.487,81.179,82.243,82.962,84.023,86,87.976,89.037,89.756,90.82,91.512,92.818,95.057 +669,1,86.0292,0.03409,76.966,79.207,80.513,81.205,82.271,82.99,84.051,86.029,88.007,89.069,89.788,90.853,91.545,92.852,95.092 +670,1,86.0589,0.0341,76.99,79.232,80.54,81.232,82.298,83.017,84.08,86.059,88.038,89.1,89.82,90.886,91.578,92.886,95.128 +671,1,86.0885,0.03411,77.014,79.257,80.566,81.258,82.325,83.045,84.108,86.089,88.069,89.132,89.852,90.919,91.611,92.92,95.163 +672,1,86.1181,0.03413,77.035,79.28,80.59,81.284,82.351,83.072,84.136,86.118,88.101,89.164,89.885,90.953,91.646,92.956,95.201 +673,1,86.1477,0.03414,77.059,79.306,80.616,81.31,82.379,83.099,84.164,86.148,88.131,89.196,89.917,90.985,91.679,92.99,95.236 +674,1,86.1773,0.03415,77.083,79.331,80.642,81.337,82.406,83.127,84.192,86.177,88.162,89.227,89.949,91.018,91.712,93.024,95.272 +675,1,86.2068,0.03416,77.107,79.356,80.668,81.363,82.433,83.155,84.221,86.207,88.193,89.259,89.981,91.051,91.745,93.057,95.307 +676,1,86.2363,0.03417,77.13,79.381,80.694,81.389,82.46,83.182,84.249,86.236,88.224,89.29,90.013,91.083,91.778,93.091,95.342 +677,1,86.2659,0.03418,77.154,79.407,80.72,81.416,82.487,83.21,84.277,86.266,88.255,89.322,90.045,91.116,91.812,93.125,95.378 +678,1,86.2954,0.03419,77.178,79.432,80.746,81.442,82.514,83.237,84.305,86.295,88.285,89.353,90.077,91.148,91.845,93.159,95.413 +679,1,86.3248,0.03421,77.199,79.455,80.77,81.467,82.54,83.264,84.333,86.325,88.317,89.386,90.109,91.182,91.879,93.195,95.451 +680,1,86.3543,0.03422,77.223,79.48,80.796,81.494,82.567,83.292,84.361,86.354,88.347,89.417,90.141,91.215,91.912,93.229,95.486 +681,1,86.3837,0.03423,77.246,79.505,80.822,81.52,82.594,83.319,84.389,86.384,88.378,89.448,90.173,91.247,91.945,93.263,95.521 +682,1,86.4131,0.03424,77.27,79.53,80.848,81.546,82.621,83.347,84.417,86.413,88.409,89.48,90.205,91.28,91.978,93.296,95.556 +683,1,86.4425,0.03425,77.293,79.555,80.874,81.573,82.648,83.374,84.446,86.443,88.439,89.511,90.237,91.312,92.011,93.33,95.592 +684,1,86.4719,0.03426,77.317,79.58,80.9,81.599,82.675,83.401,84.474,86.472,88.47,89.542,90.269,91.345,92.044,93.364,95.627 +685,1,86.5012,0.03427,77.341,79.605,80.926,81.625,82.702,83.429,84.502,86.501,88.501,89.574,90.3,91.377,92.077,93.397,95.662 +686,1,86.5306,0.03429,77.361,79.628,80.95,81.65,82.728,83.455,84.529,86.531,88.532,89.606,90.333,91.411,92.111,93.433,95.7 +687,1,86.5599,0.0343,77.385,79.653,80.976,81.676,82.755,83.483,84.557,86.56,88.562,89.637,90.365,91.443,92.144,93.467,95.735 +688,1,86.5892,0.03431,77.409,79.678,81.002,81.703,82.782,83.51,84.585,86.589,88.593,89.668,90.397,91.476,92.177,93.5,95.77 +689,1,86.6184,0.03432,77.432,79.703,81.027,81.729,82.809,83.537,84.613,86.618,88.623,89.699,90.428,91.508,92.21,93.534,95.805 +690,1,86.6477,0.03433,77.455,79.728,81.053,81.755,82.836,83.565,84.641,86.648,88.654,89.731,90.46,91.541,92.242,93.568,95.84 +691,1,86.6769,0.03434,77.479,79.753,81.079,81.781,82.862,83.592,84.669,86.677,88.685,89.762,90.491,91.573,92.275,93.601,95.875 +692,1,86.7061,0.03435,77.502,79.777,81.104,81.807,82.889,83.619,84.697,86.706,88.715,89.793,90.523,91.605,92.308,93.635,95.91 +693,1,86.7353,0.03437,77.523,79.8,81.128,81.832,82.915,83.646,84.725,86.735,88.746,89.825,90.556,91.639,92.342,93.67,95.948 +694,1,86.7645,0.03438,77.546,79.825,81.154,81.858,82.942,83.673,84.753,86.765,88.776,89.856,90.587,91.671,92.375,93.704,95.983 +695,1,86.7937,0.03439,77.57,79.85,81.18,81.884,82.968,83.7,84.78,86.794,88.807,89.887,90.619,91.703,92.408,93.737,96.018 +696,1,86.8228,0.0344,77.593,79.875,81.205,81.91,82.995,83.727,84.808,86.823,88.837,89.918,90.65,91.735,92.44,93.771,96.052 +697,1,86.8519,0.03441,77.617,79.899,81.231,81.936,83.022,83.754,84.836,86.852,88.868,89.949,90.682,91.768,92.473,93.804,96.087 +698,1,86.881,0.03442,77.64,79.924,81.257,81.962,83.049,83.782,84.864,86.881,88.898,89.98,90.713,91.8,92.505,93.838,96.122 +699,1,86.9101,0.03443,77.663,79.949,81.282,81.988,83.075,83.809,84.892,86.91,88.928,90.011,90.745,91.832,92.538,93.871,96.157 +700,1,86.9392,0.03445,77.684,79.972,81.306,82.013,83.101,83.835,84.919,86.939,88.959,90.043,90.778,91.866,92.572,93.907,96.195 +701,1,86.9682,0.03446,77.707,79.996,81.332,82.039,83.127,83.862,84.947,86.968,88.99,90.074,90.809,91.898,92.605,93.94,96.229 +702,1,86.9972,0.03447,77.73,80.021,81.357,82.065,83.154,83.889,84.975,86.997,89.02,90.105,90.84,91.93,92.637,93.973,96.264 +703,1,87.0262,0.03448,77.753,80.046,81.383,82.091,83.181,83.916,85.002,87.026,89.05,90.136,90.872,91.962,92.67,94.007,96.299 +704,1,87.0552,0.03449,77.777,80.07,81.408,82.116,83.207,83.943,85.03,87.055,89.08,90.167,90.903,91.994,92.702,94.04,96.334 +705,1,87.0842,0.0345,77.8,80.095,81.434,82.142,83.234,83.97,85.058,87.084,89.111,90.198,90.934,92.026,92.735,94.073,96.369 +706,1,87.1131,0.03451,77.823,80.119,81.459,82.168,83.26,83.997,85.085,87.113,89.141,90.229,90.966,92.058,92.767,94.107,96.403 +707,1,87.142,0.03453,77.843,80.142,81.483,82.193,83.286,84.023,85.112,87.142,89.172,90.261,90.998,92.091,92.801,94.142,96.441 +708,1,87.1709,0.03454,77.867,80.167,81.508,82.218,83.312,84.05,85.14,87.171,89.202,90.291,91.03,92.123,92.834,94.175,96.475 +709,1,87.1998,0.03455,77.89,80.191,81.533,82.244,83.339,84.077,85.168,87.2,89.232,90.322,91.061,92.155,92.866,94.209,96.51 +710,1,87.2287,0.03456,77.913,80.216,81.559,82.27,83.365,84.104,85.195,87.229,89.262,90.353,91.092,92.187,92.899,94.242,96.545 +711,1,87.2575,0.03457,77.936,80.24,81.584,82.296,83.392,84.131,85.223,87.258,89.292,90.384,91.123,92.219,92.931,94.275,96.579 +712,1,87.2863,0.03458,77.959,80.265,81.609,82.322,83.418,84.158,85.25,87.286,89.322,90.415,91.154,92.251,92.963,94.308,96.614 +713,1,87.3151,0.03459,77.982,80.289,81.635,82.347,83.445,84.185,85.278,87.315,89.352,90.445,91.186,92.283,92.996,94.341,96.648 +714,1,87.3439,0.03461,78.002,80.311,81.658,82.372,83.47,84.211,85.305,87.344,89.383,90.477,91.218,92.316,93.029,94.376,96.686 +715,1,87.3727,0.03462,78.025,80.336,81.684,82.397,83.496,84.238,85.332,87.373,89.413,90.508,91.249,92.348,93.062,94.41,96.72 +716,1,87.4014,0.03463,78.048,80.36,81.709,82.423,83.523,84.264,85.36,87.401,89.443,90.538,91.28,92.38,93.094,94.443,96.755 +717,1,87.4302,0.03464,78.071,80.385,81.734,82.449,83.549,84.291,85.387,87.43,89.473,90.569,91.311,92.412,93.126,94.476,96.789 +718,1,87.4589,0.03465,78.094,80.409,81.759,82.474,83.575,84.318,85.415,87.459,89.503,90.6,91.343,92.444,93.159,94.509,96.824 +719,1,87.4876,0.03466,78.117,80.433,81.784,82.5,83.602,84.345,85.442,87.488,89.533,90.63,91.374,92.475,93.191,94.542,96.858 +720,1,87.5162,0.03467,78.14,80.458,81.81,82.525,83.628,84.371,85.47,87.516,89.563,90.661,91.405,92.507,93.223,94.575,96.893 +721,1,87.5449,0.03469,78.16,80.48,81.833,82.55,83.653,84.397,85.497,87.545,89.593,90.692,91.437,92.54,93.257,94.61,96.93 +722,1,87.5735,0.0347,78.183,80.504,81.858,82.575,83.679,84.424,85.524,87.574,89.623,90.723,91.468,92.572,93.289,94.643,96.964 +723,1,87.6021,0.03471,78.206,80.528,81.883,82.601,83.705,84.451,85.551,87.602,89.653,90.754,91.499,92.604,93.321,94.676,96.998 +724,1,87.6307,0.03472,78.229,80.553,81.908,82.626,83.732,84.477,85.579,87.631,89.683,90.784,91.53,92.635,93.353,94.709,97.033 +725,1,87.6593,0.03473,78.251,80.577,81.933,82.652,83.758,84.504,85.606,87.659,89.713,90.815,91.561,92.667,93.385,94.742,97.067 +726,1,87.6878,0.03474,78.274,80.601,81.958,82.677,83.784,84.531,85.633,87.688,89.742,90.845,91.592,92.698,93.417,94.774,97.101 +727,1,87.7164,0.03475,78.297,80.625,81.983,82.703,83.81,84.557,85.66,87.716,89.772,90.876,91.623,92.73,93.449,94.807,97.136 +728,1,87.7449,0.03477,78.317,80.647,82.007,82.727,83.835,84.583,85.687,87.745,89.803,90.907,91.655,92.763,93.483,94.842,97.173 +729,1,87.7734,0.03478,78.34,80.672,82.032,82.752,83.861,84.609,85.714,87.773,89.832,90.937,91.686,92.795,93.515,94.875,97.207 +730,1,87.8018,0.03479,78.362,80.696,82.057,82.777,83.887,84.636,85.741,87.802,89.862,90.968,91.716,92.826,93.547,94.908,97.241 +731,1,87.1303,0.03508,77.685,80.02,81.382,82.103,83.213,83.962,85.069,87.13,89.192,90.298,91.047,92.158,92.879,94.241,96.576 +732,1,87.1587,0.03509,77.708,80.044,81.406,82.128,83.239,83.989,85.096,87.159,89.222,90.329,91.078,92.189,92.911,94.274,96.61 +733,1,87.1871,0.0351,77.73,80.068,81.431,82.153,83.265,84.015,85.123,87.187,89.251,90.359,91.109,92.221,92.943,94.306,96.644 +734,1,87.2155,0.03511,77.753,80.092,81.456,82.179,83.291,84.042,85.15,87.216,89.281,90.389,91.14,92.252,92.975,94.339,96.678 +735,1,87.2439,0.03513,77.773,80.114,81.479,82.203,83.316,84.067,85.177,87.244,89.311,90.42,91.172,92.285,93.008,94.374,96.715 +736,1,87.2722,0.03514,77.795,80.138,81.504,82.228,83.342,84.094,85.204,87.272,89.341,90.451,91.202,92.317,93.04,94.407,96.749 +737,1,87.3006,0.03515,77.818,80.162,81.529,82.253,83.368,84.12,85.231,87.301,89.37,90.481,91.233,92.348,93.072,94.439,96.783 +738,1,87.3289,0.03516,77.84,80.186,81.554,82.278,83.394,84.147,85.258,87.329,89.4,90.511,91.264,92.379,93.104,94.472,96.817 +739,1,87.3571,0.03517,77.863,80.21,81.579,82.304,83.42,84.173,85.285,87.357,89.429,90.541,91.294,92.411,93.136,94.504,96.851 +740,1,87.3854,0.03518,77.885,80.234,81.603,82.329,83.446,84.199,85.312,87.385,89.459,90.572,91.325,92.442,93.167,94.537,96.885 +741,1,87.4136,0.03519,77.908,80.258,81.628,82.354,83.471,84.225,85.339,87.414,89.488,90.602,91.356,92.473,93.199,94.57,96.919 +742,1,87.4419,0.03521,77.928,80.279,81.651,82.378,83.496,84.251,85.365,87.442,89.519,90.633,91.388,92.506,93.233,94.604,96.956 +743,1,87.4701,0.03522,77.95,80.303,81.676,82.403,83.522,84.277,85.392,87.47,89.548,90.663,91.418,92.537,93.264,94.637,96.99 +744,1,87.4982,0.03523,77.972,80.327,81.701,82.428,83.548,84.303,85.419,87.498,89.577,90.693,91.449,92.569,93.296,94.669,97.024 +745,1,87.5264,0.03524,77.995,80.351,81.725,82.453,83.574,84.33,85.446,87.526,89.607,90.723,91.479,92.6,93.328,94.702,97.058 +746,1,87.5545,0.03525,78.017,80.375,81.75,82.478,83.599,84.356,85.473,87.555,89.636,90.753,91.51,92.631,93.359,94.734,97.092 +747,1,87.5826,0.03526,78.039,80.398,81.774,82.503,83.625,84.382,85.5,87.583,89.666,90.783,91.54,92.662,93.391,94.767,97.126 +748,1,87.6107,0.03527,78.062,80.422,81.799,82.528,83.651,84.408,85.527,87.611,89.695,90.813,91.571,92.693,93.422,94.799,97.16 +749,1,87.6388,0.03528,78.084,80.446,81.824,82.553,83.676,84.434,85.553,87.639,89.724,90.843,91.601,92.725,93.454,94.832,97.193 +750,1,87.6668,0.0353,78.104,80.468,81.846,82.577,83.701,84.459,85.579,87.667,89.754,90.874,91.633,92.757,93.487,94.866,97.23 +751,1,87.6948,0.03531,78.126,80.491,81.871,82.602,83.726,84.485,85.606,87.695,89.783,90.904,91.663,92.788,93.519,94.898,97.264 +752,1,87.7228,0.03532,78.148,80.515,81.895,82.626,83.752,84.512,85.633,87.723,89.813,90.934,91.694,92.819,93.55,94.931,97.297 +753,1,87.7508,0.03533,78.17,80.539,81.92,82.651,83.778,84.538,85.66,87.751,89.842,90.964,91.724,92.85,93.582,94.963,97.331 +754,1,87.7788,0.03534,78.193,80.562,81.944,82.676,83.803,84.564,85.686,87.779,89.871,90.994,91.754,92.881,93.613,94.995,97.365 +755,1,87.8067,0.03535,78.215,80.586,81.969,82.701,83.829,84.59,85.713,87.807,89.9,91.024,91.785,92.912,93.645,95.028,97.399 +756,1,87.8346,0.03536,78.237,80.609,81.993,82.726,83.854,84.616,85.74,87.835,89.929,91.054,91.815,92.943,93.676,95.06,97.432 +757,1,87.8625,0.03538,78.256,80.631,82.016,82.749,83.879,84.641,85.766,87.863,89.959,91.084,91.846,92.976,93.709,95.094,97.469 +758,1,87.8903,0.03539,78.278,80.654,82.04,82.774,83.904,84.667,85.792,87.89,89.988,91.114,91.876,93.007,93.74,95.126,97.502 +759,1,87.9181,0.0354,78.3,80.678,82.065,82.799,83.93,84.692,85.819,87.918,90.017,91.144,91.907,93.037,93.772,95.158,97.536 +760,1,87.946,0.03541,78.322,80.701,82.089,82.824,83.955,84.718,85.846,87.946,90.046,91.174,91.937,93.068,93.803,95.191,97.57 +761,1,87.9737,0.03542,78.344,80.725,82.113,82.848,83.98,84.744,85.872,87.974,90.075,91.203,91.967,93.099,93.834,95.223,97.603 +762,1,88.0015,0.03543,78.366,80.748,82.137,82.873,84.006,84.77,85.899,88.002,90.104,91.233,91.997,93.13,93.866,95.255,97.637 +763,1,88.0292,0.03544,78.388,80.772,82.162,82.898,84.031,84.796,85.925,88.029,90.133,91.263,92.027,93.161,93.897,95.287,97.67 +764,1,88.057,0.03545,78.41,80.795,82.186,82.922,84.056,84.822,85.951,88.057,90.163,91.292,92.058,93.192,93.928,95.319,97.704 +765,1,88.0846,0.03547,78.43,80.816,82.208,82.945,84.081,84.846,85.977,88.085,90.192,91.323,92.089,93.224,93.961,95.353,97.74 +766,1,88.1123,0.03548,78.452,80.84,82.233,82.97,84.106,84.872,86.004,88.112,90.221,91.352,92.119,93.254,93.992,95.385,97.773 +767,1,88.14,0.03549,78.473,80.863,82.257,82.995,84.131,84.898,86.03,88.14,90.25,91.382,92.149,93.285,94.023,95.417,97.807 +768,1,88.1676,0.0355,78.495,80.886,82.281,83.019,84.156,84.924,86.056,88.168,90.279,91.412,92.179,93.316,94.054,95.449,97.84 +769,1,88.1952,0.03551,78.517,80.91,82.305,83.044,84.182,84.949,86.083,88.195,90.308,91.441,92.209,93.347,94.085,95.481,97.873 +770,1,88.2228,0.03552,78.539,80.933,82.329,83.068,84.207,84.975,86.109,88.223,90.336,91.471,92.239,93.377,94.117,95.513,97.907 +771,1,88.2503,0.03553,78.561,80.956,82.353,83.093,84.232,85.001,86.135,88.25,90.365,91.5,92.269,93.408,94.148,95.545,97.94 +772,1,88.2778,0.03555,78.58,80.977,82.375,83.116,84.256,85.025,86.161,88.278,90.395,91.53,92.3,93.44,94.18,95.579,97.976 +773,1,88.3053,0.03556,78.602,81,82.399,83.14,84.281,85.051,86.187,88.305,90.423,91.56,92.33,93.47,94.211,95.61,98.009 +774,1,88.3328,0.03557,78.623,81.023,82.423,83.165,84.306,85.076,86.214,88.333,90.452,91.589,92.359,93.501,94.242,95.642,98.042 +775,1,88.3603,0.03558,78.645,81.047,82.447,83.189,84.331,85.102,86.24,88.36,90.481,91.619,92.389,93.531,94.273,95.674,98.076 +776,1,88.3877,0.03559,78.667,81.07,82.471,83.213,84.356,85.127,86.266,88.388,90.509,91.648,92.419,93.562,94.304,95.706,98.109 +777,1,88.4151,0.0356,78.688,81.093,82.495,83.238,84.381,85.153,86.292,88.415,90.538,91.677,92.449,93.592,94.335,95.737,98.142 +778,1,88.4425,0.03561,78.71,81.116,82.519,83.262,84.406,85.178,86.318,88.443,90.567,91.707,92.479,93.623,94.366,95.769,98.175 +779,1,88.4699,0.03562,78.732,81.139,82.543,83.286,84.431,85.204,86.344,88.47,90.595,91.736,92.508,93.653,94.397,95.801,98.208 +780,1,88.4972,0.03564,78.75,81.16,82.565,83.309,84.455,85.228,86.37,88.497,90.625,91.766,92.539,93.685,94.429,95.835,98.244 +781,1,88.5245,0.03565,78.772,81.183,82.589,83.334,84.48,85.254,86.396,88.525,90.653,91.795,92.569,93.715,94.46,95.866,98.277 +782,1,88.5518,0.03566,78.794,81.206,82.613,83.358,84.505,85.279,86.422,88.552,90.682,91.825,92.599,93.746,94.491,95.898,98.31 +783,1,88.5791,0.03567,78.815,81.229,82.637,83.382,84.53,85.304,86.448,88.579,90.71,91.854,92.628,93.776,94.522,95.929,98.343 +784,1,88.6063,0.03568,78.837,81.252,82.66,83.406,84.555,85.33,86.474,88.606,90.739,91.883,92.658,93.806,94.552,95.961,98.376 +785,1,88.6335,0.03569,78.858,81.274,82.684,83.43,84.58,85.355,86.5,88.634,90.767,91.912,92.687,93.837,94.583,95.993,98.409 +786,1,88.6607,0.0357,78.88,81.297,82.708,83.454,84.604,85.38,86.526,88.661,90.796,91.941,92.717,93.867,94.614,96.024,98.442 +787,1,88.6879,0.03571,78.901,81.32,82.731,83.479,84.629,85.405,86.552,88.688,90.824,91.97,92.747,93.897,94.644,96.056,98.475 +788,1,88.715,0.03572,78.922,81.343,82.755,83.503,84.654,85.431,86.578,88.715,90.852,91.999,92.776,93.927,94.675,96.087,98.508 +789,1,88.7422,0.03574,78.941,81.364,82.777,83.525,84.678,85.455,86.603,88.742,90.881,92.029,92.807,93.959,94.707,96.121,98.543 +790,1,88.7693,0.03575,78.962,81.387,82.801,83.549,84.702,85.48,86.629,88.769,90.91,92.058,92.836,93.989,94.738,96.152,98.576 +791,1,88.7964,0.03576,78.984,81.409,82.824,83.573,84.727,85.505,86.655,88.796,90.938,92.087,92.866,94.019,94.769,96.183,98.609 +792,1,88.8234,0.03577,79.005,81.432,82.848,83.597,84.752,85.53,86.68,88.823,90.966,92.116,92.895,94.049,94.799,96.215,98.642 +793,1,88.8504,0.03578,79.026,81.455,82.871,83.621,84.776,85.556,86.706,88.85,90.995,92.145,92.925,94.08,94.83,96.246,98.674 +794,1,88.8775,0.03579,79.048,81.478,82.895,83.645,84.801,85.581,86.732,88.878,91.023,92.174,92.954,94.11,94.86,96.277,98.707 +795,1,88.9044,0.0358,79.069,81.5,82.918,83.669,84.826,85.606,86.758,88.904,91.051,92.203,92.983,94.14,94.891,96.309,98.74 +796,1,88.9314,0.03581,79.09,81.523,82.942,83.693,84.85,85.631,86.783,88.931,91.079,92.232,93.013,94.17,94.921,96.34,98.773 +797,1,88.9584,0.03582,79.111,81.546,82.965,83.717,84.875,85.656,86.809,88.958,91.108,92.261,93.042,94.2,94.952,96.371,98.805 +798,1,88.9853,0.03584,79.13,81.566,82.987,83.739,84.898,85.68,86.834,88.985,91.136,92.291,93.072,94.231,94.984,96.405,98.841 +799,1,89.0122,0.03585,79.151,81.589,83.01,83.763,84.923,85.705,86.86,89.012,91.165,92.32,93.102,94.261,95.014,96.436,98.873 +800,1,89.0391,0.03586,79.172,81.611,83.034,83.787,84.947,85.73,86.885,89.039,91.193,92.348,93.131,94.291,95.044,96.467,98.906 +801,1,89.0659,0.03587,79.193,81.634,83.057,83.811,84.972,85.755,86.911,89.066,91.221,92.377,93.16,94.321,95.075,96.498,98.939 +802,1,89.0927,0.03588,79.214,81.656,83.08,83.835,84.996,85.78,86.937,89.093,91.249,92.406,93.189,94.351,95.105,96.529,98.971 +803,1,89.1195,0.03589,79.235,81.679,83.104,83.858,85.02,85.804,86.962,89.12,91.277,92.435,93.219,94.381,95.135,96.56,99.004 +804,1,89.1463,0.0359,79.256,81.701,83.127,83.882,85.045,85.829,86.988,89.146,91.305,92.463,93.248,94.41,95.166,96.591,99.036 +805,1,89.1731,0.03591,79.278,81.724,83.15,83.906,85.069,85.854,87.013,89.173,91.333,92.492,93.277,94.44,95.196,96.623,99.069 +806,1,89.1998,0.03592,79.299,81.746,83.174,83.93,85.094,85.879,87.039,89.2,91.361,92.521,93.306,94.47,95.226,96.654,99.101 +807,1,89.2266,0.03593,79.32,81.769,83.197,83.953,85.118,85.904,87.064,89.227,91.389,92.549,93.335,94.5,95.256,96.685,99.134 +808,1,89.2533,0.03595,79.338,81.789,83.218,83.976,85.141,85.928,87.089,89.253,91.418,92.579,93.365,94.531,95.288,96.718,99.169 +809,1,89.2799,0.03596,79.359,81.811,83.242,83.999,85.165,85.952,87.114,89.28,91.445,92.607,93.394,94.561,95.318,96.749,99.201 +810,1,89.3066,0.03597,79.38,81.834,83.265,84.023,85.19,85.977,87.14,89.307,91.473,92.636,93.423,94.59,95.348,96.78,99.234 +811,1,89.3332,0.03598,79.401,81.856,83.288,84.046,85.214,86.002,87.165,89.333,91.501,92.665,93.452,94.62,95.378,96.811,99.266 +812,1,89.3598,0.03599,79.421,81.878,83.311,84.07,85.238,86.027,87.191,89.36,91.529,92.693,93.481,94.65,95.409,96.841,99.298 +813,1,89.3864,0.036,79.442,81.9,83.334,84.093,85.262,86.051,87.216,89.386,91.557,92.722,93.51,94.679,95.439,96.872,99.33 +814,1,89.413,0.03601,79.463,81.923,83.357,84.117,85.287,86.076,87.241,89.413,91.585,92.75,93.539,94.709,95.469,96.903,99.363 +815,1,89.4395,0.03602,79.484,81.945,83.38,84.14,85.311,86.101,87.267,89.44,91.612,92.778,93.568,94.739,95.499,96.934,99.395 +816,1,89.466,0.03603,79.505,81.967,83.403,84.164,85.335,86.125,87.292,89.466,91.64,92.807,93.597,94.768,95.529,96.965,99.427 +817,1,89.4925,0.03604,79.526,81.989,83.426,84.187,85.359,86.15,87.317,89.493,91.668,92.835,93.626,94.798,95.559,96.996,99.459 +818,1,89.519,0.03605,79.546,82.012,83.449,84.211,85.383,86.174,87.342,89.519,91.696,92.864,93.655,94.827,95.589,97.026,99.492 +819,1,89.5455,0.03607,79.564,82.032,83.471,84.233,85.406,86.198,87.367,89.546,91.724,92.893,93.685,94.858,95.62,97.059,99.527 +820,1,89.5719,0.03608,79.585,82.054,83.494,84.256,85.43,86.222,87.392,89.572,91.752,92.921,93.714,94.888,95.65,97.09,99.559 +821,1,89.5983,0.03609,79.606,82.076,83.517,84.279,85.454,86.247,87.417,89.598,91.779,92.95,93.742,94.917,95.68,97.121,99.591 +822,1,89.6247,0.0361,79.626,82.098,83.539,84.303,85.478,86.271,87.442,89.625,91.807,92.978,93.771,94.947,95.71,97.151,99.623 +823,1,89.651,0.03611,79.647,82.12,83.562,84.326,85.502,86.296,87.467,89.651,91.835,93.006,93.8,94.976,95.74,97.182,99.655 +824,1,89.6774,0.03612,79.668,82.142,83.585,84.349,85.526,86.32,87.493,89.677,91.862,93.035,93.829,95.005,95.77,97.213,99.687 +825,1,89.7037,0.03613,79.688,82.164,83.608,84.373,85.55,86.345,87.518,89.704,91.89,93.063,93.857,95.035,95.799,97.243,99.719 +826,1,89.73,0.03614,79.709,82.186,83.631,84.396,85.574,86.369,87.543,89.73,91.917,93.091,93.886,95.064,95.829,97.274,99.751 +827,1,89.7563,0.03615,79.729,82.208,83.654,84.419,85.598,86.393,87.568,89.756,91.945,93.119,93.915,95.093,95.859,97.305,99.783 +828,1,89.7825,0.03616,79.75,82.23,83.676,84.442,85.622,86.418,87.593,89.783,91.972,93.147,93.943,95.123,95.889,97.335,99.815 +829,1,89.8087,0.03617,79.77,82.252,83.699,84.466,85.646,86.442,87.618,89.809,92,93.175,93.972,95.152,95.918,97.366,99.847 +830,1,89.8349,0.03618,79.791,82.274,83.722,84.489,85.67,86.466,87.643,89.835,92.027,93.204,94,95.181,95.948,97.396,99.879 +831,1,89.8611,0.0362,79.809,82.294,83.743,84.51,85.692,86.49,87.667,89.861,92.055,93.233,94.03,95.212,95.979,97.429,99.914 +832,1,89.8873,0.03621,79.829,82.315,83.766,84.534,85.716,86.514,87.692,89.887,92.083,93.261,94.059,95.241,96.009,97.459,99.945 +833,1,89.9134,0.03622,79.85,82.337,83.788,84.557,85.74,86.538,87.717,89.913,92.11,93.289,94.087,95.27,96.039,97.49,99.977 +834,1,89.9395,0.03623,79.87,82.359,83.811,84.58,85.764,86.562,87.742,89.94,92.137,93.317,94.115,95.299,96.068,97.52,100.009 +835,1,89.9656,0.03624,79.89,82.381,83.834,84.603,85.787,86.586,87.767,89.966,92.165,93.345,94.144,95.328,96.098,97.55,100.041 +836,1,89.9917,0.03625,79.911,82.403,83.856,84.626,85.811,86.611,87.791,89.992,92.192,93.373,94.172,95.358,96.127,97.581,100.073 +837,1,90.0177,0.03626,79.931,82.424,83.879,84.649,85.835,86.635,87.816,90.018,92.219,93.401,94.201,95.387,96.157,97.611,100.104 +838,1,90.0437,0.03627,79.951,82.446,83.901,84.672,85.858,86.659,87.841,90.044,92.247,93.429,94.229,95.416,96.186,97.641,100.136 +839,1,90.0697,0.03628,79.972,82.468,83.924,84.695,85.882,86.683,87.866,90.07,92.274,93.456,94.257,95.445,96.216,97.672,100.168 +840,1,90.0957,0.03629,79.992,82.49,83.946,84.718,85.906,86.707,87.89,90.096,92.301,93.484,94.286,95.474,96.245,97.702,100.199 +841,1,90.1216,0.0363,80.012,82.511,83.969,84.741,85.929,86.731,87.915,90.122,92.328,93.512,94.314,95.503,96.274,97.732,100.231 +842,1,90.1476,0.03631,80.032,82.533,83.991,84.764,85.953,86.755,87.94,90.148,92.355,93.54,94.342,95.532,96.304,97.762,100.263 +843,1,90.1735,0.03632,80.053,82.554,84.014,84.786,85.976,86.779,87.964,90.174,92.383,93.568,94.371,95.561,96.333,97.793,100.294 +844,1,90.1994,0.03633,80.073,82.576,84.036,84.809,86,86.803,87.989,90.199,92.41,93.596,94.399,95.589,96.363,97.823,100.326 +845,1,90.2252,0.03634,80.093,82.598,84.058,84.832,86.023,86.827,88.014,90.225,92.437,93.623,94.427,95.618,96.392,97.853,100.357 +846,1,90.251,0.03636,80.11,82.617,84.079,84.853,86.046,86.85,88.038,90.251,92.464,93.652,94.456,95.649,96.423,97.885,100.392 +847,1,90.2769,0.03637,80.131,82.639,84.102,84.876,86.069,86.874,88.062,90.277,92.491,93.68,94.485,95.678,96.452,97.915,100.423 +848,1,90.3026,0.03638,80.151,82.66,84.124,84.899,86.092,86.898,88.087,90.303,92.518,93.707,94.513,95.706,96.481,97.945,100.455 +849,1,90.3284,0.03639,80.171,82.682,84.146,84.922,86.116,86.922,88.111,90.328,92.545,93.735,94.541,95.735,96.511,97.975,100.486 +850,1,90.3541,0.0364,80.191,82.703,84.168,84.944,86.139,86.945,88.136,90.354,92.572,93.763,94.569,95.764,96.54,98.005,100.518 +851,1,90.3799,0.03641,80.211,82.725,84.191,84.967,86.163,86.969,88.16,90.38,92.599,93.791,94.597,95.793,96.569,98.035,100.549 +852,1,90.4056,0.03642,80.231,82.746,84.213,84.99,86.186,86.993,88.185,90.406,92.626,93.818,94.625,95.821,96.598,98.065,100.58 +853,1,90.4312,0.03643,80.251,82.767,84.235,85.012,86.209,87.017,88.209,90.431,92.653,93.846,94.653,95.85,96.627,98.095,100.612 +854,1,90.4569,0.03644,80.271,82.789,84.257,85.035,86.233,87.041,88.234,90.457,92.68,93.873,94.681,95.879,96.656,98.125,100.643 +855,1,90.4825,0.03645,80.291,82.81,84.279,85.058,86.256,87.064,88.258,90.483,92.707,93.901,94.709,95.907,96.686,98.155,100.674 +856,1,90.5081,0.03646,80.311,82.831,84.302,85.08,86.279,87.088,88.282,90.508,92.734,93.928,94.737,95.936,96.715,98.185,100.706 +857,1,90.5337,0.03647,80.33,82.853,84.324,85.103,86.302,87.112,88.307,90.534,92.761,93.956,94.765,95.965,96.744,98.215,100.737 +858,1,90.5592,0.03648,80.35,82.874,84.346,85.125,86.325,87.135,88.331,90.559,92.787,93.983,94.793,95.993,96.773,98.245,100.768 +859,1,90.5848,0.03649,80.37,82.895,84.368,85.148,86.349,87.159,88.355,90.585,92.814,94.011,94.821,96.022,96.802,98.274,100.799 +860,1,90.6103,0.0365,80.39,82.916,84.39,85.17,86.372,87.183,88.38,90.61,92.841,94.038,94.849,96.05,96.831,98.304,100.831 +861,1,90.6358,0.03651,80.41,82.938,84.412,85.193,86.395,87.206,88.404,90.636,92.868,94.065,94.877,96.079,96.86,98.334,100.862 +862,1,90.6612,0.03652,80.43,82.959,84.434,85.215,86.418,87.23,88.428,90.661,92.894,94.093,94.904,96.107,96.888,98.364,100.893 +863,1,90.6867,0.03653,80.449,82.98,84.456,85.238,86.441,87.253,88.452,90.687,92.921,94.12,94.932,96.136,96.917,98.393,100.924 +864,1,90.7121,0.03654,80.469,83.001,84.478,85.26,86.464,87.277,88.476,90.712,92.948,94.147,94.96,96.164,96.946,98.423,100.955 +865,1,90.7375,0.03655,80.489,83.022,84.5,85.282,86.487,87.3,88.501,90.738,92.974,94.175,94.988,96.193,96.975,98.453,100.986 +866,1,90.7628,0.03656,80.509,83.043,84.522,85.305,86.51,87.324,88.525,90.763,93.001,94.202,95.015,96.221,97.004,98.482,101.017 +867,1,90.7882,0.03657,80.528,83.064,84.544,85.327,86.533,87.347,88.549,90.788,93.028,94.229,95.043,96.249,97.033,98.512,101.048 +868,1,90.8135,0.03659,80.545,83.083,84.564,85.348,86.555,87.37,88.572,90.814,93.055,94.257,95.072,96.279,97.063,98.544,101.082 +869,1,90.8388,0.0366,80.565,83.104,84.586,85.37,86.578,87.393,88.596,90.839,93.081,94.285,95.1,96.307,97.092,98.573,101.113 +870,1,90.8641,0.03661,80.584,83.125,84.608,85.392,86.601,87.416,88.62,90.864,93.108,94.312,95.127,96.336,97.121,98.603,101.144 +871,1,90.8893,0.03662,80.604,83.146,84.629,85.415,86.624,87.44,88.644,90.889,93.134,94.339,95.155,96.364,97.149,98.632,101.175 +872,1,90.9146,0.03663,80.624,83.167,84.651,85.437,86.647,87.463,88.668,90.915,93.161,94.366,95.182,96.392,97.178,98.662,101.206 +873,1,90.9398,0.03664,80.643,83.188,84.673,85.459,86.67,87.486,88.692,90.94,93.187,94.393,95.21,96.421,97.207,98.691,101.237 +874,1,90.965,0.03665,80.663,83.209,84.695,85.481,86.692,87.51,88.716,90.965,93.214,94.42,95.238,96.449,97.235,98.721,101.267 +875,1,90.9901,0.03666,80.682,83.23,84.716,85.503,86.715,87.533,88.74,90.99,93.24,94.447,95.265,96.477,97.264,98.75,101.298 +876,1,91.0153,0.03667,80.702,83.251,84.738,85.526,86.738,87.556,88.764,91.015,93.266,94.474,95.293,96.505,97.293,98.78,101.329 +877,1,91.0404,0.03668,80.721,83.272,84.76,85.548,86.761,87.579,88.788,91.04,93.293,94.501,95.32,96.533,97.321,98.809,101.36 +878,1,91.0655,0.03669,80.74,83.293,84.781,85.57,86.784,87.603,88.812,91.066,93.319,94.528,95.347,96.561,97.35,98.838,101.391 +879,1,91.0905,0.0367,80.76,83.313,84.803,85.592,86.806,87.626,88.836,91.091,93.345,94.555,95.375,96.589,97.378,98.868,101.421 +880,1,91.1156,0.03671,80.779,83.334,84.825,85.614,86.829,87.649,88.86,91.116,93.372,94.582,95.402,96.617,97.407,98.897,101.452 +881,1,91.1406,0.03672,80.799,83.355,84.846,85.636,86.852,87.672,88.883,91.141,93.398,94.609,95.43,96.645,97.435,98.926,101.483 +882,1,91.1656,0.03673,80.818,83.376,84.868,85.658,86.874,87.695,88.907,91.166,93.424,94.636,95.457,96.673,97.463,98.955,101.513 +883,1,91.1906,0.03674,80.837,83.397,84.889,85.68,86.897,87.718,88.931,91.191,93.45,94.663,95.484,96.701,97.492,98.985,101.544 +884,1,91.2155,0.03675,80.857,83.417,84.911,85.702,86.92,87.741,88.954,91.216,93.477,94.69,95.511,96.729,97.52,99.014,101.574 +885,1,91.2405,0.03676,80.876,83.438,84.932,85.724,86.942,87.764,88.978,91.241,93.503,94.717,95.539,96.757,97.549,99.043,101.605 +886,1,91.2654,0.03677,80.895,83.459,84.954,85.746,86.965,87.787,89.002,91.265,93.529,94.743,95.566,96.785,97.577,99.072,101.636 +887,1,91.2903,0.03678,80.914,83.479,84.975,85.767,86.987,87.81,89.026,91.29,93.555,94.77,95.593,96.813,97.605,99.101,101.666 +888,1,91.3151,0.03679,80.934,83.5,84.997,85.789,87.01,87.833,89.049,91.315,93.581,94.797,95.62,96.841,97.634,99.13,101.697 +889,1,91.34,0.0368,80.953,83.52,85.018,85.811,87.032,87.856,89.073,91.34,93.607,94.824,95.648,96.869,97.662,99.16,101.727 +890,1,91.3648,0.03681,80.972,83.541,85.039,85.833,87.055,87.879,89.096,91.365,93.633,94.85,95.675,96.897,97.69,99.189,101.758 +891,1,91.3896,0.03682,80.991,83.562,85.061,85.855,87.077,87.902,89.12,91.39,93.659,94.877,95.702,96.924,97.718,99.218,101.788 +892,1,91.4144,0.03683,81.01,83.582,85.082,85.877,87.1,87.925,89.144,91.414,93.685,94.904,95.729,96.952,97.747,99.247,101.819 +893,1,91.4391,0.03684,81.029,83.603,85.103,85.898,87.122,87.948,89.167,91.439,93.711,94.93,95.756,96.98,97.775,99.276,101.849 +894,1,91.4639,0.03685,81.048,83.623,85.125,85.92,87.145,87.971,89.191,91.464,93.737,94.957,95.783,97.008,97.803,99.305,101.879 +895,1,91.4886,0.03686,81.068,83.644,85.146,85.942,87.167,87.993,89.214,91.489,93.763,94.984,95.81,97.035,97.831,99.334,101.91 +896,1,91.5133,0.03687,81.087,83.664,85.167,85.963,87.189,88.016,89.238,91.513,93.789,95.01,95.837,97.063,97.859,99.363,101.94 +897,1,91.5379,0.03688,81.106,83.684,85.188,85.985,87.211,88.039,89.261,91.538,93.815,95.037,95.864,97.091,97.887,99.391,101.97 +898,1,91.5626,0.03689,81.125,83.705,85.21,86.007,87.234,88.062,89.284,91.563,93.841,95.063,95.891,97.118,97.915,99.42,102.001 +899,1,91.5872,0.0369,81.144,83.725,85.231,86.028,87.256,88.085,89.308,91.587,93.867,95.09,95.918,97.146,97.943,99.449,102.031 +900,1,91.6118,0.03691,81.163,83.746,85.252,86.05,87.278,88.107,89.331,91.612,93.893,95.116,95.945,97.174,97.971,99.478,102.061 +901,1,91.6364,0.03692,81.181,83.766,85.273,86.072,87.301,88.13,89.354,91.636,93.918,95.143,95.972,97.201,98,99.507,102.091 +902,1,91.6609,0.03693,81.2,83.786,85.294,86.093,87.323,88.153,89.378,91.661,93.944,95.169,95.999,97.229,98.027,99.536,102.121 +903,1,91.6855,0.03694,81.219,83.806,85.316,86.115,87.345,88.175,89.401,91.686,93.97,95.196,96.026,97.256,98.055,99.565,102.152 +904,1,91.71,0.03695,81.238,83.827,85.337,86.136,87.367,88.198,89.424,91.71,93.996,95.222,96.053,97.284,98.083,99.593,102.182 +905,1,91.7345,0.03696,81.257,83.847,85.358,86.158,87.389,88.22,89.448,91.735,94.021,95.249,96.08,97.311,98.111,99.622,102.212 +906,1,91.759,0.03697,81.276,83.867,85.379,86.179,87.412,88.243,89.471,91.759,94.047,95.275,96.106,97.339,98.139,99.651,102.242 +907,1,91.7834,0.03698,81.295,83.887,85.4,86.201,87.434,88.266,89.494,91.783,94.073,95.301,96.133,97.366,98.167,99.679,102.272 +908,1,91.8078,0.03699,81.313,83.908,85.421,86.222,87.456,88.288,89.517,91.808,94.098,95.327,96.16,97.394,98.195,99.708,102.302 +909,1,91.8323,0.037,81.332,83.928,85.442,86.243,87.478,88.311,89.541,91.832,94.124,95.354,96.187,97.421,98.223,99.737,102.332 +910,1,91.8566,0.03701,81.351,83.948,85.463,86.265,87.5,88.333,89.564,91.857,94.15,95.38,96.213,97.448,98.251,99.765,102.362 +911,1,91.881,0.03702,81.37,83.968,85.484,86.286,87.522,88.356,89.587,91.881,94.175,95.406,96.24,97.476,98.278,99.794,102.392 +912,1,91.9053,0.03703,81.388,83.988,85.504,86.307,87.544,88.378,89.61,91.905,94.201,95.433,96.267,97.503,98.306,99.822,102.422 +913,1,91.9297,0.03704,81.407,84.008,85.525,86.329,87.566,88.401,89.633,91.93,94.226,95.459,96.293,97.531,98.334,99.851,102.452 +914,1,91.954,0.03705,81.426,84.028,85.546,86.35,87.588,88.423,89.656,91.954,94.252,95.485,96.32,97.558,98.362,99.88,102.482 +915,1,91.9783,0.03706,81.445,84.048,85.567,86.371,87.61,88.445,89.679,91.978,94.277,95.511,96.347,97.585,98.389,99.908,102.512 +916,1,92.0025,0.03707,81.463,84.068,85.588,86.393,87.632,88.468,89.702,92.003,94.303,95.537,96.373,97.612,98.417,99.937,102.542 +917,1,92.0268,0.03708,81.482,84.088,85.609,86.414,87.654,88.49,89.725,92.027,94.328,95.563,96.4,97.64,98.445,99.965,102.572 +918,1,92.051,0.03709,81.5,84.108,85.63,86.435,87.676,88.512,89.748,92.051,94.354,95.59,96.426,97.667,98.472,99.994,102.602 +919,1,92.0752,0.0371,81.519,84.128,85.65,86.456,87.697,88.535,89.771,92.075,94.379,95.616,96.453,97.694,98.5,100.022,102.631 +920,1,92.0993,0.03711,81.537,84.148,85.671,86.478,87.719,88.557,89.794,92.099,94.405,95.642,96.479,97.721,98.527,100.05,102.661 +921,1,92.1235,0.03711,81.559,84.17,85.694,86.5,87.742,88.58,89.818,92.124,94.429,95.667,96.505,97.747,98.553,100.077,102.688 +922,1,92.1476,0.03712,81.577,84.19,85.714,86.521,87.764,88.602,89.84,92.148,94.455,95.693,96.531,97.774,98.581,100.105,102.718 +923,1,92.1717,0.03713,81.596,84.21,85.735,86.542,87.786,88.625,89.863,92.172,94.48,95.719,96.558,97.801,98.608,100.133,102.748 +924,1,92.1958,0.03714,81.614,84.23,85.756,86.564,87.808,88.647,89.886,92.196,94.505,95.745,96.584,97.828,98.636,100.162,102.777 +925,1,92.2199,0.03715,81.633,84.25,85.776,86.585,87.829,88.669,89.909,92.22,94.531,95.771,96.61,97.855,98.663,100.19,102.807 +926,1,92.244,0.03716,81.651,84.27,85.797,86.606,87.851,88.691,89.932,92.244,94.556,95.797,96.637,97.882,98.691,100.218,102.837 +927,1,92.268,0.03717,81.67,84.29,85.818,86.627,87.873,88.713,89.955,92.268,94.581,95.823,96.663,97.909,98.718,100.246,102.866 +928,1,92.292,0.03718,81.688,84.309,85.838,86.648,87.894,88.736,89.978,92.292,94.606,95.848,96.69,97.936,98.746,100.275,102.896 +929,1,92.316,0.03719,81.707,84.329,85.859,86.669,87.916,88.758,90,92.316,94.632,95.874,96.716,97.963,98.773,100.303,102.925 +930,1,92.34,0.0372,81.725,84.349,85.879,86.69,87.938,88.78,90.023,92.34,94.657,95.9,96.742,97.99,98.801,100.331,102.955 +931,1,92.3639,0.03721,81.743,84.369,85.9,86.711,87.959,88.802,90.046,92.364,94.682,95.926,96.768,98.017,98.828,100.359,102.985 +932,1,92.3879,0.03722,81.762,84.388,85.92,86.732,87.981,88.824,90.069,92.388,94.707,95.952,96.795,98.044,98.855,100.387,103.014 +933,1,92.4118,0.03723,81.78,84.408,85.941,86.753,88.003,88.846,90.091,92.412,94.732,95.978,96.821,98.071,98.883,100.416,103.044 +934,1,92.4357,0.03724,81.798,84.428,85.961,86.774,88.024,88.868,90.114,92.436,94.757,96.003,96.847,98.098,98.91,100.444,103.073 +935,1,92.4595,0.03725,81.816,84.447,85.982,86.794,88.046,88.89,90.136,92.46,94.783,96.029,96.873,98.125,98.937,100.472,103.103 +936,1,92.4834,0.03726,81.835,84.467,86.002,86.815,88.067,88.912,90.159,92.483,94.808,96.055,96.9,98.151,98.964,100.5,103.132 +937,1,92.5072,0.03727,81.853,84.487,86.023,86.836,88.089,88.934,90.182,92.507,94.833,96.081,96.926,98.178,98.992,100.528,103.162 +938,1,92.531,0.03728,81.871,84.506,86.043,86.857,88.11,88.956,90.204,92.531,94.858,96.106,96.952,98.205,99.019,100.556,103.191 +939,1,92.5548,0.03729,81.889,84.526,86.063,86.878,88.132,88.978,90.227,92.555,94.883,96.132,96.978,98.232,99.046,100.584,103.22 +940,1,92.5786,0.0373,81.907,84.545,86.084,86.899,88.153,89,90.249,92.579,94.908,96.158,97.004,98.259,99.073,100.612,103.25 +941,1,92.6023,0.0373,81.928,84.567,86.106,86.921,88.176,89.022,90.273,92.602,94.932,96.182,97.029,98.284,99.099,100.638,103.276 +942,1,92.6261,0.03731,81.947,84.587,86.126,86.942,88.197,89.044,90.295,92.626,94.957,96.208,97.055,98.311,99.126,100.666,103.306 +943,1,92.6498,0.03732,81.965,84.606,86.147,86.962,88.219,89.066,90.318,92.65,94.982,96.233,97.081,98.337,99.153,100.694,103.335 +944,1,92.6735,0.03733,81.983,84.625,86.167,86.983,88.24,89.088,90.34,92.674,95.007,96.259,97.107,98.364,99.18,100.722,103.364 +945,1,92.6971,0.03734,82.001,84.645,86.187,87.004,88.261,89.11,90.362,92.697,95.032,96.285,97.133,98.39,99.207,100.749,103.393 +946,1,92.7208,0.03735,82.019,84.664,86.207,87.024,88.283,89.132,90.385,92.721,95.057,96.31,97.159,98.417,99.234,100.777,103.423 +947,1,92.7444,0.03736,82.037,84.684,86.228,87.045,88.304,89.153,90.407,92.744,95.081,96.336,97.185,98.444,99.261,100.805,103.452 +948,1,92.768,0.03737,82.055,84.703,86.248,87.066,88.325,89.175,90.43,92.768,95.106,96.361,97.211,98.47,99.288,100.833,103.481 +949,1,92.7916,0.03738,82.073,84.723,86.268,87.086,88.346,89.197,90.452,92.792,95.131,96.387,97.237,98.497,99.315,100.861,103.51 +950,1,92.8152,0.03739,82.091,84.742,86.288,87.107,88.368,89.218,90.474,92.815,95.156,96.412,97.263,98.523,99.342,100.888,103.539 +951,1,92.8388,0.0374,82.109,84.761,86.308,87.128,88.389,89.24,90.497,92.839,95.181,96.437,97.289,98.55,99.369,100.916,103.569 +952,1,92.8623,0.03741,82.127,84.781,86.328,87.148,88.41,89.262,90.519,92.862,95.205,96.463,97.314,98.576,99.396,100.944,103.598 +953,1,92.8858,0.03742,82.145,84.8,86.349,87.169,88.431,89.283,90.541,92.886,95.23,96.488,97.34,98.603,99.423,100.972,103.627 +954,1,92.9093,0.03743,82.163,84.819,86.369,87.189,88.453,89.305,90.564,92.909,95.255,96.514,97.366,98.629,99.45,100.999,103.656 +955,1,92.9328,0.03743,82.184,84.841,86.391,87.211,88.475,89.328,90.587,92.933,95.279,96.538,97.391,98.654,99.475,101.025,103.682 +956,1,92.9562,0.03744,82.201,84.86,86.411,87.232,88.496,89.349,90.609,92.956,95.304,96.563,97.416,98.681,99.502,101.053,103.711 +957,1,92.9797,0.03745,82.219,84.879,86.431,87.252,88.517,89.371,90.631,92.98,95.328,96.589,97.442,98.707,99.529,101.08,103.74 +958,1,93.0031,0.03746,82.237,84.898,86.451,87.273,88.538,89.392,90.653,93.003,95.353,96.614,97.468,98.734,99.556,101.108,103.769 +959,1,93.0265,0.03747,82.255,84.918,86.471,87.293,88.559,89.414,90.675,93.027,95.378,96.639,97.494,98.76,99.582,101.135,103.798 +960,1,93.0499,0.03748,82.273,84.937,86.491,87.313,88.58,89.435,90.698,93.05,95.402,96.664,97.519,98.786,99.609,101.163,103.827 +961,1,93.0732,0.03749,82.29,84.956,86.511,87.334,88.601,89.457,90.72,93.073,95.427,96.69,97.545,98.813,99.636,101.191,103.856 +962,1,93.0966,0.0375,82.308,84.975,86.531,87.354,88.623,89.478,90.742,93.097,95.451,96.715,97.571,98.839,99.663,101.218,103.885 +963,1,93.1199,0.03751,82.326,84.994,86.55,87.375,88.644,89.5,90.764,93.12,95.476,96.74,97.596,98.865,99.689,101.246,103.914 +964,1,93.1432,0.03752,82.344,85.013,86.57,87.395,88.665,89.521,90.786,93.143,95.5,96.765,97.622,98.892,99.716,101.273,103.943 +965,1,93.1665,0.03753,82.361,85.032,86.59,87.415,88.686,89.543,90.808,93.167,95.525,96.79,97.647,98.918,99.743,101.301,103.972 +966,1,93.1898,0.03753,82.382,85.054,86.612,87.437,88.708,89.565,90.831,93.19,95.549,96.815,97.672,98.943,99.768,101.326,103.998 +967,1,93.213,0.03754,82.4,85.073,86.632,87.457,88.729,89.586,90.853,93.213,95.573,96.84,97.697,98.969,99.794,101.353,104.026 +968,1,93.2363,0.03755,82.417,85.092,86.652,87.478,88.75,89.608,90.875,93.236,95.598,96.865,97.723,98.995,99.821,101.381,104.055 +969,1,93.2595,0.03756,82.435,85.111,86.671,87.498,88.77,89.629,90.897,93.26,95.622,96.89,97.749,99.021,99.848,101.408,104.084 +970,1,93.2827,0.03757,82.453,85.13,86.691,87.518,88.791,89.65,90.919,93.283,95.647,96.915,97.774,99.047,99.874,101.436,104.113 +971,1,93.3059,0.03758,82.47,85.149,86.711,87.538,88.812,89.672,90.941,93.306,95.671,96.94,97.8,99.073,99.901,101.463,104.142 +972,1,93.329,0.03759,82.488,85.168,86.731,87.558,88.833,89.693,90.963,93.329,95.695,96.965,97.825,99.1,99.927,101.49,104.17 +973,1,93.3522,0.0376,82.505,85.187,86.751,87.579,88.854,89.714,90.985,93.352,95.72,96.99,97.851,99.126,99.954,101.518,104.199 +974,1,93.3753,0.03761,82.523,85.206,86.77,87.599,88.875,89.736,91.007,93.375,95.744,97.015,97.876,99.152,99.98,101.545,104.228 +975,1,93.3984,0.03762,82.54,85.224,86.79,87.619,88.895,89.757,91.028,93.398,95.768,97.04,97.901,99.178,100.007,101.572,104.256 +976,1,93.4215,0.03762,82.561,85.246,86.811,87.641,88.917,89.779,91.051,93.422,95.792,97.064,97.926,99.202,100.032,101.597,104.282 +977,1,93.4446,0.03763,82.578,85.264,86.831,87.661,88.938,89.8,91.073,93.445,95.816,97.089,97.951,99.228,100.058,101.625,104.311 +978,1,93.4676,0.03764,82.596,85.283,86.851,87.681,88.959,89.821,91.095,93.468,95.841,97.114,97.976,99.254,100.084,101.652,104.339 +979,1,93.4906,0.03765,82.613,85.302,86.87,87.701,88.98,89.842,91.116,93.491,95.865,97.139,98.002,99.28,100.111,101.679,104.368 +980,1,93.5137,0.03766,82.631,85.321,86.89,87.721,89,89.864,91.138,93.514,95.889,97.164,98.027,99.306,100.137,101.706,104.397 +981,1,93.5367,0.03767,82.648,85.34,86.91,87.741,89.021,89.885,91.16,93.537,95.913,97.189,98.052,99.332,100.164,101.734,104.425 +982,1,93.5596,0.03768,82.666,85.358,86.929,87.761,89.042,89.906,91.182,93.56,95.937,97.213,98.077,99.358,100.19,101.761,104.454 +983,1,93.5826,0.03769,82.683,85.377,86.949,87.781,89.062,89.927,91.204,93.583,95.962,97.238,98.103,99.384,100.216,101.788,104.482 +984,1,93.6056,0.03769,82.703,85.398,86.97,87.803,89.084,89.949,91.226,93.606,95.985,97.262,98.127,99.409,100.241,101.813,104.508 +985,1,93.6285,0.0377,82.721,85.417,86.99,87.823,89.105,89.97,91.248,93.629,96.009,97.287,98.152,99.434,100.267,101.84,104.536 +986,1,93.6514,0.03771,82.738,85.436,87.009,87.842,89.125,89.991,91.269,93.651,96.033,97.312,98.177,99.46,100.294,101.867,104.565 +987,1,93.6743,0.03772,82.755,85.454,87.029,87.862,89.146,90.012,91.291,93.674,96.058,97.336,98.203,99.486,100.32,101.894,104.593 +988,1,93.6972,0.03773,82.773,85.473,87.048,87.882,89.167,90.033,91.313,93.697,96.082,97.361,98.228,99.512,100.346,101.921,104.622 +989,1,93.7201,0.03774,82.79,85.492,87.068,87.902,89.187,90.054,91.334,93.72,96.106,97.386,98.253,99.538,100.372,101.948,104.65 +990,1,93.7429,0.03775,82.807,85.51,87.087,87.922,89.208,90.075,91.356,93.743,96.13,97.411,98.278,99.564,100.399,101.975,104.679 +991,1,93.7658,0.03776,82.825,85.529,87.107,87.942,89.228,90.096,91.378,93.766,96.154,97.435,98.303,99.59,100.425,102.002,104.707 +992,1,93.7886,0.03776,82.845,85.55,87.128,87.963,89.25,90.118,91.4,93.789,96.177,97.459,98.327,99.614,100.449,102.027,104.733 +993,1,93.8114,0.03777,82.862,85.569,87.147,87.983,89.271,90.139,91.422,93.811,96.201,97.484,98.352,99.64,100.476,102.054,104.761 +994,1,93.8342,0.03778,82.879,85.587,87.167,88.003,89.291,90.16,91.443,93.834,96.225,97.508,98.377,99.665,100.502,102.081,104.789 +995,1,93.8569,0.03779,82.896,85.606,87.186,88.023,89.311,90.181,91.465,93.857,96.249,97.533,98.402,99.691,100.528,102.108,104.817 +996,1,93.8797,0.0378,82.914,85.624,87.205,88.043,89.332,90.202,91.486,93.88,96.273,97.558,98.427,99.717,100.554,102.135,104.846 +997,1,93.9024,0.03781,82.931,85.643,87.225,88.062,89.352,90.223,91.508,93.902,96.297,97.582,98.452,99.742,100.58,102.162,104.874 +998,1,93.9252,0.03782,82.948,85.661,87.244,88.082,89.373,90.244,91.529,93.925,96.321,97.607,98.478,99.768,100.606,102.189,104.902 +999,1,93.9479,0.03782,82.968,85.682,87.265,88.104,89.394,90.265,91.551,93.948,96.344,97.63,98.501,99.792,100.631,102.214,104.928 +1000,1,93.9706,0.03783,82.985,85.701,87.285,88.123,89.415,90.286,91.573,93.971,96.368,97.655,98.526,99.818,100.657,102.241,104.956 +1001,1,93.9932,0.03784,83.002,85.719,87.304,88.143,89.435,90.307,91.594,93.993,96.392,97.679,98.551,99.843,100.683,102.267,104.984 +1002,1,94.0159,0.03785,83.019,85.738,87.323,88.163,89.455,90.328,91.616,94.016,96.416,97.704,98.576,99.869,100.709,102.294,105.012 +1003,1,94.0385,0.03786,83.036,85.756,87.342,88.182,89.476,90.348,91.637,94.039,96.44,97.729,98.601,99.895,100.735,102.321,105.041 +1004,1,94.0612,0.03787,83.053,85.775,87.362,88.202,89.496,90.369,91.659,94.061,96.464,97.753,98.626,99.92,100.761,102.348,105.069 +1005,1,94.0838,0.03788,83.071,85.793,87.381,88.222,89.516,90.39,91.68,94.084,96.488,97.778,98.651,99.946,100.787,102.375,105.097 +1006,1,94.1064,0.03788,83.09,85.814,87.402,88.243,89.538,90.412,91.702,94.106,96.511,97.801,98.675,99.97,100.811,102.399,105.122 +1007,1,94.129,0.03789,83.108,85.832,87.421,88.263,89.558,90.433,91.723,94.129,96.535,97.825,98.7,99.995,100.837,102.426,105.15 +1008,1,94.1516,0.0379,83.125,85.85,87.44,88.282,89.579,90.453,91.745,94.152,96.558,97.85,98.725,100.021,100.863,102.453,105.179 +1009,1,94.1741,0.03791,83.142,85.869,87.459,88.302,89.599,90.474,91.766,94.174,96.582,97.874,98.749,100.046,100.889,102.479,105.207 +1010,1,94.1967,0.03792,83.159,85.887,87.479,88.321,89.619,90.495,91.787,94.197,96.606,97.899,98.774,100.072,100.915,102.506,105.235 +1011,1,94.2192,0.03793,83.176,85.905,87.498,88.341,89.639,90.515,91.809,94.219,96.63,97.923,98.799,100.097,100.941,102.533,105.263 +1012,1,94.2417,0.03793,83.195,85.926,87.519,88.362,89.661,90.537,91.831,94.242,96.653,97.947,98.823,100.121,100.965,102.557,105.288 +1013,1,94.2642,0.03794,83.212,85.944,87.538,88.382,89.681,90.558,91.852,94.264,96.676,97.971,98.848,100.147,100.991,102.584,105.316 +1014,1,94.2867,0.03795,83.229,85.963,87.557,88.401,89.701,90.578,91.873,94.287,96.7,97.995,98.872,100.172,101.017,102.611,105.344 +1015,1,94.3092,0.03796,83.246,85.981,87.576,88.421,89.721,90.599,91.895,94.309,96.724,98.02,98.897,100.198,101.042,102.637,105.372 +1016,1,94.3317,0.03797,83.263,85.999,87.595,88.44,89.741,90.619,91.916,94.332,96.748,98.044,98.922,100.223,101.068,102.664,105.4 +1017,1,94.3541,0.03798,83.28,86.017,87.614,88.46,89.762,90.64,91.937,94.354,96.771,98.068,98.947,100.249,101.094,102.691,105.428 +1018,1,94.3765,0.03798,83.3,86.038,87.635,88.481,89.783,90.661,91.959,94.377,96.794,98.092,98.97,100.272,101.118,102.715,105.453 +1019,1,94.399,0.03799,83.317,86.056,87.654,88.5,89.803,90.682,91.98,94.399,96.818,98.116,98.995,100.298,101.144,102.742,105.481 +1020,1,94.4214,0.038,83.334,86.074,87.673,88.52,89.823,90.703,92.001,94.421,96.841,98.14,99.02,100.323,101.17,102.768,105.509 +1021,1,94.4438,0.03801,83.35,86.093,87.692,88.539,89.843,90.723,92.023,94.444,96.865,98.164,99.044,100.349,101.195,102.795,105.537 +1022,1,94.4662,0.03802,83.367,86.111,87.711,88.559,89.863,90.744,92.044,94.466,96.889,98.189,99.069,100.374,101.221,102.822,105.565 +1023,1,94.4885,0.03802,83.387,86.131,87.732,88.579,89.885,90.765,92.065,94.489,96.912,98.212,99.092,100.398,101.245,102.846,105.59 +1024,1,94.5109,0.03803,83.404,86.149,87.751,88.599,89.905,90.786,92.087,94.511,96.935,98.236,99.117,100.423,101.271,102.872,105.618 +1025,1,94.5332,0.03804,83.421,86.168,87.77,88.618,89.925,90.806,92.108,94.533,96.959,98.26,99.142,100.448,101.297,102.899,105.646 +1026,1,94.5556,0.03805,83.437,86.186,87.789,88.638,89.945,90.827,92.129,94.556,96.982,98.285,99.166,100.474,101.322,102.925,105.674 +1027,1,94.5779,0.03806,83.454,86.204,87.808,88.657,89.965,90.847,92.15,94.578,97.006,98.309,99.191,100.499,101.348,102.952,105.702 +1028,1,94.6002,0.03807,83.471,86.222,87.827,88.676,89.985,90.868,92.171,94.6,97.029,98.333,99.216,100.524,101.374,102.978,105.729 +1029,1,94.6225,0.03807,83.491,86.242,87.847,88.697,90.006,90.889,92.193,94.623,97.052,98.356,99.239,100.548,101.398,103.003,105.754 +1030,1,94.6447,0.03808,83.507,86.26,87.866,88.717,90.026,90.909,92.214,94.645,97.076,98.38,99.264,100.573,101.423,103.029,105.782 +1031,1,94.667,0.03809,83.524,86.279,87.885,88.736,90.046,90.93,92.235,94.667,97.099,98.404,99.288,100.598,101.449,103.055,105.81 +1032,1,94.6893,0.0381,83.541,86.297,87.904,88.755,90.066,90.95,92.256,94.689,97.123,98.428,99.313,100.623,101.475,103.082,105.838 +1033,1,94.7115,0.03811,83.557,86.315,87.923,88.774,90.086,90.971,92.277,94.712,97.146,98.452,99.337,100.649,101.5,103.108,105.866 +1034,1,94.7337,0.03811,83.577,86.335,87.943,88.795,90.107,90.992,92.299,94.734,97.169,98.476,99.36,100.672,101.524,103.133,105.89 +1035,1,94.7559,0.03812,83.594,86.353,87.962,88.815,90.127,91.012,92.32,94.756,97.192,98.5,99.385,100.697,101.55,103.159,105.918 +1036,1,94.7782,0.03813,83.61,86.371,87.981,88.834,90.147,91.033,92.341,94.778,97.216,98.524,99.41,100.723,101.575,103.185,105.946 +1037,1,94.8003,0.03814,83.627,86.389,88,88.853,90.167,91.053,92.362,94.8,97.239,98.548,99.434,100.748,101.601,103.212,105.974 +1038,1,94.8225,0.03815,83.644,86.407,88.019,88.872,90.187,91.073,92.383,94.823,97.262,98.572,99.458,100.773,101.626,103.238,106.001 +1039,1,94.8447,0.03815,83.663,86.427,88.039,88.893,90.208,91.095,92.404,94.845,97.285,98.595,99.482,100.796,101.65,103.262,106.026 +1040,1,94.8668,0.03816,83.68,86.445,88.058,88.912,90.227,91.115,92.425,94.867,97.309,98.619,99.506,100.821,101.675,103.288,106.054 +1041,1,94.889,0.03817,83.696,86.463,88.077,88.931,90.247,91.135,92.446,94.889,97.332,98.643,99.531,100.847,101.701,103.315,106.082 +1042,1,94.9111,0.03818,83.713,86.481,88.096,88.951,90.267,91.155,92.467,94.911,97.355,98.667,99.555,100.872,101.727,103.341,106.109 +1043,1,94.9332,0.03819,83.73,86.499,88.114,88.97,90.287,91.176,92.488,94.933,97.379,98.691,99.579,100.897,101.752,103.367,106.137 +1044,1,94.9553,0.03819,83.749,86.519,88.135,88.99,90.308,91.197,92.509,94.955,97.401,98.714,99.603,100.92,101.776,103.391,106.162 +1045,1,94.9774,0.0382,83.766,86.537,88.154,89.01,90.328,91.217,92.53,94.977,97.425,98.738,99.627,100.945,101.801,103.418,106.189 +1046,1,94.9995,0.03821,83.782,86.555,88.172,89.029,90.348,91.237,92.551,95,97.448,98.762,99.651,100.97,101.827,103.444,106.217 +1047,1,95.0216,0.03822,83.799,86.573,88.191,89.048,90.367,91.258,92.572,95.022,97.471,98.786,99.676,100.995,101.852,103.47,106.244 +1048,1,95.0436,0.03822,83.818,86.593,88.211,89.069,90.388,91.279,92.593,95.044,97.494,98.809,99.699,101.019,101.876,103.494,106.269 +1049,1,95.0657,0.03823,83.835,86.611,88.23,89.088,90.408,91.299,92.614,95.066,97.517,98.832,99.723,101.044,101.901,103.52,106.297 +1050,1,95.0877,0.03824,83.851,86.629,88.249,89.107,90.428,91.319,92.635,95.088,97.54,98.856,99.748,101.069,101.927,103.547,106.324 +1051,1,95.1097,0.03825,83.868,86.647,88.267,89.126,90.447,91.339,92.656,95.11,97.563,98.88,99.772,101.094,101.952,103.573,106.352 +1052,1,95.1317,0.03826,83.884,86.664,88.286,89.145,90.467,91.359,92.677,95.132,97.587,98.904,99.796,101.119,101.977,103.599,106.379 +1053,1,95.1537,0.03826,83.903,86.684,88.307,89.165,90.488,91.38,92.698,95.154,97.609,98.927,99.819,101.142,102.001,103.623,106.404 +1054,1,95.1757,0.03827,83.92,86.702,88.325,89.185,90.508,91.401,92.719,95.176,97.632,98.951,99.844,101.167,102.026,103.649,106.431 +1055,1,95.1977,0.03828,83.936,86.72,88.344,89.204,90.528,91.421,92.74,95.198,97.656,98.975,99.868,101.192,102.052,103.675,106.459 +1056,1,95.2197,0.03829,83.953,86.738,88.362,89.223,90.547,91.441,92.761,95.22,97.679,98.998,99.892,101.217,102.077,103.701,106.487 +1057,1,95.2416,0.03829,83.972,86.758,88.383,89.243,90.568,91.462,92.782,95.242,97.701,99.021,99.915,101.24,102.1,103.725,106.511 +1058,1,95.2636,0.0383,83.989,86.776,88.401,89.262,90.588,91.482,92.803,95.264,97.725,99.045,99.939,101.265,102.126,103.752,106.539 +1059,1,95.2855,0.03831,84.005,86.793,88.42,89.281,90.607,91.502,92.823,95.286,97.748,99.069,99.964,101.29,102.151,103.778,106.566 +1060,1,95.3074,0.03832,84.021,86.811,88.438,89.3,90.627,91.522,92.844,95.307,97.771,99.093,99.988,101.315,102.176,103.804,106.593 +1061,1,95.3293,0.03833,84.038,86.829,88.457,89.319,90.647,91.542,92.865,95.329,97.794,99.116,100.012,101.34,102.202,103.83,106.621 +1062,1,95.3512,0.03833,84.057,86.849,88.477,89.34,90.667,91.563,92.886,95.351,97.816,99.139,100.035,101.363,102.225,103.854,106.645 +1063,1,95.3731,0.03834,84.073,86.867,88.496,89.359,90.687,91.583,92.907,95.373,97.839,99.163,100.059,101.388,102.25,103.88,106.673 +1064,1,95.3949,0.03835,84.09,86.884,88.514,89.377,90.706,91.603,92.927,95.395,97.862,99.187,100.083,101.412,102.276,103.906,106.7 +1065,1,95.4168,0.03836,84.106,86.902,88.533,89.396,90.726,91.623,92.948,95.417,97.886,99.21,100.108,101.437,102.301,103.932,106.728 +1066,1,95.4386,0.03836,84.125,86.922,88.553,89.417,90.747,91.644,92.969,95.439,97.908,99.233,100.13,101.46,102.324,103.955,106.752 +1067,1,95.4605,0.03837,84.142,86.94,88.571,89.436,90.766,91.664,92.99,95.461,97.931,99.257,100.155,101.485,102.35,103.981,106.779 +1068,1,95.4823,0.03838,84.158,86.957,88.59,89.455,90.786,91.684,93.011,95.482,97.954,99.28,100.179,101.51,102.375,104.007,106.807 +1069,1,95.5041,0.03839,84.174,86.975,88.608,89.473,90.805,91.704,93.031,95.504,97.977,99.304,100.203,101.535,102.4,104.033,106.834 +1070,1,95.5259,0.03839,84.193,86.995,88.629,89.494,90.826,91.725,93.052,95.526,97.999,99.327,100.226,101.558,102.423,104.057,106.859 +1071,1,95.5477,0.0384,84.21,87.012,88.647,89.513,90.846,91.745,93.073,95.548,98.022,99.35,100.25,101.583,102.448,104.083,106.886 +1072,1,95.5695,0.03841,84.226,87.03,88.665,89.532,90.865,91.765,93.094,95.57,98.045,99.374,100.274,101.607,102.474,104.109,106.913 +1073,1,95.5913,0.03842,84.242,87.048,88.684,89.55,90.885,91.785,93.114,95.591,98.068,99.398,100.298,101.632,102.499,104.135,106.941 +1074,1,95.613,0.03842,84.261,87.067,88.704,89.571,90.905,91.806,93.135,95.613,98.091,99.42,100.321,101.655,102.522,104.159,106.965 +1075,1,95.6348,0.03843,84.277,87.085,88.722,89.59,90.925,91.826,93.156,95.635,98.114,99.444,100.345,101.68,102.547,104.185,106.992 +1076,1,95.6565,0.03844,84.294,87.102,88.741,89.608,90.944,91.845,93.176,95.657,98.137,99.468,100.369,101.705,102.572,104.211,107.019 +1077,1,95.6782,0.03845,84.31,87.12,88.759,89.627,90.964,91.865,93.197,95.678,98.16,99.491,100.393,101.729,102.597,104.236,107.047 +1078,1,95.6999,0.03845,84.329,87.14,88.779,89.647,90.984,91.886,93.218,95.7,98.182,99.514,100.416,101.752,102.621,104.26,107.071 +1079,1,95.7216,0.03846,84.345,87.157,88.798,89.666,91.004,91.906,93.238,95.722,98.205,99.537,100.44,101.777,102.646,104.286,107.098 +1080,1,95.7433,0.03847,84.361,87.175,88.816,89.685,91.023,91.926,93.259,95.743,98.228,99.561,100.464,101.802,102.671,104.312,107.125 +1081,1,95.765,0.03848,84.377,87.192,88.834,89.704,91.042,91.946,93.279,95.765,98.251,99.584,100.488,101.826,102.696,104.338,107.153 +1082,1,95.7867,0.03848,84.396,87.212,88.854,89.724,91.063,91.967,93.301,95.787,98.273,99.607,100.51,101.849,102.719,104.361,107.177 +1083,1,95.8083,0.03849,84.413,87.23,88.873,89.743,91.082,91.986,93.321,95.808,98.296,99.63,100.534,101.874,102.744,104.387,107.204 +1084,1,95.83,0.0385,84.429,87.247,88.891,89.761,91.102,92.006,93.342,95.83,98.318,99.654,100.558,101.899,102.769,104.413,107.231 +1085,1,95.8516,0.0385,84.448,87.267,88.911,89.782,91.122,92.027,93.363,95.852,98.341,99.676,100.581,101.922,102.792,104.436,107.255 +1086,1,95.8732,0.03851,84.464,87.284,88.929,89.8,91.142,92.047,93.383,95.873,98.363,99.7,100.605,101.946,102.817,104.462,107.283 +1087,1,95.8948,0.03852,84.48,87.302,88.947,89.819,91.161,92.066,93.403,95.895,98.386,99.723,100.629,101.971,102.842,104.488,107.31 +1088,1,95.9165,0.03853,84.496,87.319,88.966,89.838,91.18,92.086,93.424,95.917,98.409,99.747,100.653,101.995,102.867,104.514,107.337 +1089,1,95.938,0.03853,84.515,87.339,88.986,89.858,91.201,92.107,93.445,95.938,98.431,99.769,100.675,102.018,102.89,104.537,107.361 +1090,1,95.9596,0.03854,84.531,87.356,89.004,89.876,91.22,92.127,93.465,95.96,98.454,99.793,100.699,102.043,102.915,104.563,107.388 +1091,1,95.9812,0.03855,84.547,87.374,89.022,89.895,91.239,92.146,93.486,95.981,98.477,99.816,100.723,102.067,102.94,104.589,107.415 +1092,1,96.0028,0.03856,84.563,87.391,89.04,89.914,91.259,92.166,93.506,96.003,98.5,99.84,100.747,102.092,102.965,104.615,107.442 +1093,1,96.0243,0.03856,84.582,87.411,89.06,89.934,91.279,92.187,93.527,96.024,98.522,99.862,100.769,102.115,102.988,104.638,107.466 +1094,1,96.0459,0.03857,84.598,87.428,89.079,89.953,91.298,92.206,93.547,96.046,98.545,99.885,100.793,102.139,103.013,104.664,107.494 +1095,1,96.0674,0.03858,84.614,87.445,89.097,89.971,91.318,92.226,93.568,96.067,98.567,99.909,100.817,102.164,103.038,104.689,107.521 +1096,1,96.0889,0.03858,84.633,87.465,89.117,89.991,91.338,92.247,93.588,96.089,98.589,99.931,100.84,102.187,103.061,104.713,107.545 +1097,1,96.1104,0.03859,84.649,87.482,89.135,90.01,91.357,92.266,93.609,96.11,98.612,99.954,100.864,102.211,103.086,104.739,107.572 +1098,1,96.1319,0.0386,84.665,87.5,89.153,90.028,91.376,92.286,93.629,96.132,98.635,99.978,100.887,102.235,103.111,104.764,107.599 +1099,1,96.1534,0.03861,84.681,87.517,89.171,90.047,91.396,92.306,93.649,96.153,98.657,100.001,100.911,102.26,103.136,104.79,107.626 +1100,1,96.1749,0.03861,84.7,87.536,89.191,90.067,91.416,92.326,93.67,96.175,98.679,100.024,100.934,102.283,103.159,104.813,107.65 +1101,1,96.1964,0.03862,84.716,87.554,89.209,90.086,91.435,92.346,93.691,96.196,98.702,100.047,100.957,102.307,103.184,104.839,107.677 +1102,1,96.2178,0.03863,84.732,87.571,89.227,90.104,91.454,92.365,93.711,96.218,98.725,100.07,100.981,102.332,103.209,104.865,107.704 +1103,1,96.2393,0.03863,84.751,87.591,89.247,90.124,91.475,92.386,93.732,96.239,98.747,100.092,101.004,102.354,103.232,104.888,107.728 +1104,1,96.2607,0.03864,84.767,87.608,89.265,90.143,91.494,92.406,93.752,96.261,98.769,100.116,101.027,102.379,103.256,104.914,107.755 +1105,1,96.2821,0.03865,84.782,87.625,89.283,90.161,91.513,92.425,93.772,96.282,98.792,100.139,101.051,102.403,103.281,104.939,107.782 +1106,1,96.3035,0.03866,84.798,87.642,89.301,90.18,91.532,92.445,93.792,96.304,98.815,100.162,101.075,102.427,103.306,104.965,107.809 +1107,1,96.325,0.03866,84.817,87.662,89.321,90.2,91.553,92.465,93.813,96.325,98.837,100.185,101.097,102.45,103.329,104.988,107.833 +1108,1,96.3464,0.03867,84.833,87.679,89.339,90.218,91.572,92.485,93.833,96.346,98.859,100.208,101.121,102.475,103.354,105.014,107.86 +1109,1,96.3677,0.03868,84.849,87.696,89.357,90.237,91.591,92.504,93.854,96.368,98.882,100.231,101.145,102.499,103.378,105.039,107.887 +1110,1,96.3891,0.03868,84.868,87.716,89.377,90.257,91.611,92.525,93.874,96.389,98.904,100.253,101.167,102.522,103.401,105.062,107.911 +1111,1,96.4105,0.03869,84.884,87.733,89.395,90.275,91.63,92.544,93.895,96.411,98.926,100.277,101.191,102.546,103.426,105.088,107.937 +1112,1,96.4318,0.0387,84.899,87.75,89.413,90.293,91.649,92.564,93.915,96.432,98.949,100.3,101.214,102.57,103.451,105.114,107.964 +1113,1,96.4532,0.0387,84.918,87.77,89.433,90.313,91.67,92.584,93.936,96.453,98.971,100.322,101.237,102.593,103.474,105.137,107.988 +1114,1,96.4745,0.03871,84.934,87.787,89.451,90.332,91.689,92.604,93.956,96.475,98.993,100.345,101.26,102.617,103.498,105.162,108.015 +1115,1,96.4958,0.03872,84.95,87.804,89.469,90.35,91.708,92.623,93.976,96.496,99.016,100.368,101.284,102.641,103.523,105.188,108.042 +1116,1,96.5172,0.03873,84.966,87.821,89.487,90.369,91.727,92.643,93.996,96.517,99.039,100.392,101.308,102.666,103.548,105.213,108.069 +1117,1,96.5385,0.03873,84.984,87.84,89.506,90.388,91.747,92.663,94.017,96.539,99.06,100.414,101.33,102.689,103.571,105.237,108.093 +1118,1,96.5598,0.03874,85,87.858,89.524,90.407,91.766,92.683,94.037,96.56,99.083,100.437,101.354,102.713,103.595,105.262,108.12 +1119,1,96.581,0.03875,85.016,87.875,89.542,90.425,91.785,92.702,94.057,96.581,99.105,100.46,101.377,102.737,103.62,105.287,108.146 +1120,1,96.6023,0.03875,85.035,87.894,89.562,90.445,91.805,92.723,94.077,96.602,99.127,100.482,101.4,102.76,103.643,105.311,108.17 +1121,1,96.6236,0.03876,85.05,87.911,89.58,90.463,91.824,92.742,94.098,96.624,99.15,100.505,101.423,102.784,103.667,105.336,108.197 +1122,1,96.6448,0.03877,85.066,87.928,89.598,90.482,91.843,92.761,94.118,96.645,99.172,100.528,101.447,102.808,103.692,105.361,108.224 +1123,1,96.6661,0.03877,85.085,87.948,89.617,90.502,91.863,92.782,94.138,96.666,99.194,100.55,101.469,102.831,103.715,105.385,108.248 +1124,1,96.6873,0.03878,85.1,87.965,89.635,90.52,91.882,92.801,94.158,96.687,99.216,100.573,101.493,102.855,103.739,105.41,108.274 +1125,1,96.7085,0.03879,85.116,87.982,89.653,90.538,91.901,92.821,94.178,96.709,99.239,100.596,101.516,102.879,103.764,105.435,108.301 +1126,1,96.7298,0.03879,85.135,88.001,89.673,90.558,91.921,92.841,94.199,96.73,99.261,100.619,101.538,102.902,103.787,105.459,108.325 +1127,1,96.751,0.0388,85.15,88.018,89.691,90.576,91.94,92.86,94.219,96.751,99.283,100.642,101.562,102.926,103.811,105.484,108.352 +1128,1,96.7722,0.03881,85.166,88.035,89.708,90.595,91.959,92.88,94.239,96.772,99.305,100.665,101.585,102.95,103.836,105.509,108.378 +1129,1,96.7933,0.03881,85.185,88.054,89.728,90.614,91.979,92.9,94.26,96.793,99.327,100.687,101.608,102.972,103.859,105.532,108.402 +1130,1,96.8145,0.03882,85.2,88.071,89.746,90.633,91.998,92.919,94.28,96.815,99.349,100.71,101.631,102.996,103.883,105.558,108.429 +1131,1,96.8357,0.03883,85.216,88.088,89.764,90.651,92.017,92.939,94.3,96.836,99.372,100.733,101.655,103.021,103.908,105.583,108.455 +1132,1,96.8568,0.03883,85.235,88.108,89.783,90.671,92.037,92.959,94.32,96.857,99.394,100.755,101.677,103.043,103.93,105.606,108.479 +1133,1,96.878,0.03884,85.25,88.125,89.801,90.689,92.056,92.978,94.34,96.878,99.416,100.778,101.7,103.067,103.955,105.631,108.506 +1134,1,96.8991,0.03885,85.266,88.141,89.819,90.707,92.075,92.997,94.36,96.899,99.438,100.801,101.724,103.091,103.979,105.657,108.532 +1135,1,96.9203,0.03885,85.284,88.161,89.838,90.727,92.095,93.018,94.381,96.92,99.46,100.823,101.746,103.114,104.002,105.68,108.556 +1136,1,96.9414,0.03886,85.3,88.178,89.856,90.745,92.114,93.037,94.401,96.941,99.482,100.846,101.769,103.138,104.027,105.705,108.583 +1137,1,96.9625,0.03887,85.316,88.195,89.874,90.763,92.132,93.056,94.42,96.963,99.505,100.869,101.793,103.162,104.051,105.73,108.609 +1138,1,96.9836,0.03887,85.334,88.214,89.893,90.783,92.152,93.077,94.441,96.984,99.526,100.891,101.815,103.184,104.074,105.753,108.633 +1139,1,97.0047,0.03888,85.35,88.231,89.911,90.801,92.171,93.096,94.461,97.005,99.549,100.914,101.838,103.208,104.098,105.779,108.66 +1140,1,97.0258,0.03889,85.365,88.248,89.929,90.819,92.19,93.115,94.481,97.026,99.571,100.937,101.862,103.232,104.123,105.804,108.686 +1141,1,97.0468,0.03889,85.384,88.267,89.948,90.839,92.21,93.135,94.501,97.047,99.592,100.958,101.884,103.255,104.145,105.827,108.71 +1142,1,97.0679,0.0389,85.399,88.284,89.966,90.857,92.229,93.154,94.521,97.068,99.615,100.981,101.907,103.279,104.17,105.852,108.736 +1143,1,97.0889,0.03891,85.415,88.301,89.984,90.875,92.248,93.174,94.541,97.089,99.637,101.004,101.93,103.303,104.194,105.877,108.763 +1144,1,97.11,0.03891,85.433,88.32,90.003,90.895,92.268,93.194,94.561,97.11,99.659,101.026,101.952,103.325,104.217,105.9,108.787 +1145,1,97.131,0.03892,85.449,88.337,90.021,90.913,92.286,93.213,94.581,97.131,99.681,101.049,101.976,103.349,104.241,105.925,108.813 +1146,1,97.1521,0.03893,85.464,88.354,90.039,90.931,92.305,93.232,94.601,97.152,99.703,101.072,101.999,103.373,104.266,105.951,108.84 +1147,1,97.1731,0.03893,85.483,88.373,90.058,90.951,92.325,93.252,94.622,97.173,99.725,101.094,102.021,103.395,104.288,105.974,108.863 +1148,1,97.1941,0.03894,85.498,88.389,90.076,90.969,92.344,93.271,94.641,97.194,99.747,101.117,102.044,103.419,104.312,105.999,108.89 +1149,1,97.2151,0.03895,85.514,88.406,90.093,90.987,92.362,93.291,94.661,97.215,99.769,101.14,102.068,103.443,104.337,106.024,108.916 +1150,1,97.2361,0.03895,85.532,88.425,90.113,91.006,92.382,93.311,94.682,97.236,99.791,101.161,102.09,103.466,104.359,106.047,108.94 +1151,1,97.257,0.03896,85.548,88.442,90.13,91.024,92.401,93.33,94.701,97.257,99.813,101.184,102.113,103.49,104.384,106.072,108.966 +1152,1,97.278,0.03897,85.563,88.459,90.148,91.042,92.42,93.349,94.721,97.278,99.835,101.207,102.136,103.514,104.408,106.097,108.993 +1153,1,97.299,0.03897,85.582,88.478,90.168,91.062,92.44,93.369,94.742,97.299,99.856,101.229,102.158,103.536,104.43,106.12,109.016 +1154,1,97.3199,0.03898,85.597,88.495,90.185,91.08,92.458,93.388,94.761,97.32,99.879,101.252,102.182,103.56,104.455,106.145,109.043 +1155,1,97.3409,0.03899,85.612,88.512,90.203,91.098,92.477,93.407,94.781,97.341,99.901,101.274,102.205,103.584,104.479,106.17,109.069 +1156,1,97.3618,0.03899,85.631,88.531,90.222,91.118,92.497,93.427,94.801,97.362,99.922,101.296,102.227,103.606,104.502,106.193,109.093 +1157,1,97.3827,0.039,85.646,88.547,90.24,91.136,92.515,93.446,94.821,97.383,99.944,101.319,102.25,103.63,104.526,106.218,109.119 +1158,1,97.4036,0.03901,85.662,88.564,90.257,91.154,92.534,93.465,94.841,97.404,99.966,101.342,102.273,103.654,104.55,106.243,109.146 +1159,1,97.4245,0.03901,85.68,88.583,90.276,91.173,92.554,93.486,94.861,97.425,99.988,101.363,102.295,103.676,104.573,106.266,109.169 +1160,1,97.4454,0.03902,85.695,88.6,90.294,91.191,92.573,93.505,94.881,97.445,100.01,101.386,102.318,103.7,104.597,106.291,109.195 +1161,1,97.4663,0.03902,85.714,88.619,90.313,91.211,92.592,93.525,94.901,97.466,100.031,101.408,102.34,103.722,104.619,106.314,109.219 +1162,1,97.4872,0.03903,85.729,88.636,90.331,91.229,92.611,93.544,94.921,97.487,100.054,101.431,102.363,103.746,104.643,106.339,109.245 +1163,1,97.5081,0.03904,85.744,88.652,90.348,91.247,92.63,93.563,94.941,97.508,100.076,101.454,102.387,103.77,104.668,106.364,109.272 +1164,1,97.5289,0.03904,85.763,88.671,90.368,91.266,92.649,93.583,94.961,97.529,100.097,101.475,102.408,103.792,104.69,106.387,109.295 +1165,1,97.5498,0.03905,85.778,88.688,90.385,91.284,92.668,93.602,94.98,97.55,100.119,101.498,102.432,103.816,104.714,106.412,109.321 +1166,1,97.5706,0.03906,85.793,88.705,90.403,91.302,92.686,93.621,95,97.571,100.141,101.521,102.455,103.839,104.739,106.437,109.348 +1167,1,97.5914,0.03906,85.812,88.724,90.422,91.321,92.706,93.641,95.02,97.591,100.163,101.542,102.477,103.861,104.761,106.459,109.371 +1168,1,97.6123,0.03907,85.827,88.74,90.439,91.339,92.725,93.66,95.04,97.612,100.185,101.565,102.5,103.885,104.785,106.484,109.398 +1169,1,97.6331,0.03908,85.842,88.757,90.457,91.357,92.743,93.679,95.06,97.633,100.207,101.588,102.523,103.909,104.809,106.509,109.424 +1170,1,97.6539,0.03908,85.861,88.776,90.476,91.377,92.763,93.699,95.08,97.654,100.228,101.609,102.545,103.931,104.832,106.532,109.447 +1171,1,97.6747,0.03909,85.876,88.792,90.494,91.394,92.782,93.717,95.099,97.675,100.25,101.632,102.568,103.955,104.856,106.557,109.474 +1172,1,97.6954,0.03909,85.894,88.811,90.513,91.414,92.801,93.737,95.12,97.695,100.271,101.653,102.59,103.977,104.878,106.58,109.497 +1173,1,97.7162,0.0391,85.909,88.828,90.53,91.432,92.82,93.756,95.139,97.716,100.293,101.676,102.613,104.001,104.902,106.604,109.523 +1174,1,97.737,0.03911,85.925,88.845,90.548,91.45,92.838,93.775,95.159,97.737,100.315,101.699,102.636,104.024,104.926,106.629,109.549 +1175,1,97.7577,0.03911,85.943,88.863,90.567,91.469,92.858,93.795,95.179,97.758,100.336,101.72,102.657,104.046,104.949,106.652,109.573 +1176,1,97.7785,0.03912,85.958,88.88,90.584,91.487,92.876,93.814,95.199,97.779,100.358,101.743,102.681,104.07,104.973,106.677,109.599 +1177,1,97.7992,0.03913,85.973,88.897,90.602,91.505,92.895,93.833,95.218,97.799,100.38,101.766,102.704,104.094,104.997,106.702,109.625 +1178,1,97.8199,0.03913,85.991,88.915,90.621,91.524,92.915,93.853,95.238,97.82,100.402,101.787,102.725,104.116,105.019,106.724,109.648 +1179,1,97.8406,0.03914,86.007,88.932,90.638,91.542,92.933,93.872,95.258,97.841,100.424,101.81,102.748,104.14,105.043,106.749,109.675 +1180,1,97.8614,0.03914,86.025,88.951,90.657,91.561,92.953,93.892,95.278,97.861,100.445,101.831,102.77,104.162,105.065,106.772,109.698 +1181,1,97.8821,0.03915,86.04,88.967,90.675,91.579,92.971,93.91,95.297,97.882,100.467,101.854,102.793,104.185,105.089,106.797,109.724 +1182,1,97.9027,0.03916,86.055,88.984,90.692,91.597,92.989,93.929,95.317,97.903,100.489,101.876,102.816,104.209,105.113,106.822,109.75 +1183,1,97.9234,0.03916,86.073,89.003,90.711,91.616,93.009,93.949,95.337,97.923,100.51,101.898,102.838,104.231,105.136,106.844,109.773 +1184,1,97.9441,0.03917,86.089,89.019,90.728,91.634,93.027,93.968,95.356,97.944,100.532,101.92,102.861,104.255,105.16,106.869,109.8 +1185,1,97.9647,0.03917,86.107,89.038,90.748,91.653,93.047,93.988,95.376,97.965,100.553,101.942,102.882,104.276,105.182,106.892,109.823 +1186,1,97.9854,0.03918,86.122,89.054,90.765,91.671,93.065,94.006,95.396,97.985,100.575,101.964,102.905,104.3,105.206,106.916,109.849 +1187,1,98.006,0.03919,86.137,89.071,90.782,91.688,93.084,94.025,95.415,98.006,100.597,101.987,102.928,104.324,105.23,106.941,109.875 +1188,1,98.0267,0.03919,86.155,89.09,90.801,91.708,93.103,94.045,95.436,98.027,100.618,102.008,102.95,104.346,105.252,106.964,109.898 +1189,1,98.0473,0.0392,86.17,89.106,90.819,91.725,93.122,94.064,95.455,98.047,100.64,102.031,102.973,104.369,105.276,106.989,109.924 +1190,1,98.0679,0.0392,86.188,89.125,90.838,91.745,93.141,94.084,95.475,98.068,100.661,102.052,102.995,104.391,105.298,107.011,109.948 +1191,1,98.0885,0.03921,86.203,89.141,90.855,91.762,93.16,94.102,95.494,98.089,100.683,102.075,103.017,104.415,105.322,107.036,109.974 +1192,1,98.1091,0.03922,86.218,89.158,90.872,91.78,93.178,94.121,95.514,98.109,100.704,102.097,103.04,104.438,105.346,107.061,110 +1193,1,98.1297,0.03922,86.236,89.176,90.891,91.799,93.197,94.141,95.534,98.13,100.726,102.119,103.062,104.46,105.368,107.083,110.023 +1194,1,98.1503,0.03923,86.252,89.193,90.908,91.817,93.216,94.16,95.553,98.15,100.747,102.141,103.085,104.484,105.392,107.108,110.049 +1195,1,98.1708,0.03924,86.267,89.209,90.926,91.834,93.234,94.178,95.573,98.171,100.769,102.163,103.108,104.507,105.416,107.132,110.075 +1196,1,98.1914,0.03924,86.285,89.228,90.945,91.854,93.254,94.198,95.593,98.191,100.79,102.185,103.129,104.529,105.438,107.155,110.098 +1197,1,98.2119,0.03925,86.3,89.244,90.962,91.871,93.272,94.217,95.612,98.212,100.812,102.207,103.152,104.553,105.462,107.18,110.124 +1198,1,98.2325,0.03925,86.318,89.263,90.981,91.891,93.291,94.236,95.632,98.233,100.833,102.229,103.174,104.574,105.484,107.202,110.147 +1199,1,98.253,0.03926,86.333,89.279,90.998,91.908,93.31,94.255,95.651,98.253,100.855,102.251,103.196,104.598,105.508,107.227,110.173 +1200,1,98.2735,0.03927,86.348,89.296,91.015,91.926,93.328,94.274,95.671,98.274,100.876,102.273,103.219,104.621,105.532,107.251,110.199 +1201,1,98.294,0.03927,86.366,89.314,91.034,91.945,93.347,94.293,95.69,98.294,100.898,102.295,103.241,104.643,105.554,107.274,110.222 +1202,1,98.3145,0.03928,86.381,89.331,91.051,91.962,93.365,94.312,95.71,98.315,100.919,102.317,103.264,104.667,105.578,107.298,110.248 +1203,1,98.335,0.03928,86.399,89.349,91.07,91.982,93.385,94.332,95.73,98.335,100.94,102.338,103.285,104.688,105.6,107.321,110.271 +1204,1,98.3555,0.03929,86.414,89.366,91.087,91.999,93.403,94.35,95.749,98.356,100.962,102.361,103.308,104.712,105.624,107.345,110.297 +1205,1,98.3759,0.03929,86.432,89.384,91.106,92.018,93.422,94.37,95.769,98.376,100.983,102.382,103.329,104.734,105.646,107.368,110.32 +1206,1,98.3964,0.0393,86.447,89.4,91.123,92.036,93.441,94.389,95.788,98.396,101.005,102.404,103.352,104.757,105.669,107.392,110.346 +1207,1,98.4169,0.03931,86.462,89.417,91.141,92.053,93.459,94.407,95.807,98.417,101.026,102.427,103.375,104.78,105.693,107.417,110.372 +1208,1,98.4373,0.03931,86.479,89.435,91.159,92.072,93.478,94.427,95.827,98.437,101.047,102.448,103.396,104.802,105.715,107.439,110.395 +1209,1,98.4577,0.03932,86.494,89.452,91.176,92.09,93.496,94.445,95.847,98.458,101.069,102.47,103.419,104.826,105.739,107.464,110.421 +1210,1,98.4782,0.03932,86.512,89.47,91.195,92.109,93.516,94.465,95.866,98.478,101.09,102.491,103.441,104.847,105.761,107.486,110.444 +1211,1,98.4986,0.03933,86.527,89.486,91.212,92.127,93.534,94.484,95.886,98.499,101.112,102.514,103.463,104.871,105.785,107.511,110.47 +1212,1,98.519,0.03934,86.542,89.503,91.23,92.144,93.552,94.502,95.905,98.519,101.133,102.536,103.486,104.894,105.808,107.535,110.496 +1213,1,98.5394,0.03934,86.56,89.521,91.248,92.163,93.571,94.522,95.925,98.539,101.154,102.557,103.507,104.916,105.83,107.558,110.519 +1214,1,98.5598,0.03935,86.575,89.537,91.265,92.181,93.59,94.54,95.944,98.56,101.176,102.579,103.53,104.939,105.854,107.582,110.545 +1215,1,98.5801,0.03935,86.593,89.556,91.284,92.2,93.609,94.56,95.964,98.58,101.197,102.601,103.551,104.961,105.876,107.604,110.568 +1216,1,98.6005,0.03936,86.608,89.572,91.301,92.217,93.627,94.578,95.983,98.601,101.218,102.623,103.574,104.984,105.9,107.629,110.593 +1217,1,98.6209,0.03937,86.622,89.588,91.318,92.234,93.645,94.597,96.002,98.621,101.24,102.645,103.597,105.007,105.923,107.653,110.619 +1218,1,98.6412,0.03937,86.64,89.607,91.337,92.253,93.664,94.616,96.022,98.641,101.261,102.666,103.618,105.029,105.945,107.676,110.642 +1219,1,98.6615,0.03938,86.655,89.623,91.354,92.271,93.682,94.635,96.041,98.662,101.282,102.688,103.641,105.052,105.969,107.7,110.668 +1220,1,98.6819,0.03938,86.673,89.641,91.373,92.29,93.702,94.654,96.061,98.682,101.303,102.71,103.662,105.074,105.991,107.722,110.691 +1221,1,98.7022,0.03939,86.688,89.658,91.39,92.307,93.72,94.673,96.08,98.702,101.325,102.732,103.685,105.097,106.014,107.747,110.717 +1222,1,98.7225,0.03939,86.706,89.676,91.409,92.326,93.739,94.692,96.1,98.723,101.345,102.753,103.706,105.119,106.036,107.769,110.739 +1223,1,98.7428,0.0394,86.72,89.692,91.426,92.344,93.757,94.711,96.119,98.743,101.367,102.775,103.729,105.142,106.06,107.793,110.765 +1224,1,98.7631,0.03941,86.735,89.708,91.443,92.361,93.775,94.729,96.138,98.763,101.388,102.797,103.751,105.165,106.084,107.818,110.791 +1225,1,98.7834,0.03941,86.753,89.727,91.461,92.38,93.794,94.749,96.158,98.783,101.409,102.818,103.773,105.187,106.105,107.84,110.814 +1226,1,98.8036,0.03942,86.768,89.743,91.478,92.397,93.812,94.767,96.177,98.804,101.431,102.84,103.795,105.21,106.129,107.864,110.84 +1227,1,98.8239,0.03942,86.785,89.761,91.497,92.416,93.831,94.786,96.196,98.824,101.451,102.861,103.816,105.232,106.151,107.887,110.862 +1228,1,98.8442,0.03943,86.8,89.777,91.514,92.434,93.849,94.805,96.215,98.844,101.473,102.884,103.839,105.255,106.174,107.911,110.888 +1229,1,98.8644,0.03943,86.818,89.796,91.533,92.452,93.869,94.824,96.235,98.864,101.494,102.905,103.86,105.276,106.196,107.933,110.911 +1230,1,98.8846,0.03944,86.833,89.812,91.549,92.47,93.887,94.843,96.254,98.885,101.515,102.927,103.883,105.3,106.22,107.957,110.937 +1231,1,98.9049,0.03945,86.847,89.828,91.566,92.487,93.905,94.861,96.273,98.905,101.537,102.949,103.905,105.323,106.243,107.982,110.962 +1232,1,98.9251,0.03945,86.865,89.846,91.585,92.506,93.924,94.88,96.293,98.925,101.557,102.97,103.926,105.344,106.265,108.004,110.985 +1233,1,98.9453,0.03946,86.88,89.862,91.602,92.523,93.942,94.899,96.312,98.945,101.579,102.992,103.949,105.367,106.289,108.028,111.011 +1234,1,98.9655,0.03946,86.898,89.881,91.621,92.542,93.961,94.918,96.331,98.966,101.6,103.013,103.97,105.389,106.31,108.05,111.033 +1235,1,98.9857,0.03947,86.912,89.897,91.638,92.559,93.979,94.936,96.35,98.986,101.621,103.035,103.993,105.412,106.334,108.075,111.059 +1236,1,99.0058,0.03947,86.93,89.915,91.656,92.578,93.998,94.956,96.37,99.006,101.642,103.056,104.014,105.433,106.355,108.097,111.082 +1237,1,99.026,0.03948,86.945,89.931,91.673,92.595,94.016,94.974,96.389,99.026,101.663,103.078,104.036,105.457,106.379,108.121,111.107 +1238,1,99.0461,0.03949,86.959,89.947,91.69,92.613,94.034,94.992,96.408,99.046,101.684,103.1,104.059,105.48,106.403,108.145,111.133 +1239,1,99.0663,0.03949,86.977,89.965,91.708,92.631,94.053,95.012,96.428,99.066,101.705,103.121,104.08,105.501,106.424,108.167,111.156 +1240,1,99.0864,0.0395,86.992,89.981,91.725,92.649,94.071,95.03,96.447,99.086,101.726,103.143,104.102,105.524,106.448,108.192,111.181 +1241,1,99.1065,0.0395,87.009,90,91.744,92.667,94.09,95.049,96.466,99.107,101.747,103.164,104.123,105.546,106.469,108.213,111.204 +1242,1,99.1267,0.03951,87.024,90.016,91.761,92.685,94.108,95.068,96.485,99.127,101.768,103.186,104.146,105.569,106.493,108.238,111.23 +1243,1,99.1468,0.03951,87.041,90.034,91.779,92.703,94.127,95.087,96.505,99.147,101.789,103.207,104.167,105.59,106.514,108.26,111.252 +1244,1,99.1669,0.03952,87.056,90.05,91.796,92.721,94.144,95.105,96.524,99.167,101.81,103.229,104.189,105.613,106.538,108.284,111.278 +1245,1,99.1869,0.03952,87.074,90.068,91.814,92.739,94.163,95.124,96.543,99.187,101.831,103.25,104.21,105.635,106.559,108.306,111.3 +1246,1,99.207,0.03953,87.088,90.084,91.831,92.756,94.181,95.142,96.562,99.207,101.852,103.272,104.233,105.658,106.583,108.33,111.326 +1247,1,99.2271,0.03954,87.103,90.1,91.848,92.774,94.199,95.161,96.581,99.227,101.873,103.293,104.255,105.681,106.606,108.354,111.351 +1248,1,99.2471,0.03954,87.12,90.118,91.866,92.792,94.218,95.18,96.6,99.247,101.894,103.314,104.276,105.702,106.628,108.376,111.374 +1249,1,99.2672,0.03955,87.135,90.134,91.883,92.809,94.236,95.198,96.619,99.267,101.915,103.336,104.299,105.725,106.651,108.4,111.4 +1250,1,99.2872,0.03955,87.152,90.152,91.902,92.828,94.255,95.217,96.639,99.287,101.936,103.357,104.32,105.746,106.673,108.422,111.422 +1251,1,99.3072,0.03956,87.167,90.168,91.918,92.845,94.273,95.235,96.657,99.307,101.957,103.379,104.342,105.769,106.696,108.446,111.447 +1252,1,99.3272,0.03956,87.184,90.186,91.937,92.864,94.291,95.255,96.677,99.327,101.978,103.4,104.363,105.79,106.718,108.468,111.47 +1253,1,99.3472,0.03957,87.199,90.202,91.953,92.881,94.309,95.273,96.696,99.347,101.999,103.422,104.385,105.813,106.741,108.492,111.495 +1254,1,99.3672,0.03957,87.217,90.22,91.972,92.9,94.328,95.292,96.715,99.367,102.019,103.442,104.406,105.835,106.762,108.514,111.518 +1255,1,99.3872,0.03958,87.231,90.236,91.989,92.917,94.346,95.31,96.734,99.387,102.04,103.464,104.428,105.858,106.786,108.538,111.543 +1256,1,99.4072,0.03958,87.249,90.254,92.007,92.935,94.365,95.329,96.753,99.407,102.061,103.485,104.45,105.879,106.807,108.56,111.566 +1257,1,99.4272,0.03959,87.263,90.27,92.024,92.953,94.383,95.347,96.772,99.427,102.082,103.507,104.472,105.902,106.831,108.584,111.591 +1258,1,99.4471,0.0396,87.277,90.286,92.04,92.969,94.4,95.366,96.791,99.447,102.103,103.529,104.494,105.925,106.854,108.609,111.617 +1259,1,99.4671,0.0396,87.295,90.304,92.059,92.988,94.419,95.385,96.81,99.467,102.124,103.55,104.515,105.946,106.875,108.63,111.639 +1260,1,99.487,0.03961,87.309,90.32,92.075,93.005,94.437,95.403,96.829,99.487,102.145,103.571,104.537,105.969,106.899,108.654,111.665 +1261,1,99.5069,0.03961,87.327,90.338,92.094,93.024,94.456,95.422,96.848,99.507,102.165,103.592,104.558,105.99,106.92,108.676,111.687 +1262,1,99.5268,0.03962,87.341,90.353,92.11,93.041,94.473,95.44,96.867,99.527,102.186,103.614,104.58,106.013,106.943,108.7,111.712 +1263,1,99.5467,0.03962,87.359,90.371,92.129,93.059,94.492,95.459,96.886,99.547,102.207,103.634,104.601,106.034,106.965,108.722,111.735 +1264,1,99.5666,0.03963,87.373,90.387,92.145,93.076,94.51,95.477,96.905,99.567,102.228,103.656,104.623,106.057,106.988,108.746,111.76 +1265,1,99.5865,0.03963,87.391,90.405,92.164,93.095,94.529,95.496,96.925,99.587,102.248,103.677,104.644,106.078,107.009,108.768,111.782 +1266,1,99.6064,0.03964,87.405,90.421,92.18,93.112,94.546,95.514,96.943,99.606,102.27,103.699,104.666,106.101,107.033,108.792,111.808 +1267,1,99.6262,0.03964,87.422,90.439,92.199,93.13,94.565,95.533,96.963,99.626,102.29,103.719,104.687,106.122,107.054,108.813,111.83 +1268,1,99.6461,0.03965,87.437,90.455,92.215,93.147,94.583,95.551,96.981,99.646,102.311,103.741,104.709,106.145,107.077,108.837,111.856 +1269,1,99.666,0.03966,87.451,90.471,92.232,93.164,94.6,95.569,97,99.666,102.332,103.763,104.732,106.168,107.1,108.861,111.881 +1270,1,99.6858,0.03966,87.468,90.488,92.25,93.183,94.619,95.588,97.019,99.686,102.352,103.783,104.752,106.189,107.122,108.883,111.903 +1271,1,99.7056,0.03967,87.483,90.504,92.266,93.2,94.637,95.606,97.038,99.706,102.373,103.805,104.775,106.212,107.145,108.907,111.928 +1272,1,99.7254,0.03967,87.5,90.522,92.285,93.218,94.655,95.625,97.057,99.725,102.394,103.826,104.795,106.233,107.166,108.929,111.951 +1273,1,99.7452,0.03968,87.514,90.538,92.301,93.235,94.673,95.643,97.076,99.745,102.415,103.847,104.817,106.255,107.189,108.953,111.976 +1274,1,99.765,0.03968,87.532,90.556,92.32,93.254,94.692,95.662,97.095,99.765,102.435,103.868,104.838,106.276,107.21,108.974,111.998 +1275,1,99.7848,0.03969,87.546,90.571,92.336,93.27,94.709,95.68,97.114,99.785,102.456,103.89,104.86,106.299,107.234,108.998,112.024 +1276,1,99.8046,0.03969,87.563,90.589,92.354,93.289,94.728,95.699,97.133,99.805,102.476,103.91,104.881,106.32,107.255,109.02,112.046 +1277,1,99.8244,0.0397,87.578,90.605,92.371,93.306,94.746,95.717,97.151,99.824,102.497,103.932,104.903,106.343,107.278,109.044,112.071 +1278,1,99.8441,0.0397,87.595,90.623,92.389,93.324,94.764,95.736,97.171,99.844,102.518,103.952,104.924,106.364,107.299,109.065,112.093 +1279,1,99.8639,0.03971,87.609,90.639,92.405,93.341,94.782,95.754,97.189,99.864,102.539,103.974,104.946,106.387,107.322,109.089,112.119 +1280,1,99.8836,0.03971,87.627,90.656,92.424,93.359,94.8,95.773,97.208,99.884,102.559,103.994,104.967,106.408,107.344,109.111,112.141 +1281,1,99.9034,0.03972,87.641,90.672,92.44,93.376,94.818,95.791,97.227,99.903,102.58,104.016,104.989,106.43,107.367,109.135,112.166 +1282,1,99.9231,0.03972,87.658,90.69,92.458,93.395,94.837,95.81,97.246,99.923,102.6,104.037,105.01,106.451,107.388,109.156,112.188 +1283,1,99.9428,0.03973,87.672,90.706,92.475,93.412,94.854,95.827,97.265,99.943,102.621,104.058,105.031,106.474,107.411,109.18,112.213 +1284,1,99.9625,0.03973,87.69,90.723,92.493,93.43,94.873,95.846,97.284,99.963,102.641,104.079,105.052,106.495,107.432,109.202,112.235 +1285,1,99.9822,0.03974,87.704,90.739,92.509,93.447,94.89,95.864,97.302,99.982,102.662,104.1,105.074,106.518,107.455,109.225,112.261 +1286,1,100.0019,0.03975,87.718,90.754,92.526,93.463,94.908,95.882,97.321,100.002,102.683,104.122,105.096,106.54,107.478,109.249,112.286 +1287,1,100.0216,0.03975,87.735,90.772,92.544,93.482,94.926,95.901,97.34,100.022,102.703,104.142,105.117,106.561,107.499,109.271,112.308 +1288,1,100.0412,0.03976,87.749,90.788,92.56,93.499,94.944,95.919,97.358,100.041,102.724,104.164,105.139,106.584,107.522,109.295,112.333 +1289,1,100.0609,0.03976,87.767,90.806,92.578,93.517,94.962,95.938,97.377,100.061,102.744,104.184,105.159,106.605,107.543,109.316,112.355 +1290,1,100.0805,0.03977,87.781,90.821,92.595,93.534,94.98,95.955,97.396,100.081,102.765,104.206,105.181,106.627,107.566,109.34,112.38 +1291,1,100.1002,0.03977,87.798,90.839,92.613,93.552,94.998,95.974,97.415,100.1,102.785,104.226,105.202,106.648,107.588,109.361,112.402 +1292,1,100.1198,0.03978,87.812,90.855,92.629,93.569,95.016,95.992,97.433,100.12,102.806,104.248,105.224,106.671,107.611,109.385,112.427 +1293,1,100.1394,0.03978,87.829,90.872,92.647,93.587,95.034,96.011,97.453,100.139,102.826,104.268,105.245,106.692,107.632,109.407,112.449 +1294,1,100.1591,0.03979,87.844,90.888,92.664,93.604,95.052,96.029,97.471,100.159,102.847,104.29,105.267,106.714,107.655,109.43,112.475 +1295,1,100.1787,0.03979,87.861,90.906,92.682,93.622,95.07,96.047,97.49,100.179,102.867,104.31,105.287,106.735,107.676,109.452,112.497 +1296,1,100.1983,0.0398,87.875,90.921,92.698,93.639,95.088,96.065,97.509,100.198,102.888,104.331,105.309,106.758,107.699,109.476,112.522 +1297,1,100.2178,0.0398,87.892,90.939,92.716,93.657,95.106,96.084,97.527,100.218,102.908,104.352,105.329,106.779,107.72,109.497,112.544 +1298,1,100.2374,0.03981,87.906,90.954,92.732,93.674,95.123,96.102,97.546,100.237,102.929,104.373,105.351,106.801,107.743,109.521,112.569 +1299,1,100.257,0.03981,87.923,90.972,92.75,93.692,95.142,96.12,97.565,100.257,102.949,104.394,105.372,106.822,107.764,109.542,112.591 +1300,1,100.2765,0.03982,87.937,90.987,92.766,93.709,95.159,96.138,97.583,100.277,102.97,104.415,105.394,106.844,107.787,109.566,112.616 +1301,1,100.2961,0.03982,87.954,91.005,92.785,93.727,95.178,96.157,97.602,100.296,102.99,104.435,105.414,106.865,107.808,109.587,112.638 +1302,1,100.3156,0.03983,87.968,91.021,92.801,93.743,95.195,96.174,97.621,100.316,103.011,104.457,105.436,106.888,107.83,109.611,112.663 +1303,1,100.3352,0.03983,87.986,91.038,92.819,93.762,95.214,96.193,97.64,100.335,103.031,104.477,105.457,106.909,107.852,109.632,112.685 +1304,1,100.3547,0.03984,88,91.054,92.835,93.778,95.231,96.211,97.658,100.355,103.051,104.498,105.479,106.931,107.874,109.656,112.71 +1305,1,100.3742,0.03984,88.017,91.071,92.853,93.797,95.249,96.23,97.677,100.374,103.071,104.519,105.499,106.952,107.895,109.677,112.732 +1306,1,100.3937,0.03985,88.031,91.087,92.869,93.813,95.267,96.247,97.695,100.394,103.092,104.54,105.521,106.974,107.918,109.701,112.757 +1307,1,100.4132,0.03985,88.048,91.104,92.887,93.831,95.285,96.266,97.714,100.413,103.112,104.56,105.541,106.995,107.939,109.722,112.779 +1308,1,100.4327,0.03986,88.062,91.12,92.903,93.848,95.302,96.284,97.733,100.433,103.133,104.582,105.563,107.017,107.962,109.746,112.804 +1309,1,100.4522,0.03986,88.079,91.137,92.921,93.866,95.321,96.302,97.752,100.452,103.153,104.602,105.584,107.038,107.983,109.767,112.826 +1310,1,100.4717,0.03987,88.093,91.153,92.938,93.883,95.338,96.32,97.77,100.472,103.174,104.623,105.605,107.061,108.006,109.791,112.851 +1311,1,100.4911,0.03987,88.11,91.17,92.956,93.901,95.356,96.339,97.789,100.491,103.193,104.644,105.626,107.081,108.027,109.812,112.872 +1312,1,100.5106,0.03988,88.124,91.186,92.972,93.917,95.374,96.356,97.807,100.511,103.214,104.665,105.648,107.104,108.05,109.835,112.897 +1313,1,100.53,0.03988,88.141,91.203,92.99,93.936,95.392,96.375,97.826,100.53,103.234,104.685,105.668,107.124,108.07,109.857,112.919 +1314,1,100.5495,0.03989,88.155,91.219,93.006,93.952,95.409,96.392,97.844,100.55,103.255,104.707,105.69,107.147,108.093,109.88,112.944 +1315,1,100.5689,0.0399,88.169,91.234,93.022,93.969,95.426,96.41,97.862,100.569,103.275,104.728,105.711,107.169,108.116,109.904,112.969 +1316,1,100.5883,0.0399,88.186,91.252,93.04,93.987,95.445,96.429,97.881,100.588,103.295,104.748,105.732,107.19,108.137,109.925,112.991 +1317,1,100.6077,0.03991,88.2,91.267,93.056,94.003,95.462,96.446,97.899,100.608,103.316,104.769,105.753,107.212,108.16,109.949,113.016 +1318,1,100.6271,0.03991,88.217,91.284,93.074,94.021,95.48,96.465,97.918,100.627,103.336,104.789,105.774,107.233,108.18,109.97,113.038 +1319,1,100.6465,0.03992,88.231,91.3,93.09,94.038,95.497,96.482,97.937,100.647,103.356,104.811,105.796,107.255,108.203,109.993,113.062 +1320,1,100.6659,0.03992,88.248,91.317,93.108,94.056,95.516,96.501,97.955,100.666,103.376,104.831,105.816,107.276,108.224,110.015,113.084 +1321,1,100.6853,0.03993,88.261,91.333,93.124,94.072,95.533,96.518,97.974,100.685,103.397,104.852,105.838,107.298,108.247,110.038,113.109 +1322,1,100.7046,0.03993,88.278,91.35,93.142,94.09,95.551,96.537,97.992,100.705,103.417,104.872,105.858,107.319,108.268,110.059,113.131 +1323,1,100.724,0.03994,88.292,91.365,93.158,94.107,95.568,96.555,98.011,100.724,103.437,104.893,105.88,107.341,108.29,110.083,113.156 +1324,1,100.7434,0.03994,88.309,91.383,93.176,94.125,95.587,96.573,98.029,100.743,103.457,104.914,105.9,107.362,108.311,110.104,113.178 +1325,1,100.7627,0.03995,88.323,91.398,93.192,94.141,95.604,96.591,98.048,100.763,103.478,104.935,105.922,107.384,108.334,110.127,113.202 +1326,1,100.782,0.03995,88.34,91.416,93.209,94.159,95.622,96.609,98.066,100.782,103.498,104.955,105.942,107.405,108.355,110.148,113.224 +1327,1,100.8013,0.03996,88.354,91.431,93.225,94.176,95.639,96.627,98.084,100.801,103.518,104.976,105.963,107.427,108.377,110.172,113.249 +1328,1,100.8207,0.03996,88.371,91.448,93.243,94.194,95.658,96.645,98.103,100.821,103.538,104.996,105.984,107.447,108.398,110.193,113.271 +1329,1,100.84,0.03997,88.385,91.463,93.259,94.21,95.675,96.663,98.121,100.84,103.559,105.017,106.005,107.47,108.421,110.217,113.295 +1330,1,100.8593,0.03997,88.402,91.481,93.277,94.228,95.693,96.681,98.14,100.859,103.578,105.038,106.026,107.49,108.441,110.238,113.317 +1331,1,100.8786,0.03998,88.415,91.496,93.293,94.245,95.71,96.699,98.158,100.879,103.599,105.059,106.047,107.513,108.464,110.261,113.342 +1332,1,100.8978,0.03998,88.432,91.514,93.311,94.263,95.728,96.717,98.177,100.898,103.619,105.079,106.067,107.533,108.485,110.282,113.363 +1333,1,100.9171,0.03999,88.446,91.529,93.327,94.279,95.745,96.734,98.195,100.917,103.639,105.1,106.089,107.555,108.507,110.305,113.388 +1334,1,100.9364,0.03999,88.463,91.546,93.345,94.297,95.763,96.753,98.214,100.936,103.659,105.12,106.109,107.576,108.528,110.327,113.41 +1335,1,100.9556,0.04,88.477,91.561,93.361,94.313,95.78,96.77,98.232,100.956,103.679,105.141,106.131,107.598,108.551,110.35,113.435 +1336,1,100.9749,0.04,88.493,91.579,93.378,94.331,95.799,96.789,98.251,100.975,103.699,105.161,106.151,107.618,108.571,110.371,113.456 +1337,1,100.9941,0.04001,88.507,91.594,93.394,94.348,95.816,96.806,98.269,100.994,103.72,105.182,106.173,107.641,108.594,110.394,113.481 +1338,1,101.0134,0.04001,88.524,91.611,93.412,94.366,95.834,96.825,98.287,101.013,103.739,105.202,106.193,107.661,108.615,110.415,113.503 +1339,1,101.0326,0.04002,88.538,91.626,93.428,94.382,95.851,96.842,98.305,101.033,103.76,105.223,106.214,107.683,108.637,110.439,113.527 +1340,1,101.0518,0.04002,88.555,91.644,93.446,94.4,95.869,96.86,98.324,101.052,103.779,105.243,106.235,107.704,108.658,110.46,113.549 +1341,1,101.071,0.04003,88.568,91.659,93.462,94.416,95.886,96.878,98.342,101.071,103.8,105.264,106.256,107.726,108.68,110.483,113.574 +1342,1,101.0902,0.04003,88.585,91.676,93.479,94.434,95.904,96.896,98.361,101.09,103.82,105.284,106.276,107.746,108.701,110.504,113.595 +1343,1,101.1094,0.04004,88.599,91.691,93.495,94.45,95.921,96.913,98.379,101.109,103.84,105.305,106.298,107.768,108.724,110.527,113.62 +1344,1,101.1286,0.04004,88.616,91.709,93.513,94.468,95.939,96.932,98.397,101.129,103.86,105.325,106.318,107.789,108.744,110.548,113.642 +1345,1,101.1477,0.04004,88.632,91.726,93.531,94.486,95.957,96.95,98.416,101.148,103.879,105.345,106.338,107.809,108.765,110.569,113.663 +1346,1,101.1669,0.04005,88.646,91.741,93.546,94.502,95.974,96.968,98.434,101.167,103.9,105.366,106.359,107.831,108.787,110.593,113.688 +1347,1,101.1861,0.04005,88.663,91.759,93.564,94.52,95.993,96.986,98.453,101.186,103.919,105.386,106.38,107.852,108.808,110.614,113.709 +1348,1,101.2052,0.04006,88.677,91.774,93.58,94.537,96.009,97.003,98.471,101.205,103.94,105.407,106.401,107.874,108.83,110.637,113.734 +1349,1,101.2244,0.04006,88.693,91.791,93.598,94.554,96.028,97.022,98.489,101.224,103.959,105.427,106.421,107.894,108.851,110.658,113.755 +1350,1,101.2435,0.04007,88.707,91.806,93.613,94.571,96.044,97.039,98.507,101.244,103.98,105.448,106.443,107.916,108.874,110.681,113.78 +1351,1,101.2626,0.04007,88.724,91.823,93.631,94.588,96.063,97.057,98.526,101.263,103.999,105.468,106.463,107.937,108.894,110.702,113.802 +1352,1,101.2817,0.04008,88.737,91.838,93.647,94.605,96.079,97.074,98.544,101.282,104.02,105.489,106.484,107.959,108.917,110.725,113.826 +1353,1,101.3008,0.04008,88.754,91.856,93.665,94.622,96.098,97.093,98.562,101.301,104.039,105.509,106.504,107.979,108.937,110.746,113.848 +1354,1,101.32,0.04009,88.768,91.871,93.68,94.639,96.114,97.11,98.58,101.32,104.06,105.53,106.526,108.001,108.96,110.769,113.872 +1355,1,101.339,0.04009,88.784,91.888,93.698,94.656,96.132,97.128,98.599,101.339,104.079,105.55,106.546,108.022,108.98,110.79,113.894 +1356,1,101.3581,0.0401,88.798,91.903,93.714,94.673,96.149,97.146,98.617,101.358,104.1,105.571,106.567,108.044,109.003,110.813,113.918 +1357,1,101.3772,0.0401,88.815,91.92,93.731,94.69,96.167,97.164,98.635,101.377,104.119,105.591,106.587,108.064,109.023,110.834,113.94 +1358,1,101.3963,0.04011,88.828,91.935,93.747,94.707,96.184,97.181,98.653,101.396,104.139,105.611,106.608,108.086,109.045,110.858,113.964 +1359,1,101.4153,0.04011,88.845,91.952,93.765,94.724,96.202,97.199,98.672,101.415,104.159,105.631,106.628,108.106,109.066,110.878,113.986 +1360,1,101.4344,0.04012,88.859,91.967,93.78,94.741,96.219,97.217,98.69,101.434,104.179,105.652,106.65,108.128,109.088,110.902,114.01 +1361,1,101.4535,0.04012,88.875,91.985,93.798,94.758,96.237,97.235,98.708,101.454,104.199,105.672,106.67,108.149,109.109,110.922,114.032 +1362,1,101.4725,0.04013,88.889,91.999,93.814,94.775,96.254,97.252,98.726,101.473,104.219,105.693,106.691,108.17,109.131,110.946,114.056 +1363,1,101.4915,0.04013,88.905,92.017,93.831,94.792,96.272,97.27,98.744,101.492,104.239,105.713,106.711,108.191,109.152,110.966,114.078 +1364,1,101.5106,0.04014,88.919,92.032,93.847,94.808,96.289,97.288,98.762,101.511,104.259,105.734,106.732,108.213,109.174,110.99,114.102 +1365,1,101.5296,0.04014,88.936,92.049,93.865,94.826,96.307,97.306,98.781,101.53,104.278,105.753,106.752,108.233,109.195,111.01,114.124 +1366,1,101.5486,0.04015,88.949,92.064,93.88,94.842,96.323,97.323,98.799,101.549,104.299,105.774,106.774,108.255,109.217,111.034,114.148 +1367,1,101.5676,0.04015,88.966,92.081,93.898,94.86,96.342,97.341,98.817,101.568,104.318,105.794,106.794,108.275,109.237,111.054,114.169 +1368,1,101.5866,0.04016,88.979,92.096,93.913,94.876,96.358,97.358,98.835,101.587,104.338,105.815,106.815,108.297,109.26,111.077,114.194 +1369,1,101.6056,0.04016,88.996,92.113,93.931,94.894,96.376,97.376,98.853,101.606,104.358,105.835,106.835,108.317,109.28,111.098,114.215 +1370,1,101.6246,0.04017,89.009,92.128,93.947,94.91,96.393,97.394,98.871,101.625,104.378,105.856,106.856,108.339,109.302,111.121,114.24 +1371,1,101.6435,0.04017,89.026,92.145,93.964,94.928,96.411,97.412,98.89,101.644,104.397,105.875,106.876,108.359,109.323,111.142,114.261 +1372,1,101.6625,0.04018,89.04,92.16,93.98,94.944,96.428,97.429,98.907,101.663,104.418,105.896,106.897,108.381,109.345,111.165,114.285 +1373,1,101.6815,0.04018,89.056,92.177,93.997,94.961,96.446,97.447,98.926,101.682,104.437,105.916,106.917,108.402,109.366,111.186,114.307 +1374,1,101.7004,0.04019,89.07,92.192,94.013,94.977,96.462,97.464,98.944,101.7,104.457,105.937,106.939,108.423,109.388,111.209,114.331 +1375,1,101.7194,0.04019,89.086,92.209,94.031,94.995,96.48,97.482,98.962,101.719,104.477,105.956,106.959,108.444,109.408,111.23,114.353 +1376,1,101.7383,0.0402,89.1,92.224,94.046,95.011,96.497,97.499,98.98,101.738,104.497,105.977,106.98,108.466,109.431,111.253,114.377 +1377,1,101.7572,0.0402,89.116,92.241,94.064,95.029,96.515,97.518,98.998,101.757,104.516,105.997,107,108.486,109.451,111.273,114.398 +1378,1,101.7762,0.0402,89.133,92.258,94.081,95.046,96.533,97.536,99.017,101.776,104.536,106.017,107.02,108.506,109.471,111.294,114.42 +1379,1,101.7951,0.04021,89.146,92.273,94.097,95.062,96.549,97.553,99.034,101.795,104.556,106.037,107.041,108.528,109.494,111.317,114.444 +1380,1,101.814,0.04021,89.163,92.29,94.114,95.08,96.567,97.571,99.053,101.814,104.575,106.057,107.061,108.548,109.514,111.338,114.465 +1381,1,101.8329,0.04022,89.176,92.305,94.13,95.096,96.584,97.588,99.07,101.833,104.595,106.078,107.082,108.57,109.536,111.361,114.49 +1382,1,101.8518,0.04022,89.193,92.322,94.147,95.114,96.602,97.606,99.089,101.852,104.615,106.098,107.102,108.59,109.556,111.382,114.511 +1383,1,101.8707,0.04023,89.206,92.337,94.163,95.13,96.619,97.623,99.106,101.871,104.635,106.118,107.123,108.612,109.579,111.405,114.535 +1384,1,101.8896,0.04023,89.223,92.354,94.18,95.147,96.636,97.641,99.125,101.89,104.654,106.138,107.143,108.632,109.599,111.425,114.557 +1385,1,101.9085,0.04024,89.236,92.369,94.196,95.163,96.653,97.658,99.143,101.909,104.674,106.159,107.164,108.654,109.621,111.448,114.581 +1386,1,101.9274,0.04024,89.253,92.386,94.213,95.181,96.671,97.676,99.161,101.927,104.694,106.178,107.184,108.674,109.642,111.469,114.602 +1387,1,101.9462,0.04025,89.266,92.4,94.229,95.197,96.688,97.693,99.179,101.946,104.714,106.199,107.205,108.696,109.664,111.492,114.626 +1388,1,101.9651,0.04025,89.282,92.418,94.246,95.214,96.705,97.711,99.197,101.965,104.733,106.219,107.225,108.716,109.684,111.513,114.648 +1389,1,101.9839,0.04026,89.296,92.432,94.262,95.23,96.722,97.728,99.215,101.984,104.753,106.239,107.246,108.737,109.706,111.536,114.672 +1390,1,102.0028,0.04026,89.312,92.449,94.279,95.248,96.74,97.747,99.233,102.003,104.773,106.259,107.266,108.758,109.727,111.556,114.693 +1391,1,102.0216,0.04027,89.326,92.464,94.295,95.264,96.756,97.764,99.251,102.022,104.793,106.28,107.287,108.779,109.749,111.579,114.718 +1392,1,102.0405,0.04027,89.342,92.481,94.312,95.282,96.774,97.782,99.269,102.041,104.812,106.299,107.307,108.799,109.769,111.6,114.739 +1393,1,102.0593,0.04028,89.356,92.496,94.327,95.297,96.791,97.799,99.287,102.059,104.832,106.32,107.328,108.821,109.791,111.623,114.763 +1394,1,102.0781,0.04028,89.372,92.513,94.345,95.315,96.809,97.817,99.305,102.078,104.851,106.34,107.347,108.841,109.811,111.643,114.784 +1395,1,102.097,0.04029,89.385,92.528,94.36,95.331,96.825,97.834,99.322,102.097,104.872,106.36,107.369,108.863,109.834,111.666,114.809 +1396,1,102.1158,0.04029,89.402,92.545,94.378,95.348,96.843,97.852,99.341,102.116,104.891,106.38,107.388,108.883,109.854,111.687,114.83 +1397,1,102.1346,0.0403,89.415,92.559,94.393,95.364,96.86,97.869,99.358,102.135,104.911,106.401,107.409,108.905,109.876,111.71,114.854 +1398,1,102.1534,0.0403,89.432,92.576,94.411,95.382,96.878,97.887,99.377,102.153,104.93,106.42,107.429,108.925,109.896,111.73,114.875 +1399,1,102.1722,0.0403,89.448,92.593,94.428,95.399,96.895,97.905,99.395,102.172,104.949,106.44,107.449,108.945,109.916,111.751,114.896 +1400,1,102.191,0.04031,89.461,92.608,94.443,95.415,96.912,97.922,99.413,102.191,104.969,106.46,107.47,108.967,109.939,111.774,114.921 +1401,1,102.2097,0.04031,89.478,92.625,94.461,95.433,96.93,97.94,99.431,102.21,104.989,106.48,107.49,108.987,109.959,111.794,114.942 +1402,1,102.2285,0.04032,89.491,92.64,94.476,95.449,96.946,97.956,99.448,102.229,105.009,106.501,107.511,109.008,109.981,111.817,114.966 +1403,1,102.2473,0.04032,89.507,92.657,94.494,95.466,96.964,97.974,99.467,102.247,105.028,106.52,107.531,109.028,110.001,111.838,114.987 +1404,1,102.2661,0.04033,89.521,92.671,94.509,95.482,96.98,97.991,99.484,102.266,105.048,106.541,107.552,109.05,110.023,111.861,115.011 +1405,1,102.2848,0.04033,89.537,92.688,94.526,95.5,96.998,98.009,99.502,102.285,105.067,106.56,107.571,109.07,110.043,111.881,115.032 +1406,1,102.3036,0.04034,89.55,92.703,94.542,95.515,97.015,98.026,99.52,102.304,105.087,106.581,107.592,109.092,110.065,111.904,115.057 +1407,1,102.3223,0.04034,89.567,92.72,94.559,95.533,97.032,98.044,99.538,102.322,105.106,106.6,107.612,109.112,110.086,111.925,115.078 +1408,1,102.3411,0.04035,89.58,92.735,94.574,95.549,97.049,98.061,99.556,102.341,105.126,106.621,107.633,109.133,110.108,111.948,115.102 +1409,1,102.3598,0.04035,89.596,92.751,94.592,95.566,97.067,98.079,99.574,102.36,105.146,106.64,107.653,109.153,110.128,111.968,115.123 +1410,1,102.3785,0.04036,89.61,92.766,94.607,95.582,97.083,98.096,99.592,102.379,105.165,106.661,107.674,109.175,110.15,111.991,115.147 +1411,1,102.3972,0.04036,89.626,92.783,94.624,95.599,97.101,98.114,99.61,102.397,105.185,106.681,107.694,109.195,110.17,112.011,115.168 +1412,1,102.416,0.04037,89.639,92.798,94.64,95.615,97.117,98.131,99.627,102.416,105.205,106.701,107.715,109.217,110.192,112.034,115.193 +1413,1,102.4347,0.04037,89.656,92.815,94.657,95.633,97.135,98.149,99.645,102.435,105.224,106.721,107.734,109.237,110.212,112.055,115.214 +1414,1,102.4534,0.04037,89.672,92.832,94.674,95.65,97.153,98.167,99.664,102.453,105.243,106.74,107.754,109.257,110.232,112.075,115.235 +1415,1,102.4721,0.04038,89.685,92.846,94.69,95.666,97.169,98.184,99.681,102.472,105.263,106.761,107.775,109.278,110.254,112.098,115.259 +1416,1,102.4908,0.04038,89.702,92.863,94.707,95.683,97.187,98.201,99.699,102.491,105.282,106.78,107.795,109.298,110.275,112.119,115.28 +1417,1,102.5095,0.04039,89.715,92.878,94.722,95.699,97.203,98.218,99.717,102.51,105.302,106.801,107.816,109.32,110.297,112.141,115.304 +1418,1,102.5282,0.04039,89.731,92.895,94.74,95.717,97.221,98.236,99.735,102.528,105.321,106.82,107.835,109.34,110.317,112.162,115.325 +1419,1,102.5469,0.0404,89.744,92.909,94.755,95.732,97.238,98.253,99.753,102.547,105.341,106.841,107.856,109.361,110.339,112.185,115.349 +1420,1,102.5655,0.0404,89.761,92.926,94.772,95.75,97.255,98.271,99.771,102.566,105.36,106.86,107.876,109.381,110.359,112.205,115.37 +1421,1,102.5842,0.04041,89.774,92.94,94.788,95.766,97.272,98.288,99.788,102.584,105.38,106.881,107.897,109.403,110.381,112.228,115.395 +1422,1,102.6029,0.04041,89.79,92.957,94.805,95.783,97.289,98.306,99.806,102.603,105.399,106.9,107.916,109.423,110.401,112.248,115.416 +1423,1,102.6215,0.04042,89.803,92.972,94.82,95.799,97.306,98.322,99.824,102.622,105.419,106.921,107.937,109.444,110.423,112.271,115.44 +1424,1,102.6402,0.04042,89.82,92.989,94.837,95.816,97.323,98.34,99.842,102.64,105.438,106.94,107.957,109.464,110.443,112.292,115.461 +1425,1,102.6588,0.04043,89.833,93.003,94.853,95.832,97.34,98.357,99.859,102.659,105.458,106.961,107.978,109.486,110.465,112.314,115.485 +1426,1,102.6775,0.04043,89.849,93.02,94.87,95.849,97.357,98.375,99.878,102.678,105.477,106.98,107.998,109.506,110.485,112.335,115.506 +1427,1,102.6961,0.04044,89.862,93.035,94.885,95.865,97.374,98.392,99.895,102.696,105.497,107,108.018,109.527,110.507,112.357,115.53 +1428,1,102.7148,0.04044,89.879,93.052,94.902,95.882,97.392,98.41,99.913,102.715,105.516,107.02,108.038,109.547,110.527,112.378,115.551 +1429,1,102.7334,0.04044,89.895,93.068,94.92,95.9,97.409,98.427,99.931,102.733,105.536,107.039,108.058,109.567,110.547,112.398,115.572 +1430,1,102.752,0.04045,89.908,93.083,94.935,95.915,97.425,98.444,99.949,102.752,105.555,107.06,108.079,109.589,110.569,112.421,115.596 +1431,1,102.7706,0.04045,89.924,93.1,94.952,95.933,97.443,98.462,99.967,102.771,105.575,107.079,108.098,109.608,110.589,112.441,115.617 +1432,1,102.7893,0.04046,89.937,93.114,94.967,95.949,97.46,98.479,99.984,102.789,105.594,107.1,108.119,109.63,110.611,112.464,115.641 +1433,1,102.8079,0.04046,89.954,93.131,94.985,95.966,97.477,98.497,100.002,102.808,105.614,107.119,108.139,109.65,110.631,112.485,115.662 +1434,1,102.8265,0.04047,89.967,93.146,95,95.982,97.493,98.513,100.02,102.827,105.633,107.14,108.16,109.671,110.653,112.507,115.686 +1435,1,102.8451,0.04047,89.983,93.163,95.017,95.999,97.511,98.531,100.038,102.845,105.652,107.159,108.179,109.691,110.673,112.528,115.707 +1436,1,102.8637,0.04048,89.996,93.177,95.032,96.015,97.527,98.548,100.055,102.864,105.672,107.179,108.2,109.713,110.695,112.55,115.731 +1437,1,102.8823,0.04048,90.012,93.194,95.049,96.032,97.545,98.566,100.073,102.882,105.691,107.199,108.22,109.733,110.715,112.571,115.752 +1438,1,102.9009,0.04049,90.026,93.208,95.065,96.048,97.561,98.583,100.091,102.901,105.711,107.219,108.24,109.754,110.737,112.594,115.776 +1439,1,102.9195,0.04049,90.042,93.225,95.082,96.065,97.579,98.6,100.109,102.92,105.73,107.239,108.26,109.774,110.757,112.614,115.797 +1440,1,102.938,0.0405,90.055,93.239,95.097,96.081,97.595,98.617,100.126,102.938,105.75,107.259,108.281,109.795,110.779,112.637,115.821 +1441,1,102.9566,0.0405,90.071,93.256,95.114,96.098,97.613,98.635,100.144,102.957,105.769,107.278,108.3,109.815,110.799,112.657,115.842 +1442,1,102.9752,0.0405,90.087,93.273,95.131,96.115,97.63,98.653,100.162,102.975,105.788,107.298,108.32,109.835,110.819,112.677,115.863 +1443,1,102.9938,0.04051,90.1,93.288,95.147,96.131,97.647,98.67,100.18,102.994,105.808,107.318,108.341,109.857,110.841,112.7,115.887 +1444,1,103.0123,0.04051,90.117,93.304,95.164,96.148,97.664,98.687,100.198,103.012,105.827,107.337,108.36,109.876,110.861,112.72,115.908 +1445,1,103.0309,0.04052,90.13,93.319,95.179,96.164,97.681,98.704,100.215,103.031,105.847,107.358,108.381,109.898,110.883,112.743,115.932 +1446,1,103.0494,0.04052,90.146,93.336,95.196,96.181,97.698,98.722,100.233,103.049,105.866,107.377,108.401,109.918,110.903,112.763,115.953 +1447,1,103.068,0.04053,90.159,93.35,95.211,96.197,97.715,98.738,100.25,103.068,105.886,107.398,108.421,109.939,110.925,112.786,115.977 +1448,1,103.0865,0.04053,90.175,93.367,95.228,96.214,97.732,98.756,100.268,103.087,105.905,107.417,108.441,109.959,110.945,112.806,115.998 +1449,1,103.1051,0.04054,90.188,93.381,95.244,96.23,97.748,98.773,100.286,103.105,105.924,107.437,108.462,109.98,110.967,112.829,116.022 +1450,1,103.1236,0.04054,90.204,93.398,95.261,96.247,97.766,98.791,100.304,103.124,105.943,107.457,108.481,110,110.987,112.849,116.043 +1451,1,103.1421,0.04055,90.217,93.412,95.276,96.263,97.782,98.807,100.321,103.142,105.963,107.477,108.502,110.022,111.008,112.872,116.067 +1452,1,103.1607,0.04055,90.234,93.429,95.293,96.28,97.8,98.825,100.339,103.161,105.982,107.496,108.522,110.041,111.028,112.892,116.088 +1453,1,103.1792,0.04055,90.25,93.446,95.31,96.297,97.817,98.843,100.357,103.179,106.001,107.516,108.541,110.061,111.048,112.912,116.108 +1454,1,103.1977,0.04056,90.263,93.46,95.325,96.313,97.834,98.86,100.374,103.198,106.021,107.536,108.562,110.083,111.07,112.935,116.132 +1455,1,103.2162,0.04056,90.279,93.477,95.342,96.33,97.851,98.877,100.392,103.216,106.04,107.555,108.581,110.102,111.09,112.955,116.153 +1456,1,103.2348,0.04057,90.292,93.492,95.358,96.346,97.867,98.894,100.41,103.235,106.06,107.576,108.602,110.124,111.112,112.978,116.177 +1457,1,103.2533,0.04057,90.308,93.508,95.375,96.363,97.885,98.912,100.428,103.253,106.079,107.595,108.622,110.144,111.132,112.998,116.198 +1458,1,103.2718,0.04058,90.321,93.523,95.39,96.379,97.901,98.928,100.445,103.272,106.098,107.615,108.642,110.165,111.154,113.021,116.222 +1459,1,103.2903,0.04058,90.338,93.539,95.407,96.396,97.919,98.946,100.463,103.29,106.117,107.635,108.662,110.185,111.174,113.041,116.243 +1460,1,103.3088,0.04059,90.351,93.554,95.422,96.411,97.935,98.963,100.48,103.309,106.137,107.655,108.683,110.206,111.196,113.064,116.267 +1461,1,103.3273,0.04059,90.367,93.57,95.439,96.429,97.952,98.98,100.498,103.327,106.156,107.674,108.702,110.226,111.215,113.084,116.288 +1462,1,103.3458,0.0406,90.38,93.585,95.454,96.444,97.969,98.997,100.516,103.346,106.176,107.695,108.723,110.247,111.237,113.107,116.312 +1463,1,103.3643,0.0406,90.396,93.602,95.471,96.462,97.986,99.015,100.534,103.364,106.195,107.714,108.742,110.267,111.257,113.127,116.333 +1464,1,103.3827,0.0406,90.412,93.618,95.488,96.479,98.004,99.032,100.552,103.383,106.214,107.733,108.762,110.287,111.277,113.147,116.353 +1465,1,103.4012,0.04061,90.425,93.633,95.504,96.494,98.02,99.049,100.569,103.401,106.233,107.753,108.783,110.308,111.299,113.17,116.377 +1466,1,103.4197,0.04061,90.441,93.649,95.521,96.512,98.037,99.067,100.587,103.42,106.252,107.773,108.802,110.328,111.319,113.19,116.398 +1467,1,103.4382,0.04062,90.454,93.664,95.536,96.527,98.054,99.083,100.604,103.438,106.272,107.793,108.823,110.349,111.341,113.213,116.422 +1468,1,103.4566,0.04062,90.47,93.68,95.553,96.544,98.071,99.101,100.622,103.457,106.291,107.812,108.842,110.369,111.36,113.233,116.443 +1469,1,103.4751,0.04063,90.483,93.695,95.568,96.56,98.087,99.118,100.639,103.475,106.311,107.832,108.863,110.39,111.382,113.256,116.467 +1470,1,103.4936,0.04063,90.499,93.711,95.585,96.577,98.105,99.135,100.657,103.494,106.33,107.852,108.882,110.41,111.402,113.276,116.488 +1471,1,103.512,0.04064,90.512,93.726,95.6,96.593,98.121,99.152,100.675,103.512,106.349,107.872,108.903,110.431,111.424,113.298,116.512 +1472,1,103.5305,0.04064,90.528,93.742,95.617,96.61,98.138,99.17,100.693,103.531,106.368,107.891,108.923,110.451,111.444,113.319,116.533 +1473,1,103.5489,0.04065,90.541,93.757,95.632,96.625,98.155,99.186,100.71,103.549,106.388,107.912,108.943,110.473,111.466,113.341,116.556 +1474,1,103.5674,0.04065,90.557,93.773,95.649,96.643,98.172,99.204,100.728,103.567,106.407,107.931,108.963,110.492,111.486,113.361,116.577 +1475,1,103.5858,0.04065,90.574,93.79,95.666,96.66,98.189,99.222,100.746,103.586,106.426,107.95,108.982,110.512,111.505,113.381,116.598 +1476,1,103.6043,0.04066,90.587,93.804,95.681,96.675,98.206,99.238,100.763,103.604,106.446,107.97,109.003,110.533,111.527,113.404,116.622 +1477,1,103.6227,0.04066,90.603,93.821,95.698,96.692,98.223,99.256,100.781,103.623,106.465,107.99,109.022,110.553,111.547,113.424,116.643 +1478,1,103.6412,0.04067,90.616,93.835,95.713,96.708,98.239,99.273,100.798,103.641,106.484,108.01,109.043,110.574,111.569,113.447,116.667 +1479,1,103.6596,0.04067,90.632,93.852,95.73,96.725,98.257,99.29,100.816,103.66,106.503,108.029,109.062,110.594,111.589,113.467,116.688 +1480,1,103.678,0.04068,90.645,93.866,95.746,96.741,98.273,99.307,100.833,103.678,106.523,108.049,109.083,110.615,111.61,113.49,116.711 +1481,1,103.6965,0.04068,90.661,93.883,95.763,96.758,98.29,99.324,100.851,103.697,106.542,108.069,109.103,110.635,111.63,113.51,116.732 +1482,1,103.7149,0.04069,90.674,93.897,95.778,96.773,98.307,99.341,100.868,103.715,106.561,108.089,109.123,110.656,111.652,113.532,116.756 +1483,1,103.7333,0.04069,90.69,93.914,95.795,96.791,98.324,99.359,100.886,103.733,106.58,108.108,109.143,110.676,111.672,113.553,116.777 +1484,1,103.7517,0.04069,90.706,93.931,95.812,96.808,98.341,99.376,100.904,103.752,106.599,108.127,109.162,110.696,111.692,113.573,116.798 +1485,1,103.7701,0.0407,90.719,93.945,95.827,96.823,98.358,99.393,100.921,103.77,106.619,108.147,109.183,110.717,111.714,113.595,116.822 +1486,1,103.7885,0.0407,90.735,93.962,95.844,96.84,98.375,99.41,100.939,103.789,106.638,108.167,109.202,110.737,111.733,113.615,116.842 +1487,1,103.807,0.04071,90.748,93.976,95.859,96.856,98.391,99.427,100.957,103.807,106.657,108.187,109.223,110.758,111.755,113.638,116.866 +1488,1,103.8254,0.04071,90.764,93.993,95.876,96.873,98.409,99.445,100.975,103.825,106.676,108.206,109.242,110.778,111.775,113.658,116.887 +1489,1,103.8438,0.04072,90.777,94.007,95.891,96.889,98.425,99.461,100.992,103.844,106.696,108.226,109.263,110.799,111.797,113.681,116.911 +1490,1,103.8622,0.04072,90.793,94.023,95.908,96.906,98.442,99.479,101.01,103.862,106.715,108.246,109.282,110.819,111.817,113.701,116.932 +1491,1,103.8806,0.04073,90.806,94.038,95.923,96.921,98.458,99.495,101.027,103.881,106.734,108.266,109.303,110.84,111.838,113.724,116.956 +1492,1,103.899,0.04073,90.822,94.054,95.94,96.938,98.476,99.513,101.045,103.899,106.753,108.285,109.322,110.86,111.858,113.744,116.976 +1493,1,103.9174,0.04073,90.838,94.071,95.957,96.955,98.493,99.531,101.063,103.917,106.772,108.304,109.342,110.879,111.878,113.764,116.997 +1494,1,103.9357,0.04074,90.851,94.085,95.972,96.971,98.509,99.547,101.08,103.936,106.792,108.324,109.362,110.901,111.9,113.786,117.021 +1495,1,103.9541,0.04074,90.867,94.102,95.989,96.988,98.527,99.565,101.098,103.954,106.811,108.343,109.382,110.92,111.919,113.806,117.042 +1496,1,103.9725,0.04075,90.88,94.116,96.004,97.003,98.543,99.581,101.115,103.973,106.83,108.364,109.402,110.942,111.941,113.829,117.065 +1497,1,103.9909,0.04075,90.896,94.133,96.021,97.021,98.56,99.599,101.133,103.991,106.849,108.383,109.422,110.961,111.961,113.849,117.086 +1498,1,104.0093,0.04076,90.909,94.147,96.036,97.036,98.576,99.615,101.15,104.009,106.869,108.403,109.442,110.983,111.983,113.872,117.11 +1499,1,104.0277,0.04076,90.925,94.164,96.053,97.053,98.594,99.633,101.168,104.028,106.888,108.422,109.462,111.002,112.003,113.892,117.131 +1500,1,104.046,0.04077,90.937,94.178,96.068,97.069,98.61,99.649,101.185,104.046,106.907,108.443,109.482,111.023,112.024,113.914,117.155 +1501,1,104.0644,0.04077,90.953,94.194,96.085,97.086,98.627,99.667,101.203,104.064,106.926,108.462,109.502,111.043,112.044,113.934,117.175 +1502,1,104.0828,0.04078,90.966,94.209,96.1,97.101,98.643,99.684,101.22,104.083,106.946,108.482,109.522,111.064,112.066,113.957,117.199 +1503,1,104.1011,0.04078,90.982,94.225,96.117,97.118,98.661,99.701,101.238,104.101,106.964,108.501,109.542,111.084,112.086,113.977,117.22 +1504,1,104.1195,0.04078,90.998,94.242,96.134,97.135,98.678,99.719,101.256,104.12,106.983,108.52,109.561,111.104,112.105,113.997,117.241 +1505,1,104.1379,0.04079,91.011,94.256,96.149,97.151,98.694,99.735,101.273,104.138,107.003,108.54,109.582,111.125,112.127,114.02,117.265 +1506,1,104.1562,0.04079,91.027,94.273,96.166,97.168,98.711,99.753,101.291,104.156,107.022,108.56,109.601,111.144,112.147,114.04,117.285 +1507,1,104.1746,0.0408,91.04,94.287,96.181,97.183,98.728,99.769,101.308,104.175,107.041,108.58,109.622,111.166,112.169,114.062,117.309 +1508,1,104.1929,0.0408,91.056,94.303,96.198,97.201,98.745,99.787,101.326,104.193,107.06,108.599,109.641,111.185,112.188,114.082,117.33 +1509,1,104.2113,0.04081,91.069,94.318,96.213,97.216,98.761,99.803,101.343,104.211,107.08,108.619,109.662,111.207,112.21,114.105,117.354 +1510,1,104.2296,0.04081,91.085,94.334,96.229,97.233,98.778,99.821,101.361,104.23,107.099,108.638,109.681,111.226,112.23,114.125,117.374 +1511,1,104.248,0.04082,91.098,94.348,96.244,97.248,98.794,99.838,101.378,104.248,107.118,108.658,109.702,111.248,112.252,114.148,117.398 +1512,1,104.2663,0.04082,91.114,94.365,96.261,97.266,98.812,99.855,101.396,104.266,107.137,108.678,109.721,111.267,112.271,114.168,117.419 +1513,1,104.2847,0.04082,91.13,94.382,96.278,97.283,98.829,99.873,101.413,104.285,107.156,108.697,109.74,111.287,112.291,114.188,117.44 +1514,1,104.303,0.04083,91.143,94.396,96.293,97.298,98.845,99.889,101.431,104.303,107.175,108.717,109.761,111.308,112.313,114.21,117.463 +1515,1,104.3213,0.04083,91.159,94.412,96.31,97.315,98.863,99.907,101.448,104.321,107.194,108.736,109.78,111.327,112.332,114.23,117.484 +1516,1,104.3397,0.04084,91.171,94.427,96.325,97.331,98.879,99.923,101.466,104.34,107.214,108.756,109.801,111.349,112.354,114.253,117.508 +1517,1,104.358,0.04084,91.187,94.443,96.342,97.348,98.896,99.941,101.483,104.358,107.233,108.775,109.82,111.368,112.374,114.273,117.529 +1518,1,104.3763,0.04085,91.2,94.457,96.357,97.363,98.912,99.957,101.5,104.376,107.252,108.795,109.841,111.39,112.396,114.295,117.552 +1519,1,104.3947,0.04085,91.216,94.474,96.374,97.38,98.929,99.975,101.518,104.395,107.271,108.815,109.86,111.409,112.415,114.315,117.573 +1520,1,104.413,0.04086,91.229,94.488,96.389,97.396,98.945,99.991,101.535,104.413,107.291,108.835,109.881,111.43,112.437,114.338,117.597 +1521,1,104.4313,0.04086,91.245,94.505,96.406,97.413,98.963,100.009,101.553,104.431,107.309,108.854,109.9,111.45,112.457,114.358,117.618 +1522,1,104.4496,0.04086,91.261,94.521,96.423,97.43,98.98,100.026,101.571,104.45,107.328,108.873,109.919,111.47,112.476,114.378,117.638 +1523,1,104.4679,0.04087,91.274,94.535,96.438,97.445,98.996,100.043,101.588,104.468,107.348,108.893,109.94,111.491,112.498,114.4,117.662 +1524,1,104.4863,0.04087,91.29,94.552,96.455,97.462,99.014,100.06,101.606,104.486,107.367,108.912,109.959,111.51,112.518,114.421,117.683 +1525,1,104.5046,0.04088,91.303,94.566,96.47,97.478,99.03,100.077,101.623,104.505,107.386,108.932,109.98,111.532,112.54,114.443,117.707 +1526,1,104.5229,0.04088,91.319,94.583,96.486,97.495,99.047,100.094,101.641,104.523,107.405,108.951,109.999,111.551,112.559,114.463,117.727 +1527,1,104.5412,0.04089,91.331,94.597,96.501,97.51,99.063,100.111,101.658,104.541,107.424,108.972,110.019,111.572,112.581,114.486,117.751 +1528,1,104.5595,0.04089,91.347,94.613,96.518,97.527,99.08,100.128,101.676,104.56,107.443,108.991,110.039,111.592,112.601,114.506,117.772 +1529,1,104.5778,0.04089,91.363,94.63,96.535,97.544,99.098,100.146,101.694,104.578,107.462,109.01,110.058,111.612,112.62,114.526,117.792 +1530,1,104.5961,0.0409,91.376,94.644,96.55,97.559,99.114,100.162,101.711,104.596,107.482,109.03,110.079,111.633,112.642,114.548,117.816 +1531,1,104.6144,0.0409,91.392,94.661,96.567,97.577,99.131,100.18,101.728,104.614,107.5,109.049,110.098,111.652,112.662,114.568,117.837 +1532,1,104.6327,0.04091,91.405,94.675,96.582,97.592,99.147,100.196,101.746,104.633,107.52,109.069,110.118,111.674,112.683,114.591,117.861 +1533,1,104.651,0.04091,91.421,94.691,96.599,97.609,99.164,100.214,101.763,104.651,107.539,109.088,110.138,111.693,112.703,114.611,117.881 +1534,1,104.6693,0.04092,91.434,94.705,96.614,97.624,99.18,100.23,101.78,104.669,107.558,109.108,110.158,111.714,112.725,114.633,117.905 +1535,1,104.6876,0.04092,91.45,94.722,96.631,97.641,99.198,100.248,101.798,104.688,107.577,109.127,110.178,111.734,112.745,114.653,117.926 +1536,1,104.7059,0.04093,91.462,94.736,96.646,97.657,99.214,100.264,101.815,104.706,107.597,109.148,110.198,111.755,112.766,114.676,117.949 +1537,1,104.7242,0.04093,91.478,94.753,96.662,97.674,99.231,100.282,101.833,104.724,107.615,109.167,110.217,111.775,112.786,114.696,117.97 +1538,1,104.7425,0.04093,91.494,94.769,96.679,97.691,99.248,100.299,101.851,104.743,107.634,109.186,110.237,111.794,112.806,114.716,117.991 +1539,1,104.7608,0.04094,91.507,94.783,96.694,97.706,99.264,100.316,101.868,104.761,107.654,109.206,110.257,111.815,112.827,114.738,118.015 +1540,1,104.7791,0.04094,91.523,94.8,96.711,97.723,99.282,100.333,101.886,104.779,107.672,109.225,110.277,111.835,112.847,114.758,118.035 +1541,1,104.7974,0.04095,91.536,94.814,96.726,97.739,99.298,100.35,101.903,104.797,107.692,109.245,110.297,111.856,112.869,114.781,118.059 +1542,1,104.8157,0.04095,91.552,94.831,96.743,97.756,99.315,100.367,101.921,104.816,107.711,109.264,110.316,111.876,112.888,114.801,118.08 +1543,1,104.8339,0.04096,91.564,94.845,96.758,97.771,99.331,100.383,101.938,104.834,107.73,109.284,110.337,111.897,112.91,114.823,118.103 +1544,1,104.8522,0.04096,91.58,94.861,96.775,97.788,99.348,100.401,101.955,104.852,107.749,109.303,110.356,111.916,112.93,114.843,118.124 +1545,1,104.8705,0.04097,91.593,94.875,96.79,97.803,99.364,100.417,101.973,104.871,107.768,109.324,110.377,111.938,112.951,114.866,118.148 +1546,1,104.8888,0.04097,91.609,94.892,96.806,97.82,99.382,100.435,101.99,104.889,107.787,109.343,110.396,111.957,112.971,114.886,118.168 +1547,1,104.9071,0.04097,91.625,94.908,96.823,97.837,99.399,100.452,102.008,104.907,107.806,109.362,110.415,111.977,112.991,114.906,118.189 +1548,1,104.9253,0.04098,91.638,94.922,96.838,97.853,99.415,100.469,102.025,104.925,107.825,109.382,110.436,111.998,113.012,114.928,118.213 +1549,1,104.9436,0.04098,91.654,94.939,96.855,97.87,99.432,100.486,102.043,104.944,107.844,109.401,110.455,112.017,113.032,114.948,118.233 +1550,1,104.9619,0.04099,91.667,94.953,96.87,97.885,99.448,100.503,102.06,104.962,107.864,109.421,110.476,112.039,113.054,114.971,118.257 +1551,1,104.9802,0.04099,91.683,94.97,96.887,97.902,99.466,100.52,102.078,104.98,107.883,109.44,110.495,112.058,113.074,114.991,118.278 +1552,1,104.9984,0.041,91.695,94.984,96.902,97.917,99.481,100.537,102.095,104.998,107.902,109.46,110.515,112.079,113.095,115.013,118.302 +1553,1,105.0167,0.041,91.711,95,96.919,97.934,99.499,100.554,102.113,105.017,107.921,109.479,110.535,112.099,113.115,115.033,118.322 +1554,1,105.035,0.041,91.727,95.017,96.935,97.952,99.516,100.572,102.13,105.035,107.94,109.498,110.554,112.118,113.135,115.053,118.343 +1555,1,105.0532,0.04101,91.74,95.031,96.95,97.967,99.532,100.588,102.147,105.053,107.959,109.518,110.574,112.14,113.156,115.076,118.367 +1556,1,105.0715,0.04101,91.756,95.047,96.967,97.984,99.549,100.606,102.165,105.072,107.978,109.537,110.594,112.159,113.176,115.096,118.387 +1557,1,105.0898,0.04102,91.768,95.061,96.982,97.999,99.565,100.622,102.182,105.09,107.997,109.558,110.614,112.18,113.197,115.118,118.411 +1558,1,105.108,0.04102,91.784,95.078,96.999,98.016,99.583,100.639,102.2,105.108,108.016,109.577,110.633,112.2,113.217,115.138,118.432 +1559,1,105.1263,0.04103,91.797,95.092,97.014,98.032,99.599,100.656,102.217,105.126,108.036,109.597,110.654,112.221,113.239,115.161,118.455 +1560,1,105.1445,0.04103,91.813,95.108,97.031,98.048,99.616,100.673,102.235,105.145,108.054,109.616,110.673,112.241,113.258,115.181,118.476 +1561,1,105.1628,0.04104,91.826,95.123,97.046,98.064,99.632,100.69,102.252,105.163,108.074,109.636,110.694,112.262,113.28,115.203,118.5 +1562,1,105.1811,0.04104,91.842,95.139,97.062,98.081,99.649,100.707,102.27,105.181,108.093,109.655,110.713,112.281,113.3,115.223,118.52 +1563,1,105.1993,0.04104,91.858,95.156,97.079,98.098,99.666,100.725,102.287,105.199,108.111,109.674,110.732,112.301,113.319,115.243,118.541 +1564,1,105.2176,0.04105,91.87,95.17,97.094,98.113,99.682,100.741,102.304,105.218,108.131,109.694,110.753,112.322,113.341,115.266,118.565 +1565,1,105.2358,0.04105,91.886,95.186,97.111,98.13,99.7,100.758,102.322,105.236,108.15,109.713,110.772,112.341,113.361,115.285,118.585 +1566,1,105.2541,0.04106,91.899,95.2,97.126,98.145,99.716,100.775,102.339,105.254,108.169,109.733,110.793,112.363,113.382,115.308,118.609 +1567,1,105.2723,0.04106,91.915,95.217,97.143,98.162,99.733,100.792,102.357,105.272,108.188,109.752,110.812,112.382,113.402,115.328,118.63 +1568,1,105.2906,0.04107,91.928,95.231,97.158,98.178,99.749,100.809,102.374,105.291,108.207,109.772,110.832,112.403,113.424,115.35,118.654 +1569,1,105.3088,0.04107,91.943,95.247,97.174,98.195,99.766,100.826,102.392,105.309,108.226,109.791,110.852,112.423,113.443,115.37,118.674 +1570,1,105.3271,0.04107,91.959,95.264,97.191,98.212,99.783,100.844,102.409,105.327,108.245,109.81,110.871,112.442,113.463,115.39,118.695 +1571,1,105.3453,0.04108,91.972,95.278,97.206,98.227,99.799,100.86,102.426,105.345,108.264,109.831,110.891,112.464,113.485,115.413,118.719 +1572,1,105.3635,0.04108,91.988,95.294,97.223,98.244,99.817,100.877,102.444,105.364,108.283,109.85,110.91,112.483,113.504,115.433,118.739 +1573,1,105.3818,0.04109,92.001,95.308,97.238,98.259,99.833,100.894,102.461,105.382,108.302,109.87,110.931,112.504,113.526,115.455,118.763 +1574,1,105.4,0.04109,92.017,95.325,97.254,98.276,99.85,100.911,102.479,105.4,108.321,109.889,110.95,112.524,113.546,115.475,118.783 +1575,1,105.4183,0.0411,92.029,95.339,97.269,98.292,99.866,100.928,102.496,105.418,108.341,109.909,110.971,112.545,113.567,115.498,118.807 +1576,1,105.4365,0.0411,92.045,95.355,97.286,98.309,99.883,100.945,102.514,105.437,108.359,109.928,110.99,112.564,113.587,115.518,118.828 +1577,1,105.4547,0.04111,92.058,95.369,97.301,98.324,99.899,100.962,102.531,105.455,108.379,109.948,111.011,112.586,113.608,115.54,118.852 +1578,1,105.473,0.04111,92.074,95.386,97.318,98.341,99.916,100.979,102.548,105.473,108.398,109.967,111.03,112.605,113.628,115.56,118.872 +1579,1,105.4912,0.04111,92.09,95.402,97.335,98.358,99.933,100.996,102.566,105.491,108.416,109.986,111.049,112.625,113.648,115.58,118.893 +1580,1,105.5094,0.04112,92.102,95.416,97.349,98.373,99.949,101.013,102.583,105.509,108.436,110.006,111.069,112.646,113.669,115.602,118.917 +1581,1,105.5277,0.04112,92.118,95.433,97.366,98.39,99.967,101.03,102.601,105.528,108.455,110.025,111.089,112.665,113.689,115.622,118.937 +1582,1,105.5459,0.04113,92.131,95.447,97.381,98.405,99.983,101.047,102.618,105.546,108.474,110.045,111.109,112.686,113.711,115.645,118.961 +1583,1,105.5641,0.04113,92.147,95.463,97.398,98.422,100,101.064,102.636,105.564,108.493,110.064,111.128,112.706,113.73,115.665,118.981 +1584,1,105.5824,0.04114,92.159,95.478,97.413,98.438,100.016,101.08,102.653,105.582,108.512,110.084,111.149,112.727,113.752,115.687,119.005 +1585,1,105.6006,0.04114,92.175,95.494,97.43,98.455,100.033,101.098,102.67,105.601,108.531,110.103,111.168,112.747,113.772,115.707,119.026 +1586,1,105.6188,0.04114,92.191,95.51,97.446,98.472,100.05,101.115,102.688,105.619,108.55,110.122,111.187,112.766,113.791,115.727,119.046 +1587,1,105.637,0.04115,92.204,95.524,97.461,98.487,100.066,101.132,102.705,105.637,108.569,110.142,111.208,112.787,113.813,115.75,119.07 +1588,1,105.6553,0.04115,92.22,95.541,97.478,98.504,100.083,101.149,102.723,105.655,108.588,110.161,111.227,112.807,113.832,115.77,119.091 +1589,1,105.6735,0.04116,92.232,95.555,97.493,98.519,100.099,101.166,102.74,105.674,108.607,110.181,111.248,112.828,113.854,115.792,119.115 +1590,1,105.6917,0.04116,92.248,95.571,97.51,98.536,100.117,101.183,102.757,105.692,108.626,110.2,111.267,112.847,113.874,115.812,119.135 +1591,1,105.7099,0.04117,92.261,95.585,97.525,98.551,100.132,101.199,102.774,105.71,108.645,110.221,111.287,112.868,113.895,115.834,119.159 +1592,1,105.7281,0.04117,92.277,95.602,97.541,98.568,100.15,101.217,102.792,105.728,108.664,110.24,111.306,112.888,113.915,115.854,119.179 +1593,1,105.7463,0.04117,92.293,95.618,97.558,98.585,100.167,101.234,102.81,105.746,108.683,110.258,111.326,112.907,113.934,115.874,119.2 +1594,1,105.7646,0.04118,92.305,95.632,97.573,98.601,100.183,101.251,102.827,105.765,108.702,110.279,111.346,112.929,113.956,115.897,119.224 +1595,1,105.7828,0.04118,92.321,95.649,97.59,98.618,100.2,101.268,102.845,105.783,108.721,110.298,111.365,112.948,113.976,115.917,119.244 +1596,1,105.801,0.04119,92.334,95.663,97.605,98.633,100.216,101.284,102.862,105.801,108.74,110.318,111.386,112.969,113.997,115.939,119.268 +1597,1,105.8192,0.04119,92.35,95.679,97.621,98.65,100.233,101.302,102.879,105.819,108.759,110.337,111.405,112.989,114.017,115.959,119.289 +1598,1,105.8374,0.0412,92.362,95.693,97.636,98.665,100.249,101.318,102.896,105.837,108.779,110.357,111.426,113.01,114.039,115.981,119.312 +1599,1,105.8556,0.0412,92.378,95.71,97.653,98.682,100.266,101.335,102.914,105.856,108.797,110.376,111.445,113.029,114.058,116.001,119.333 +1600,1,105.8738,0.0412,92.394,95.726,97.67,98.699,100.284,101.353,102.932,105.874,108.816,110.395,111.464,113.049,114.078,116.021,119.353 +1601,1,105.892,0.04121,92.407,95.74,97.685,98.714,100.3,101.369,102.949,105.892,108.835,110.415,111.484,113.07,114.099,116.044,119.377 +1602,1,105.9102,0.04121,92.423,95.757,97.701,98.731,100.317,101.387,102.966,105.91,108.854,110.434,111.504,113.089,114.119,116.064,119.398 +1603,1,105.9284,0.04122,92.435,95.771,97.716,98.746,100.333,101.403,102.983,105.928,108.873,110.454,111.524,113.11,114.141,116.086,119.421 +1604,1,105.9466,0.04122,92.451,95.787,97.733,98.763,100.35,101.42,103.001,105.947,108.892,110.473,111.543,113.13,114.16,116.106,119.442 +1605,1,105.9648,0.04123,92.464,95.801,97.748,98.779,100.366,101.437,103.018,105.965,108.912,110.493,111.564,113.151,114.182,116.128,119.466 +1606,1,105.983,0.04123,92.48,95.818,97.765,98.796,100.383,101.454,103.036,105.983,108.93,110.512,111.583,113.17,114.201,116.148,119.486 +1607,1,106.0012,0.04123,92.496,95.834,97.781,98.812,100.4,101.472,103.053,106.001,108.949,110.531,111.602,113.19,114.221,116.168,119.507 +1608,1,106.0194,0.04124,92.508,95.848,97.796,98.828,100.416,101.488,103.07,106.019,108.968,110.551,111.623,113.211,114.243,116.191,119.531 +1609,1,106.0376,0.04124,92.524,95.865,97.813,98.845,100.433,101.505,103.088,106.038,108.987,110.57,111.642,113.231,114.262,116.211,119.551 +1610,1,106.0558,0.04125,92.537,95.878,97.828,98.86,100.449,101.522,103.105,106.056,109.007,110.59,111.662,113.252,114.284,116.233,119.575 +1611,1,106.074,0.04125,92.553,95.895,97.844,98.877,100.467,101.539,103.123,106.074,109.025,110.609,111.681,113.271,114.304,116.253,119.595 +1612,1,106.0922,0.04126,92.565,95.909,97.859,98.892,100.482,101.555,103.14,106.092,109.045,110.629,111.702,113.292,114.325,116.275,119.619 +1613,1,106.1104,0.04126,92.581,95.925,97.876,98.909,100.5,101.573,103.157,106.11,109.063,110.648,111.721,113.312,114.345,116.295,119.64 +1614,1,106.1286,0.04127,92.594,95.939,97.891,98.924,100.515,101.589,103.174,106.129,109.083,110.668,111.742,113.333,114.366,116.318,119.664 +1615,1,106.1467,0.04127,92.609,95.956,97.908,98.941,100.533,101.606,103.192,106.147,109.101,110.687,111.761,113.352,114.386,116.338,119.684 +1616,1,106.1649,0.04127,92.625,95.972,97.924,98.958,100.55,101.624,103.21,106.165,109.12,110.706,111.78,113.372,114.405,116.358,119.705 +1617,1,106.1831,0.04128,92.638,95.986,97.939,98.973,100.566,101.64,103.227,106.183,109.14,110.726,111.8,113.393,114.427,116.38,119.728 +1618,1,106.2013,0.04128,92.654,96.003,97.956,98.99,100.583,101.658,103.244,106.201,109.158,110.745,111.82,113.412,114.447,116.4,119.749 +1619,1,106.2195,0.04129,92.666,96.017,97.971,99.005,100.599,101.674,103.261,106.22,109.178,110.765,111.84,113.434,114.468,116.422,119.773 +1620,1,106.2377,0.04129,92.682,96.033,97.987,99.022,100.616,101.691,103.279,106.238,109.196,110.784,111.859,113.453,114.488,116.442,119.793 +1621,1,106.2558,0.0413,92.695,96.047,98.002,99.038,100.632,101.708,103.296,106.256,109.216,110.804,111.88,113.474,114.509,116.465,119.817 +1622,1,106.274,0.0413,92.711,96.063,98.019,99.055,100.649,101.725,103.314,106.274,109.234,110.823,111.899,113.493,114.529,116.485,119.837 +1623,1,106.2922,0.0413,92.726,96.08,98.036,99.072,100.666,101.742,103.331,106.292,109.253,110.842,111.918,113.513,114.549,116.505,119.858 +1624,1,106.3104,0.04131,92.739,96.094,98.051,99.087,100.682,101.759,103.348,106.31,109.273,110.862,111.939,113.534,114.57,116.527,119.882 +1625,1,106.3285,0.04131,92.755,96.11,98.067,99.104,100.699,101.776,103.366,106.329,109.291,110.881,111.958,113.553,114.59,116.547,119.902 +1626,1,106.3467,0.04132,92.767,96.124,98.082,99.119,100.715,101.792,103.383,106.347,109.311,110.901,111.978,113.575,114.611,116.569,119.926 +1627,1,106.3649,0.04132,92.783,96.141,98.099,99.136,100.732,101.81,103.401,106.365,109.329,110.92,111.997,113.594,114.631,116.589,119.946 +1628,1,106.3831,0.04132,92.799,96.157,98.116,99.153,100.75,101.827,103.418,106.383,109.348,110.939,112.016,113.613,114.651,116.609,119.967 +1629,1,106.4012,0.04133,92.812,96.171,98.13,99.168,100.765,101.843,103.435,106.401,109.367,110.959,112.037,113.635,114.672,116.631,119.991 +1630,1,106.4194,0.04133,92.828,96.187,98.147,99.185,100.783,101.861,103.453,106.419,109.386,110.978,112.056,113.654,114.692,116.651,120.011 +1631,1,106.4376,0.04134,92.84,96.201,98.162,99.2,100.799,101.877,103.47,106.438,109.405,110.998,112.077,113.675,114.713,116.674,120.035 +1632,1,106.4557,0.04134,92.856,96.218,98.179,99.217,100.816,101.894,103.487,106.456,109.424,111.017,112.096,113.695,114.733,116.694,120.055 +1633,1,106.4739,0.04135,92.869,96.232,98.193,99.232,100.832,101.911,103.504,106.474,109.443,111.037,112.116,113.716,114.754,116.716,120.079 +1634,1,106.4921,0.04135,92.884,96.248,98.21,99.249,100.849,101.928,103.522,106.492,109.462,111.056,112.135,113.735,114.774,116.736,120.1 +1635,1,106.5102,0.04135,92.9,96.265,98.227,99.266,100.866,101.946,103.54,106.51,109.481,111.075,112.154,113.754,114.794,116.756,120.12 +1636,1,106.5284,0.04136,92.913,96.278,98.242,99.281,100.882,101.962,103.557,106.528,109.5,111.095,112.175,113.776,114.815,116.778,120.144 +1637,1,106.5465,0.04136,92.929,96.295,98.258,99.298,100.899,101.979,103.574,106.547,109.519,111.114,112.194,113.795,114.835,116.798,120.164 +1638,1,106.5647,0.04137,92.941,96.309,98.273,99.313,100.915,101.995,103.591,106.565,109.538,111.134,112.215,113.816,114.856,116.821,120.188 +1639,1,106.5829,0.04137,92.957,96.325,98.29,99.33,100.932,102.013,103.609,106.583,109.557,111.153,112.234,113.836,114.876,116.841,120.209 +1640,1,106.601,0.04138,92.97,96.339,98.305,99.345,100.948,102.029,103.626,106.601,109.576,111.173,112.254,113.857,114.897,116.863,120.232 +1641,1,106.6192,0.04138,92.985,96.356,98.321,99.362,100.965,102.047,103.643,106.619,109.595,111.192,112.273,113.876,114.917,116.883,120.253 +1642,1,106.6373,0.04138,93.001,96.372,98.338,99.379,100.982,102.064,103.661,106.637,109.614,111.211,112.292,113.895,114.937,116.903,120.273 +1643,1,106.6555,0.04139,93.014,96.386,98.353,99.394,100.998,102.08,103.678,106.656,109.633,111.231,112.313,113.917,114.958,116.925,120.297 +1644,1,106.6736,0.04139,93.03,96.402,98.369,99.411,101.015,102.098,103.696,106.674,109.652,111.25,112.332,113.936,114.978,116.945,120.318 +1645,1,106.6918,0.0414,93.042,96.416,98.384,99.426,101.031,102.114,103.713,106.692,109.671,111.27,112.352,113.957,114.999,116.967,120.341 +1646,1,106.7099,0.0414,93.058,96.433,98.401,99.443,101.048,102.131,103.73,106.71,109.69,111.289,112.372,113.977,115.019,116.987,120.362 +1647,1,106.7281,0.04141,93.07,96.447,98.416,99.458,101.064,102.147,103.747,106.728,109.709,111.309,112.392,113.998,115.04,117.01,120.386 +1648,1,106.7462,0.04141,93.086,96.463,98.432,99.475,101.081,102.165,103.765,106.746,109.728,111.328,112.411,114.017,115.06,117.029,120.406 +1649,1,106.7644,0.04141,93.102,96.479,98.449,99.492,101.099,102.182,103.782,106.764,109.746,111.347,112.43,114.036,115.08,117.049,120.427 +1650,1,106.7825,0.04142,93.115,96.493,98.464,99.507,101.114,102.198,103.799,106.783,109.766,111.367,112.451,114.058,115.101,117.072,120.45 +1651,1,106.8006,0.04142,93.13,96.51,98.481,99.524,101.131,102.216,103.817,106.801,109.784,111.385,112.47,114.077,115.121,117.092,120.471 +1652,1,106.8188,0.04143,93.143,96.524,98.495,99.539,101.147,102.232,103.834,106.819,109.804,111.406,112.49,114.098,115.142,117.114,120.495 +1653,1,106.8369,0.04143,93.159,96.54,98.512,99.556,101.164,102.249,103.851,106.837,109.822,111.424,112.509,114.117,115.162,117.134,120.515 +1654,1,106.8551,0.04144,93.171,96.554,98.527,99.572,101.18,102.266,103.868,106.855,109.842,111.445,112.53,114.139,115.183,117.156,120.539 +1655,1,106.8732,0.04144,93.187,96.57,98.543,99.588,101.197,102.283,103.886,106.873,109.86,111.463,112.549,114.158,115.203,117.176,120.559 +1656,1,106.8913,0.04144,93.203,96.587,98.56,99.605,101.215,102.3,103.904,106.891,109.879,111.482,112.568,114.177,115.222,117.196,120.58 +1657,1,106.9095,0.04145,93.215,96.601,98.575,99.62,101.23,102.317,103.921,106.91,109.898,111.502,112.589,114.199,115.244,117.218,120.604 +1658,1,106.9276,0.04145,93.231,96.617,98.592,99.637,101.248,102.334,103.938,106.928,109.917,111.521,112.608,114.218,115.264,117.238,120.624 +1659,1,106.9457,0.04146,93.244,96.631,98.606,99.652,101.263,102.35,103.955,106.946,109.936,111.541,112.628,114.239,115.285,117.261,120.648 +1660,1,106.9639,0.04146,93.26,96.647,98.623,99.669,101.281,102.368,103.973,106.964,109.955,111.56,112.647,114.258,115.305,117.281,120.668 +1661,1,106.982,0.04147,93.272,96.661,98.638,99.685,101.296,102.384,103.99,106.982,109.974,111.58,112.668,114.279,115.326,117.303,120.692 +1662,1,107.0001,0.04147,93.288,96.677,98.654,99.701,101.313,102.401,104.007,107,109.993,111.599,112.687,114.299,115.346,117.323,120.712 +1663,1,107.0183,0.04147,93.304,96.694,98.671,99.718,101.331,102.419,104.025,107.018,110.012,111.618,112.706,114.318,115.365,117.343,120.733 +1664,1,107.0364,0.04148,93.316,96.708,98.686,99.733,101.346,102.435,104.042,107.036,110.031,111.638,112.726,114.339,115.387,117.365,120.757 +1665,1,107.0545,0.04148,93.332,96.724,98.703,99.75,101.364,102.452,104.059,107.055,110.05,111.657,112.745,114.359,115.406,117.385,120.777 +1666,1,107.0727,0.04149,93.345,96.738,98.717,99.766,101.379,102.468,104.076,107.073,110.069,111.677,112.766,114.38,115.428,117.407,120.801 +1667,1,107.0908,0.04149,93.36,96.754,98.734,99.782,101.397,102.486,104.094,107.091,110.088,111.696,112.785,114.399,115.448,117.427,120.821 +1668,1,107.1089,0.04149,93.376,96.771,98.751,99.799,101.414,102.503,104.112,107.109,110.106,111.715,112.804,114.419,115.467,117.447,120.842 +1669,1,107.127,0.0415,93.389,96.785,98.765,99.814,101.43,102.519,104.128,107.127,110.126,111.735,112.824,114.44,115.489,117.469,120.865 +1670,1,107.1452,0.0415,93.404,96.801,98.782,99.831,101.447,102.537,104.146,107.145,110.144,111.754,112.844,114.459,115.508,117.489,120.886 +1671,1,107.1633,0.04151,93.417,96.815,98.797,99.846,101.463,102.553,104.163,107.163,110.164,111.774,112.864,114.48,115.53,117.512,120.91 +1672,1,107.1814,0.04151,93.433,96.831,98.814,99.863,101.48,102.57,104.181,107.181,110.182,111.793,112.883,114.5,115.549,117.532,120.93 +1673,1,107.1995,0.04152,93.445,96.845,98.828,99.878,101.495,102.586,104.197,107.2,110.202,111.813,112.904,114.521,115.571,117.554,120.954 +1674,1,107.2176,0.04152,93.461,96.861,98.845,99.895,101.513,102.604,104.215,107.218,110.22,111.831,112.923,114.54,115.59,117.574,120.974 +1675,1,107.2358,0.04152,93.477,96.878,98.862,99.912,101.53,102.621,104.233,107.236,110.239,111.85,112.942,114.559,115.61,117.594,120.995 +1676,1,107.2539,0.04153,93.489,96.892,98.876,99.927,101.546,102.637,104.25,107.254,110.258,111.87,112.962,114.58,115.631,117.616,121.019 +1677,1,107.272,0.04153,93.505,96.908,98.893,99.944,101.563,102.655,104.267,107.272,110.277,111.889,112.981,114.6,115.651,117.636,121.039 +1678,1,107.2901,0.04154,93.517,96.922,98.908,99.959,101.578,102.671,104.284,107.29,110.296,111.909,113.002,114.621,115.672,117.658,121.063 +1679,1,107.3082,0.04154,93.533,96.938,98.924,99.976,101.596,102.688,104.302,107.308,110.315,111.928,113.021,114.64,115.692,117.678,121.083 +1680,1,107.3263,0.04154,93.549,96.955,98.941,99.993,101.613,102.706,104.319,107.326,110.333,111.947,113.04,114.66,115.712,117.698,121.104 +1681,1,107.3444,0.04155,93.561,96.969,98.956,100.008,101.628,102.722,104.336,107.344,110.353,111.967,113.06,114.681,115.733,117.72,121.127 +1682,1,107.3625,0.04155,93.577,96.985,98.972,100.025,101.646,102.739,104.354,107.363,110.371,111.986,113.079,114.7,115.753,117.74,121.148 +1683,1,107.3806,0.04156,93.59,96.999,98.987,100.04,101.661,102.755,104.371,107.381,110.391,112.006,113.1,114.721,115.774,117.762,121.171 +1684,1,107.3988,0.04156,93.606,97.015,99.004,100.057,101.679,102.773,104.388,107.399,110.409,112.025,113.119,114.741,115.794,117.782,121.192 +1685,1,107.4169,0.04157,93.618,97.029,99.019,100.072,101.694,102.789,104.405,107.417,110.429,112.045,113.139,114.762,115.815,117.805,121.216 +1686,1,107.435,0.04157,93.634,97.045,99.035,100.089,101.711,102.806,104.423,107.435,110.447,112.064,113.159,114.781,115.835,117.825,121.236 +1687,1,107.4531,0.04157,93.65,97.062,99.052,100.106,101.729,102.824,104.44,107.453,110.466,112.083,113.178,114.8,115.854,117.844,121.257 +1688,1,107.4712,0.04158,93.662,97.076,99.067,100.121,101.744,102.84,104.457,107.471,110.485,112.103,113.198,114.821,115.876,117.867,121.28 +1689,1,107.4893,0.04158,93.678,97.092,99.083,100.138,101.762,102.857,104.475,107.489,110.504,112.122,113.217,114.841,115.895,117.887,121.301 +1690,1,107.5074,0.04159,93.69,97.106,99.098,100.153,101.777,102.873,104.492,107.507,110.523,112.142,113.238,114.862,115.917,117.909,121.325 +1691,1,107.5255,0.04159,93.706,97.122,99.115,100.17,101.794,102.891,104.509,107.526,110.542,112.16,113.257,114.881,115.936,117.929,121.345 +1692,1,107.5436,0.0416,93.718,97.136,99.129,100.185,101.81,102.907,104.526,107.544,110.561,112.18,113.277,114.902,115.958,117.951,121.369 +1693,1,107.5617,0.0416,93.734,97.152,99.146,100.202,101.827,102.924,104.544,107.562,110.58,112.199,113.296,114.922,115.977,117.971,121.389 +1694,1,107.5798,0.0416,93.75,97.169,99.163,100.219,101.844,102.941,104.561,107.58,110.598,112.218,113.315,114.941,115.997,117.991,121.41 +1695,1,107.5979,0.04161,93.762,97.182,99.177,100.234,101.86,102.958,104.578,107.598,110.618,112.238,113.336,114.962,116.018,118.013,121.433 +1696,1,107.616,0.04161,93.778,97.199,99.194,100.251,101.877,102.975,104.596,107.616,110.636,112.257,113.355,114.981,116.038,118.033,121.454 +1697,1,107.6341,0.04162,93.791,97.213,99.209,100.266,101.893,102.991,104.613,107.634,110.656,112.277,113.375,115.003,116.06,118.056,121.478 +1698,1,107.6522,0.04162,93.806,97.229,99.225,100.282,101.91,103.008,104.63,107.652,110.674,112.296,113.394,115.022,116.079,118.075,121.498 +1699,1,107.6702,0.04162,93.822,97.245,99.242,100.299,101.927,103.026,104.648,107.67,110.693,112.315,113.413,115.041,116.098,118.095,121.518 +1700,1,107.6883,0.04163,93.835,97.259,99.257,100.314,101.943,103.042,104.665,107.688,110.712,112.335,113.434,115.062,116.12,118.117,121.542 +1701,1,107.7064,0.04163,93.85,97.275,99.273,100.331,101.96,103.059,104.682,107.706,110.731,112.354,113.453,115.082,116.14,118.137,121.562 +1702,1,107.7245,0.04164,93.863,97.289,99.288,100.346,101.976,103.075,104.699,107.725,110.75,112.374,113.473,115.103,116.161,118.16,121.586 +1703,1,107.7426,0.04164,93.879,97.306,99.305,100.363,101.993,103.093,104.717,107.743,110.769,112.392,113.492,115.122,116.181,118.18,121.607 +1704,1,107.7607,0.04165,93.891,97.32,99.319,100.378,102.009,103.109,104.733,107.761,110.788,112.412,113.513,115.143,116.202,118.202,121.63 +1705,1,107.7788,0.04165,93.907,97.336,99.336,100.395,102.026,103.126,104.751,107.779,110.807,112.431,113.532,115.163,116.222,118.222,121.651 +1706,1,107.7969,0.04165,93.923,97.352,99.353,100.412,102.043,103.144,104.769,107.797,110.825,112.45,113.551,115.182,116.241,118.242,121.671 +1707,1,107.8149,0.04166,93.935,97.366,99.367,100.427,102.059,103.16,104.785,107.815,110.844,112.47,113.571,115.203,116.263,118.264,121.695 +1708,1,107.833,0.04166,93.951,97.382,99.384,100.444,102.076,103.177,104.803,107.833,110.863,112.489,113.59,115.222,116.282,118.284,121.715 +1709,1,107.8511,0.04167,93.963,97.396,99.399,100.459,102.092,103.193,104.82,107.851,110.882,112.509,113.611,115.243,116.304,118.306,121.739 +1710,1,107.8692,0.04167,93.979,97.412,99.415,100.476,102.109,103.211,104.837,107.869,110.901,112.528,113.63,115.263,116.323,118.326,121.76 +1711,1,107.8873,0.04167,93.995,97.429,99.432,100.493,102.126,103.228,104.855,107.887,110.92,112.547,113.649,115.282,116.343,118.346,121.78 +1712,1,107.9053,0.04168,94.007,97.443,99.446,100.508,102.142,103.244,104.872,107.905,110.939,112.567,113.669,115.303,116.364,118.368,121.804 +1713,1,107.9234,0.04168,94.023,97.459,99.463,100.524,102.159,103.261,104.889,107.923,110.957,112.586,113.688,115.322,116.384,118.388,121.824 +1714,1,107.9415,0.04169,94.035,97.473,99.478,100.54,102.174,103.277,104.906,107.942,110.977,112.606,113.709,115.343,116.405,118.41,121.848 +1715,1,107.9596,0.04169,94.051,97.489,99.494,100.556,102.192,103.295,104.924,107.96,110.995,112.624,113.728,115.363,116.425,118.43,121.868 +1716,1,107.9777,0.04169,94.067,97.505,99.511,100.573,102.209,103.312,104.941,107.978,111.014,112.643,113.747,115.382,116.444,118.45,121.889 +1717,1,107.9957,0.0417,94.079,97.519,99.526,100.588,102.224,103.328,104.958,107.996,111.033,112.663,113.767,115.403,116.466,118.472,121.912 +1718,1,108.0138,0.0417,94.095,97.536,99.542,100.605,102.241,103.346,104.976,108.014,111.052,112.682,113.786,115.423,116.485,118.492,121.933 +1719,1,108.0319,0.04171,94.107,97.549,99.557,100.62,102.257,103.362,104.993,108.032,111.071,112.702,113.807,115.444,116.507,118.514,121.957 +1720,1,108.0499,0.04171,94.123,97.566,99.574,100.637,102.274,103.379,105.01,108.05,111.09,112.721,113.826,115.463,116.526,118.534,121.977 +1721,1,108.068,0.04172,94.135,97.579,99.588,100.652,102.29,103.395,105.027,108.068,111.109,112.741,113.846,115.484,116.548,118.557,122.001 +1722,1,108.0861,0.04172,94.151,97.596,99.605,100.669,102.307,103.412,105.045,108.086,111.128,112.76,113.865,115.503,116.567,118.576,122.021 +1723,1,108.1041,0.04172,94.167,97.612,99.622,100.686,102.324,103.43,105.062,108.104,111.146,112.779,113.884,115.523,116.587,118.596,122.041 +1724,1,108.1222,0.04173,94.179,97.626,99.636,100.701,102.34,103.446,105.079,108.122,111.165,112.799,113.904,115.544,116.608,118.619,122.065 +1725,1,108.1403,0.04173,94.195,97.642,99.653,100.718,102.357,103.463,105.097,108.14,111.184,112.817,113.924,115.563,116.628,118.638,122.086 +1726,1,108.1583,0.04174,94.207,97.656,99.667,100.733,102.373,103.479,105.113,108.158,111.203,112.837,113.944,115.584,116.649,118.661,122.109 +1727,1,108.1764,0.04174,94.223,97.672,99.684,100.749,102.39,103.497,105.131,108.176,111.222,112.856,113.963,115.603,116.669,118.681,122.13 +1728,1,108.1945,0.04174,94.239,97.689,99.701,100.766,102.407,103.514,105.148,108.195,111.241,112.875,113.982,115.623,116.688,118.7,122.15 +1729,1,108.2125,0.04175,94.251,97.702,99.715,100.781,102.423,103.53,105.165,108.213,111.26,112.895,114.002,115.644,116.71,118.723,122.174 +1730,1,108.2306,0.04175,94.267,97.719,99.732,100.798,102.44,103.547,105.183,108.231,111.278,112.914,114.021,115.663,116.729,118.742,122.194 +1731,1,108.2487,0.04176,94.279,97.733,99.747,100.813,102.455,103.564,105.2,108.249,111.298,112.934,114.042,115.684,116.751,118.765,122.218 +1732,1,108.2667,0.04176,94.295,97.749,99.763,100.83,102.473,103.581,105.217,108.267,111.316,112.953,114.061,115.703,116.77,118.785,122.238 +1733,1,108.2848,0.04176,94.311,97.765,99.78,100.847,102.49,103.598,105.235,108.285,111.335,112.972,114.08,115.723,116.79,118.804,122.259 +1734,1,108.3028,0.04177,94.323,97.779,99.794,100.862,102.505,103.614,105.252,108.303,111.354,112.991,114.1,115.744,116.811,118.827,122.282 +1735,1,108.3209,0.04177,94.339,97.795,99.811,100.879,102.522,103.631,105.269,108.321,111.373,113.01,114.119,115.763,116.831,118.847,122.303 +1736,1,108.3389,0.04178,94.351,97.809,99.826,100.894,102.538,103.648,105.286,108.339,111.392,113.03,114.14,115.784,116.852,118.869,122.327 +1737,1,108.357,0.04178,94.367,97.825,99.842,100.91,102.555,103.665,105.303,108.357,111.411,113.049,114.159,115.804,116.872,118.889,122.347 +1738,1,108.375,0.04179,94.379,97.839,99.857,100.925,102.571,103.681,105.32,108.375,111.43,113.069,114.179,115.825,116.893,118.911,122.371 +1739,1,108.3931,0.04179,94.395,97.855,99.874,100.942,102.588,103.698,105.338,108.393,111.448,113.088,114.198,115.844,116.913,118.931,122.391 +1740,1,108.4112,0.04179,94.411,97.872,99.89,100.959,102.605,103.716,105.355,108.411,111.467,113.107,114.217,115.863,116.932,118.951,122.412 +1741,1,108.4292,0.0418,94.423,97.885,99.905,100.974,102.621,103.732,105.372,108.429,111.486,113.127,114.238,115.884,116.954,118.973,122.435 +1742,1,108.4473,0.0418,94.439,97.902,99.921,100.991,102.638,103.749,105.39,108.447,111.505,113.146,114.257,115.904,116.973,118.993,122.456 +1743,1,108.4653,0.04181,94.451,97.915,99.936,101.006,102.654,103.765,105.407,108.465,111.524,113.165,114.277,115.925,116.995,119.015,122.479 +1744,1,108.4833,0.04181,94.467,97.932,99.953,101.023,102.671,103.782,105.424,108.483,111.543,113.184,114.296,115.944,117.014,119.035,122.5 +1745,1,108.5014,0.04181,94.483,97.948,99.969,101.04,102.688,103.8,105.442,108.501,111.561,113.203,114.315,115.963,117.034,119.055,122.52 +1746,1,108.5194,0.04182,94.495,97.962,99.984,101.055,102.703,103.816,105.458,108.519,111.58,113.223,114.335,115.984,117.055,119.077,122.544 +1747,1,108.5375,0.04182,94.511,97.978,100.001,101.071,102.72,103.833,105.476,108.538,111.599,113.242,114.355,116.004,117.074,119.097,122.564 +1748,1,108.5555,0.04183,94.523,97.992,100.015,101.086,102.736,103.849,105.493,108.556,111.618,113.262,114.375,116.025,117.096,119.119,122.588 +1749,1,108.5736,0.04183,94.539,98.008,100.032,101.103,102.753,103.866,105.51,108.574,111.637,113.281,114.394,116.044,117.115,119.139,122.608 +1750,1,108.5916,0.04183,94.555,98.024,100.048,101.12,102.77,103.884,105.528,108.592,111.655,113.299,114.413,116.063,117.135,119.159,122.629 +1751,1,108.6097,0.04184,94.567,98.038,100.063,101.135,102.786,103.9,105.545,108.61,111.675,113.319,114.433,116.084,117.156,119.181,122.652 +1752,1,108.6277,0.04184,94.583,98.054,100.08,101.152,102.803,103.917,105.562,108.628,111.693,113.338,114.452,116.104,117.176,119.201,122.673 +1753,1,108.6457,0.04185,94.595,98.068,100.094,101.167,102.819,103.933,105.579,108.646,111.712,113.358,114.473,116.125,117.197,119.223,122.696 +1754,1,108.6638,0.04185,94.611,98.085,100.111,101.184,102.836,103.951,105.597,108.664,111.731,113.377,114.492,116.144,117.217,119.243,122.717 +1755,1,108.6818,0.04185,94.626,98.101,100.127,101.2,102.853,103.968,105.614,108.682,111.75,113.396,114.511,116.163,117.236,119.263,122.737 +1756,1,108.6998,0.04186,94.639,98.115,100.142,101.215,102.869,103.984,105.631,108.7,111.769,113.416,114.531,116.184,117.258,119.285,122.761 +1757,1,108.7179,0.04186,94.654,98.131,100.159,101.232,102.886,104.001,105.648,108.718,111.787,113.435,114.55,116.204,117.277,119.305,122.781 +1758,1,108.7359,0.04187,94.667,98.145,100.173,101.247,102.901,104.017,105.665,108.736,111.807,113.455,114.571,116.225,117.299,119.327,122.805 +1759,1,108.7539,0.04187,94.682,98.161,100.19,101.264,102.918,104.034,105.683,108.754,111.825,113.473,114.589,116.244,117.318,119.347,122.825 +1760,1,108.772,0.04188,94.695,98.175,100.204,101.279,102.934,104.051,105.699,108.772,111.845,113.493,114.61,116.265,117.34,119.369,122.849 +1761,1,108.79,0.04188,94.711,98.191,100.221,101.296,102.951,104.068,105.717,108.79,111.863,113.512,114.629,116.284,117.359,119.389,122.869 +1762,1,108.808,0.04188,94.726,98.207,100.237,101.313,102.968,104.085,105.734,108.808,111.882,113.531,114.648,116.303,117.379,119.409,122.89 +1763,1,108.8261,0.04189,94.739,98.221,100.252,101.328,102.984,104.101,105.751,108.826,111.901,113.551,114.668,116.325,117.4,119.431,122.914 +1764,1,108.8441,0.04189,94.754,98.237,100.269,101.344,103.001,104.119,105.769,108.844,111.919,113.57,114.687,116.344,117.42,119.451,122.934 +1765,1,108.8621,0.0419,94.767,98.251,100.283,101.359,103.017,104.135,105.786,108.862,111.939,113.59,114.708,116.365,117.441,119.473,122.958 +1766,1,108.8801,0.0419,94.782,98.267,100.3,101.376,103.034,104.152,105.803,108.88,111.957,113.608,114.727,116.384,117.46,119.493,122.978 +1767,1,108.8982,0.0419,94.798,98.283,100.316,101.393,103.051,104.169,105.821,108.898,111.976,113.627,114.746,116.403,117.48,119.513,122.998 +1768,1,108.9162,0.04191,94.81,98.297,100.331,101.408,103.066,104.185,105.837,108.916,111.995,113.647,114.766,116.424,117.501,119.535,123.022 +1769,1,108.9342,0.04191,94.826,98.313,100.348,101.425,103.083,104.202,105.855,108.934,112.014,113.666,114.785,116.444,117.521,119.555,123.042 +1770,1,108.9522,0.04192,94.838,98.327,100.362,101.44,103.099,104.219,105.872,108.952,112.033,113.686,114.805,116.465,117.542,119.577,123.066 +1771,1,108.9702,0.04192,94.854,98.343,100.379,101.456,103.116,104.236,105.889,108.97,112.051,113.705,114.824,116.484,117.562,119.597,123.086 +1772,1,108.9883,0.04192,94.87,98.36,100.395,101.473,103.133,104.253,105.907,108.988,112.07,113.724,114.843,116.503,117.581,119.617,123.107 +1773,1,109.0063,0.04193,94.882,98.373,100.41,101.488,103.149,104.269,105.923,109.006,112.089,113.743,114.864,116.524,117.603,119.639,123.131 +1774,1,109.0243,0.04193,94.898,98.39,100.426,101.505,103.166,104.286,105.941,109.024,112.108,113.762,114.883,116.544,117.622,119.659,123.151 +1775,1,109.0423,0.04194,94.91,98.403,100.441,101.52,103.181,104.302,105.958,109.042,112.127,113.782,114.903,116.565,117.644,119.681,123.175 +1776,1,109.0603,0.04194,94.926,98.42,100.458,101.537,103.198,104.32,105.975,109.06,112.145,113.801,114.922,116.584,117.663,119.701,123.195 +1777,1,109.0783,0.04194,94.941,98.436,100.474,101.554,103.216,104.337,105.993,109.078,112.164,113.82,114.941,116.603,117.682,119.721,123.215 +1778,1,109.0963,0.04195,94.954,98.45,100.489,101.568,103.231,104.353,106.009,109.096,112.183,113.84,114.961,116.624,117.704,119.743,123.239 +1779,1,109.1144,0.04195,94.969,98.466,100.505,101.585,103.248,104.37,106.027,109.114,112.202,113.859,114.981,116.643,117.723,119.763,123.259 +1780,1,109.1324,0.04196,94.982,98.48,100.52,101.6,103.264,104.386,106.044,109.132,112.221,113.878,115.001,116.665,117.745,119.785,123.283 +1781,1,109.1504,0.04196,94.997,98.496,100.536,101.617,103.281,104.404,106.061,109.15,112.24,113.897,115.02,116.684,117.764,119.805,123.304 +1782,1,109.1684,0.04196,95.013,98.512,100.553,101.634,103.298,104.421,106.079,109.168,112.258,113.916,115.039,116.703,117.784,119.825,123.324 +1783,1,109.1864,0.04197,95.025,98.526,100.568,101.649,103.314,104.437,106.096,109.186,112.277,113.936,115.059,116.724,117.805,119.847,123.348 +1784,1,109.2044,0.04197,95.041,98.542,100.584,101.666,103.331,104.454,106.113,109.204,112.296,113.955,115.078,116.743,117.825,119.867,123.368 +1785,1,109.2224,0.04198,95.053,98.556,100.599,101.68,103.346,104.47,106.13,109.222,112.315,113.975,115.099,116.764,117.846,119.889,123.392 +1786,1,109.2404,0.04198,95.069,98.572,100.615,101.697,103.363,104.487,106.147,109.24,112.334,113.993,115.117,116.784,117.866,119.909,123.412 +1787,1,109.2584,0.04198,95.085,98.588,100.632,101.714,103.38,104.505,106.165,109.258,112.352,114.012,115.136,116.803,117.885,119.929,123.432 +1788,1,109.2764,0.04199,95.097,98.602,100.646,101.729,103.396,104.521,106.181,109.276,112.371,114.032,115.157,116.824,117.906,119.951,123.456 +1789,1,109.2944,0.04199,95.112,98.618,100.663,101.746,103.413,104.538,106.199,109.294,112.39,114.051,115.176,116.843,117.926,119.971,123.476 +1790,1,109.3124,0.042,95.125,98.632,100.677,101.761,103.429,104.554,106.216,109.312,112.409,114.071,115.196,116.864,117.947,119.993,123.5 +1791,1,109.3304,0.042,95.14,98.648,100.694,101.777,103.446,104.571,106.233,109.33,112.428,114.09,115.215,116.883,117.967,120.013,123.52 +1792,1,109.3484,0.042,95.156,98.664,100.711,101.794,103.463,104.588,106.251,109.348,112.446,114.108,115.234,116.903,117.986,120.032,123.541 +1793,1,109.3664,0.04201,95.168,98.678,100.725,101.809,103.478,104.605,106.267,109.366,112.465,114.128,115.254,116.924,118.008,120.055,123.564 +1794,1,109.3843,0.04201,95.184,98.694,100.742,101.826,103.495,104.622,106.285,109.384,112.484,114.147,115.273,116.943,118.027,120.074,123.585 +1795,1,109.4023,0.04202,95.196,98.708,100.756,101.841,103.511,104.638,106.302,109.402,112.503,114.167,115.294,116.964,118.048,120.097,123.608 +1796,1,109.4203,0.04202,95.212,98.724,100.773,101.858,103.528,104.655,106.319,109.42,112.521,114.186,115.313,116.983,118.068,120.116,123.629 +1797,1,109.4383,0.04202,95.228,98.74,100.789,101.874,103.545,104.672,106.337,109.438,112.54,114.204,115.332,117.002,118.087,120.136,123.649 +1798,1,109.4563,0.04203,95.24,98.754,100.804,101.889,103.561,104.688,106.353,109.456,112.559,114.224,115.352,117.023,118.109,120.159,123.673 +1799,1,109.4743,0.04203,95.256,98.77,100.82,101.906,103.578,104.705,106.371,109.474,112.578,114.243,115.371,117.043,118.128,120.178,123.693 +1800,1,109.4923,0.04204,95.268,98.784,100.835,101.921,103.593,104.722,106.388,109.492,112.597,114.263,115.391,117.064,118.15,120.201,123.717 +1801,1,109.5102,0.04204,95.283,98.8,100.851,101.938,103.61,104.739,106.405,109.51,112.615,114.282,115.41,117.083,118.169,120.22,123.737 +1802,1,109.5282,0.04204,95.299,98.816,100.868,101.954,103.627,104.756,106.422,109.528,112.634,114.301,115.429,117.102,118.188,120.24,123.757 +1803,1,109.5462,0.04205,95.311,98.83,100.882,101.969,103.643,104.772,106.439,109.546,112.653,114.32,115.45,117.123,118.21,120.262,123.781 +1804,1,109.5642,0.04205,95.327,98.846,100.899,101.986,103.66,104.789,106.457,109.564,112.672,114.339,115.469,117.142,118.229,120.282,123.801 +1805,1,109.5822,0.04206,95.339,98.86,100.914,102.001,103.675,104.805,106.473,109.582,112.691,114.359,115.489,117.163,118.251,120.304,123.825 +1806,1,109.6001,0.04206,95.355,98.876,100.93,102.018,103.692,104.822,106.491,109.6,112.709,114.378,115.508,117.183,118.27,120.324,123.845 +1807,1,109.6181,0.04206,95.37,98.892,100.947,102.034,103.709,104.84,106.508,109.618,112.728,114.397,115.527,117.202,118.29,120.344,123.866 +1808,1,109.6361,0.04207,95.383,98.906,100.961,102.049,103.725,104.856,106.525,109.636,112.747,114.417,115.547,117.223,118.311,120.366,123.889 +1809,1,109.654,0.04207,95.398,98.922,100.978,102.066,103.742,104.873,106.542,109.654,112.766,114.435,115.566,117.242,118.33,120.386,123.91 +1810,1,109.672,0.04208,95.411,98.936,100.992,102.081,103.758,104.889,106.559,109.672,112.785,114.455,115.586,117.263,118.352,120.408,123.933 +1811,1,109.69,0.04208,95.426,98.952,101.009,102.098,103.775,104.906,106.577,109.69,112.803,114.474,115.605,117.282,118.371,120.428,123.954 +1812,1,109.7079,0.04208,95.442,98.968,101.025,102.114,103.792,104.923,106.594,109.708,112.822,114.493,115.624,117.301,118.391,120.448,123.974 +1813,1,109.7259,0.04209,95.454,98.982,101.04,102.129,103.807,104.939,106.611,109.726,112.841,114.513,115.645,117.322,118.412,120.47,123.998 +1814,1,109.7439,0.04209,95.47,98.998,101.056,102.146,103.824,104.956,106.628,109.744,112.859,114.531,115.664,117.342,118.432,120.49,124.018 +1815,1,109.7618,0.0421,95.482,99.012,101.071,102.161,103.84,104.972,106.645,109.762,112.879,114.551,115.684,117.363,118.453,120.512,124.042 +1816,1,109.7798,0.0421,95.498,99.028,101.087,102.178,103.857,104.99,106.662,109.78,112.897,114.57,115.703,117.382,118.472,120.532,124.062 +1817,1,109.7978,0.0421,95.513,99.044,101.104,102.194,103.874,105.007,106.68,109.798,112.916,114.589,115.722,117.401,118.492,120.551,124.082 +1818,1,109.8157,0.04211,95.525,99.058,101.118,102.209,103.889,105.023,106.697,109.816,112.935,114.609,115.742,117.422,118.513,120.574,124.106 +1819,1,109.8337,0.04211,95.541,99.074,101.135,102.226,103.906,105.04,106.714,109.834,112.953,114.627,115.761,117.441,118.533,120.593,124.126 +1820,1,109.8516,0.04212,95.553,99.088,101.149,102.241,103.922,105.056,106.731,109.852,112.972,114.647,115.781,117.462,118.554,120.615,124.15 +1821,1,109.8696,0.04212,95.569,99.104,101.166,102.258,103.939,105.073,106.748,109.87,112.991,114.666,115.8,117.482,118.573,120.635,124.17 +1822,1,109.8875,0.04212,95.584,99.12,101.182,102.274,103.956,105.09,106.766,109.888,113.009,114.685,115.819,117.501,118.593,120.655,124.191 +1823,1,109.9055,0.04213,95.597,99.134,101.197,102.289,103.972,105.106,106.782,109.906,113.029,114.705,115.839,117.522,118.614,120.677,124.214 +1824,1,109.9234,0.04213,95.612,99.15,101.213,102.306,103.988,105.124,106.8,109.923,113.047,114.723,115.858,117.541,118.633,120.697,124.234 +1825,1,109.9414,0.04214,95.625,99.164,101.228,102.321,104.004,105.14,106.817,109.941,113.066,114.743,115.879,117.562,118.655,120.719,124.258 +1826,1,109.9593,0.04214,95.64,99.18,101.244,102.338,104.021,105.157,106.834,109.959,113.085,114.762,115.898,117.581,118.674,120.739,124.278 +1827,1,109.9773,0.04214,95.656,99.196,101.261,102.354,104.038,105.174,106.851,109.977,113.103,114.781,115.917,117.6,118.694,120.759,124.299 +1828,1,109.9952,0.04215,95.668,99.21,101.275,102.369,104.054,105.19,106.868,109.995,113.122,114.8,115.937,117.621,118.715,120.781,124.322 +1829,1,110.0131,0.04215,95.684,99.226,101.292,102.386,104.07,105.207,106.885,110.013,113.141,114.819,115.956,117.64,118.734,120.8,124.343 +1830,1,110.0311,0.04216,95.696,99.239,101.306,102.401,104.086,105.223,106.902,110.031,113.16,114.839,115.976,117.661,118.756,120.823,124.366 +1831,1,110.049,0.04216,95.711,99.256,101.323,102.417,104.103,105.24,106.92,110.049,113.178,114.858,115.995,117.681,118.775,120.842,124.387 +1832,1,110.0669,0.04216,95.727,99.272,101.339,102.434,104.12,105.257,106.937,110.067,113.197,114.876,116.014,117.7,118.795,120.862,124.407 +1833,1,110.0849,0.04217,95.739,99.285,101.354,102.449,104.136,105.273,106.954,110.085,113.216,114.896,116.034,117.721,118.816,120.884,124.431 +1834,1,110.1028,0.04217,95.755,99.301,101.37,102.466,104.153,105.291,106.971,110.103,113.234,114.915,116.053,117.74,118.835,120.904,124.451 +1835,1,110.1207,0.04218,95.767,99.315,101.385,102.481,104.168,105.307,106.988,110.121,113.254,114.935,116.073,117.761,118.857,120.926,124.474 +1836,1,110.1387,0.04218,95.783,99.331,101.401,102.497,104.185,105.324,107.005,110.139,113.272,114.954,116.092,117.78,118.876,120.946,124.495 +1837,1,110.1566,0.04218,95.798,99.347,101.418,102.514,104.202,105.341,107.023,110.157,113.291,114.972,116.111,117.799,118.896,120.966,124.515 +1838,1,110.1745,0.04219,95.81,99.361,101.432,102.529,104.218,105.357,107.039,110.175,113.31,114.992,116.131,117.82,118.917,120.988,124.539 +1839,1,110.1924,0.04219,95.826,99.377,101.449,102.545,104.234,105.374,107.057,110.192,113.328,115.011,116.15,117.839,118.936,121.008,124.559 +1840,1,110.2104,0.0422,95.838,99.391,101.463,102.56,104.25,105.39,107.073,110.21,113.347,115.031,116.171,117.86,118.958,121.03,124.583 +1841,1,110.2283,0.0422,95.854,99.407,101.48,102.577,104.267,105.407,107.091,110.228,113.366,115.049,116.19,117.88,118.977,121.05,124.603 +1842,1,110.2462,0.0422,95.869,99.423,101.496,102.594,104.284,105.424,107.108,110.246,113.384,115.068,116.208,117.899,118.996,121.069,124.623 +1843,1,110.2641,0.04221,95.881,99.437,101.51,102.609,104.299,105.44,107.125,110.264,113.403,115.088,116.229,117.92,119.018,121.091,124.647 +1844,1,110.282,0.04221,95.897,99.453,101.527,102.625,104.316,105.457,107.142,110.282,113.422,115.107,116.248,117.939,119.037,121.111,124.667 +1845,1,110.3,0.04222,95.909,99.467,101.541,102.64,104.332,105.473,107.159,110.3,113.441,115.127,116.268,117.96,119.059,121.133,124.691 +1846,1,110.3179,0.04222,95.925,99.483,101.558,102.657,104.349,105.491,107.176,110.318,113.459,115.145,116.287,117.979,119.078,121.153,124.711 +1847,1,110.3358,0.04222,95.94,99.499,101.574,102.673,104.366,105.508,107.194,110.336,113.478,115.164,116.306,117.998,119.097,121.173,124.731 +1848,1,110.3537,0.04223,95.952,99.512,101.589,102.688,104.381,105.524,107.21,110.354,113.497,115.184,116.326,118.019,119.119,121.195,124.755 +1849,1,110.3716,0.04223,95.968,99.529,101.605,102.705,104.398,105.541,107.228,110.372,113.515,115.202,116.345,118.038,119.138,121.215,124.775 +1850,1,110.3895,0.04223,95.984,99.545,101.622,102.722,104.415,105.558,107.245,110.39,113.534,115.221,116.364,118.057,119.157,121.234,124.795 +1851,1,110.4074,0.04224,95.996,99.558,101.636,102.736,104.431,105.574,107.262,110.407,113.553,115.241,116.384,118.078,119.179,121.257,124.819 +1852,1,110.4253,0.04224,96.011,99.574,101.653,102.753,104.448,105.591,107.279,110.425,113.571,115.26,116.403,118.097,119.198,121.276,124.839 +1853,1,110.4432,0.04225,96.023,99.588,101.667,102.768,104.463,105.607,107.296,110.443,113.591,115.279,116.423,118.118,119.219,121.298,124.863 +1854,1,110.4611,0.04225,96.039,99.604,101.683,102.785,104.48,105.624,107.313,110.461,113.609,115.298,116.442,118.138,119.239,121.318,124.883 +1855,1,110.479,0.04225,96.055,99.62,101.7,102.801,104.497,105.641,107.331,110.479,113.627,115.317,116.461,118.157,119.258,121.338,124.903 +1856,1,110.4969,0.04226,96.067,99.634,101.714,102.816,104.513,105.657,107.347,110.497,113.646,115.337,116.481,118.178,119.279,121.36,124.927 diff --git a/core/migrations/height_percentile_girls.csv b/core/migrations/height_percentile_girls.csv new file mode 100644 index 00000000..af36c015 --- /dev/null +++ b/core/migrations/height_percentile_girls.csv @@ -0,0 +1,1858 @@ +Day,L,M,S,P01,P1,P3,P5,P10,P15,P25,P50,P75,P85,P90,P95,P97,P99,P999 +0,1,49.1477,0.0379,43.392,44.814,45.644,46.084,46.761,47.217,47.891,49.148,50.404,51.078,51.535,52.212,52.651,53.481,54.904 +1,1,49.3166,0.03783,43.551,44.976,45.808,46.248,46.926,47.383,48.058,49.317,50.575,51.25,51.708,52.385,52.825,53.657,55.082 +2,1,49.4854,0.03776,43.711,45.138,45.971,46.412,47.091,47.549,48.225,49.485,50.746,51.422,51.88,52.559,53,53.832,55.26 +3,1,49.6543,0.0377,43.869,45.299,46.134,46.575,47.255,47.714,48.392,49.654,50.917,51.594,52.053,52.733,53.175,54.009,55.439 +4,1,49.8232,0.03763,44.029,45.462,46.297,46.739,47.42,47.88,48.559,49.823,51.088,51.766,52.226,52.907,53.349,54.185,55.617 +5,1,49.9921,0.03756,44.19,45.624,46.461,46.904,47.586,48.046,48.726,49.992,51.259,51.938,52.398,53.081,53.524,54.36,55.795 +6,1,50.1609,0.03749,44.35,45.786,46.624,47.068,47.751,48.212,48.893,50.161,51.429,52.11,52.571,53.254,53.698,54.536,55.972 +7,1,50.3298,0.03742,44.51,45.948,46.788,47.232,47.916,48.378,49.06,50.33,51.6,52.282,52.743,53.428,53.872,54.711,56.15 +8,1,50.4987,0.03735,44.67,46.111,46.951,47.396,48.082,48.544,49.227,50.499,51.771,52.454,52.916,53.601,54.046,54.886,56.327 +9,1,50.6676,0.03728,44.83,46.273,47.115,47.561,48.247,48.71,49.394,50.668,51.942,52.625,53.088,53.775,54.22,55.062,56.505 +10,1,50.8365,0.03722,44.989,46.435,47.278,47.724,48.412,48.875,49.56,50.837,52.113,52.798,53.261,53.949,54.395,55.238,56.684 +11,1,51.0053,0.03715,45.15,46.597,47.441,47.889,48.577,49.041,49.727,51.005,52.283,52.969,53.434,54.122,54.569,55.413,56.861 +12,1,51.1742,0.03708,45.31,46.76,47.605,48.053,48.742,49.208,49.894,51.174,52.454,53.141,53.606,54.295,54.743,55.589,57.038 +13,1,51.3431,0.03701,45.471,46.923,47.769,48.218,48.908,49.374,50.061,51.343,52.625,53.313,53.778,54.469,54.917,55.764,57.215 +14,1,51.512,0.03694,45.632,47.085,47.933,48.382,49.073,49.54,50.229,51.512,52.795,53.484,53.951,54.642,55.091,55.939,57.392 +15,1,51.651,0.0369,45.761,47.217,48.066,48.516,49.208,49.676,50.365,51.651,52.937,53.626,54.094,54.786,55.236,56.085,57.541 +16,1,51.7895,0.03687,45.889,47.347,48.198,48.649,49.342,49.81,50.502,51.79,53.077,53.769,54.237,54.93,55.381,56.232,57.69 +17,1,51.9272,0.03683,46.017,47.478,48.33,48.781,49.476,49.945,50.637,51.927,53.217,53.909,54.378,55.073,55.524,56.376,57.837 +18,1,52.0641,0.0368,46.143,47.607,48.461,48.913,49.609,50.078,50.772,52.064,53.356,54.05,54.52,55.216,55.668,56.521,57.985 +19,1,52.2002,0.03676,46.27,47.736,48.591,49.044,49.741,50.211,50.906,52.2,53.494,54.189,54.659,55.356,55.809,56.664,58.13 +20,1,52.3353,0.03673,46.395,47.863,48.72,49.173,49.872,50.343,51.039,52.335,53.632,54.328,54.799,55.497,55.951,56.807,58.276 +21,1,52.4695,0.03669,46.52,47.991,48.849,49.303,50.002,50.474,51.171,52.47,53.768,54.465,54.937,55.636,56.09,56.948,58.419 +22,1,52.6027,0.03666,46.643,48.117,48.976,49.431,50.131,50.604,51.302,52.603,53.903,54.601,55.074,55.775,56.23,57.089,58.562 +23,1,52.7349,0.03663,46.766,48.241,49.102,49.558,50.259,50.733,51.432,52.735,54.038,54.737,55.21,55.912,56.368,57.229,58.704 +24,1,52.8661,0.0366,46.887,48.365,49.227,49.683,50.386,50.861,51.561,52.866,54.171,54.871,55.346,56.049,56.505,57.367,58.845 +25,1,52.9963,0.03656,47.009,48.489,49.352,49.809,50.513,50.988,51.689,52.996,54.303,55.004,55.479,56.183,56.64,57.504,58.984 +26,1,53.1255,0.03653,47.128,48.611,49.475,49.933,50.638,51.114,51.817,53.126,54.434,55.137,55.613,56.318,56.776,57.64,59.123 +27,1,53.2537,0.0365,47.247,48.732,49.598,50.056,50.763,51.239,51.943,53.254,54.565,55.268,55.745,56.451,56.91,57.776,59.26 +28,1,53.3809,0.03647,47.365,48.852,49.719,50.179,50.886,51.363,52.068,53.381,54.694,55.399,55.876,56.583,57.042,57.91,59.397 +29,1,53.5072,0.03644,47.482,48.971,49.84,50.3,51.008,51.486,52.192,53.507,54.822,55.528,56.006,56.714,57.174,58.043,59.533 +30,1,53.6326,0.03641,47.598,49.09,49.96,50.421,51.13,51.609,52.315,53.633,54.95,55.657,56.135,56.845,57.305,58.175,59.667 +31,1,53.7571,0.03638,47.714,49.208,50.079,50.54,51.251,51.73,52.438,53.757,55.076,55.784,56.263,56.974,57.435,58.307,59.801 +32,1,53.8806,0.03636,47.827,49.323,50.196,50.658,51.37,51.85,52.559,53.881,55.202,55.911,56.391,57.103,57.565,58.438,59.935 +33,1,54.0031,0.03633,47.94,49.439,50.313,50.776,51.489,51.97,52.68,54.003,55.326,56.037,56.517,57.23,57.693,58.567,60.066 +34,1,54.1247,0.0363,48.053,49.554,50.429,50.893,51.607,52.088,52.8,54.125,55.45,56.161,56.643,57.356,57.82,58.695,60.196 +35,1,54.2454,0.03627,48.165,49.668,50.545,51.009,51.724,52.206,52.918,54.245,55.572,56.285,56.767,57.482,57.946,58.822,60.325 +36,1,54.3651,0.03625,48.275,49.78,50.659,51.124,51.84,52.323,53.036,54.365,55.694,56.408,56.891,57.607,58.072,58.95,60.455 +37,1,54.4839,0.03622,48.386,49.893,50.772,51.238,51.955,52.439,53.153,54.484,55.815,56.529,57.013,57.73,58.195,59.075,60.582 +38,1,54.6018,0.03619,48.495,50.005,50.885,51.352,52.069,52.554,53.269,54.602,55.935,56.65,57.134,57.852,58.318,59.199,60.708 +39,1,54.7187,0.03617,48.603,50.114,50.996,51.463,52.182,52.667,53.384,54.719,56.054,56.77,57.255,57.974,58.441,59.323,60.835 +40,1,54.8348,0.03614,48.711,50.225,51.108,51.575,52.295,52.781,53.498,54.835,56.171,56.889,57.374,58.094,58.562,59.445,60.959 +41,1,54.9499,0.03612,48.816,50.333,51.217,51.685,52.406,52.893,53.611,54.95,56.289,57.007,57.494,58.215,58.683,59.567,61.083 +42,1,55.0642,0.03609,48.923,50.441,51.327,51.795,52.517,53.005,53.724,55.064,56.405,57.124,57.611,58.333,58.802,59.687,61.205 +43,1,55.1777,0.03607,49.027,50.548,51.434,51.904,52.627,53.115,53.835,55.178,56.52,57.24,57.728,58.451,58.921,59.808,61.328 +44,1,55.2903,0.03604,49.133,50.655,51.543,52.013,52.737,53.225,53.946,55.29,56.634,57.356,57.844,58.568,59.038,59.926,61.448 +45,1,55.4021,0.03602,49.235,50.76,51.649,52.12,52.845,53.334,54.056,55.402,56.748,57.47,57.96,58.685,59.155,60.045,61.569 +46,1,55.513,0.036,49.337,50.864,51.754,52.226,52.952,53.442,54.165,55.513,56.861,57.584,58.074,58.8,59.272,60.162,61.689 +47,1,55.623,0.03597,49.44,50.969,51.86,52.332,53.059,53.549,54.274,55.623,56.972,57.697,58.187,58.914,59.386,60.277,61.806 +48,1,55.7322,0.03595,49.541,51.071,51.964,52.437,53.165,53.656,54.381,55.732,57.084,57.809,58.3,59.028,59.501,60.393,61.924 +49,1,55.8406,0.03593,49.641,51.173,52.067,52.54,53.269,53.761,54.487,55.841,57.194,57.92,58.412,59.141,59.614,60.508,62.041 +50,1,55.9482,0.03591,49.74,51.274,52.169,52.644,53.373,53.866,54.593,55.948,57.303,58.03,58.523,59.253,59.727,60.622,62.157 +51,1,56.0549,0.03588,49.84,51.376,52.272,52.747,53.477,53.97,54.698,56.055,57.411,58.139,58.632,59.363,59.838,60.734,62.27 +52,1,56.1609,0.03586,49.937,51.476,52.373,52.848,53.58,54.074,54.803,56.161,57.519,58.248,58.742,59.474,59.949,60.846,62.384 +53,1,56.266,0.03584,50.034,51.575,52.473,52.949,53.682,54.176,54.906,56.266,57.626,58.356,58.85,59.583,60.059,60.957,62.498 +54,1,56.3704,0.03582,50.131,51.673,52.573,53.049,53.783,54.278,55.008,56.37,57.732,58.463,58.958,59.692,60.168,61.068,62.61 +55,1,56.4739,0.0358,50.226,51.771,52.671,53.148,53.883,54.378,55.11,56.474,57.838,58.569,59.065,59.799,60.276,61.177,62.722 +56,1,56.5767,0.03578,50.321,51.867,52.769,53.247,53.982,54.479,55.211,56.577,57.942,58.675,59.171,59.906,60.384,61.286,62.832 +57,1,56.6788,0.03576,50.415,51.964,52.867,53.345,54.081,54.578,55.312,56.679,58.046,58.779,59.276,60.013,60.491,61.394,62.942 +58,1,56.78,0.03574,50.509,52.059,52.963,53.442,54.179,54.677,55.411,56.78,58.149,58.883,59.381,60.118,60.597,61.501,63.051 +59,1,56.8806,0.03572,50.602,52.154,53.059,53.539,54.277,54.775,55.51,56.881,58.251,58.986,59.484,60.223,60.702,61.607,63.159 +60,1,56.9805,0.0357,50.694,52.248,53.155,53.635,54.374,54.872,55.608,56.981,58.353,59.089,59.587,60.326,60.806,61.713,63.267 +61,1,57.0796,0.03568,50.786,52.342,53.249,53.73,54.47,54.969,55.706,57.08,58.453,59.19,59.69,60.43,60.91,61.817,63.373 +62,1,57.1782,0.03566,50.877,52.435,53.343,53.824,54.565,55.065,55.803,57.178,58.553,59.291,59.791,60.532,61.013,61.922,63.479 +63,1,57.2761,0.03564,50.968,52.527,53.437,53.918,54.66,55.16,55.899,57.276,58.653,59.392,59.892,60.634,61.115,62.025,63.584 +64,1,57.3733,0.03562,51.058,52.619,53.53,54.012,54.754,55.255,55.995,57.373,58.752,59.491,59.992,60.735,61.217,62.128,63.689 +65,1,57.4699,0.03561,51.146,52.709,53.621,54.104,54.847,55.349,56.09,57.47,58.85,59.591,60.093,60.836,61.319,62.231,63.794 +66,1,57.5659,0.03559,51.235,52.8,53.713,54.196,54.94,55.442,56.184,57.566,58.948,59.689,60.192,60.936,61.419,62.332,63.897 +67,1,57.6613,0.03557,51.323,52.89,53.804,54.288,55.033,55.536,56.278,57.661,59.045,59.787,60.29,61.035,61.519,62.433,63.999 +68,1,57.756,0.03555,51.411,52.979,53.894,54.379,55.125,55.628,56.371,57.756,59.141,59.884,60.387,61.133,61.618,62.533,64.101 +69,1,57.8501,0.03553,51.498,53.068,53.984,54.469,55.216,55.72,56.464,57.85,59.236,59.98,60.484,61.231,61.716,62.632,64.202 +70,1,57.9436,0.03552,51.583,53.156,54.073,54.558,55.306,55.81,56.555,57.944,59.332,60.077,60.581,61.329,61.815,62.732,64.304 +71,1,58.0365,0.0355,51.67,53.244,54.162,54.648,55.396,55.901,56.647,58.037,59.426,60.172,60.677,61.425,61.911,62.829,64.403 +72,1,58.1288,0.03548,51.755,53.331,54.25,54.736,55.486,55.991,56.738,58.129,59.52,60.266,60.772,61.521,62.008,62.927,64.502 +73,1,58.2206,0.03547,51.839,53.416,54.337,54.824,55.574,56.08,56.828,58.221,59.613,60.361,60.867,61.617,62.105,63.025,64.602 +74,1,58.3117,0.03545,51.924,53.503,54.424,54.912,55.663,56.169,56.917,58.312,59.706,60.454,60.961,61.712,62.2,63.121,64.7 +75,1,58.4022,0.03543,52.008,53.589,54.51,54.999,55.75,56.258,57.007,58.402,59.798,60.547,61.054,61.806,62.294,63.216,64.796 +76,1,58.4922,0.03542,52.09,53.672,54.596,55.084,55.837,56.345,57.095,58.492,59.89,60.639,61.147,61.9,62.389,63.312,64.895 +77,1,58.5816,0.0354,52.173,53.757,54.681,55.171,55.924,56.432,57.183,58.582,59.98,60.731,61.239,61.993,62.482,63.406,64.99 +78,1,58.6705,0.03539,52.254,53.84,54.765,55.255,56.01,56.519,57.27,58.671,60.071,60.822,61.331,62.086,62.576,63.501,65.087 +79,1,58.7588,0.03537,52.336,53.924,54.85,55.34,56.095,56.605,57.357,58.759,60.161,60.913,61.422,62.177,62.668,63.594,65.181 +80,1,58.8465,0.03536,52.416,54.006,54.933,55.424,56.18,56.69,57.443,58.847,60.25,61.003,61.513,62.269,62.76,63.687,65.277 +81,1,58.9337,0.03534,52.498,54.089,55.017,55.508,56.265,56.775,57.529,58.934,60.338,61.092,61.603,62.359,62.851,63.779,65.37 +82,1,59.0204,0.03533,52.577,54.17,55.099,55.591,56.348,56.859,57.614,59.02,60.427,61.182,61.693,62.45,62.942,63.871,65.464 +83,1,59.1066,0.03531,52.657,54.251,55.181,55.674,56.432,56.944,57.699,59.107,60.514,61.27,61.781,62.539,63.032,63.962,65.556 +84,1,59.1922,0.0353,52.735,54.331,55.262,55.755,56.514,57.027,57.783,59.192,60.602,61.358,61.87,62.629,63.122,64.053,65.649 +85,1,59.2773,0.03528,52.815,54.412,55.344,55.837,56.597,57.11,57.867,59.277,60.688,61.445,61.957,62.717,63.211,64.142,65.74 +86,1,59.3619,0.03527,52.892,54.491,55.424,55.918,56.679,57.192,57.95,59.362,60.774,61.532,62.045,62.806,63.3,64.233,65.832 +87,1,59.4459,0.03526,52.969,54.57,55.504,55.998,56.76,57.273,58.032,59.446,60.86,61.618,62.132,62.894,63.388,64.322,65.923 +88,1,59.5295,0.03524,53.047,54.649,55.584,56.079,56.841,57.355,58.115,59.53,60.944,61.704,62.218,62.98,63.475,64.41,66.012 +89,1,59.6126,0.03523,53.123,54.727,55.663,56.158,56.921,57.436,58.196,59.613,61.029,61.789,62.304,63.067,63.563,64.498,66.103 +90,1,59.6952,0.03521,53.2,54.806,55.742,56.238,57.002,57.517,58.278,59.695,61.113,61.874,62.389,63.152,63.648,64.585,66.19 +91,1,59.7773,0.0352,53.275,54.882,55.82,56.316,57.081,57.596,58.358,59.777,61.197,61.958,62.474,63.238,63.735,64.672,66.28 +92,1,59.8589,0.03519,53.35,54.959,55.897,56.394,57.159,57.676,58.438,59.859,61.28,62.042,62.558,63.324,63.821,64.759,66.368 +93,1,59.9401,0.03517,53.426,55.036,55.975,56.473,57.238,57.755,58.518,59.94,61.362,62.125,62.642,63.408,63.905,64.844,66.455 +94,1,60.0209,0.03516,53.499,55.112,56.052,56.55,57.316,57.834,58.598,60.021,61.444,62.208,62.725,63.492,63.99,64.93,66.542 +95,1,60.1011,0.03515,53.573,55.187,56.128,56.626,57.394,57.912,58.676,60.101,61.526,62.291,62.808,63.576,64.074,65.016,66.629 +96,1,60.181,0.03514,53.646,55.261,56.204,56.703,57.471,57.989,58.755,60.181,61.607,62.373,62.891,63.659,64.158,65.101,66.716 +97,1,60.2603,0.03512,53.72,55.337,56.28,56.779,57.548,58.067,58.833,60.26,61.688,62.454,62.973,63.741,64.241,65.184,66.8 +98,1,60.3393,0.03511,53.793,55.411,56.355,56.855,57.624,58.144,58.91,60.339,61.768,62.535,63.054,63.824,64.324,65.268,66.886 +99,1,60.4178,0.0351,53.864,55.484,56.429,56.93,57.7,58.22,58.987,60.418,61.848,62.616,63.136,63.906,64.406,65.351,66.971 +100,1,60.4958,0.03509,53.936,55.557,56.503,57.004,57.775,58.296,59.064,60.496,61.928,62.696,63.216,63.987,64.488,65.434,67.056 +101,1,60.5734,0.03508,54.007,55.63,56.577,57.078,57.85,58.371,59.14,60.573,62.007,62.776,63.297,64.069,64.57,65.517,67.14 +102,1,60.6506,0.03506,54.079,55.704,56.651,57.153,57.925,58.447,59.216,60.651,62.085,62.854,63.376,64.148,64.65,65.597,67.222 +103,1,60.7273,0.03505,54.15,55.776,56.724,57.226,58,58.521,59.292,60.727,62.163,62.933,63.455,64.228,64.731,65.679,67.305 +104,1,60.8036,0.03504,54.22,55.847,56.796,57.299,58.073,58.595,59.367,60.804,62.241,63.012,63.534,64.308,64.811,65.76,67.388 +105,1,60.8795,0.03503,54.289,55.918,56.869,57.372,58.146,58.669,59.441,60.88,62.318,63.09,63.613,64.387,64.89,65.841,67.47 +106,1,60.955,0.03502,54.358,55.989,56.94,57.444,58.219,58.743,59.515,60.955,62.395,63.167,63.691,64.466,64.97,65.921,67.552 +107,1,61.0301,0.03501,54.427,56.059,57.011,57.516,58.292,58.816,59.589,61.03,62.471,63.245,63.768,64.545,65.049,66.001,67.633 +108,1,61.1047,0.035,54.496,56.129,57.082,57.587,58.364,58.888,59.662,61.105,62.547,63.321,63.846,64.622,65.127,66.08,67.714 +109,1,61.1789,0.03499,54.564,56.199,57.153,57.658,58.436,58.96,59.735,61.179,62.623,63.398,63.922,64.7,65.205,66.159,67.794 +110,1,61.2527,0.03497,54.633,56.27,57.224,57.729,58.508,59.033,59.808,61.253,62.697,63.473,63.998,64.776,65.281,66.236,67.872 +111,1,61.3261,0.03496,54.701,56.339,57.294,57.8,58.579,59.104,59.88,61.326,62.772,63.548,64.074,64.853,65.358,66.314,67.951 +112,1,61.3991,0.03495,54.768,56.407,57.363,57.869,58.649,59.175,59.952,61.399,62.846,63.623,64.149,64.929,65.435,66.391,68.03 +113,1,61.4717,0.03494,54.834,56.475,57.432,57.939,58.719,59.246,60.023,61.472,62.92,63.698,64.224,65.005,65.511,66.468,68.109 +114,1,61.5439,0.03493,54.901,56.543,57.501,58.008,58.789,59.316,60.094,61.544,62.994,63.772,64.299,65.08,65.587,66.545,68.187 +115,1,61.6156,0.03492,54.967,56.61,57.569,58.077,58.858,59.386,60.164,61.616,63.067,63.846,64.373,65.155,65.662,66.621,68.265 +116,1,61.687,0.03491,55.032,56.677,57.637,58.145,58.927,59.455,60.234,61.687,63.14,63.919,64.447,65.229,65.737,66.697,68.342 +117,1,61.758,0.0349,55.097,56.744,57.704,58.213,58.996,59.524,60.304,61.758,63.212,63.992,64.52,65.303,65.812,66.772,68.419 +118,1,61.8286,0.03489,55.162,56.81,57.771,58.28,59.064,59.593,60.374,61.829,63.284,64.064,64.593,65.377,65.886,66.847,68.495 +119,1,61.8988,0.03488,55.227,56.876,57.838,58.348,59.132,59.661,60.443,61.899,63.355,64.136,64.666,65.45,65.959,66.921,68.571 +120,1,61.9686,0.03487,55.291,56.942,57.904,58.414,59.199,59.729,60.511,61.969,63.426,64.208,64.738,65.523,66.033,66.995,68.646 +121,1,62.0381,0.03487,55.353,57.006,57.969,58.48,59.266,59.796,60.579,62.038,63.497,64.28,64.81,65.596,66.107,67.071,68.723 +122,1,62.1071,0.03486,55.417,57.07,58.035,58.546,59.332,59.863,60.647,62.107,63.567,64.351,64.882,65.668,66.179,67.144,68.798 +123,1,62.1758,0.03485,55.48,57.135,58.1,58.612,59.399,59.93,60.714,62.176,63.637,64.422,64.953,65.74,66.251,67.217,68.872 +124,1,62.2441,0.03484,55.543,57.199,58.165,58.677,59.465,59.997,60.781,62.244,63.707,64.492,65.023,65.811,66.323,67.289,68.946 +125,1,62.312,0.03483,55.605,57.263,58.23,58.742,59.531,60.063,60.848,62.312,63.776,64.561,65.093,65.882,66.394,67.361,69.019 +126,1,62.3795,0.03482,55.667,57.327,58.294,58.807,59.596,60.128,60.914,62.38,63.845,64.631,65.163,65.952,66.465,67.432,69.092 +127,1,62.4467,0.03481,55.729,57.39,58.358,58.871,59.661,60.194,60.981,62.447,63.913,64.7,65.232,66.022,66.535,67.504,69.164 +128,1,62.5135,0.0348,55.791,57.453,58.422,58.935,59.726,60.259,61.046,62.514,63.981,64.768,65.301,66.092,66.605,67.574,69.236 +129,1,62.58,0.03479,55.852,57.515,58.485,58.999,59.79,60.324,61.112,62.58,64.048,64.836,65.37,66.161,66.675,67.645,69.308 +130,1,62.6461,0.03479,55.911,57.576,58.547,59.061,59.853,60.387,61.176,62.646,64.116,64.905,65.439,66.231,66.745,67.716,69.381 +131,1,62.7118,0.03478,55.972,57.638,58.61,59.124,59.917,60.451,61.241,62.712,64.183,64.972,65.507,66.299,66.814,67.786,69.452 +132,1,62.7772,0.03477,56.032,57.699,58.672,59.187,59.98,60.515,61.305,62.777,64.249,65.039,65.575,66.368,66.883,67.855,69.522 +133,1,62.8423,0.03476,56.092,57.761,58.734,59.249,60.043,60.578,61.369,62.842,64.316,65.106,65.642,66.435,66.951,67.924,69.593 +134,1,62.907,0.03475,56.152,57.822,58.796,59.311,60.106,60.641,61.433,62.907,64.381,65.173,65.708,66.503,67.018,67.992,69.662 +135,1,62.9714,0.03475,56.209,57.881,58.856,59.372,60.167,60.703,61.495,62.971,64.447,65.239,65.776,66.571,67.087,68.062,69.734 +136,1,63.0354,0.03474,56.268,57.941,58.917,59.433,60.229,60.766,61.558,63.035,64.512,65.305,65.842,66.637,67.154,68.13,69.803 +137,1,63.0991,0.03473,56.327,58.001,58.977,59.495,60.291,60.828,61.621,63.099,64.577,65.37,65.908,66.704,67.221,68.197,69.871 +138,1,63.1626,0.03472,56.386,58.061,59.038,59.555,60.352,60.89,61.683,63.163,64.642,65.436,65.973,66.77,67.287,68.264,69.939 +139,1,63.2257,0.03471,56.444,58.12,59.098,59.616,60.413,60.951,61.745,63.226,64.706,65.5,66.038,66.835,67.353,68.331,70.007 +140,1,63.2884,0.03471,56.5,58.178,59.157,59.675,60.473,61.012,61.807,63.288,64.77,65.565,66.104,66.902,67.42,68.399,70.077 +141,1,63.3509,0.0347,56.558,58.237,59.216,59.735,60.534,61.073,61.868,63.351,64.834,65.629,66.168,66.967,67.485,68.465,70.144 +142,1,63.4131,0.03469,56.615,58.296,59.276,59.795,60.594,61.133,61.929,63.413,64.897,65.693,66.232,67.031,67.55,68.531,70.211 +143,1,63.475,0.03469,56.67,58.353,59.334,59.853,60.653,61.193,61.99,63.475,64.96,65.757,66.297,67.097,67.616,68.597,70.28 +144,1,63.5365,0.03468,56.727,58.411,59.392,59.912,60.713,61.253,62.05,63.537,65.023,65.82,66.36,67.161,67.681,68.662,70.346 +145,1,63.5978,0.03467,56.784,58.468,59.451,59.971,60.772,61.313,62.111,63.598,65.085,65.883,66.424,67.225,67.745,68.727,70.412 +146,1,63.6588,0.03467,56.839,58.524,59.508,60.029,60.83,61.371,62.17,63.659,65.147,65.946,66.487,67.289,67.81,68.793,70.479 +147,1,63.7196,0.03466,56.895,58.582,59.566,60.087,60.889,61.431,62.23,63.72,65.209,66.009,66.55,67.352,67.873,68.857,70.544 +148,1,63.78,0.03465,56.951,58.639,59.623,60.145,60.948,61.49,62.289,63.78,65.271,66.07,66.612,67.415,67.937,68.921,70.609 +149,1,63.8402,0.03465,57.004,58.694,59.68,60.202,61.005,61.548,62.348,63.84,65.332,66.133,66.675,67.479,68.001,68.986,70.676 +150,1,63.9,0.03464,57.06,58.751,59.737,60.259,61.063,61.606,62.407,63.9,65.393,66.194,66.737,67.541,68.063,69.049,70.74 +151,1,63.9597,0.03463,57.115,58.807,59.794,60.316,61.121,61.664,62.466,63.96,65.454,66.255,66.798,67.603,68.126,69.112,70.804 +152,1,64.019,0.03463,57.168,58.862,59.849,60.372,61.178,61.721,62.524,64.019,65.514,66.317,66.86,67.666,68.189,69.176,70.87 +153,1,64.0781,0.03462,57.223,58.917,59.906,60.429,61.235,61.779,62.582,64.078,65.574,66.377,66.921,67.727,68.25,69.239,70.933 +154,1,64.137,0.03461,57.277,58.973,59.962,60.486,61.292,61.836,62.64,64.137,65.634,66.438,66.982,67.788,68.312,69.301,70.997 +155,1,64.1956,0.03461,57.33,59.027,60.017,60.541,61.348,61.893,62.697,64.196,65.694,66.498,67.043,67.85,68.374,69.364,71.062 +156,1,64.2539,0.0346,57.384,59.082,60.073,60.597,61.405,61.95,62.754,64.254,65.753,66.558,67.103,67.911,68.435,69.426,71.124 +157,1,64.312,0.0346,57.436,59.135,60.127,60.652,61.46,62.006,62.811,64.312,65.813,66.618,67.164,67.972,68.497,69.489,71.188 +158,1,64.3699,0.03459,57.489,59.19,60.182,60.708,61.516,62.062,62.868,64.37,65.872,66.678,67.223,68.032,68.558,69.55,71.25 +159,1,64.4276,0.03459,57.541,59.243,60.236,60.762,61.572,62.118,62.924,64.428,65.931,66.737,67.284,68.093,68.619,69.612,71.314 +160,1,64.485,0.03458,57.594,59.297,60.291,60.817,61.627,62.174,62.981,64.485,65.989,66.796,67.343,68.153,68.679,69.673,71.376 +161,1,64.5422,0.03457,57.647,59.352,60.346,60.872,61.683,62.23,63.037,64.542,66.047,66.855,67.402,68.212,68.739,69.733,71.437 +162,1,64.5991,0.03457,57.698,59.404,60.399,60.926,61.737,62.285,63.093,64.599,66.105,66.914,67.461,68.272,68.799,69.794,71.5 +163,1,64.6559,0.03456,57.751,59.458,60.453,60.98,61.792,62.34,63.149,64.656,66.163,66.972,67.52,68.331,68.859,69.854,71.561 +164,1,64.7124,0.03456,57.801,59.51,60.506,61.034,61.846,62.394,63.204,64.712,66.221,67.03,67.579,68.391,68.919,69.915,71.624 +165,1,64.7688,0.03455,57.854,59.563,60.56,61.088,61.901,62.45,63.259,64.769,66.278,67.088,67.637,68.45,68.978,69.975,71.684 +166,1,64.8249,0.03455,57.904,59.615,60.612,61.141,61.955,62.504,63.314,64.825,66.336,67.146,67.695,68.509,69.037,70.035,71.746 +167,1,64.8808,0.03454,57.956,59.667,60.666,61.195,62.009,62.558,63.369,64.881,66.392,67.203,67.753,68.567,69.096,70.094,71.806 +168,1,64.9366,0.03454,58.005,59.719,60.718,61.247,62.062,62.612,63.424,64.937,66.449,67.261,67.811,68.626,69.155,70.154,71.868 +169,1,64.9921,0.03453,58.057,59.771,60.771,61.301,62.116,62.666,63.478,64.992,66.506,67.318,67.868,68.683,69.213,70.213,71.927 +170,1,65.0474,0.03453,58.106,59.822,60.823,61.353,62.169,62.719,63.532,65.047,66.562,67.375,67.926,68.742,69.272,70.273,71.988 +171,1,65.1026,0.03453,58.156,59.873,60.875,61.405,62.222,62.773,63.586,65.103,66.619,67.432,67.984,68.8,69.331,70.332,72.049 +172,1,65.1576,0.03452,58.207,59.925,60.927,61.458,62.275,62.826,63.641,65.158,66.675,67.489,68.04,68.857,69.388,70.39,72.108 +173,1,65.2123,0.03452,58.256,59.975,60.978,61.51,62.327,62.879,63.694,65.212,66.731,67.545,68.097,68.915,69.446,70.449,72.169 +174,1,65.267,0.03451,58.307,60.027,61.031,61.562,62.38,62.933,63.748,65.267,66.786,67.601,68.154,68.972,69.503,70.507,72.227 +175,1,65.3214,0.03451,58.355,60.077,61.082,61.614,62.432,62.985,63.801,65.321,66.842,67.658,68.21,69.029,69.561,70.566,72.288 +176,1,65.3757,0.0345,58.406,60.129,61.134,61.666,62.485,63.038,63.854,65.376,66.897,67.713,68.266,69.086,69.618,70.623,72.346 +177,1,65.4298,0.0345,58.454,60.178,61.184,61.717,62.537,63.09,63.907,65.43,66.952,67.769,68.323,69.143,69.675,70.681,72.405 +178,1,65.4837,0.0345,58.502,60.228,61.235,61.768,62.588,63.142,63.96,65.484,67.007,67.825,68.379,69.2,69.733,70.739,72.465 +179,1,65.5375,0.03449,58.552,60.279,61.286,61.819,62.641,63.195,64.013,65.538,67.062,67.88,68.434,69.256,69.789,70.796,72.523 +180,1,65.5911,0.03449,58.6,60.328,61.336,61.87,62.692,63.246,64.065,65.591,67.117,67.936,68.49,69.312,69.846,70.854,72.582 +181,1,65.6445,0.03449,58.648,60.377,61.386,61.92,62.743,63.298,64.117,65.645,67.172,67.991,68.546,69.369,69.903,70.912,72.641 +182,1,65.6978,0.03448,58.698,60.428,61.437,61.972,62.795,63.35,64.17,65.698,67.226,68.046,68.601,69.424,69.958,70.968,72.698 +183,1,65.751,0.03448,58.745,60.477,61.487,62.022,62.846,63.401,64.222,65.751,67.28,68.101,68.656,69.48,70.015,71.025,72.757 +184,1,65.804,0.03447,58.795,60.527,61.538,62.073,62.897,63.453,64.274,65.804,67.334,68.155,68.711,69.535,70.07,71.081,72.813 +185,1,65.8568,0.03447,58.842,60.576,61.587,62.123,62.948,63.504,64.326,65.857,67.388,68.21,68.766,69.591,70.126,71.138,72.872 +186,1,65.9095,0.03447,58.889,60.624,61.637,62.173,62.998,63.555,64.377,65.91,67.442,68.264,68.821,69.646,70.182,71.195,72.93 +187,1,65.9621,0.03447,58.936,60.673,61.686,62.222,63.048,63.606,64.429,65.962,67.496,68.319,68.876,69.702,70.238,71.252,72.988 +188,1,66.0145,0.03446,58.985,60.722,61.736,62.273,63.099,63.657,64.48,66.015,67.549,68.372,68.93,69.756,70.293,71.307,73.044 +189,1,66.0668,0.03446,59.031,60.77,61.785,62.322,63.149,63.707,64.531,66.067,67.602,68.426,68.984,69.812,70.349,71.363,73.102 +190,1,66.1189,0.03446,59.078,60.818,61.834,62.371,63.199,63.757,64.582,66.119,67.656,68.48,69.039,69.867,70.404,71.419,73.16 +191,1,66.1709,0.03445,59.126,60.868,61.883,62.421,63.249,63.808,64.633,66.171,67.708,68.534,69.092,69.92,70.458,71.474,73.215 +192,1,66.2228,0.03445,59.173,60.916,61.932,62.47,63.299,63.858,64.684,66.223,67.762,68.587,69.147,69.975,70.514,71.53,73.273 +193,1,66.2745,0.03445,59.219,60.963,61.98,62.519,63.349,63.908,64.735,66.275,67.814,68.641,69.2,70.03,70.569,71.586,73.33 +194,1,66.3261,0.03444,59.267,61.012,62.03,62.569,63.399,63.959,64.785,66.326,67.867,68.694,69.254,70.083,70.622,71.64,73.385 +195,1,66.3776,0.03444,59.313,61.059,62.078,62.617,63.448,64.008,64.836,66.378,67.92,68.747,69.307,70.138,70.677,71.696,73.442 +196,1,66.429,0.03444,59.359,61.107,62.126,62.666,63.497,64.058,64.886,66.429,67.972,68.8,69.361,70.192,70.732,71.751,73.499 +197,1,66.4802,0.03444,59.405,61.154,62.174,62.714,63.546,64.107,64.936,66.48,68.024,68.853,69.414,70.246,70.786,71.807,73.556 +198,1,66.5313,0.03444,59.451,61.201,62.222,62.762,63.595,64.156,64.986,66.531,68.077,68.906,69.468,70.3,70.841,71.862,73.612 +199,1,66.5823,0.03443,59.498,61.249,62.271,62.812,63.644,64.206,65.036,66.582,68.129,68.958,69.52,70.353,70.894,71.915,73.666 +200,1,66.6331,0.03443,59.544,61.296,62.318,62.86,63.693,64.255,65.086,66.633,68.18,69.011,69.573,70.407,70.948,71.97,73.723 +201,1,66.6839,0.03443,59.589,61.343,62.366,62.907,63.742,64.304,65.135,66.684,68.232,69.063,69.626,70.46,71.002,72.025,73.779 +202,1,66.7345,0.03443,59.634,61.389,62.413,62.955,63.79,64.353,65.185,66.735,68.284,69.116,69.679,70.514,71.056,72.08,73.835 +203,1,66.785,0.03442,59.681,61.437,62.462,63.004,63.839,64.403,65.235,66.785,68.335,69.167,69.731,70.566,71.108,72.133,73.889 +204,1,66.8354,0.03442,59.726,61.484,62.509,63.051,63.887,64.451,65.284,66.835,68.387,69.22,69.784,70.619,71.162,72.187,73.944 +205,1,66.8857,0.03442,59.771,61.53,62.556,63.099,63.935,64.5,65.333,66.886,68.439,69.272,69.836,70.672,71.216,72.241,74 +206,1,66.9359,0.03442,59.816,61.576,62.603,63.146,63.983,64.548,65.382,66.936,68.49,69.324,69.889,70.726,71.269,72.296,74.056 +207,1,66.9859,0.03442,59.861,61.622,62.649,63.193,64.031,64.596,65.431,66.986,68.541,69.376,69.941,70.778,71.322,72.35,74.111 +208,1,67.0359,0.03442,59.906,61.668,62.696,63.241,64.079,64.644,65.48,67.036,68.592,69.427,69.993,70.831,71.376,72.404,74.166 +209,1,67.0858,0.03441,59.952,61.716,62.744,63.289,64.127,64.693,65.529,67.086,68.643,69.478,70.044,70.883,71.427,72.456,74.219 +210,1,67.1355,0.03441,59.997,61.761,62.791,63.336,64.175,64.741,65.577,67.136,68.694,69.53,70.096,70.935,71.48,72.51,74.274 +211,1,67.1852,0.03441,60.041,61.807,62.837,63.383,64.222,64.789,65.626,67.185,68.745,69.581,70.148,70.988,71.533,72.563,74.329 +212,1,67.2347,0.03441,60.085,61.853,62.883,63.429,64.27,64.837,65.674,67.235,68.795,69.633,70.2,71.04,71.586,72.617,74.384 +213,1,67.2842,0.03441,60.13,61.898,62.93,63.476,64.317,64.885,65.723,67.284,68.846,69.684,70.251,71.092,71.639,72.67,74.439 +214,1,67.3335,0.03441,60.174,61.943,62.976,63.522,64.364,64.932,65.771,67.334,68.896,69.735,70.303,71.145,71.691,72.724,74.493 +215,1,67.3828,0.03441,60.218,61.989,63.022,63.569,64.411,64.98,65.819,67.383,68.947,69.786,70.354,71.197,71.744,72.777,74.548 +216,1,67.432,0.03441,60.262,62.034,63.068,63.615,64.458,65.027,65.867,67.432,68.997,69.837,70.406,71.249,71.796,72.83,74.602 +217,1,67.481,0.0344,60.308,62.081,63.115,63.663,64.506,65.075,65.915,67.481,69.047,69.887,70.456,71.299,71.847,72.881,74.654 +218,1,67.53,0.0344,60.351,62.126,63.161,63.709,64.553,65.122,65.963,67.53,69.097,69.938,70.507,71.351,71.899,72.934,74.709 +219,1,67.5789,0.0344,60.395,62.171,63.207,63.755,64.6,65.169,66.011,67.579,69.147,69.988,70.558,71.403,71.951,72.987,74.763 +220,1,67.6277,0.0344,60.439,62.216,63.252,63.801,64.646,65.217,66.059,67.628,69.197,70.039,70.609,71.454,72.003,73.04,74.817 +221,1,67.6764,0.0344,60.482,62.261,63.298,63.847,64.693,65.264,66.106,67.676,69.247,70.089,70.66,71.506,72.055,73.092,74.871 +222,1,67.725,0.0344,60.526,62.305,63.343,63.893,64.739,65.31,66.154,67.725,69.296,70.14,70.711,71.557,72.107,73.145,74.924 +223,1,67.7735,0.0344,60.569,62.35,63.389,63.939,64.786,65.357,66.201,67.774,69.346,70.19,70.761,71.608,72.158,73.197,74.978 +224,1,67.8219,0.0344,60.612,62.394,63.434,63.984,64.832,65.404,66.248,67.822,69.396,70.24,70.812,71.659,72.21,73.249,75.032 +225,1,67.8703,0.0344,60.655,62.439,63.479,64.03,64.878,65.45,66.296,67.87,69.445,70.29,70.862,71.711,72.261,73.302,75.085 +226,1,67.9185,0.0344,60.698,62.483,63.524,64.075,64.924,65.497,66.343,67.919,69.494,70.34,70.913,71.762,72.313,73.354,75.139 +227,1,67.9667,0.0344,60.742,62.528,63.569,64.121,64.97,65.543,66.39,67.967,69.544,70.39,70.963,71.812,72.364,73.406,75.192 +228,1,68.0148,0.0344,60.785,62.572,63.614,64.166,65.016,65.59,66.437,68.015,69.593,70.44,71.013,71.863,72.415,73.458,75.245 +229,1,68.0628,0.0344,60.827,62.616,63.659,64.212,65.062,65.636,66.484,68.063,69.642,70.489,71.063,71.914,72.466,73.51,75.298 +230,1,68.1107,0.0344,60.87,62.66,63.704,64.257,65.108,65.682,66.53,68.111,69.691,70.539,71.113,71.965,72.517,73.561,75.351 +231,1,68.1585,0.0344,60.913,62.704,63.749,64.302,65.154,65.728,66.577,68.159,69.74,70.589,71.163,72.015,72.568,73.613,75.404 +232,1,68.2063,0.0344,60.956,62.748,63.793,64.347,65.199,65.775,66.624,68.206,69.789,70.638,71.213,72.066,72.619,73.665,75.457 +233,1,68.254,0.0344,60.998,62.792,63.838,64.392,65.245,65.821,66.67,68.254,69.838,70.687,71.263,72.116,72.67,73.716,75.51 +234,1,68.3016,0.0344,61.041,62.836,63.883,64.437,65.29,65.866,66.717,68.302,69.886,70.737,71.313,72.166,72.721,73.768,75.562 +235,1,68.3491,0.0344,61.083,62.879,63.927,64.482,65.336,65.912,66.763,68.349,69.935,70.786,71.362,72.216,72.771,73.819,75.615 +236,1,68.3965,0.0344,61.126,62.923,63.971,64.526,65.381,65.958,66.81,68.397,69.983,70.835,71.412,72.267,72.822,73.87,75.667 +237,1,68.4439,0.0344,61.168,62.967,64.016,64.571,65.427,66.004,66.856,68.444,70.032,70.884,71.461,72.317,72.872,73.921,75.72 +238,1,68.4911,0.0344,61.21,63.01,64.06,64.616,65.472,66.049,66.902,68.491,70.08,70.933,71.511,72.367,72.922,73.972,75.772 +239,1,68.5383,0.0344,61.252,63.053,64.104,64.66,65.517,66.095,66.948,68.538,70.129,70.982,71.56,72.416,72.973,74.023,75.824 +240,1,68.5855,0.0344,61.295,63.097,64.148,64.705,65.562,66.14,66.994,68.586,70.177,71.031,71.609,72.466,73.023,74.074,75.876 +241,1,68.6325,0.0344,61.337,63.14,64.192,64.749,65.607,66.186,67.04,68.633,70.225,71.079,71.658,72.516,73.073,74.125,75.928 +242,1,68.6795,0.0344,61.379,63.183,64.236,64.793,65.652,66.231,67.086,68.68,70.273,71.128,71.707,72.566,73.123,74.176,75.98 +243,1,68.7264,0.0344,61.421,63.226,64.28,64.838,65.697,66.276,67.132,68.726,70.321,71.177,71.756,72.615,73.173,74.226,76.032 +244,1,68.7732,0.0344,61.462,63.27,64.324,64.882,65.741,66.321,67.177,68.773,70.369,71.225,71.805,72.665,73.223,74.277,76.084 +245,1,68.82,0.0344,61.504,63.313,64.367,64.926,65.786,66.366,67.223,68.82,70.417,71.274,71.854,72.714,73.273,74.327,76.136 +246,1,68.8666,0.0344,61.546,63.355,64.411,64.97,65.831,66.411,67.269,68.867,70.464,71.322,71.903,72.763,73.322,74.378,76.187 +247,1,68.9133,0.0344,61.588,63.398,64.455,65.014,65.875,66.456,67.314,68.913,70.512,71.37,71.951,72.813,73.372,74.428,76.239 +248,1,68.9598,0.0344,61.629,63.441,64.498,65.058,65.92,66.501,67.36,68.96,70.56,71.418,72,72.862,73.421,74.478,76.291 +249,1,69.0063,0.0344,61.671,63.484,64.542,65.102,65.964,66.546,67.405,69.006,70.607,71.467,72.048,72.911,73.471,74.529,76.342 +250,1,69.0527,0.0344,61.712,63.527,64.585,65.145,66.008,66.591,67.451,69.053,70.655,71.515,72.097,72.96,73.52,74.579,76.393 +251,1,69.099,0.03441,61.751,63.568,64.627,65.188,66.052,66.635,67.495,69.099,70.703,71.563,72.146,73.01,73.571,74.63,76.447 +252,1,69.1452,0.03441,61.793,63.61,64.67,65.232,66.096,66.679,67.54,69.145,70.75,71.611,72.194,73.059,73.62,74.68,76.498 +253,1,69.1914,0.03441,61.834,63.653,64.713,65.275,66.14,66.724,67.586,69.191,70.797,71.659,72.243,73.108,73.669,74.73,76.549 +254,1,69.2376,0.03441,61.875,63.695,64.757,65.319,66.184,66.768,67.631,69.238,70.845,71.707,72.291,73.156,73.719,74.78,76.6 +255,1,69.2836,0.03441,61.916,63.737,64.8,65.362,66.228,66.813,67.676,69.284,70.892,71.755,72.339,73.205,73.768,74.83,76.651 +256,1,69.3296,0.03441,61.957,63.78,64.843,65.406,66.272,66.857,67.721,69.33,70.939,71.802,72.387,73.254,73.816,74.879,76.702 +257,1,69.3755,0.03441,61.998,63.822,64.886,65.449,66.316,66.901,67.765,69.376,70.986,71.85,72.435,73.302,73.865,74.929,76.753 +258,1,69.4214,0.03441,62.039,63.864,64.929,65.492,66.36,66.946,67.81,69.421,71.033,71.897,72.483,73.351,73.914,74.979,76.803 +259,1,69.4672,0.03441,62.08,63.906,64.971,65.535,66.404,66.99,67.855,69.467,71.079,71.945,72.531,73.399,73.963,75.028,76.854 +260,1,69.5129,0.03442,62.119,63.947,65.013,65.577,66.447,67.033,67.899,69.513,71.127,71.993,72.579,73.448,74.013,75.079,76.907 +261,1,69.5585,0.03442,62.16,63.989,65.055,65.62,66.49,67.077,67.944,69.559,71.173,72.04,72.627,73.497,74.062,75.128,76.957 +262,1,69.6041,0.03442,62.201,64.031,65.098,65.663,66.534,67.121,67.988,69.604,71.22,72.087,72.674,73.545,74.11,75.178,77.008 +263,1,69.6496,0.03442,62.241,64.073,65.141,65.706,66.577,67.165,68.033,69.65,71.267,72.134,72.722,73.593,74.159,75.227,77.058 +264,1,69.6951,0.03442,62.282,64.114,65.183,65.749,66.621,67.209,68.077,69.695,71.313,72.181,72.769,73.641,74.207,75.276,77.108 +265,1,69.7405,0.03442,62.322,64.156,65.226,65.792,66.664,67.253,68.121,69.741,71.36,72.228,72.817,73.689,74.255,75.325,77.159 +266,1,69.7858,0.03443,62.361,64.196,65.267,65.834,66.707,67.296,68.165,69.786,71.406,72.276,72.865,73.738,74.305,75.375,77.211 +267,1,69.8311,0.03443,62.401,64.238,65.309,65.876,66.75,67.339,68.209,69.831,71.453,72.323,72.912,73.786,74.353,75.424,77.261 +268,1,69.8763,0.03443,62.442,64.279,65.351,65.919,66.793,67.383,68.254,69.876,71.499,72.37,72.96,73.834,74.401,75.473,77.311 +269,1,69.9215,0.03443,62.482,64.321,65.394,65.962,66.836,67.426,68.298,69.922,71.545,72.417,73.007,73.881,74.449,75.522,77.361 +270,1,69.9666,0.03443,62.522,64.363,65.436,66.004,66.879,67.47,68.342,69.967,71.591,72.463,73.054,73.929,74.497,75.571,77.411 +271,1,70.0116,0.03444,62.56,64.402,65.477,66.046,66.922,67.513,68.385,70.012,71.638,72.511,73.102,73.978,74.547,75.621,77.463 +272,1,70.0566,0.03444,62.601,64.444,65.519,66.088,66.965,67.556,68.429,70.057,71.684,72.557,73.149,74.025,74.594,75.669,77.513 +273,1,70.1015,0.03444,62.641,64.485,65.561,66.13,67.007,67.599,68.473,70.102,71.73,72.604,73.196,74.073,74.642,75.718,77.562 +274,1,70.1463,0.03444,62.681,64.526,65.603,66.173,67.05,67.642,68.517,70.146,71.776,72.65,73.242,74.12,74.69,75.766,77.612 +275,1,70.1911,0.03444,62.721,64.567,65.645,66.215,67.093,67.686,68.561,70.191,71.822,72.697,73.289,74.167,74.738,75.815,77.661 +276,1,70.2358,0.03445,62.759,64.607,65.685,66.256,67.135,67.728,68.604,70.236,71.868,72.744,73.337,74.216,74.787,75.865,77.713 +277,1,70.2805,0.03445,62.799,64.648,65.727,66.298,67.178,67.771,68.647,70.281,71.914,72.79,73.383,74.263,74.834,75.913,77.762 +278,1,70.3251,0.03445,62.838,64.689,65.769,66.34,67.22,67.814,68.691,70.325,71.959,72.836,73.43,74.31,74.882,75.961,77.812 +279,1,70.3697,0.03445,62.878,64.73,65.81,66.382,67.263,67.857,68.735,70.37,72.005,72.882,73.476,74.357,74.929,76.009,77.861 +280,1,70.4142,0.03445,62.918,64.771,65.852,66.424,67.305,67.9,68.778,70.414,72.05,72.928,73.523,74.404,74.977,76.057,77.91 +281,1,70.4586,0.03446,62.956,64.81,65.892,66.465,67.347,67.942,68.821,70.459,72.096,72.975,73.57,74.452,75.025,76.107,77.962 +282,1,70.503,0.03446,62.995,64.851,65.934,66.507,67.389,67.985,68.864,70.503,72.142,73.021,73.617,74.499,75.072,76.155,78.011 +283,1,70.5474,0.03446,63.035,64.892,65.975,66.549,67.432,68.028,68.908,70.547,72.187,73.067,73.663,74.546,75.12,76.203,78.06 +284,1,70.5917,0.03446,63.074,64.933,66.017,66.59,67.474,68.07,68.951,70.592,72.232,73.113,73.709,74.593,75.167,76.251,78.109 +285,1,70.6359,0.03447,63.112,64.972,66.057,66.631,67.516,68.112,68.994,70.636,72.278,73.159,73.756,74.641,75.215,76.3,78.16 +286,1,70.68,0.03447,63.151,65.012,66.098,66.673,67.558,68.155,69.037,70.68,72.323,73.205,73.802,74.687,75.262,76.348,78.209 +287,1,70.7241,0.03447,63.191,65.053,66.139,66.714,67.6,68.197,69.08,70.724,72.368,73.251,73.848,74.734,75.309,76.395,78.258 +288,1,70.7682,0.03448,63.228,65.092,66.179,66.755,67.641,68.239,69.122,70.768,72.414,73.297,73.895,74.782,75.358,76.445,78.309 +289,1,70.8122,0.03448,63.267,65.132,66.22,66.796,67.683,68.282,69.165,70.812,72.459,73.343,73.941,74.828,75.404,76.492,78.357 +290,1,70.8561,0.03448,63.306,65.173,66.261,66.838,67.725,68.324,69.208,70.856,72.504,73.388,73.987,74.875,75.451,76.54,78.406 +291,1,70.9,0.03448,63.346,65.213,66.302,66.879,67.767,68.366,69.251,70.9,72.549,73.434,74.033,74.921,75.498,76.587,78.454 +292,1,70.9439,0.03449,63.383,65.252,66.342,66.919,67.808,68.408,69.294,70.944,72.594,73.48,74.08,74.969,75.546,76.636,78.505 +293,1,70.9876,0.03449,63.422,65.292,66.383,66.96,67.85,68.45,69.336,70.988,72.639,73.525,74.125,75.015,75.592,76.683,78.554 +294,1,71.0314,0.03449,63.461,65.332,66.424,67.002,67.892,68.492,69.379,71.031,72.684,73.571,74.171,75.061,75.639,76.731,78.602 +295,1,71.075,0.0345,63.497,65.371,66.463,67.042,67.933,68.534,69.421,71.075,72.729,73.616,74.217,75.108,75.687,76.779,78.653 +296,1,71.1187,0.0345,63.537,65.411,66.504,67.083,67.974,68.576,69.464,71.119,72.774,73.662,74.263,75.155,75.733,76.827,78.701 +297,1,71.1622,0.0345,63.575,65.451,66.545,67.124,68.016,68.618,69.506,71.162,72.818,73.707,74.309,75.2,75.78,76.874,78.749 +298,1,71.2057,0.0345,63.614,65.491,66.585,67.165,68.057,68.66,69.549,71.206,72.863,73.752,74.354,75.246,75.826,76.921,78.797 +299,1,71.2492,0.03451,63.651,65.529,66.625,67.205,68.098,68.701,69.591,71.249,72.908,73.798,74.4,75.294,75.874,76.969,78.847 +300,1,71.2926,0.03451,63.69,65.569,66.665,67.246,68.14,68.743,69.633,71.293,72.952,73.843,74.446,75.339,75.92,77.016,78.896 +301,1,71.3359,0.03451,63.728,65.609,66.706,67.287,68.181,68.784,69.675,71.336,72.996,73.887,74.491,75.385,75.966,77.063,78.943 +302,1,71.3792,0.03452,63.765,65.647,66.745,67.326,68.221,68.825,69.717,71.379,73.041,73.933,74.537,75.432,76.013,77.111,78.994 +303,1,71.4224,0.03452,63.803,65.687,66.785,67.367,68.263,68.867,69.759,71.422,73.085,73.978,74.582,75.478,76.059,77.158,79.041 +304,1,71.4656,0.03452,63.842,65.727,66.826,67.408,68.304,68.909,69.802,71.466,73.13,74.022,74.627,75.523,76.106,77.205,79.089 +305,1,71.5088,0.03453,63.878,65.765,66.865,67.447,68.344,68.95,69.843,71.509,73.174,74.068,74.673,75.57,76.153,77.253,79.139 +306,1,71.5518,0.03453,63.917,65.804,66.905,67.488,68.385,68.991,69.885,71.552,73.218,74.112,74.718,75.616,76.199,77.299,79.187 +307,1,71.5949,0.03453,63.955,65.844,66.945,67.529,68.427,69.033,69.927,71.595,73.262,74.157,74.763,75.661,76.245,77.346,79.234 +308,1,71.6378,0.03454,63.991,65.882,66.984,67.568,68.467,69.073,69.969,71.638,73.307,74.202,74.809,75.708,76.292,77.394,79.284 +309,1,71.6808,0.03454,64.03,65.921,67.024,67.608,68.508,69.115,70.011,71.681,73.351,74.247,74.854,75.753,76.337,77.44,79.332 +310,1,71.7236,0.03454,64.068,65.96,67.064,67.649,68.549,69.156,70.053,71.724,73.395,74.291,74.898,75.798,76.383,77.487,79.379 +311,1,71.7664,0.03455,64.104,65.998,67.103,67.688,68.589,69.197,70.094,71.766,73.439,74.336,74.944,75.845,76.43,77.535,79.429 +312,1,71.8092,0.03455,64.142,66.038,67.143,67.728,68.63,69.238,70.136,71.809,73.483,74.381,74.989,75.89,76.475,77.581,79.476 +313,1,71.8519,0.03456,64.178,66.075,67.182,67.767,68.67,69.278,70.177,71.852,73.527,74.426,75.034,75.936,76.522,77.629,79.526 +314,1,71.8946,0.03456,64.216,66.114,67.221,67.808,68.71,69.319,70.219,71.895,73.57,74.47,75.079,75.982,76.568,77.675,79.573 +315,1,71.9372,0.03456,64.254,66.154,67.261,67.848,68.751,69.36,70.26,71.937,73.614,74.514,75.123,76.027,76.613,77.721,79.62 +316,1,71.9798,0.03457,64.29,66.191,67.3,67.887,68.791,69.401,70.301,71.98,73.658,74.559,75.169,76.073,76.66,77.769,79.669 +317,1,72.0223,0.03457,64.328,66.23,67.339,67.927,68.831,69.442,70.343,72.022,73.702,74.603,75.213,76.118,76.705,77.814,79.716 +318,1,72.0647,0.03457,64.366,66.269,67.379,67.967,68.872,69.483,70.384,72.065,73.745,74.647,75.257,76.162,76.75,77.86,79.763 +319,1,72.1071,0.03458,64.402,66.306,67.417,68.006,68.912,69.523,70.425,72.107,73.789,74.691,75.303,76.208,76.797,77.908,79.812 +320,1,72.1495,0.03458,64.44,66.345,67.457,68.046,68.952,69.564,70.467,72.15,73.832,74.735,75.347,76.253,76.842,77.954,79.859 +321,1,72.1918,0.03459,64.475,66.383,67.495,68.084,68.992,69.604,70.508,72.192,73.876,74.78,75.392,76.299,76.888,78.001,79.908 +322,1,72.234,0.03459,64.513,66.421,67.535,68.124,69.032,69.644,70.549,72.234,73.919,74.824,75.436,76.344,76.933,78.047,79.955 +323,1,72.2762,0.03459,64.551,66.46,67.574,68.164,69.072,69.685,70.59,72.276,73.962,74.867,75.48,76.388,76.978,78.092,80.002 +324,1,72.3184,0.0346,64.586,66.497,67.612,68.203,69.112,69.725,70.631,72.318,74.006,74.912,75.525,76.434,77.025,78.139,80.051 +325,1,72.3605,0.0346,64.624,66.536,67.652,68.242,69.152,69.766,70.672,72.361,74.049,74.955,75.569,76.479,77.069,78.185,80.097 +326,1,72.4025,0.03461,64.659,66.573,67.69,68.281,69.191,69.805,70.712,72.403,74.093,75,75.614,76.524,77.115,78.232,80.146 +327,1,72.4445,0.03461,64.696,66.612,67.729,68.32,69.231,69.846,70.753,72.445,74.136,75.043,75.658,76.569,77.16,78.277,80.193 +328,1,72.4865,0.03461,64.734,66.65,67.768,68.36,69.271,69.886,70.794,72.487,74.179,75.087,75.702,76.613,77.205,78.323,80.239 +329,1,72.5284,0.03462,64.769,66.687,67.806,68.398,69.311,69.926,70.835,72.528,74.222,75.131,75.746,76.659,77.251,78.37,80.288 +330,1,72.5702,0.03462,64.806,66.726,67.845,68.438,69.35,69.966,70.876,72.57,74.265,75.174,75.79,76.703,77.295,78.415,80.334 +331,1,72.612,0.03463,64.841,66.762,67.883,68.476,69.389,70.006,70.916,72.612,74.308,75.218,75.835,76.748,77.341,78.462,80.383 +332,1,72.6538,0.03463,64.879,66.801,67.922,68.515,69.429,70.046,70.957,72.654,74.351,75.261,75.878,76.792,77.386,78.507,80.429 +333,1,72.6955,0.03464,64.914,66.837,67.959,68.553,69.468,70.086,70.997,72.696,74.394,75.305,75.923,76.838,77.432,78.554,80.477 +334,1,72.7372,0.03464,64.951,66.876,67.998,68.593,69.508,70.126,71.038,72.737,74.437,75.349,75.966,76.882,77.476,78.599,80.523 +335,1,72.7788,0.03464,64.988,66.914,68.037,68.632,69.548,70.166,71.078,72.779,74.479,75.392,76.01,76.926,77.52,78.644,80.569 +336,1,72.8203,0.03465,65.023,66.95,68.075,68.67,69.587,70.205,71.118,72.82,74.522,75.435,76.054,76.971,77.566,78.69,80.618 +337,1,72.8618,0.03465,65.06,66.989,68.113,68.709,69.626,70.245,71.159,72.862,74.565,75.478,76.097,77.014,77.61,78.735,80.664 +338,1,72.9033,0.03466,65.095,67.025,68.151,68.747,69.665,70.284,71.199,72.903,74.608,75.522,76.142,77.06,77.656,78.782,80.712 +339,1,72.9447,0.03466,65.132,67.063,68.19,68.786,69.705,70.324,71.239,72.945,74.65,75.565,76.185,77.103,77.7,78.826,80.758 +340,1,72.9861,0.03467,65.166,67.099,68.227,68.824,69.743,70.363,71.279,72.986,74.693,75.609,76.229,77.148,77.745,78.873,80.806 +341,1,73.0274,0.03467,65.203,67.137,68.265,68.863,69.783,70.403,71.32,73.027,74.735,75.652,76.272,77.192,77.789,78.917,80.851 +342,1,73.0686,0.03468,65.238,67.174,68.303,68.901,69.821,70.442,71.359,73.069,74.778,75.695,76.316,77.237,77.835,78.964,80.899 +343,1,73.1099,0.03468,65.275,67.212,68.341,68.939,69.861,70.482,71.4,73.11,74.82,75.738,76.359,77.28,77.879,79.008,80.945 +344,1,73.151,0.03469,65.309,67.248,68.378,68.977,69.899,70.521,71.439,73.151,74.863,75.781,76.403,77.325,77.924,79.054,80.993 +345,1,73.1922,0.03469,65.346,67.286,68.417,69.016,69.938,70.561,71.48,73.192,74.905,75.824,76.446,77.369,77.968,79.099,81.038 +346,1,73.2332,0.03469,65.383,67.323,68.455,69.055,69.977,70.6,71.52,73.233,74.947,75.866,76.489,77.412,78.011,79.143,81.084 +347,1,73.2743,0.0347,65.417,67.359,68.492,69.092,70.016,70.639,71.559,73.274,74.989,75.91,76.533,77.457,78.056,79.189,81.132 +348,1,73.3152,0.0347,65.454,67.397,68.53,69.131,70.055,70.678,71.599,73.315,75.031,75.952,76.576,77.5,78.1,79.234,81.177 +349,1,73.3562,0.03471,65.488,67.433,68.567,69.168,70.093,70.717,71.639,73.356,75.074,75.995,76.619,77.544,78.145,79.28,81.225 +350,1,73.3971,0.03471,65.524,67.47,68.606,69.207,70.132,70.757,71.679,73.397,75.115,76.038,76.662,77.588,78.189,79.324,81.27 +351,1,73.4379,0.03472,65.559,67.506,68.642,69.244,70.17,70.795,71.718,73.438,75.158,76.081,76.706,77.632,78.233,79.37,81.317 +352,1,73.4787,0.03472,65.595,67.544,68.68,69.282,70.209,70.835,71.758,73.479,75.199,76.123,76.748,77.675,78.277,79.414,81.362 +353,1,73.5195,0.03473,65.629,67.58,68.717,69.32,70.247,70.873,71.797,73.52,75.242,76.166,76.792,77.719,78.322,79.459,81.41 +354,1,73.5602,0.03473,65.665,67.617,68.755,69.358,70.286,70.912,71.837,73.56,75.283,76.208,76.834,77.762,78.365,79.503,81.455 +355,1,73.6008,0.03474,65.699,67.653,68.792,69.395,70.324,70.951,71.876,73.601,75.325,76.251,76.878,77.807,78.41,79.549,81.502 +356,1,73.6414,0.03474,65.736,67.69,68.83,69.433,70.363,70.99,71.916,73.641,75.367,76.293,76.92,77.849,78.453,79.593,81.547 +357,1,73.682,0.03475,65.77,67.726,68.866,69.47,70.401,71.028,71.955,73.682,75.409,76.336,76.963,77.894,78.498,79.638,81.594 +358,1,73.7225,0.03475,65.806,67.763,68.904,69.509,70.439,71.067,71.995,73.723,75.45,76.378,77.006,77.936,78.541,79.682,81.639 +359,1,73.763,0.03476,65.84,67.798,68.941,69.546,70.477,71.106,72.034,73.763,75.492,76.42,77.049,77.98,78.585,79.728,81.686 +360,1,73.8034,0.03476,65.876,67.835,68.978,69.584,70.516,71.145,72.073,73.803,75.534,76.462,77.091,78.023,78.628,79.771,81.731 +361,1,73.8438,0.03477,65.909,67.871,69.015,69.621,70.553,71.183,72.112,73.844,75.576,76.505,77.134,78.067,78.673,79.817,81.778 +362,1,73.8842,0.03477,65.946,67.908,69.053,69.659,70.592,71.222,72.151,73.884,75.617,76.547,77.176,78.11,78.716,79.86,81.823 +363,1,73.9245,0.03478,65.979,67.943,69.089,69.695,70.63,71.26,72.19,73.925,75.659,76.589,77.219,78.154,78.76,79.906,81.87 +364,1,73.9647,0.03478,66.015,67.98,69.126,69.733,70.668,71.298,72.23,73.965,75.7,76.631,77.261,78.196,78.803,79.949,81.914 +365,1,74.0049,0.03479,66.049,68.015,69.163,69.77,70.705,71.336,72.268,74.005,75.741,76.673,77.304,78.24,78.847,79.994,81.961 +366,1,74.0451,0.03479,66.085,68.052,69.2,69.808,70.744,71.375,72.308,74.045,75.783,76.715,77.346,78.282,78.89,80.038,82.006 +367,1,74.0852,0.0348,66.118,68.087,69.236,69.844,70.781,71.413,72.346,74.085,75.824,76.757,77.389,78.326,78.934,80.083,82.052 +368,1,74.1253,0.0348,66.154,68.124,69.274,69.882,70.819,71.452,72.385,74.125,75.865,76.799,77.431,78.368,78.977,80.126,82.097 +369,1,74.1653,0.03481,66.187,68.159,69.31,69.919,70.857,71.49,72.424,74.165,75.907,76.841,77.474,78.412,79.021,80.171,82.143 +370,1,74.2053,0.03482,66.221,68.194,69.346,69.955,70.894,71.527,72.463,74.205,75.948,76.883,77.517,78.455,79.065,80.216,82.19 +371,1,74.2452,0.03482,66.256,68.231,69.383,69.993,70.932,71.566,72.501,74.245,75.989,76.925,77.558,78.498,79.107,80.259,82.234 +372,1,74.2851,0.03483,66.29,68.266,69.419,70.029,70.969,71.603,72.54,74.285,76.03,76.967,77.601,78.541,79.151,80.304,82.281 +373,1,74.325,0.03483,66.325,68.303,69.456,70.067,71.007,71.642,72.579,74.325,76.071,77.008,77.643,78.583,79.194,80.347,82.325 +374,1,74.3648,0.03484,66.358,68.338,69.492,70.103,71.044,71.68,72.617,74.365,76.112,77.05,77.685,78.626,79.238,80.392,82.371 +375,1,74.4045,0.03484,66.394,68.374,69.529,70.141,71.082,71.718,72.656,74.405,76.153,77.091,77.727,78.668,79.28,80.435,82.415 +376,1,74.4443,0.03485,66.427,68.409,69.565,70.177,71.119,71.755,72.694,74.444,76.194,77.133,77.769,78.712,79.324,80.48,82.462 +377,1,74.4839,0.03485,66.462,68.445,69.602,70.214,71.157,71.794,72.733,74.484,76.235,77.174,77.811,78.754,79.366,80.523,82.505 +378,1,74.5236,0.03486,66.496,68.48,69.638,70.25,71.194,71.831,72.771,74.524,76.276,77.216,77.853,78.797,79.41,80.567,82.552 +379,1,74.5632,0.03486,66.531,68.516,69.675,70.288,71.232,71.869,72.81,74.563,76.316,77.257,77.894,78.839,79.452,80.61,82.596 +380,1,74.6027,0.03487,66.564,68.551,69.71,70.324,71.269,71.907,72.848,74.603,76.357,77.299,77.937,78.882,79.495,80.654,82.642 +381,1,74.6422,0.03488,66.597,68.586,69.746,70.36,71.306,71.944,72.886,74.642,76.398,77.341,77.979,78.925,79.539,80.699,82.688 +382,1,74.6817,0.03488,66.632,68.622,69.782,70.397,71.343,71.982,72.925,74.682,76.439,77.382,78.02,78.966,79.581,80.742,82.731 +383,1,74.7211,0.03489,66.665,68.656,69.818,70.433,71.38,72.019,72.963,74.721,76.48,77.423,78.062,79.009,79.624,80.786,82.777 +384,1,74.7605,0.03489,66.7,68.692,69.855,70.47,71.418,72.057,73.001,74.761,76.52,77.464,78.103,79.051,79.666,80.829,82.821 +385,1,74.7998,0.0349,66.733,68.727,69.89,70.506,71.454,72.094,73.039,74.8,76.561,77.505,78.145,79.094,79.71,80.873,82.867 +386,1,74.8391,0.0349,66.768,68.763,69.927,70.543,71.492,72.132,73.077,74.839,76.601,77.546,78.186,79.135,79.752,80.915,82.91 +387,1,74.8784,0.03491,66.801,68.797,69.962,70.579,71.528,72.169,73.115,74.878,76.642,77.588,78.228,79.178,79.795,80.959,82.956 +388,1,74.9176,0.03491,66.835,68.833,69.999,70.616,71.566,72.207,73.154,74.918,76.682,77.628,78.269,79.22,79.837,81.002,83 +389,1,74.9567,0.03492,66.868,68.868,70.034,70.651,71.602,72.244,73.191,74.957,76.722,77.67,78.311,79.262,79.88,81.046,83.045 +390,1,74.9959,0.03493,66.901,68.902,70.069,70.687,71.639,72.281,73.229,74.996,76.763,77.711,78.353,79.305,79.923,81.09,83.091 +391,1,75.0349,0.03493,66.935,68.938,70.105,70.724,71.676,72.318,73.267,75.035,76.803,77.751,78.394,79.346,79.964,81.132,83.134 +392,1,75.074,0.03494,66.968,68.972,70.141,70.759,71.712,72.355,73.305,75.074,76.843,77.793,78.436,79.389,80.007,81.176,83.18 +393,1,75.113,0.03494,67.003,69.008,70.177,70.796,71.75,72.393,73.343,75.113,76.883,77.833,78.476,79.43,80.049,81.218,83.223 +394,1,75.1519,0.03495,67.035,69.042,70.212,70.832,71.786,72.43,73.38,75.152,76.923,77.874,78.518,79.472,80.092,81.262,83.269 +395,1,75.1908,0.03495,67.07,69.077,70.248,70.868,71.823,72.467,73.418,75.191,76.963,77.914,78.559,79.513,80.133,81.304,83.312 +396,1,75.2297,0.03496,67.102,69.111,70.283,70.904,71.859,72.504,73.456,75.23,77.004,77.956,78.6,79.556,80.176,81.348,83.357 +397,1,75.2686,0.03497,67.135,69.145,70.318,70.939,71.895,72.541,73.493,75.269,77.044,77.997,78.642,79.598,80.219,81.392,83.403 +398,1,75.3073,0.03497,67.169,69.181,70.354,70.976,71.932,72.578,73.531,75.307,77.084,78.037,78.682,79.639,80.26,81.434,83.445 +399,1,75.3461,0.03498,67.201,69.215,70.389,71.011,71.968,72.614,73.568,75.346,77.124,78.078,78.724,79.681,80.303,81.477,83.491 +400,1,75.3848,0.03498,67.236,69.25,70.425,71.047,72.005,72.652,73.606,75.385,77.163,78.118,78.764,79.722,80.344,81.519,83.534 +401,1,75.4235,0.03499,67.268,69.284,70.46,71.083,72.041,72.688,73.643,75.424,77.204,78.159,78.806,79.764,80.387,81.563,83.579 +402,1,75.4621,0.035,67.3,69.318,70.495,71.118,72.077,72.725,73.681,75.462,77.244,78.2,78.847,79.806,80.43,81.606,83.624 +403,1,75.5007,0.035,67.335,69.353,70.531,71.154,72.114,72.762,73.718,75.501,77.283,78.24,78.887,79.847,80.471,81.648,83.667 +404,1,75.5392,0.03501,67.367,69.387,70.565,71.189,72.15,72.798,73.755,75.539,77.323,78.28,78.928,79.889,80.513,81.692,83.712 +405,1,75.5777,0.03501,67.401,69.422,70.601,71.225,72.187,72.835,73.793,75.578,77.362,78.32,78.969,79.93,80.554,81.733,83.754 +406,1,75.6162,0.03502,67.433,69.456,70.636,71.26,72.223,72.872,73.83,75.616,77.402,78.361,79.01,79.972,80.597,81.777,83.799 +407,1,75.6546,0.03503,67.465,69.489,70.67,71.295,72.258,72.908,73.867,75.655,77.442,78.401,79.051,80.014,80.639,81.82,83.844 +408,1,75.693,0.03503,67.499,69.525,70.706,71.332,72.295,72.945,73.905,75.693,77.481,78.441,79.091,80.054,80.68,81.861,83.887 +409,1,75.7313,0.03504,67.531,69.558,70.74,71.366,72.331,72.981,73.941,75.731,77.521,78.482,79.132,80.096,80.722,81.905,83.932 +410,1,75.7696,0.03504,67.565,69.593,70.776,71.403,72.367,73.018,73.979,75.77,77.56,78.521,79.172,80.137,80.763,81.946,83.974 +411,1,75.8079,0.03505,67.597,69.627,70.811,71.437,72.403,73.054,74.016,75.808,77.6,78.562,79.213,80.178,80.805,81.989,84.019 +412,1,75.8461,0.03506,67.629,69.66,70.845,71.472,72.438,73.09,74.053,75.846,77.64,78.602,79.254,80.22,80.847,82.032,84.064 +413,1,75.8843,0.03506,67.663,69.695,70.88,71.508,72.475,73.127,74.09,75.884,77.679,78.642,79.294,80.26,80.888,82.074,84.106 +414,1,75.9224,0.03507,67.694,69.728,70.915,71.543,72.51,73.163,74.127,75.922,77.718,78.682,79.335,80.302,80.93,82.117,84.15 +415,1,75.9605,0.03507,67.728,69.763,70.95,71.579,72.547,73.2,74.164,75.961,77.757,78.721,79.374,80.342,80.971,82.158,84.193 +416,1,75.9986,0.03508,67.76,69.796,70.984,71.613,72.582,73.235,74.2,75.999,77.797,78.762,79.415,80.384,81.013,82.201,84.237 +417,1,76.0366,0.03509,67.791,69.83,71.018,71.648,72.617,73.271,74.237,76.037,77.836,78.802,79.456,80.425,81.055,82.244,84.282 +418,1,76.0746,0.03509,67.825,69.865,71.054,71.684,72.654,73.308,74.274,76.075,77.875,78.841,79.496,80.465,81.095,82.285,84.324 +419,1,76.1125,0.0351,67.857,69.898,71.088,71.718,72.689,73.344,74.311,76.113,77.914,78.881,79.536,80.507,81.137,82.327,84.368 +420,1,76.1504,0.03511,67.888,69.931,71.122,71.753,72.724,73.379,74.347,76.15,77.954,78.921,79.577,80.548,81.179,82.37,84.413 +421,1,76.1883,0.03511,67.922,69.965,71.157,71.788,72.76,73.416,74.384,76.188,77.993,78.961,79.616,80.588,81.219,82.411,84.455 +422,1,76.2261,0.03512,67.953,69.998,71.191,71.823,72.795,73.452,74.42,76.226,78.032,79.001,79.657,80.629,81.261,82.454,84.499 +423,1,76.2639,0.03512,67.987,70.033,71.226,71.858,72.831,73.488,74.457,76.264,78.07,79.04,79.696,80.669,81.301,82.495,84.541 +424,1,76.3016,0.03513,68.018,70.066,71.26,71.893,72.866,73.523,74.494,76.302,78.11,79.08,79.737,80.711,81.343,82.537,84.585 +425,1,76.3393,0.03514,68.05,70.099,71.294,71.927,72.901,73.559,74.53,76.339,78.149,79.12,79.777,80.752,81.385,82.58,84.629 +426,1,76.377,0.03514,68.083,70.133,71.329,71.962,72.937,73.595,74.567,76.377,78.187,79.159,79.817,80.792,81.425,82.621,84.671 +427,1,76.4146,0.03515,68.114,70.166,71.363,71.997,72.972,73.631,74.603,76.415,78.226,79.198,79.857,80.833,81.466,82.663,84.715 +428,1,76.4522,0.03516,68.145,70.199,71.397,72.031,73.007,73.666,74.639,76.452,78.265,79.238,79.897,80.874,81.508,82.706,84.759 +429,1,76.4897,0.03516,68.179,70.233,71.432,72.066,73.043,73.702,74.676,76.49,78.304,79.277,79.936,80.913,81.548,82.746,84.801 +430,1,76.5272,0.03517,68.21,70.266,71.465,72.1,73.078,73.738,74.712,76.527,78.343,79.317,79.976,80.954,81.589,82.788,84.844 +431,1,76.5647,0.03518,68.241,70.299,71.499,72.134,73.113,73.773,74.748,76.565,78.381,79.356,80.017,80.995,81.631,82.831,84.888 +432,1,76.6021,0.03518,68.274,70.333,71.534,72.169,73.148,73.809,74.784,76.602,78.42,79.395,80.056,81.035,81.671,82.871,84.93 +433,1,76.6395,0.03519,68.305,70.365,71.567,72.203,73.183,73.844,74.82,76.64,78.459,79.435,80.096,81.076,81.712,82.914,84.974 +434,1,76.6769,0.03519,68.339,70.4,71.602,72.239,73.219,73.88,74.857,76.677,78.497,79.473,80.135,81.115,81.752,82.954,85.015 +435,1,76.7142,0.0352,68.37,70.432,71.635,72.273,73.254,73.915,74.893,76.714,78.536,79.513,80.175,81.156,81.793,82.996,85.059 +436,1,76.7515,0.03521,68.4,70.465,71.669,72.306,73.288,73.951,74.929,76.752,78.574,79.552,80.215,81.197,81.834,83.038,85.103 +437,1,76.7887,0.03521,68.434,70.499,71.704,72.341,73.324,73.986,74.965,76.789,78.612,79.591,80.254,81.236,81.874,83.079,85.144 +438,1,76.8259,0.03522,68.464,70.531,71.737,72.375,73.358,74.022,75.001,76.826,78.651,79.63,80.294,81.277,81.915,83.121,85.187 +439,1,76.8631,0.03523,68.495,70.564,71.77,72.409,73.393,74.057,75.037,76.863,78.69,79.67,80.333,81.317,81.956,83.163,85.231 +440,1,76.9002,0.03523,68.528,70.598,71.805,72.444,73.428,74.092,75.073,76.9,78.728,79.708,80.372,81.356,81.996,83.203,85.272 +441,1,76.9373,0.03524,68.559,70.63,71.838,72.478,73.463,74.127,75.109,76.937,78.766,79.747,80.412,81.397,82.037,83.245,85.316 +442,1,76.9744,0.03525,68.59,70.662,71.871,72.511,73.497,74.162,75.144,76.974,78.805,79.787,80.452,81.437,82.078,83.287,85.359 +443,1,77.0114,0.03525,68.622,70.696,71.906,72.546,73.532,74.198,75.18,77.011,78.842,79.825,80.49,81.477,82.117,83.327,85.4 +444,1,77.0484,0.03526,68.653,70.728,71.939,72.58,73.567,74.233,75.216,77.048,78.881,79.864,80.53,81.517,82.158,83.368,85.444 +445,1,77.0853,0.03527,68.684,70.76,71.972,72.613,73.601,74.267,75.251,77.085,78.919,79.903,80.57,81.557,82.199,83.41,85.487 +446,1,77.1222,0.03527,68.716,70.794,72.006,72.648,73.636,74.303,75.288,77.122,78.957,79.941,80.608,81.596,82.238,83.45,85.528 +447,1,77.1591,0.03528,68.747,70.826,72.039,72.682,73.67,74.338,75.323,77.159,78.995,79.98,80.648,81.637,82.279,83.492,85.571 +448,1,77.1959,0.03529,68.777,70.858,72.072,72.715,73.705,74.372,75.358,77.196,79.033,80.019,80.687,81.677,82.32,83.533,85.614 +449,1,77.2327,0.03529,68.81,70.892,72.107,72.75,73.74,74.408,75.394,77.233,79.071,80.058,80.726,81.716,82.359,83.573,85.655 +450,1,77.2695,0.0353,68.841,70.924,72.139,72.783,73.774,74.443,75.43,77.27,79.109,80.096,80.765,81.756,82.4,83.615,85.698 +451,1,77.3062,0.0353,68.873,70.958,72.174,72.818,73.809,74.478,75.466,77.306,79.147,80.135,80.803,81.795,82.439,83.655,85.739 +452,1,77.3429,0.03531,68.904,70.99,72.206,72.851,73.843,74.512,75.501,77.343,79.185,80.173,80.843,81.835,82.479,83.696,85.782 +453,1,77.3796,0.03532,68.934,71.022,72.239,72.884,73.877,74.547,75.536,77.38,79.223,80.212,80.882,81.875,82.52,83.738,85.825 +454,1,77.4162,0.03532,68.966,71.055,72.273,72.919,73.912,74.582,75.572,77.416,79.26,80.25,80.92,81.914,82.559,83.777,85.866 +455,1,77.4528,0.03533,68.997,71.087,72.306,72.952,73.946,74.617,75.607,77.453,79.298,80.289,80.96,81.954,82.599,83.819,85.909 +456,1,77.4893,0.03534,69.027,71.119,72.339,72.985,73.98,74.651,75.642,77.489,79.336,80.328,80.999,81.994,82.64,83.86,85.952 +457,1,77.5258,0.03534,69.059,71.152,72.373,73.019,74.015,74.686,75.678,77.526,79.374,80.365,81.037,82.032,82.679,83.899,85.992 +458,1,77.5623,0.03535,69.089,71.184,72.405,73.052,74.049,74.721,75.713,77.562,79.412,80.404,81.076,82.072,82.719,83.941,86.035 +459,1,77.5988,0.03536,69.12,71.216,72.438,73.085,74.082,74.755,75.748,77.599,79.45,80.443,81.115,82.112,82.759,83.982,86.078 +460,1,77.6352,0.03536,69.152,71.249,72.472,73.12,74.117,74.79,75.784,77.635,79.487,80.48,81.153,82.151,82.798,84.021,86.118 +461,1,77.6716,0.03537,69.182,71.281,72.505,73.153,74.151,74.824,75.819,77.672,79.525,80.519,81.192,82.19,82.839,84.063,86.161 +462,1,77.7079,0.03538,69.212,71.312,72.537,73.186,74.185,74.858,75.854,77.708,79.562,80.557,81.231,82.23,82.879,84.104,86.204 +463,1,77.7442,0.03538,69.244,71.345,72.571,73.22,74.219,74.893,75.889,77.744,79.599,80.595,81.269,82.269,82.917,84.143,86.244 +464,1,77.7805,0.03539,69.274,71.377,72.603,73.253,74.253,74.928,75.924,77.781,79.637,80.633,81.308,82.308,82.958,84.184,86.287 +465,1,77.8167,0.0354,69.304,71.408,72.636,73.286,74.286,74.962,75.959,77.817,79.675,80.672,81.347,82.348,82.998,84.225,86.329 +466,1,77.8529,0.0354,69.336,71.442,72.669,73.32,74.321,74.996,75.994,77.853,79.712,80.709,81.385,82.386,83.036,84.264,86.37 +467,1,77.8891,0.03541,69.366,71.473,72.702,73.353,74.355,75.031,76.029,77.889,79.749,80.748,81.424,82.426,83.076,84.305,86.412 +468,1,77.9252,0.03542,69.396,71.504,72.734,73.385,74.388,75.065,76.064,77.925,79.787,80.786,81.462,82.465,83.116,84.346,86.455 +469,1,77.9613,0.03543,69.426,71.536,72.766,73.418,74.421,75.098,76.098,77.961,79.824,80.824,81.501,82.505,83.156,84.387,86.497 +470,1,77.9974,0.03543,69.458,71.569,72.8,73.452,74.456,75.133,76.133,77.997,79.861,80.862,81.539,82.543,83.195,84.426,86.537 +471,1,78.0334,0.03544,69.487,71.6,72.832,73.485,74.489,75.167,76.168,78.033,79.899,80.9,81.578,82.582,83.235,84.467,86.579 +472,1,78.0694,0.03545,69.517,71.631,72.864,73.517,74.523,75.201,76.203,78.069,79.936,80.938,81.616,82.622,83.275,84.508,86.622 +473,1,78.1054,0.03545,69.549,71.664,72.898,73.551,74.557,75.236,76.238,78.105,79.973,80.975,81.654,82.66,83.313,84.547,86.662 +474,1,78.1413,0.03546,69.579,71.695,72.93,73.584,74.59,75.269,76.272,78.141,80.01,81.013,81.692,82.699,83.353,84.587,86.704 +475,1,78.1772,0.03547,69.608,71.726,72.962,73.616,74.624,75.303,76.307,78.177,80.048,81.051,81.731,82.738,83.393,84.628,86.746 +476,1,78.2131,0.03547,69.64,71.759,72.995,73.65,74.658,75.338,76.342,78.213,80.084,81.088,81.768,82.776,83.431,84.667,86.786 +477,1,78.249,0.03548,69.67,71.79,73.027,73.682,74.691,75.372,76.376,78.249,80.122,81.126,81.807,82.816,83.471,84.708,86.828 +478,1,78.2848,0.03549,69.699,71.821,73.059,73.715,74.724,75.405,76.411,78.285,80.159,81.164,81.845,82.855,83.51,84.748,86.87 +479,1,78.3205,0.03549,69.731,71.854,73.093,73.748,74.758,75.44,76.446,78.321,80.195,81.201,81.883,82.893,83.548,84.787,86.91 +480,1,78.3563,0.0355,69.76,71.885,73.125,73.781,74.791,75.473,76.48,78.356,80.232,81.239,81.921,82.932,83.588,84.827,86.952 +481,1,78.392,0.03551,69.79,71.916,73.156,73.813,74.825,75.507,76.514,78.392,80.27,81.277,81.959,82.971,83.628,84.868,86.994 +482,1,78.4276,0.03551,69.821,71.949,73.19,73.847,74.859,75.541,76.549,78.428,80.306,81.314,81.997,83.008,83.666,84.906,87.034 +483,1,78.4633,0.03552,69.851,71.98,73.221,73.879,74.892,75.575,76.583,78.463,80.343,81.352,82.035,83.048,83.705,84.947,87.076 +484,1,78.4989,0.03553,69.88,72.011,73.253,73.911,74.925,75.608,76.618,78.499,80.38,81.39,82.073,83.087,83.745,84.987,87.118 +485,1,78.5345,0.03553,69.912,72.043,73.286,73.945,74.959,75.643,76.652,78.535,80.417,81.426,82.11,83.124,83.783,85.026,87.157 +486,1,78.57,0.03554,69.941,72.074,73.318,73.977,74.991,75.676,76.687,78.57,80.453,81.464,82.149,83.163,83.822,85.066,87.199 +487,1,78.6055,0.03555,69.97,72.105,73.35,74.009,75.024,75.709,76.721,78.606,80.49,81.502,82.187,83.202,83.861,85.106,87.241 +488,1,78.641,0.03556,69.999,72.135,73.381,74.041,75.057,75.743,76.755,78.641,80.527,81.539,82.225,83.241,83.901,85.147,87.283 +489,1,78.6764,0.03556,70.031,72.168,73.414,74.075,75.091,75.777,76.789,78.676,80.563,81.576,82.262,83.278,83.938,85.185,87.322 +490,1,78.7118,0.03557,70.06,72.199,73.446,74.107,75.124,75.81,76.823,78.712,80.6,81.614,82.3,83.317,83.978,85.225,87.364 +491,1,78.7472,0.03558,70.089,72.229,73.478,74.139,75.157,75.843,76.857,78.747,80.637,81.651,82.338,83.356,84.017,85.265,87.405 +492,1,78.7826,0.03558,70.12,72.262,73.511,74.172,75.19,75.877,76.892,78.783,80.673,81.688,82.375,83.393,84.055,85.304,87.445 +493,1,78.8179,0.03559,70.149,72.292,73.542,74.204,75.223,75.911,76.926,78.818,80.71,81.725,82.413,83.432,84.094,85.344,87.486 +494,1,78.8532,0.0356,70.178,72.323,73.573,74.236,75.256,75.944,76.96,78.853,80.747,81.763,82.451,83.471,84.133,85.384,87.528 +495,1,78.8884,0.0356,70.21,72.355,73.606,74.269,75.289,75.978,76.994,78.888,80.783,81.799,82.488,83.508,84.17,85.422,87.567 +496,1,78.9236,0.03561,70.239,72.385,73.638,74.301,75.322,76.011,77.028,78.924,80.819,81.836,82.525,83.546,84.21,85.462,87.609 +497,1,78.9588,0.03562,70.267,72.416,73.669,74.333,75.354,76.044,77.062,78.959,80.856,81.874,82.563,83.585,84.249,85.502,87.65 +498,1,78.994,0.03562,70.299,72.448,73.702,74.366,75.388,76.078,77.096,78.994,80.892,81.91,82.6,83.622,84.286,85.54,87.689 +499,1,79.0291,0.03563,70.328,72.479,73.733,74.398,75.42,76.111,77.13,79.029,80.928,81.947,82.638,83.661,84.325,85.58,87.731 +500,1,79.0642,0.03564,70.356,72.509,73.764,74.429,75.453,76.144,77.164,79.064,80.965,81.985,82.675,83.699,84.364,85.619,87.772 +501,1,79.0993,0.03565,70.385,72.539,73.796,74.461,75.485,76.177,77.197,79.099,81.001,82.022,82.713,83.738,84.403,85.659,87.813 +502,1,79.1343,0.03565,70.416,72.571,73.828,74.494,75.519,76.21,77.231,79.134,81.037,82.058,82.75,83.775,84.44,85.697,87.852 +503,1,79.1693,0.03566,70.445,72.602,73.859,74.526,75.551,76.243,77.265,79.169,81.074,82.095,82.787,83.813,84.479,85.737,87.894 +504,1,79.2042,0.03567,70.474,72.632,73.891,74.557,75.584,76.276,77.299,79.204,81.11,82.132,82.825,83.851,84.518,85.777,87.935 +505,1,79.2392,0.03567,70.505,72.664,73.923,74.59,75.617,76.31,77.333,79.239,81.146,82.169,82.861,83.888,84.555,85.815,87.974 +506,1,79.2741,0.03568,70.533,72.694,73.954,74.622,75.649,76.343,77.366,79.274,81.182,82.206,82.899,83.927,84.594,85.854,88.015 +507,1,79.3089,0.03569,70.562,72.724,73.985,74.653,75.681,76.375,77.4,79.309,81.218,82.243,82.936,83.965,84.633,85.894,88.056 +508,1,79.3438,0.03569,70.593,72.756,74.018,74.686,75.715,76.409,77.434,79.344,81.254,82.279,82.973,84.002,84.67,85.932,88.095 +509,1,79.3786,0.0357,70.621,72.786,74.049,74.717,75.747,76.442,77.467,79.379,81.29,82.316,83.01,84.04,84.708,85.971,88.136 +510,1,79.4134,0.03571,70.65,72.816,74.08,74.749,75.779,76.474,77.501,79.413,81.326,82.353,83.048,84.078,84.747,86.011,88.177 +511,1,79.4481,0.03572,70.678,72.846,74.111,74.78,75.811,76.507,77.534,79.448,81.362,82.389,83.085,84.116,84.786,86.05,88.218 +512,1,79.4828,0.03572,70.709,72.878,74.143,74.813,75.844,76.54,77.568,79.483,81.398,82.425,83.121,84.153,84.823,86.088,88.256 +513,1,79.5175,0.03573,70.738,72.908,74.174,74.844,75.876,76.573,77.601,79.518,81.434,82.462,83.159,84.191,84.861,86.127,88.297 +514,1,79.5521,0.03574,70.766,72.938,74.205,74.875,75.908,76.605,77.634,79.552,81.47,82.499,83.196,84.229,84.9,86.166,88.338 +515,1,79.5868,0.03574,70.797,72.97,74.237,74.908,75.942,76.639,77.668,79.587,81.505,82.535,83.232,84.265,84.937,86.204,88.377 +516,1,79.6213,0.03575,70.825,72.999,74.268,74.939,75.973,76.671,77.701,79.621,81.541,82.571,83.269,84.303,84.975,86.243,88.418 +517,1,79.6559,0.03576,70.853,73.029,74.298,74.971,76.005,76.704,77.735,79.656,81.577,82.608,83.306,84.341,85.013,86.282,88.458 +518,1,79.6904,0.03577,70.882,73.059,74.329,75.002,76.037,76.736,77.768,79.69,81.613,82.645,83.343,84.379,85.052,86.322,88.499 +519,1,79.7249,0.03577,70.912,73.091,74.361,75.034,76.07,76.769,77.801,79.725,81.648,82.681,83.38,84.416,85.088,86.359,88.537 +520,1,79.7594,0.03578,70.941,73.12,74.392,75.065,76.102,76.802,77.835,79.759,81.684,82.717,83.417,84.453,85.127,86.398,88.578 +521,1,79.7938,0.03579,70.969,73.15,74.423,75.096,76.134,76.834,77.868,79.794,81.72,82.754,83.454,84.491,85.165,86.437,88.619 +522,1,79.8282,0.03579,70.999,73.182,74.455,75.129,76.167,76.867,77.901,79.828,81.755,82.789,83.49,84.528,85.202,86.475,88.657 +523,1,79.8626,0.0358,71.027,73.211,74.485,75.16,76.199,76.899,77.934,79.863,81.791,82.826,83.527,84.565,85.24,86.514,88.698 +524,1,79.8969,0.03581,71.055,73.241,74.516,75.191,76.23,76.932,77.967,79.897,81.827,82.862,83.564,84.603,85.278,86.553,88.738 +525,1,79.9312,0.03582,71.083,73.271,74.546,75.222,76.262,76.964,78,79.931,81.862,82.899,83.6,84.641,85.316,86.592,88.779 +526,1,79.9655,0.03582,71.114,73.302,74.578,75.254,76.295,76.997,78.034,79.966,81.897,82.934,83.636,84.677,85.353,86.629,88.817 +527,1,79.9998,0.03583,71.142,73.332,74.609,75.285,76.326,77.029,78.066,80,81.933,82.971,83.673,84.715,85.391,86.668,88.858 +528,1,80.034,0.03584,71.17,73.361,74.639,75.316,76.358,77.061,78.099,80.034,81.969,83.007,83.71,84.752,85.429,86.707,88.898 +529,1,80.0682,0.03584,71.2,73.392,74.671,75.348,76.391,77.094,78.133,80.068,82.004,83.042,83.746,84.788,85.465,86.744,88.936 +530,1,80.1023,0.03585,71.228,73.422,74.701,75.379,76.422,77.126,78.165,80.102,82.039,83.079,83.782,84.826,85.503,86.783,88.976 +531,1,80.1365,0.03586,71.256,73.451,74.732,75.41,76.454,77.158,78.198,80.137,82.075,83.115,83.819,84.863,85.541,86.822,89.017 +532,1,80.1706,0.03587,71.284,73.481,74.762,75.44,76.485,77.19,78.231,80.171,82.11,83.151,83.856,84.901,85.579,86.861,89.057 +533,1,80.2046,0.03587,71.314,73.512,74.794,75.472,76.518,77.223,78.264,80.205,82.145,83.186,83.892,84.937,85.616,86.897,89.095 +534,1,80.2387,0.03588,71.342,73.541,74.824,75.503,76.549,77.255,78.297,80.239,82.181,83.223,83.928,84.974,85.653,86.936,89.135 +535,1,80.2727,0.03589,71.37,73.571,74.854,75.534,76.581,77.287,78.33,80.273,82.216,83.259,83.965,85.012,85.691,86.975,89.176 +536,1,80.3067,0.03589,71.4,73.602,74.886,75.566,76.613,77.319,78.363,80.307,82.251,83.294,84,85.048,85.728,87.012,89.213 +537,1,80.3406,0.0359,71.428,73.631,74.916,75.596,76.644,77.351,78.395,80.341,82.286,83.33,84.037,85.085,85.765,87.05,89.254 +538,1,80.3745,0.03591,71.455,73.66,74.946,75.627,76.676,77.383,78.428,80.375,82.321,83.366,84.073,85.122,85.803,87.089,89.294 +539,1,80.4084,0.03592,71.483,73.689,74.976,75.658,76.707,77.415,78.46,80.408,82.357,83.402,84.11,85.159,85.841,87.128,89.334 +540,1,80.4423,0.03592,71.513,73.72,75.008,75.69,76.739,77.448,78.493,80.442,82.391,83.437,84.145,85.195,85.877,87.164,89.371 +541,1,80.4761,0.03593,71.541,73.749,75.038,75.72,76.77,77.479,78.526,80.476,82.426,83.473,84.182,85.232,85.914,87.203,89.412 +542,1,80.5099,0.03594,71.568,73.779,75.068,75.75,76.802,77.511,78.558,80.51,82.462,83.509,84.218,85.269,85.952,87.241,89.452 +543,1,80.5437,0.03594,71.598,73.81,75.099,75.782,76.834,77.543,78.591,80.544,82.496,83.544,84.253,85.305,85.988,87.278,89.489 +544,1,80.5774,0.03595,71.626,73.839,75.129,75.813,76.865,77.575,78.624,80.577,82.531,83.58,84.29,85.342,86.026,87.316,89.529 +545,1,80.6112,0.03596,71.653,73.868,75.159,75.843,76.896,77.607,78.656,80.611,82.566,83.616,84.326,85.379,86.063,87.355,89.569 +546,1,80.6448,0.03597,71.681,73.897,75.189,75.873,76.927,77.638,78.688,80.645,82.601,83.651,84.362,85.416,86.101,87.393,89.609 +547,1,80.6785,0.03597,71.711,73.927,75.22,75.905,76.959,77.671,78.721,80.679,82.636,83.686,84.398,85.452,86.137,87.43,89.646 +548,1,80.7121,0.03598,71.738,73.956,75.25,75.935,76.99,77.702,78.753,80.712,82.671,83.722,84.434,85.489,86.174,87.468,89.686 +549,1,80.7457,0.03599,71.765,73.985,75.28,75.966,77.021,77.734,78.786,80.746,82.706,83.758,84.47,85.526,86.211,87.506,89.726 +550,1,80.7793,0.036,71.793,74.014,75.31,75.996,77.052,77.765,78.818,80.779,82.741,83.793,84.506,85.563,86.249,87.544,89.766 +551,1,80.8128,0.036,71.823,74.045,75.341,76.027,77.084,77.798,78.851,80.813,82.775,83.828,84.541,85.598,86.285,87.581,89.803 +552,1,80.8464,0.03601,71.85,74.074,75.371,76.058,77.115,77.829,78.883,80.846,82.81,83.864,84.577,85.635,86.322,87.619,89.843 +553,1,80.8798,0.03602,71.877,74.102,75.401,76.088,77.146,77.86,78.915,80.88,82.845,83.899,84.613,85.672,86.359,87.657,89.883 +554,1,80.9133,0.03602,71.907,74.133,75.432,76.119,77.178,77.893,78.948,80.913,82.879,83.934,84.648,85.707,86.395,87.693,89.92 +555,1,80.9467,0.03603,71.934,74.162,75.461,76.149,77.209,77.924,78.98,80.947,82.914,83.969,84.684,85.744,86.432,87.732,89.959 +556,1,80.9801,0.03604,71.961,74.191,75.491,76.18,77.24,77.955,79.012,80.98,82.949,84.005,84.72,85.781,86.469,87.77,89.999 +557,1,81.0135,0.03605,71.988,74.219,75.521,76.21,77.271,77.987,79.044,81.014,82.983,84.04,84.756,85.817,86.506,87.808,90.039 +558,1,81.0468,0.03605,72.018,74.25,75.552,76.241,77.302,78.019,79.076,81.047,83.017,84.075,84.791,85.853,86.542,87.844,90.076 +559,1,81.0802,0.03606,72.045,74.279,75.581,76.271,77.333,78.05,79.108,81.08,83.052,84.11,84.827,85.889,86.579,87.882,90.115 +560,1,81.1134,0.03607,72.072,74.307,75.611,76.301,77.364,78.081,79.14,81.113,83.087,84.146,84.863,85.926,86.616,87.92,90.155 +561,1,81.1467,0.03608,72.099,74.336,75.64,76.331,77.395,78.112,79.172,81.147,83.121,84.181,84.899,85.962,86.653,87.958,90.194 +562,1,81.1799,0.03608,72.129,74.366,75.671,76.362,77.426,78.144,79.204,81.18,83.155,84.216,84.934,85.998,86.689,87.994,90.231 +563,1,81.2131,0.03609,72.156,74.395,75.701,76.392,77.457,78.175,79.236,81.213,83.19,84.251,84.969,86.034,86.726,88.032,90.271 +564,1,81.2463,0.0361,72.183,74.423,75.73,76.422,77.488,78.206,79.268,81.246,83.225,84.286,85.005,86.071,86.763,88.069,90.31 +565,1,81.2795,0.03611,72.21,74.452,75.759,76.452,77.518,78.238,79.3,81.28,83.259,84.321,85.041,86.107,86.8,88.107,90.349 +566,1,81.3126,0.03611,72.239,74.482,75.79,76.483,77.55,78.269,79.332,81.313,83.293,84.356,85.075,86.142,86.835,88.143,90.386 +567,1,81.3457,0.03612,72.266,74.51,75.82,76.513,77.58,78.3,79.364,81.346,83.327,84.391,85.111,86.179,86.872,88.181,90.425 +568,1,81.3788,0.03613,72.293,74.539,75.849,76.543,77.611,78.331,79.396,81.379,83.362,84.426,85.147,86.215,86.909,88.219,90.465 +569,1,81.4118,0.03613,72.322,74.569,75.88,76.574,77.642,78.363,79.428,81.412,83.396,84.46,85.181,86.25,86.944,88.255,90.501 +570,1,81.4448,0.03614,72.349,74.597,75.909,76.603,77.673,78.394,79.459,81.445,83.43,84.495,85.217,86.286,86.981,88.292,90.541 +571,1,81.4778,0.03615,72.376,74.626,75.938,76.633,77.703,78.425,79.491,81.478,83.464,84.531,85.253,86.323,87.018,88.33,90.58 +572,1,81.5108,0.03616,72.403,74.654,75.967,76.663,77.734,78.456,79.523,81.511,83.499,84.566,85.288,86.359,87.054,88.368,90.619 +573,1,81.5437,0.03616,72.432,74.684,75.998,76.694,77.765,78.488,79.555,81.544,83.533,84.6,85.323,86.394,87.089,88.403,90.656 +574,1,81.5766,0.03617,72.458,74.712,76.027,76.723,77.795,78.518,79.586,81.577,83.567,84.635,85.358,86.43,87.126,88.441,90.695 +575,1,81.6095,0.03618,72.485,74.741,76.056,76.753,77.826,78.549,79.618,81.61,83.601,84.67,85.393,86.466,87.163,88.478,90.734 +576,1,81.6423,0.03619,72.512,74.769,76.085,76.782,77.856,78.58,79.649,81.642,83.635,84.705,85.429,86.502,87.199,88.516,90.773 +577,1,81.6752,0.03619,72.541,74.799,76.116,76.813,77.887,78.612,79.682,81.675,83.669,84.739,85.463,86.537,87.234,88.551,90.809 +578,1,81.708,0.0362,72.568,74.827,76.145,76.843,77.917,78.642,79.713,81.708,83.703,84.774,85.499,86.573,87.271,88.589,90.848 +579,1,81.7407,0.03621,72.594,74.855,76.174,76.872,77.948,78.673,79.744,81.741,83.737,84.808,85.534,86.609,87.308,88.626,90.887 +580,1,81.7735,0.03622,72.621,74.883,76.203,76.902,77.978,78.704,79.776,81.774,83.771,84.843,85.569,86.645,87.344,88.664,90.926 +581,1,81.8062,0.03622,72.65,74.913,76.233,76.932,78.009,78.735,79.808,81.806,83.805,84.877,85.603,86.68,87.379,88.699,90.963 +582,1,81.8389,0.03623,72.676,74.941,76.262,76.962,78.039,78.766,79.839,81.839,83.839,84.912,85.639,86.716,87.415,88.737,91.002 +583,1,81.8715,0.03624,72.703,74.969,76.291,76.991,78.069,78.796,79.87,81.872,83.873,84.947,85.674,86.752,87.452,88.774,91.04 +584,1,81.9042,0.03624,72.732,74.999,76.322,77.022,78.1,78.828,79.902,81.904,83.906,84.981,85.708,86.786,87.487,88.809,91.077 +585,1,81.9368,0.03625,72.758,75.027,76.35,77.051,78.13,78.858,79.933,81.937,83.94,85.015,85.743,86.822,87.523,88.847,91.115 +586,1,81.9694,0.03626,72.785,75.055,76.379,77.081,78.16,78.889,79.965,81.969,83.974,85.05,85.778,86.858,87.56,88.884,91.154 +587,1,82.0019,0.03627,72.811,75.083,76.408,77.11,78.19,78.919,79.996,82.002,84.008,85.084,85.814,86.894,87.596,88.921,91.193 +588,1,82.0345,0.03627,72.84,75.113,76.438,77.14,78.221,78.951,80.028,82.035,84.041,85.118,85.848,86.929,87.631,88.956,91.229 +589,1,82.067,0.03628,72.866,75.141,76.467,77.17,78.251,78.981,80.059,82.067,84.075,85.153,85.883,86.964,87.667,88.993,91.268 +590,1,82.0994,0.03629,72.892,75.168,76.496,77.199,78.281,79.011,80.09,82.099,84.109,85.187,85.918,87,87.703,89.03,91.306 +591,1,82.1319,0.0363,72.919,75.196,76.525,77.228,78.311,79.042,80.121,82.132,84.143,85.222,85.953,87.036,87.739,89.068,91.345 +592,1,82.1643,0.0363,72.947,75.226,76.555,77.258,78.342,79.073,80.153,82.164,84.176,85.256,85.987,87.07,87.774,89.103,91.381 +593,1,82.1967,0.03631,72.974,75.254,76.583,77.288,78.372,79.103,80.184,82.197,84.21,85.29,86.022,87.106,87.81,89.14,91.42 +594,1,82.2291,0.03632,73,75.281,76.612,77.317,78.402,79.134,80.215,82.229,84.244,85.324,86.057,87.142,87.846,89.177,91.458 +595,1,82.2614,0.03633,73.026,75.309,76.641,77.346,78.431,79.164,80.246,82.261,84.277,85.359,86.091,87.177,87.882,89.214,91.497 +596,1,82.2938,0.03633,73.055,75.339,76.671,77.376,78.462,79.195,80.277,82.294,84.31,85.392,86.125,87.211,87.917,89.249,91.533 +597,1,82.3261,0.03634,73.081,75.366,76.699,77.405,78.492,79.225,80.308,82.326,84.344,85.427,86.16,87.247,87.953,89.286,91.571 +598,1,82.3583,0.03635,73.107,75.394,76.728,77.434,78.522,79.256,80.339,82.358,84.378,85.461,86.195,87.283,87.989,89.323,91.61 +599,1,82.3906,0.03636,73.133,75.422,76.756,77.463,78.551,79.286,80.37,82.391,84.411,85.495,86.23,87.318,88.025,89.36,91.648 +600,1,82.4228,0.03636,73.162,75.451,76.786,77.493,78.582,79.317,80.401,82.423,84.444,85.529,86.263,87.352,88.059,89.395,91.684 +601,1,82.455,0.03637,73.188,75.479,76.815,77.522,78.612,79.347,80.432,82.455,84.478,85.563,86.298,87.388,88.095,89.431,91.722 +602,1,82.4872,0.03638,73.214,75.506,76.843,77.551,78.641,79.377,80.463,82.487,84.511,85.597,86.333,87.423,88.131,89.468,91.761 +603,1,82.5193,0.03639,73.24,75.534,76.872,77.58,78.671,79.407,80.494,82.519,84.545,85.632,86.368,87.459,88.167,89.505,91.799 +604,1,82.5514,0.03639,73.268,75.563,76.901,77.61,78.702,79.438,80.525,82.551,84.578,85.665,86.401,87.493,88.201,89.54,91.835 +605,1,82.5835,0.0364,73.294,75.59,76.93,77.639,78.731,79.468,80.556,82.584,84.611,85.699,86.436,87.528,88.237,89.577,91.873 +606,1,82.6156,0.03641,73.32,75.618,76.958,77.668,78.761,79.498,80.587,82.616,84.644,85.733,86.471,87.563,88.273,89.613,91.911 +607,1,82.6476,0.03642,73.346,75.645,76.986,77.697,78.79,79.528,80.617,82.648,84.678,85.767,86.505,87.599,88.309,89.65,91.949 +608,1,82.6796,0.03642,73.374,75.675,77.016,77.727,78.821,79.559,80.649,82.68,84.711,85.8,86.539,87.633,88.343,89.685,91.985 +609,1,82.7116,0.03643,73.4,75.702,77.044,77.755,78.85,79.589,80.679,82.712,84.744,85.835,86.573,87.668,88.379,89.721,92.023 +610,1,82.7436,0.03644,73.426,75.729,77.073,77.784,78.879,79.619,80.71,82.744,84.777,85.869,86.608,87.703,88.415,89.758,92.061 +611,1,82.7755,0.03645,73.452,75.757,77.101,77.813,78.909,79.648,80.74,82.776,84.811,85.903,86.642,87.738,88.45,89.794,92.099 +612,1,82.8074,0.03645,73.48,75.786,77.131,77.843,78.939,79.679,80.772,82.807,84.843,85.936,86.676,87.772,88.484,89.829,92.135 +613,1,82.8393,0.03646,73.506,75.813,77.159,77.871,78.969,79.709,80.802,82.839,84.876,85.97,86.71,87.807,88.52,89.866,92.173 +614,1,82.8712,0.03647,73.532,75.84,77.187,77.9,78.998,79.739,80.833,82.871,84.91,86.004,86.744,87.842,88.556,89.902,92.211 +615,1,82.903,0.03648,73.557,75.867,77.215,77.928,79.027,79.769,80.863,82.903,84.943,86.037,86.779,87.878,88.591,89.939,92.249 +616,1,82.9348,0.03648,73.585,75.897,77.245,77.958,79.058,79.799,80.894,82.935,84.975,86.07,86.812,87.911,88.625,89.973,92.284 +617,1,82.9666,0.03649,73.611,75.924,77.273,77.987,79.087,79.829,80.925,82.967,85.009,86.104,86.846,87.946,88.661,90.01,92.322 +618,1,82.9984,0.0365,73.637,75.951,77.301,78.015,79.116,79.859,80.955,82.998,85.042,86.138,86.881,87.981,88.696,90.046,92.36 +619,1,83.0301,0.0365,73.665,75.98,77.33,78.045,79.146,79.889,80.986,83.03,85.074,86.171,86.914,88.015,88.73,90.08,92.395 +620,1,83.0618,0.03651,73.69,76.007,77.358,78.074,79.175,79.919,81.016,83.062,85.107,86.205,86.948,88.05,88.765,90.117,92.433 +621,1,83.0935,0.03652,73.716,76.034,77.386,78.102,79.205,79.948,81.047,83.094,85.14,86.239,86.982,88.085,88.801,90.153,92.471 +622,1,83.1251,0.03653,73.741,76.061,77.414,78.13,79.234,79.978,81.077,83.125,85.173,86.272,87.017,88.12,88.836,90.189,92.509 +623,1,83.1568,0.03653,73.77,76.09,77.443,78.16,79.264,80.008,81.108,83.157,85.206,86.305,87.05,88.153,88.87,90.224,92.544 +624,1,83.1884,0.03654,73.795,76.117,77.471,78.189,79.293,80.038,81.138,83.188,85.239,86.339,87.084,88.188,88.905,90.26,92.582 +625,1,83.22,0.03655,73.82,76.144,77.499,78.217,79.322,80.067,81.168,83.22,85.272,86.373,87.118,88.223,88.941,90.296,92.62 +626,1,83.2515,0.03656,73.846,76.171,77.527,78.245,79.351,80.097,81.199,83.252,85.304,86.406,87.152,88.258,88.976,90.332,92.657 +627,1,83.2831,0.03656,73.874,76.2,77.556,78.275,79.381,80.127,81.229,83.283,85.337,86.439,87.185,88.291,89.01,90.366,92.692 +628,1,83.3146,0.03657,73.899,76.227,77.584,78.303,79.41,80.157,81.26,83.315,85.37,86.472,87.219,88.326,89.045,90.403,92.73 +629,1,83.3461,0.03658,73.925,76.254,77.612,78.331,79.439,80.186,81.29,83.346,85.402,86.506,87.253,88.361,89.08,90.439,92.768 +630,1,83.3775,0.03659,73.95,76.28,77.64,78.359,79.468,80.216,81.32,83.378,85.435,86.539,87.287,88.396,89.115,90.475,92.805 +631,1,83.4089,0.03659,73.978,76.309,77.669,78.389,79.498,80.246,81.35,83.409,85.467,86.572,87.32,88.429,89.149,90.509,92.84 +632,1,83.4403,0.0366,74.003,76.336,77.697,78.417,79.527,80.275,81.38,83.44,85.5,86.605,87.354,88.464,89.184,90.545,92.878 +633,1,83.4717,0.03661,74.028,76.363,77.724,78.445,79.555,80.304,81.411,83.472,85.533,86.639,87.388,88.498,89.219,90.581,92.915 +634,1,83.5031,0.03662,74.054,76.389,77.752,78.473,79.584,80.334,81.441,83.503,85.566,86.672,87.422,88.533,89.254,90.617,92.953 +635,1,83.5344,0.03662,74.081,76.418,77.781,78.503,79.614,80.364,81.471,83.534,85.598,86.705,87.455,88.566,89.288,90.651,92.988 +636,1,83.5657,0.03663,74.106,76.445,77.809,78.531,79.643,80.393,81.501,83.566,85.63,86.738,87.489,88.601,89.323,90.687,93.025 +637,1,83.597,0.03664,74.132,76.471,77.836,78.559,79.672,80.422,81.531,83.597,85.663,86.772,87.522,88.635,89.358,90.723,93.062 +638,1,83.6283,0.03665,74.157,76.498,77.864,78.587,79.7,80.452,81.561,83.628,85.696,86.805,87.556,88.67,89.393,90.759,93.1 +639,1,83.6595,0.03665,74.184,76.527,77.893,78.616,79.73,80.482,81.591,83.66,85.728,86.837,87.589,88.703,89.426,90.792,93.135 +640,1,83.6907,0.03666,74.21,76.553,77.92,78.644,79.759,80.511,81.621,83.691,85.76,86.871,87.623,88.737,89.461,90.828,93.172 +641,1,83.7219,0.03667,74.235,76.58,77.948,78.672,79.787,80.54,81.651,83.722,85.793,86.904,87.656,88.772,89.496,90.864,93.209 +642,1,83.753,0.03668,74.26,76.606,77.975,78.7,79.816,80.569,81.681,83.753,85.825,86.937,87.69,88.806,89.531,90.9,93.246 +643,1,83.7842,0.03668,74.287,76.635,78.004,78.729,79.846,80.599,81.711,83.784,85.857,86.969,87.723,88.839,89.564,90.934,93.281 +644,1,83.8153,0.03669,74.312,76.661,78.032,78.757,79.874,80.628,81.741,83.815,85.889,87.003,87.756,88.874,89.599,90.969,93.318 +645,1,83.8464,0.0367,74.337,76.688,78.059,78.785,79.903,80.657,81.771,83.846,85.922,87.036,87.79,88.908,89.634,91.005,93.356 +646,1,83.8774,0.03671,74.362,76.714,78.086,78.813,79.931,80.686,81.801,83.877,85.954,87.069,87.823,88.942,89.669,91.041,93.393 +647,1,83.9085,0.03671,74.39,76.743,78.115,78.842,79.961,80.716,81.831,83.909,85.986,87.101,87.856,88.975,89.702,91.074,93.427 +648,1,83.9395,0.03672,74.415,76.769,78.142,78.87,79.989,80.745,81.861,83.94,86.018,87.134,87.89,89.009,89.737,91.11,93.464 +649,1,83.9705,0.03673,74.439,76.795,78.17,78.897,80.018,80.774,81.89,83.971,86.051,87.167,87.923,89.044,89.771,91.146,93.502 +650,1,84.0014,0.03674,74.464,76.822,78.197,78.925,80.046,80.803,81.92,84.001,86.083,87.2,87.957,89.078,89.806,91.181,93.539 +651,1,84.0324,0.03674,74.492,76.85,78.226,78.954,80.076,80.833,81.95,84.032,86.115,87.232,87.989,89.111,89.839,91.215,93.573 +652,1,84.0633,0.03675,74.517,76.876,78.253,78.982,80.104,80.861,81.98,84.063,86.147,87.265,88.022,89.145,89.874,91.25,93.61 +653,1,84.0941,0.03676,74.541,76.903,78.28,79.009,80.132,80.89,82.009,84.094,86.179,87.298,88.056,89.179,89.908,91.286,93.647 +654,1,84.125,0.03677,74.566,76.929,78.307,79.037,80.161,80.919,82.039,84.125,86.211,87.331,88.089,89.213,89.943,91.321,93.684 +655,1,84.1558,0.03677,74.593,76.957,78.336,79.066,80.19,80.949,82.069,84.156,86.243,87.363,88.121,89.246,89.976,91.354,93.718 +656,1,84.1867,0.03678,74.618,76.983,78.363,79.094,80.219,80.978,82.098,84.187,86.275,87.396,88.155,89.28,90.01,91.39,93.755 +657,1,84.2174,0.03679,74.643,77.01,78.39,79.121,80.247,81.006,82.128,84.217,86.307,87.429,88.188,89.314,90.045,91.425,93.792 +658,1,84.2482,0.0368,74.667,77.036,78.417,79.149,80.275,81.035,82.157,84.248,86.339,87.461,88.221,89.348,90.079,91.461,93.829 +659,1,84.2789,0.0368,74.695,77.064,78.446,79.177,80.304,81.064,82.187,84.279,86.371,87.493,88.254,89.38,90.112,91.494,93.863 +660,1,84.3096,0.03681,74.719,77.09,78.473,79.205,80.332,81.093,82.216,84.31,86.403,87.526,88.287,89.414,90.147,91.529,93.9 +661,1,84.3403,0.03682,74.744,77.116,78.5,79.232,80.361,81.122,82.246,84.34,86.435,87.559,88.32,89.448,90.181,91.565,93.937 +662,1,84.371,0.03683,74.768,77.142,78.527,79.26,80.389,81.15,82.275,84.371,86.467,87.592,88.353,89.482,90.215,91.6,93.974 +663,1,84.4016,0.03683,74.796,77.17,78.555,79.289,80.418,81.18,82.305,84.402,86.498,87.623,88.385,89.515,90.248,91.633,94.008 +664,1,84.4323,0.03684,74.82,77.196,78.582,79.316,80.446,81.208,82.334,84.432,86.53,87.656,88.419,89.549,90.282,91.668,94.044 +665,1,84.4628,0.03685,74.845,77.222,78.609,79.343,80.474,81.237,82.363,84.463,86.562,87.689,88.452,89.582,90.317,91.703,94.081 +666,1,84.4934,0.03686,74.869,77.248,78.636,79.371,80.502,81.266,82.393,84.493,86.594,87.721,88.485,89.616,90.351,91.739,94.118 +667,1,84.5239,0.03686,74.896,77.276,78.664,79.399,80.531,81.295,82.422,84.524,86.625,87.753,88.517,89.649,90.384,91.772,94.152 +668,1,84.5545,0.03687,74.921,77.302,78.691,79.427,80.559,81.323,82.452,84.555,86.657,87.786,88.55,89.682,90.418,91.807,94.188 +669,1,84.585,0.03688,74.945,77.328,78.718,79.454,80.587,81.352,82.481,84.585,86.689,87.818,88.583,89.716,90.452,91.842,94.225 +670,1,84.6154,0.03689,74.969,77.354,78.745,79.481,80.615,81.38,82.51,84.615,86.721,87.851,88.616,89.75,90.486,91.877,94.261 +671,1,84.6459,0.03689,74.996,77.382,78.773,79.51,80.644,81.41,82.54,84.646,86.752,87.882,88.648,89.782,90.519,91.91,94.295 +672,1,84.6763,0.0369,75.021,77.407,78.8,79.537,80.672,81.438,82.569,84.676,86.784,87.915,88.681,89.816,90.553,91.945,94.332 +673,1,84.7067,0.03691,75.045,77.433,78.826,79.564,80.7,81.466,82.598,84.707,86.816,87.947,88.714,89.849,90.587,91.98,94.368 +674,1,84.737,0.03692,75.069,77.459,78.853,79.591,80.728,81.495,82.627,84.737,86.847,87.979,88.746,89.883,90.621,92.015,94.405 +675,1,84.7674,0.03692,75.096,77.487,78.881,79.62,80.757,81.524,82.657,84.767,86.878,88.011,88.778,89.915,90.654,92.048,94.439 +676,1,84.7977,0.03693,75.12,77.513,78.908,79.647,80.784,81.552,82.685,84.798,86.91,88.043,88.811,89.949,90.688,92.083,94.475 +677,1,84.828,0.03694,75.145,77.538,78.934,79.674,80.812,81.58,82.714,84.828,86.942,88.076,88.844,89.982,90.722,92.118,94.511 +678,1,84.8583,0.03695,75.169,77.564,78.961,79.701,80.84,81.609,82.743,84.858,86.973,88.108,88.877,90.016,90.756,92.153,94.548 +679,1,84.8885,0.03695,75.196,77.592,78.989,79.729,80.869,81.638,82.773,84.889,87.004,88.139,88.908,90.048,90.788,92.185,94.581 +680,1,84.9188,0.03696,75.22,77.617,79.016,79.756,80.897,81.666,82.802,84.919,87.036,88.172,88.941,90.081,90.822,92.22,94.618 +681,1,84.949,0.03697,75.244,77.643,79.042,79.783,80.924,81.694,82.831,84.949,87.067,88.204,88.974,90.115,90.856,92.255,94.654 +682,1,84.9791,0.03698,75.268,77.668,79.069,79.81,80.952,81.722,82.859,84.979,87.099,88.236,89.006,90.148,90.89,92.29,94.69 +683,1,85.0093,0.03698,75.295,77.696,79.097,79.838,80.981,81.751,82.889,85.009,87.13,88.267,89.038,90.18,90.922,92.323,94.724 +684,1,85.0394,0.03699,75.319,77.722,79.123,79.865,81.008,81.779,82.918,85.039,87.161,88.3,89.071,90.213,90.956,92.357,94.76 +685,1,85.0695,0.037,75.343,77.747,79.15,79.892,81.036,81.807,82.946,85.07,87.193,88.332,89.103,90.247,90.989,92.392,94.796 +686,1,85.0996,0.03701,75.367,77.773,79.176,79.919,81.063,81.835,82.975,85.1,87.224,88.364,89.136,90.28,91.023,92.427,94.832 +687,1,85.1297,0.03701,75.393,77.8,79.204,79.947,81.092,81.864,83.005,85.13,87.255,88.395,89.167,90.312,91.055,92.459,94.866 +688,1,85.1597,0.03702,75.417,77.826,79.23,79.974,81.119,81.892,83.033,85.16,87.286,88.427,89.2,90.345,91.089,92.494,94.902 +689,1,85.1897,0.03703,75.441,77.851,79.257,80.001,81.147,81.92,83.062,85.19,87.317,88.459,89.232,90.379,91.123,92.528,94.938 +690,1,85.2197,0.03704,75.465,77.876,79.283,80.028,81.174,81.948,83.091,85.22,87.349,88.491,89.265,90.412,91.156,92.563,94.974 +691,1,85.2497,0.03704,75.492,77.904,79.311,80.056,81.203,81.977,83.12,85.25,87.38,88.522,89.296,90.444,91.189,92.595,95.008 +692,1,85.2796,0.03705,75.516,77.929,79.337,80.083,81.23,82.005,83.148,85.28,87.411,88.554,89.329,90.477,91.222,92.63,95.044 +693,1,85.3096,0.03706,75.54,77.955,79.363,80.109,81.258,82.033,83.177,85.31,87.442,88.586,89.361,90.51,91.256,92.665,95.08 +694,1,85.3395,0.03706,75.566,77.982,79.391,80.137,81.286,82.062,83.206,85.34,87.473,88.617,89.393,90.542,91.288,92.697,95.113 +695,1,85.3693,0.03707,75.59,78.007,79.417,80.164,81.314,82.089,83.235,85.369,87.504,88.649,89.425,90.575,91.321,92.731,95.149 +696,1,85.3992,0.03708,75.614,78.033,79.443,80.191,81.341,82.117,83.263,85.399,87.535,88.681,89.457,90.608,91.355,92.766,95.185 +697,1,85.429,0.03709,75.637,78.058,79.47,80.217,81.368,82.145,83.292,85.429,87.566,88.713,89.49,90.641,91.388,92.8,95.221 +698,1,85.4588,0.03709,75.664,78.085,79.497,80.245,81.397,82.174,83.321,85.459,87.597,88.744,89.521,90.672,91.42,92.833,95.254 +699,1,85.4886,0.0371,75.688,78.11,79.523,80.272,81.424,82.201,83.349,85.489,87.628,88.776,89.553,90.705,91.454,92.867,95.29 +700,1,85.5184,0.03711,75.711,78.136,79.55,80.298,81.451,82.229,83.378,85.518,87.659,88.808,89.586,90.738,91.487,92.901,95.326 +701,1,85.5481,0.03712,75.735,78.161,79.576,80.325,81.478,82.257,83.406,85.548,87.69,88.839,89.618,90.771,91.521,92.936,95.361 +702,1,85.5778,0.03712,75.761,78.188,79.603,80.353,81.507,82.285,83.435,85.578,87.72,88.87,89.649,90.803,91.552,92.968,95.394 +703,1,85.6075,0.03713,75.785,78.213,79.629,80.379,81.534,82.313,83.464,85.608,87.751,88.902,89.681,90.836,91.586,93.002,95.43 +704,1,85.6372,0.03714,75.809,78.238,79.655,80.406,81.561,82.341,83.492,85.637,87.782,88.934,89.713,90.869,91.619,93.036,95.466 +705,1,85.6668,0.03715,75.832,78.263,79.681,80.432,81.588,82.368,83.52,85.667,87.813,88.965,89.745,90.902,91.652,93.07,95.502 +706,1,85.6964,0.03715,75.858,78.29,79.709,80.46,81.616,82.397,83.549,85.696,87.844,88.996,89.776,90.933,91.684,93.103,95.535 +707,1,85.726,0.03716,75.882,78.315,79.735,80.486,81.644,82.424,83.577,85.726,87.875,89.028,89.808,90.966,91.717,93.137,95.57 +708,1,85.7556,0.03717,75.905,78.34,79.761,80.513,81.671,82.452,83.606,85.756,87.906,89.059,89.841,90.999,91.751,93.171,95.606 +709,1,85.7852,0.03718,75.929,78.365,79.786,80.539,81.698,82.48,83.634,85.785,87.936,89.091,89.873,91.031,91.784,93.205,95.641 +710,1,85.8147,0.03718,75.955,78.392,79.814,80.567,81.726,82.508,83.663,85.815,87.967,89.122,89.904,91.063,91.816,93.237,95.674 +711,1,85.8442,0.03719,75.978,78.417,79.84,80.593,81.753,82.535,83.691,85.844,87.998,89.153,89.936,91.095,91.849,93.271,95.71 +712,1,85.8737,0.0372,76.002,78.442,79.866,80.619,81.78,82.563,83.719,85.874,88.028,89.185,89.968,91.128,91.882,93.305,95.745 +713,1,85.9032,0.03721,76.025,78.467,79.891,80.645,81.807,82.59,83.747,85.903,88.059,89.216,90,91.161,91.915,93.339,95.781 +714,1,85.9326,0.03721,76.051,78.494,79.919,80.673,81.835,82.619,83.776,85.933,88.089,89.247,90.03,91.192,91.947,93.371,95.814 +715,1,85.9621,0.03722,76.075,78.519,79.944,80.699,81.862,82.646,83.804,85.962,88.12,89.278,90.062,91.225,91.98,93.405,95.849 +716,1,85.9915,0.03723,76.098,78.544,79.97,80.726,81.889,82.673,83.832,85.992,88.151,89.31,90.094,91.257,92.013,93.439,95.885 +717,1,86.0208,0.03724,76.122,78.569,79.996,80.752,81.915,82.701,83.86,86.021,88.181,89.341,90.126,91.29,92.046,93.473,95.92 +718,1,86.0502,0.03724,76.148,78.595,80.023,80.779,81.943,82.729,83.889,86.05,88.212,89.371,90.157,91.321,92.077,93.505,95.953 +719,1,86.0795,0.03725,76.171,78.62,80.049,80.805,81.97,82.756,83.917,86.08,88.242,89.403,90.189,91.354,92.11,93.539,95.988 +720,1,86.1089,0.03726,76.194,78.645,80.075,80.832,81.997,82.784,83.945,86.109,88.273,89.434,90.221,91.386,92.143,93.573,96.024 +721,1,86.1381,0.03727,76.217,78.67,80.1,80.858,82.024,82.811,83.973,86.138,88.303,89.465,90.252,91.419,92.176,93.607,96.059 +722,1,86.1674,0.03727,76.243,78.696,80.127,80.885,82.052,82.839,84.001,86.167,88.333,89.496,90.283,91.45,92.207,93.638,96.092 +723,1,86.1967,0.03728,76.267,78.721,80.153,80.911,82.079,82.866,84.029,86.197,88.364,89.527,90.315,91.482,92.24,93.672,96.127 +724,1,86.2259,0.03729,76.29,78.746,80.178,80.937,82.105,82.893,84.057,86.226,88.395,89.558,90.347,91.515,92.273,93.706,96.162 +725,1,86.2551,0.03729,76.316,78.773,80.206,80.965,82.133,82.921,84.086,86.255,88.425,89.589,90.377,91.546,92.305,93.738,96.195 +726,1,86.2843,0.0373,76.339,78.797,80.231,80.99,82.16,82.949,84.114,86.284,88.455,89.62,90.409,91.578,92.337,93.771,96.23 +727,1,86.3134,0.03731,76.362,78.822,80.257,81.016,82.186,82.976,84.141,86.313,88.485,89.651,90.44,91.61,92.37,93.805,96.265 +728,1,86.3426,0.03732,76.385,78.846,80.282,81.042,82.213,83.003,84.169,86.343,88.516,89.682,90.472,91.643,92.403,93.839,96.3 +729,1,86.3717,0.03732,76.411,78.873,80.309,81.07,82.241,83.031,84.198,86.372,88.546,89.713,90.503,91.674,92.434,93.87,96.333 +730,1,86.4008,0.03733,76.434,78.898,80.335,81.096,82.267,83.058,84.225,86.401,88.576,89.744,90.534,91.706,92.467,93.904,96.368 +731,1,85.7299,0.03764,75.758,78.223,79.661,80.422,81.594,82.385,83.553,85.73,87.906,89.074,89.865,91.038,91.799,93.237,95.702 +732,1,85.7589,0.03765,75.781,78.248,79.686,80.448,81.621,82.412,83.581,85.759,87.937,89.105,89.897,91.07,91.832,93.27,95.737 +733,1,85.788,0.03766,75.804,78.272,79.712,80.474,81.648,82.44,83.609,85.788,87.967,89.136,89.928,91.102,91.864,93.304,95.772 +734,1,85.817,0.03767,75.827,78.297,79.737,80.5,81.674,82.466,83.637,85.817,87.997,89.168,89.96,91.134,91.897,93.337,95.807 +735,1,85.846,0.03767,75.853,78.323,79.764,80.527,81.702,82.494,83.665,85.846,88.027,89.198,89.99,91.165,91.928,93.369,95.839 +736,1,85.8749,0.03768,75.876,78.347,79.789,80.553,81.728,82.521,83.692,85.875,88.057,89.229,90.022,91.197,91.961,93.402,95.874 +737,1,85.9039,0.03769,75.899,78.372,79.814,80.578,81.755,82.548,83.72,85.904,88.088,89.26,90.053,91.229,91.993,93.436,95.909 +738,1,85.9328,0.0377,75.921,78.396,79.84,80.604,81.781,82.575,83.748,85.933,88.118,89.29,90.085,91.262,92.026,93.469,95.944 +739,1,85.9617,0.0377,75.947,78.423,79.867,80.631,81.809,82.603,83.776,85.962,88.148,89.321,90.115,91.292,92.057,93.501,95.976 +740,1,85.9906,0.03771,75.97,78.447,79.892,80.657,81.835,82.63,83.803,85.991,88.178,89.351,90.146,91.324,92.089,93.534,96.011 +741,1,86.0194,0.03772,75.993,78.471,79.917,80.682,81.861,82.657,83.831,86.019,88.208,89.382,90.178,91.356,92.122,93.568,96.046 +742,1,86.0483,0.03772,76.018,78.498,79.944,80.71,81.889,82.684,83.859,86.048,88.238,89.412,90.208,91.387,92.153,93.599,96.078 +743,1,86.0771,0.03773,76.041,78.522,79.969,80.735,81.915,82.711,83.887,86.077,88.268,89.443,90.239,91.419,92.185,93.632,96.113 +744,1,86.1059,0.03774,76.064,78.546,79.994,80.761,81.941,82.738,83.914,86.106,88.298,89.474,90.27,91.451,92.218,93.666,96.148 +745,1,86.1347,0.03775,76.087,78.57,80.019,80.786,81.968,82.765,83.942,86.135,88.328,89.505,90.302,91.483,92.25,93.699,96.183 +746,1,86.1634,0.03775,76.112,78.597,80.046,80.813,81.995,82.792,83.97,86.163,88.357,89.535,90.332,91.514,92.281,93.73,96.215 +747,1,86.1921,0.03776,76.135,78.621,80.071,80.839,82.021,82.819,83.997,86.192,88.387,89.565,90.363,91.545,92.313,93.763,96.25 +748,1,86.2209,0.03777,76.157,78.645,80.096,80.864,82.047,82.846,84.024,86.221,88.417,89.596,90.394,91.577,92.346,93.797,96.284 +749,1,86.2495,0.03778,76.18,78.669,80.121,80.89,82.074,82.872,84.052,86.25,88.447,89.627,90.425,91.609,92.378,93.83,96.319 +750,1,86.2782,0.03778,76.205,78.695,80.148,80.917,82.101,82.9,84.08,86.278,88.477,89.657,90.456,91.64,92.409,93.861,96.351 +751,1,86.3069,0.03779,76.228,78.719,80.173,80.942,82.127,82.927,84.107,86.307,88.507,89.687,90.487,91.672,92.441,93.894,96.386 +752,1,86.3355,0.0378,76.251,78.744,80.198,80.968,82.153,82.953,84.134,86.336,88.537,89.718,90.518,91.703,92.473,93.927,96.42 +753,1,86.3641,0.0378,76.276,78.77,80.224,80.994,82.18,82.981,84.162,86.364,88.566,89.748,90.548,91.734,92.504,93.959,96.452 +754,1,86.3927,0.03781,76.298,78.794,80.249,81.02,82.207,83.007,84.189,86.393,88.596,89.778,90.579,91.766,92.536,93.992,96.487 +755,1,86.4212,0.03782,76.321,78.818,80.274,81.045,82.233,83.034,84.217,86.421,88.626,89.809,90.61,91.797,92.568,94.025,96.521 +756,1,86.4498,0.03783,76.344,78.842,80.299,81.07,82.259,83.06,84.244,86.45,88.656,89.839,90.641,91.829,92.601,94.058,96.556 +757,1,86.4783,0.03783,76.369,78.868,80.325,81.097,82.286,83.088,84.272,86.478,88.685,89.869,90.671,91.859,92.631,94.089,96.588 +758,1,86.5068,0.03784,76.391,78.892,80.35,81.123,82.312,83.114,84.299,86.507,88.715,89.899,90.702,91.891,92.663,94.122,96.622 +759,1,86.5353,0.03785,76.414,78.916,80.375,81.148,82.338,83.141,84.326,86.535,88.744,89.93,90.733,91.923,92.696,94.155,96.657 +760,1,86.5638,0.03786,76.436,78.94,80.4,81.173,82.364,83.167,84.353,86.564,88.774,89.961,90.764,91.954,92.728,94.188,96.691 +761,1,86.5922,0.03786,76.461,78.966,80.426,81.2,82.391,83.194,84.381,86.592,88.803,89.99,90.794,91.985,92.758,94.219,96.723 +762,1,86.6206,0.03787,76.484,78.989,80.451,81.225,82.417,83.221,84.408,86.621,88.833,90.02,90.825,92.016,92.79,94.252,96.758 +763,1,86.649,0.03788,76.506,79.013,80.476,81.25,82.443,83.247,84.435,86.649,88.863,90.051,90.855,92.048,92.822,94.285,96.792 +764,1,86.6774,0.03788,76.531,79.039,80.502,81.277,82.47,83.274,84.463,86.677,88.892,90.08,90.885,92.078,92.853,94.316,96.824 +765,1,86.7057,0.03789,76.553,79.063,80.527,81.302,82.495,83.301,84.49,86.706,88.922,90.111,90.916,92.11,92.885,94.348,96.858 +766,1,86.7341,0.0379,76.576,79.087,80.552,81.327,82.521,83.327,84.517,86.734,88.951,90.141,90.947,92.141,92.917,94.381,96.892 +767,1,86.7624,0.03791,76.598,79.111,80.576,81.352,82.547,83.353,84.544,86.762,88.981,90.171,90.978,92.173,92.949,94.414,96.927 +768,1,86.7907,0.03791,76.623,79.136,80.602,81.379,82.574,83.381,84.571,86.791,89.01,90.201,91.007,92.203,92.979,94.445,96.958 +769,1,86.819,0.03792,76.645,79.16,80.627,81.404,82.6,83.407,84.598,86.819,89.04,90.231,91.038,92.234,93.011,94.478,96.993 +770,1,86.8472,0.03793,76.668,79.184,80.652,81.429,82.626,83.433,84.625,86.847,89.069,90.261,91.069,92.266,93.043,94.51,97.027 +771,1,86.8754,0.03794,76.69,79.208,80.676,81.454,82.651,83.459,84.652,86.875,89.099,90.292,91.099,92.297,93.075,94.543,97.061 +772,1,86.9037,0.03794,76.715,79.233,80.702,81.48,82.678,83.486,84.68,86.904,89.128,90.321,91.129,92.327,93.105,94.574,97.093 +773,1,86.9319,0.03795,76.737,79.257,80.727,81.505,82.704,83.513,84.707,86.932,89.157,90.351,91.16,92.358,93.137,94.607,97.127 +774,1,86.96,0.03796,76.759,79.281,80.751,81.53,82.73,83.539,84.734,86.96,89.186,90.381,91.19,92.39,93.169,94.639,97.161 +775,1,86.9882,0.03796,76.784,79.306,80.778,81.557,82.756,83.566,84.761,86.988,89.215,90.411,91.22,92.42,93.199,94.67,97.192 +776,1,87.0163,0.03797,76.806,79.33,80.802,81.582,82.782,83.592,84.788,87.016,89.245,90.441,91.251,92.451,93.23,94.703,97.226 +777,1,87.0444,0.03798,76.828,79.354,80.827,81.607,82.808,83.618,84.815,87.044,89.274,90.471,91.281,92.482,93.262,94.735,97.261 +778,1,87.0725,0.03799,76.85,79.377,80.851,81.632,82.833,83.644,84.841,87.073,89.304,90.501,91.312,92.513,93.294,94.768,97.295 +779,1,87.1006,0.03799,76.875,79.403,80.877,81.658,82.86,83.671,84.869,87.101,89.332,90.53,91.341,92.543,93.324,94.798,97.326 +780,1,87.1286,0.038,76.897,79.426,80.902,81.683,82.886,83.697,84.895,87.129,89.362,90.56,91.372,92.575,93.356,94.831,97.36 +781,1,87.1567,0.03801,76.919,79.45,80.926,81.708,82.911,83.723,84.922,87.157,89.391,90.59,91.402,92.606,93.387,94.863,97.394 +782,1,87.1847,0.03801,76.944,79.475,80.952,81.734,82.938,83.75,84.95,87.185,89.42,90.619,91.432,92.636,93.417,94.894,97.425 +783,1,87.2126,0.03802,76.966,79.499,80.976,81.759,82.963,83.776,84.976,87.213,89.449,90.649,91.462,92.667,93.449,94.926,97.459 +784,1,87.2406,0.03803,76.988,79.522,81.001,81.783,82.989,83.802,85.003,87.241,89.478,90.679,91.492,92.698,93.481,94.959,97.493 +785,1,87.2686,0.03804,77.01,79.546,81.025,81.808,83.014,83.828,85.029,87.269,89.508,90.709,91.523,92.729,93.512,94.991,97.527 +786,1,87.2965,0.03804,77.035,79.571,81.051,81.834,83.041,83.855,85.057,87.297,89.536,90.738,91.552,92.759,93.542,95.022,97.558 +787,1,87.3244,0.03805,77.057,79.595,81.075,81.859,83.066,83.881,85.083,87.324,89.566,90.768,91.583,92.79,93.574,95.054,97.592 +788,1,87.3523,0.03806,77.078,79.618,81.099,81.884,83.092,83.907,85.11,87.352,89.595,90.798,91.613,92.821,93.605,95.087,97.626 +789,1,87.3801,0.03806,77.103,79.643,81.125,81.91,83.118,83.933,85.137,87.38,89.623,90.827,91.642,92.85,93.635,95.117,97.657 +790,1,87.408,0.03807,77.125,79.667,81.149,81.935,83.143,83.959,85.164,87.408,89.652,90.857,91.673,92.881,93.667,95.149,97.691 +791,1,87.4358,0.03808,77.147,79.69,81.174,81.959,83.169,83.985,85.19,87.436,89.682,90.887,91.703,92.912,93.698,95.182,97.725 +792,1,87.4636,0.03809,77.169,79.713,81.198,81.984,83.194,84.011,85.217,87.464,89.711,90.916,91.733,92.943,93.729,95.214,97.759 +793,1,87.4914,0.03809,77.193,79.739,81.224,82.01,83.221,84.037,85.244,87.491,89.739,90.945,91.762,92.973,93.759,95.244,97.79 +794,1,87.5192,0.0381,77.215,79.762,81.248,82.034,83.246,84.063,85.27,87.519,89.768,90.975,91.793,93.004,93.791,95.276,97.824 +795,1,87.5469,0.03811,77.237,79.785,81.272,82.059,83.271,84.089,85.297,87.547,89.797,91.005,91.823,93.035,93.822,95.309,97.857 +796,1,87.5746,0.03812,77.258,79.808,81.296,82.084,83.296,84.115,85.323,87.575,89.826,91.035,91.853,93.066,93.853,95.341,97.891 +797,1,87.6023,0.03812,77.283,79.834,81.322,82.109,83.323,84.141,85.35,87.602,89.855,91.063,91.882,93.095,93.883,95.371,97.922 +798,1,87.63,0.03813,77.305,79.857,81.346,82.134,83.348,84.167,85.376,87.63,89.884,91.093,91.912,93.126,93.914,95.403,97.955 +799,1,87.6577,0.03814,77.326,79.88,81.37,82.159,83.373,84.193,85.403,87.658,89.913,91.123,91.942,93.157,93.946,95.435,97.989 +800,1,87.6853,0.03814,77.351,79.905,81.395,82.184,83.399,84.219,85.43,87.685,89.941,91.151,91.971,93.186,93.975,95.465,98.02 +801,1,87.7129,0.03815,77.372,79.928,81.419,82.209,83.425,84.245,85.456,87.713,89.97,91.181,92.001,93.217,94.007,95.497,98.054 +802,1,87.7405,0.03816,77.394,79.951,81.443,82.233,83.45,84.27,85.482,87.741,89.999,91.211,92.031,93.248,94.038,95.53,98.087 +803,1,87.7681,0.03817,77.415,79.975,81.467,82.258,83.475,84.296,85.508,87.768,90.028,91.24,92.061,93.279,94.069,95.562,98.121 +804,1,87.7956,0.03817,77.44,80,81.493,82.283,83.501,84.322,85.535,87.796,90.056,91.269,92.09,93.308,94.098,95.592,98.151 +805,1,87.8232,0.03818,77.461,80.023,81.517,82.308,83.526,84.348,85.562,87.823,90.085,91.298,92.12,93.339,94.13,95.624,98.185 +806,1,87.8507,0.03819,77.483,80.046,81.541,82.332,83.551,84.373,85.588,87.851,90.114,91.328,92.15,93.369,94.161,95.656,98.218 +807,1,87.8782,0.03819,77.507,80.071,81.566,82.358,83.577,84.4,85.615,87.878,90.142,91.357,92.179,93.398,94.19,95.686,98.249 +808,1,87.9056,0.0382,77.529,80.094,81.59,82.382,83.602,84.425,85.641,87.906,90.171,91.386,92.209,93.429,94.221,95.717,98.283 +809,1,87.9331,0.03821,77.55,80.117,81.614,82.407,83.627,84.451,85.667,87.933,90.199,91.415,92.239,93.46,94.252,95.749,98.316 +810,1,87.9605,0.03821,77.574,80.142,81.639,82.432,83.653,84.477,85.694,87.961,90.227,91.444,92.268,93.489,94.282,95.779,98.347 +811,1,87.9879,0.03822,77.596,80.165,81.663,82.456,83.678,84.502,85.72,87.988,90.256,91.473,92.298,93.519,94.313,95.811,98.38 +812,1,88.0153,0.03823,77.617,80.188,81.687,82.481,83.703,84.528,85.746,88.015,90.285,91.503,92.327,93.55,94.344,95.843,98.413 +813,1,88.0427,0.03824,77.639,80.21,81.711,82.505,83.728,84.553,85.772,88.043,90.314,91.532,92.357,93.581,94.375,95.875,98.447 +814,1,88.07,0.03824,77.663,80.235,81.736,82.53,83.754,84.58,85.798,88.07,90.342,91.56,92.386,93.61,94.404,95.905,98.477 +815,1,88.0974,0.03825,77.684,80.258,81.76,82.555,83.779,84.605,85.825,88.097,90.37,91.59,92.416,93.64,94.435,95.937,98.511 +816,1,88.1247,0.03826,77.706,80.281,81.783,82.579,83.804,84.63,85.851,88.125,90.399,91.619,92.446,93.671,94.466,95.968,98.544 +817,1,88.1519,0.03826,77.729,80.306,81.809,82.604,83.83,84.656,85.877,88.152,90.427,91.647,92.474,93.699,94.495,95.998,98.574 +818,1,88.1792,0.03827,77.751,80.329,81.832,82.628,83.854,84.682,85.903,88.179,90.455,91.677,92.504,93.73,94.526,96.03,98.608 +819,1,88.2065,0.03828,77.772,80.351,81.856,82.653,83.879,84.707,85.929,88.207,90.484,91.706,92.534,93.76,94.557,96.062,98.641 +820,1,88.2337,0.03829,77.793,80.374,81.879,82.677,83.904,84.732,85.955,88.234,90.512,91.735,92.563,93.791,94.588,96.093,98.674 +821,1,88.2609,0.03829,77.817,80.399,81.905,82.702,83.93,84.758,85.981,88.261,90.54,91.764,92.592,93.82,94.617,96.123,98.704 +822,1,88.2881,0.0383,77.839,80.422,81.928,82.726,83.955,84.783,86.007,88.288,90.569,91.793,92.622,93.85,94.648,96.154,98.738 +823,1,88.3152,0.03831,77.86,80.444,81.952,82.75,83.979,84.809,86.033,88.315,90.597,91.822,92.651,93.88,94.679,96.186,98.771 +824,1,88.3423,0.03831,77.884,80.469,81.977,82.775,84.005,84.835,86.06,88.342,90.625,91.85,92.68,93.909,94.708,96.216,98.801 +825,1,88.3695,0.03832,77.905,80.492,82.001,82.8,84.03,84.86,86.085,88.37,90.654,91.879,92.709,93.939,94.738,96.247,98.834 +826,1,88.3966,0.03833,77.926,80.514,82.024,82.823,84.054,84.885,86.111,88.397,90.682,91.908,92.739,93.97,94.769,96.279,98.867 +827,1,88.4236,0.03834,77.947,80.537,82.047,82.847,84.079,84.91,86.137,88.424,90.71,91.937,92.768,94,94.8,96.31,98.9 +828,1,88.4507,0.03834,77.971,80.562,82.073,82.873,84.105,84.936,86.163,88.451,90.738,91.965,92.797,94.029,94.829,96.34,98.93 +829,1,88.4777,0.03835,77.992,80.584,82.096,82.897,84.129,84.961,86.189,88.478,90.766,91.994,92.826,94.059,94.859,96.371,98.963 +830,1,88.5047,0.03836,78.013,80.607,82.119,82.92,84.154,84.986,86.215,88.505,90.795,92.023,92.856,94.089,94.89,96.403,98.996 +831,1,88.5317,0.03836,78.037,80.631,82.144,82.946,84.179,85.012,86.241,88.532,90.822,92.052,92.884,94.118,94.919,96.432,99.026 +832,1,88.5587,0.03837,78.058,80.654,82.168,82.969,84.204,85.037,86.267,88.559,90.851,92.08,92.913,94.148,94.95,96.464,99.059 +833,1,88.5856,0.03838,78.079,80.676,82.191,82.993,84.228,85.062,86.292,88.586,90.879,92.109,92.943,94.178,94.98,96.495,99.092 +834,1,88.6126,0.03838,78.103,80.701,82.216,83.019,84.254,85.088,86.319,88.613,90.907,92.137,92.971,94.207,95.009,96.524,99.122 +835,1,88.6395,0.03839,78.124,80.723,82.239,83.042,84.279,85.113,86.344,88.64,90.935,92.166,93,94.237,95.04,96.556,99.155 +836,1,88.6664,0.0384,78.145,80.746,82.263,83.066,84.303,85.138,86.37,88.666,90.963,92.195,93.03,94.267,95.07,96.587,99.188 +837,1,88.6932,0.03841,78.166,80.768,82.286,83.09,84.327,85.162,86.395,88.693,90.991,92.224,93.059,94.297,95.101,96.618,99.221 +838,1,88.7201,0.03841,78.189,80.793,82.311,83.115,84.353,85.188,86.422,88.72,91.019,92.252,93.087,94.325,95.129,96.648,99.251 +839,1,88.7469,0.03842,78.21,80.815,82.334,83.139,84.377,85.213,86.447,88.747,91.047,92.281,93.117,94.355,95.16,96.679,99.284 +840,1,88.7737,0.03843,78.231,80.837,82.357,83.162,84.402,85.238,86.473,88.774,91.075,92.31,93.146,94.385,95.19,96.71,99.316 +841,1,88.8005,0.03843,78.255,80.862,82.382,83.187,84.427,85.264,86.499,88.801,91.102,92.337,93.174,94.414,95.219,96.739,99.346 +842,1,88.8273,0.03844,78.276,80.884,82.405,83.211,84.451,85.288,86.524,88.827,91.13,92.366,93.203,94.444,95.249,96.771,99.379 +843,1,88.854,0.03845,78.296,80.906,82.428,83.234,84.476,85.313,86.55,88.854,91.158,92.395,93.232,94.474,95.28,96.802,99.412 +844,1,88.8807,0.03845,78.32,80.93,82.453,83.259,84.501,85.339,86.576,88.881,91.186,92.423,93.26,94.502,95.308,96.831,99.441 +845,1,88.9074,0.03846,78.341,80.953,82.476,83.283,84.525,85.363,86.601,88.907,91.214,92.451,93.29,94.532,95.339,96.862,99.474 +846,1,88.9341,0.03847,78.362,80.975,82.499,83.307,84.55,85.388,86.626,88.934,91.242,92.48,93.319,94.562,95.369,96.893,99.507 +847,1,88.9608,0.03848,78.382,80.997,82.522,83.33,84.574,85.413,86.652,88.961,91.27,92.509,93.348,94.591,95.399,96.924,99.539 +848,1,88.9874,0.03848,78.406,81.021,82.547,83.355,84.599,85.438,86.678,88.987,91.297,92.536,93.376,94.62,95.428,96.953,99.569 +849,1,89.014,0.03849,78.426,81.044,82.57,83.378,84.623,85.463,86.703,89.014,91.325,92.565,93.405,94.65,95.458,96.984,99.602 +850,1,89.0406,0.0385,78.447,81.066,82.593,83.402,84.647,85.488,86.728,89.041,91.353,92.594,93.434,94.679,95.488,97.015,99.634 +851,1,89.0672,0.0385,78.471,81.09,82.618,83.427,84.673,85.513,86.754,89.067,91.38,92.621,93.462,94.708,95.517,97.044,99.664 +852,1,89.0938,0.03851,78.491,81.112,82.641,83.45,84.697,85.538,86.78,89.094,91.408,92.65,93.491,94.737,95.547,97.076,99.696 +853,1,89.1203,0.03852,78.512,81.134,82.664,83.474,84.721,85.562,86.805,89.12,91.436,92.678,93.52,94.767,95.577,97.106,99.729 +854,1,89.1468,0.03852,78.535,81.158,82.688,83.498,84.746,85.588,86.831,89.147,91.463,92.706,93.548,94.795,95.605,97.135,99.758 +855,1,89.1733,0.03853,78.556,81.18,82.711,83.522,84.77,85.612,86.856,89.173,91.491,92.734,93.577,94.825,95.635,97.166,99.791 +856,1,89.1998,0.03854,78.576,81.202,82.734,83.545,84.794,85.637,86.881,89.2,91.519,92.763,93.605,94.854,95.666,97.197,99.823 +857,1,89.2263,0.03855,78.597,81.224,82.757,83.569,84.818,85.661,86.906,89.226,91.546,92.791,93.634,94.884,95.696,97.228,99.856 +858,1,89.2527,0.03855,78.62,81.248,82.781,83.593,84.843,85.687,86.932,89.253,91.573,92.819,93.662,94.912,95.724,97.257,99.885 +859,1,89.2791,0.03856,78.641,81.27,82.804,83.617,84.867,85.711,86.957,89.279,91.601,92.847,93.691,94.942,95.754,97.288,99.918 +860,1,89.3055,0.03857,78.661,81.292,82.827,83.64,84.891,85.735,86.982,89.306,91.629,92.876,93.72,94.971,95.784,97.319,99.95 +861,1,89.3319,0.03857,78.684,81.316,82.852,83.665,84.916,85.761,87.008,89.332,91.656,92.903,93.748,94.999,95.812,97.347,99.979 +862,1,89.3583,0.03858,78.705,81.338,82.874,83.688,84.94,85.785,87.033,89.358,91.684,92.931,93.776,95.029,95.842,97.378,100.012 +863,1,89.3846,0.03859,78.725,81.36,82.897,83.711,84.964,85.81,87.058,89.385,91.711,92.96,93.805,95.058,95.872,97.409,100.044 +864,1,89.4109,0.03859,78.748,81.384,82.921,83.736,84.989,85.835,87.084,89.411,91.738,92.987,93.833,95.086,95.9,97.438,100.073 +865,1,89.4372,0.0386,78.769,81.406,82.944,83.759,85.013,85.859,87.109,89.437,91.766,93.015,93.861,95.116,95.93,97.468,100.106 +866,1,89.4635,0.03861,78.789,81.428,82.967,83.782,85.037,85.883,87.134,89.464,91.793,93.044,93.89,95.145,95.96,97.499,100.138 +867,1,89.4898,0.03861,78.812,81.452,82.991,83.806,85.062,85.909,87.159,89.49,91.82,93.071,93.918,95.173,95.988,97.528,100.167 +868,1,89.516,0.03862,78.833,81.474,83.014,83.83,85.086,85.933,87.184,89.516,91.848,93.099,93.946,95.202,96.018,97.558,100.199 +869,1,89.5422,0.03863,78.853,81.495,83.037,83.853,85.109,85.957,87.209,89.542,91.875,93.127,93.975,95.232,96.048,97.589,100.231 +870,1,89.5684,0.03864,78.873,81.517,83.059,83.876,85.133,85.981,87.234,89.568,91.903,93.155,94.004,95.261,96.078,97.62,100.263 +871,1,89.5946,0.03864,78.896,81.541,83.083,83.9,85.158,86.007,87.26,89.595,91.93,93.183,94.031,95.289,96.106,97.648,100.293 +872,1,89.6208,0.03865,78.917,81.563,83.106,83.923,85.182,86.031,87.284,89.621,91.957,93.211,94.06,95.318,96.136,97.679,100.325 +873,1,89.6469,0.03866,78.937,81.584,83.129,83.946,85.205,86.055,87.309,89.647,91.985,93.239,94.088,95.348,96.165,97.709,100.357 +874,1,89.673,0.03866,78.96,81.608,83.153,83.971,85.23,86.08,87.335,89.673,92.011,93.266,94.116,95.375,96.193,97.738,100.386 +875,1,89.6991,0.03867,78.98,81.63,83.175,83.994,85.254,86.104,87.36,89.699,92.039,93.294,94.144,95.405,96.223,97.768,100.418 +876,1,89.7252,0.03868,79,81.651,83.198,84.017,85.277,86.128,87.384,89.725,92.066,93.322,94.173,95.434,96.253,97.799,100.45 +877,1,89.7513,0.03868,79.023,81.675,83.222,84.041,85.302,86.153,87.41,89.751,92.093,93.349,94.2,95.462,96.281,97.827,100.479 +878,1,89.7773,0.03869,79.043,81.697,83.244,84.064,85.326,86.177,87.434,89.777,92.12,93.377,94.229,95.491,96.31,97.858,100.511 +879,1,89.8033,0.0387,79.064,81.718,83.267,84.087,85.349,86.201,87.459,89.803,92.147,93.405,94.257,95.52,96.34,97.888,100.543 +880,1,89.8293,0.0387,79.086,81.742,83.291,84.111,85.374,86.226,87.485,89.829,92.174,93.432,94.284,95.547,96.368,97.917,100.572 +881,1,89.8553,0.03871,79.107,81.764,83.313,84.134,85.398,86.25,87.509,89.855,92.201,93.46,94.313,95.577,96.397,97.947,100.604 +882,1,89.8813,0.03872,79.127,81.785,83.336,84.157,85.421,86.274,87.534,89.881,92.229,93.488,94.341,95.606,96.427,97.977,100.636 +883,1,89.9072,0.03872,79.149,81.809,83.36,84.181,85.446,86.299,87.559,89.907,92.255,93.515,94.369,95.633,96.455,98.006,100.665 +884,1,89.9331,0.03873,79.169,81.83,83.382,84.204,85.469,86.323,87.584,89.933,92.282,93.543,94.397,95.662,96.484,98.036,100.697 +885,1,89.9591,0.03874,79.19,81.852,83.405,84.227,85.493,86.347,87.608,89.959,92.31,93.571,94.425,95.691,96.514,98.066,100.729 +886,1,89.9849,0.03874,79.212,81.875,83.428,84.251,85.517,86.372,87.634,89.985,92.336,93.598,94.452,95.719,96.541,98.095,100.757 +887,1,90.0108,0.03875,79.232,81.897,83.451,84.274,85.541,86.396,87.658,90.011,92.363,93.626,94.481,95.748,96.571,98.125,100.789 +888,1,90.0366,0.03876,79.252,81.918,83.473,84.296,85.564,86.42,87.683,90.037,92.39,93.654,94.509,95.777,96.6,98.155,100.821 +889,1,90.0625,0.03877,79.272,81.94,83.495,84.319,85.588,86.444,87.707,90.063,92.418,93.681,94.537,95.806,96.63,98.185,100.853 +890,1,90.0883,0.03877,79.295,81.963,83.519,84.343,85.612,86.468,87.732,90.088,92.444,93.708,94.564,95.833,96.657,98.214,100.882 +891,1,90.1141,0.03878,79.315,81.984,83.541,84.366,85.636,86.492,87.757,90.114,92.471,93.736,94.593,95.862,96.687,98.244,100.913 +892,1,90.1398,0.03879,79.335,82.006,83.564,84.389,85.659,86.516,87.781,90.14,92.498,93.764,94.621,95.891,96.716,98.274,100.945 +893,1,90.1656,0.03879,79.357,82.029,83.587,84.413,85.683,86.541,87.807,90.166,92.525,93.791,94.648,95.919,96.744,98.302,100.974 +894,1,90.1913,0.0388,79.377,82.05,83.61,84.435,85.707,86.564,87.831,90.191,92.552,93.818,94.676,95.947,96.773,98.332,101.005 +895,1,90.217,0.03881,79.397,82.072,83.632,84.458,85.73,86.588,87.855,90.217,92.579,93.846,94.704,95.976,96.802,98.362,101.037 +896,1,90.2427,0.03881,79.42,82.095,83.656,84.482,85.754,86.613,87.88,90.243,92.605,93.873,94.731,96.004,96.83,98.39,101.066 +897,1,90.2684,0.03882,79.44,82.116,83.678,84.504,85.778,86.637,87.905,90.268,92.632,93.9,94.759,96.032,96.859,98.42,101.097 +898,1,90.294,0.03883,79.459,82.138,83.7,84.527,85.801,86.66,87.929,90.294,92.659,93.928,94.787,96.061,96.888,98.45,101.129 +899,1,90.3197,0.03883,79.482,82.161,83.724,84.551,85.825,86.685,87.954,90.32,92.685,93.955,94.814,96.088,96.916,98.478,101.157 +900,1,90.3453,0.03884,79.502,82.182,83.746,84.573,85.848,86.708,87.979,90.345,92.712,93.982,94.842,96.117,96.945,98.508,101.189 +901,1,90.3709,0.03885,79.521,82.203,83.768,84.596,85.871,86.732,88.003,90.371,92.739,94.01,94.87,96.146,96.974,98.538,101.22 +902,1,90.3965,0.03885,79.544,82.227,83.791,84.62,85.896,86.757,88.028,90.397,92.765,94.036,94.897,96.173,97.002,98.566,101.249 +903,1,90.422,0.03886,79.564,82.248,83.813,84.642,85.919,86.78,88.052,90.422,92.792,94.064,94.925,96.202,97.031,98.596,101.28 +904,1,90.4476,0.03887,79.583,82.269,83.835,84.665,85.942,86.804,88.076,90.448,92.819,94.091,94.953,96.23,97.06,98.626,101.312 +905,1,90.4731,0.03887,79.606,82.292,83.859,84.689,85.966,86.828,88.101,90.473,92.845,94.118,94.98,96.258,97.087,98.654,101.34 +906,1,90.4986,0.03888,79.625,82.313,83.881,84.711,85.989,86.852,88.125,90.499,92.872,94.145,95.008,96.286,97.116,98.684,101.372 +907,1,90.524,0.03889,79.645,82.334,83.903,84.733,86.012,86.875,88.149,90.524,92.899,94.173,95.036,96.315,97.145,98.714,101.403 +908,1,90.5495,0.03889,79.667,82.357,83.926,84.757,86.037,86.9,88.174,90.55,92.925,94.199,95.062,96.342,97.173,98.742,101.432 +909,1,90.575,0.0389,79.687,82.378,83.948,84.78,86.06,86.923,88.199,90.575,92.951,94.227,95.09,96.37,97.202,98.772,101.463 +910,1,90.6004,0.03891,79.707,82.399,83.97,84.802,86.083,86.947,88.223,90.6,92.978,94.254,95.118,96.399,97.231,98.801,101.494 +911,1,90.6258,0.03891,79.729,82.423,83.994,84.826,86.107,86.971,88.247,90.626,93.004,94.281,95.145,96.426,97.258,98.829,101.523 +912,1,90.6512,0.03892,79.748,82.444,84.015,84.848,86.13,86.995,88.272,90.651,93.031,94.308,95.173,96.454,97.287,98.859,101.554 +913,1,90.6765,0.03893,79.768,82.464,84.037,84.87,86.153,87.018,88.296,90.677,93.057,94.335,95.2,96.483,97.316,98.889,101.585 +914,1,90.7019,0.03893,79.79,82.488,84.061,84.894,86.177,87.042,88.32,90.702,93.084,94.362,95.227,96.51,97.343,98.916,101.614 +915,1,90.7272,0.03894,79.81,82.508,84.083,84.916,86.2,87.066,88.344,90.727,93.11,94.389,95.255,96.538,97.372,98.946,101.645 +916,1,90.7525,0.03895,79.829,82.529,84.104,84.938,86.222,87.089,88.368,90.753,93.137,94.416,95.283,96.567,97.401,98.976,101.676 +917,1,90.7778,0.03895,79.851,82.552,84.128,84.962,86.246,87.113,88.393,90.778,93.163,94.442,95.309,96.594,97.428,99.003,101.704 +918,1,90.8031,0.03896,79.871,82.573,84.149,84.984,86.269,87.137,88.417,90.803,93.189,94.47,95.337,96.622,97.457,99.033,101.735 +919,1,90.8283,0.03897,79.89,82.594,84.171,85.006,86.292,87.16,88.441,90.828,93.216,94.497,95.364,96.65,97.486,99.063,101.766 +920,1,90.8536,0.03897,79.912,82.617,84.195,85.03,86.316,87.184,88.466,90.854,93.242,94.523,95.391,96.677,97.513,99.09,101.795 +921,1,90.8788,0.03898,79.932,82.638,84.216,85.052,86.339,87.207,88.489,90.879,93.268,94.55,95.419,96.706,97.541,99.12,101.826 +922,1,90.904,0.03899,79.951,82.659,84.238,85.074,86.362,87.231,88.513,90.904,93.295,94.577,95.446,96.734,97.57,99.149,101.857 +923,1,90.9292,0.03899,79.973,82.682,84.261,85.098,86.386,87.255,88.538,90.929,93.32,94.604,95.473,96.761,97.597,99.177,101.885 +924,1,90.9544,0.039,79.993,82.702,84.283,85.12,86.408,87.278,88.562,90.954,93.347,94.631,95.5,96.789,97.626,99.206,101.916 +925,1,90.9795,0.03901,80.012,82.723,84.304,85.142,86.431,87.301,88.586,90.98,93.373,94.658,95.528,96.817,97.655,99.236,101.947 +926,1,91.0046,0.03901,80.034,82.746,84.328,85.165,86.455,87.325,88.61,91.005,93.399,94.684,95.554,96.844,97.682,99.263,101.975 +927,1,91.0297,0.03902,80.053,82.767,84.349,85.187,86.478,87.348,88.634,91.03,93.425,94.711,95.582,96.872,97.71,99.293,102.006 +928,1,91.0548,0.03903,80.073,82.787,84.371,85.209,86.5,87.371,88.658,91.055,93.452,94.738,95.609,96.9,97.739,99.322,102.037 +929,1,91.0799,0.03903,80.095,82.81,84.394,85.233,86.524,87.396,88.682,91.08,93.478,94.764,95.636,96.927,97.766,99.35,102.065 +930,1,91.105,0.03904,80.114,82.831,84.416,85.255,86.547,87.419,88.706,91.105,93.504,94.791,95.663,96.955,97.794,99.379,102.096 +931,1,91.13,0.03905,80.133,82.851,84.437,85.277,86.569,87.442,88.73,91.13,93.53,94.818,95.691,96.983,97.823,99.409,102.127 +932,1,91.155,0.03905,80.155,82.874,84.46,85.3,86.593,87.466,88.754,91.155,93.556,94.844,95.717,97.01,97.85,99.436,102.155 +933,1,91.18,0.03906,80.174,82.895,84.482,85.322,86.616,87.489,88.778,91.18,93.582,94.871,95.744,97.038,97.878,99.465,102.186 +934,1,91.205,0.03907,80.193,82.915,84.503,85.344,86.638,87.512,88.802,91.205,93.608,94.898,95.772,97.066,97.907,99.495,102.217 +935,1,91.23,0.03907,80.215,82.938,84.526,85.367,86.662,87.536,88.826,91.23,93.634,94.924,95.798,97.093,97.934,99.522,102.245 +936,1,91.2549,0.03908,80.234,82.959,84.548,85.389,86.685,87.559,88.85,91.255,93.66,94.951,95.825,97.121,97.962,99.551,102.275 +937,1,91.2799,0.03909,80.254,82.979,84.569,85.411,86.707,87.582,88.873,91.28,93.687,94.978,95.853,97.149,97.991,99.581,102.306 +938,1,91.3048,0.03909,80.275,83.002,84.592,85.434,86.731,87.606,88.897,91.305,93.712,95.004,95.879,97.175,98.018,99.608,102.334 +939,1,91.3297,0.0391,80.295,83.022,84.613,85.456,86.753,87.629,88.921,91.33,93.738,95.031,95.906,97.203,98.046,99.637,102.365 +940,1,91.3545,0.03911,80.313,83.043,84.635,85.478,86.776,87.651,88.945,91.355,93.764,95.058,95.933,97.231,98.074,99.666,102.396 +941,1,91.3794,0.03911,80.335,83.065,84.658,85.501,86.799,87.675,88.969,91.379,93.79,95.083,95.959,97.258,98.101,99.693,102.423 +942,1,91.4043,0.03912,80.354,83.086,84.679,85.523,86.822,87.698,88.993,91.404,93.816,95.11,95.987,97.286,98.13,99.723,102.454 +943,1,91.4291,0.03913,80.373,83.106,84.7,85.544,86.844,87.721,89.016,91.429,93.842,95.137,96.014,97.314,98.158,99.752,102.485 +944,1,91.4539,0.03913,80.395,83.129,84.723,85.568,86.868,87.745,89.04,91.454,93.868,95.163,96.04,97.34,98.184,99.779,102.513 +945,1,91.4787,0.03914,80.414,83.149,84.745,85.589,86.89,87.768,89.064,91.479,93.894,95.19,96.067,97.368,98.213,99.808,102.543 +946,1,91.5035,0.03915,80.433,83.17,84.766,85.611,86.913,87.791,89.087,91.504,93.92,95.216,96.094,97.396,98.241,99.837,102.574 +947,1,91.5282,0.03915,80.455,83.192,84.789,85.634,86.936,87.814,89.111,91.528,93.945,95.242,96.12,97.422,98.268,99.864,102.602 +948,1,91.553,0.03916,80.474,83.213,84.81,85.656,86.958,87.837,89.135,91.553,93.971,95.269,96.148,97.45,98.296,99.893,102.632 +949,1,91.5777,0.03917,80.493,83.233,84.831,85.677,86.981,87.86,89.158,91.578,93.997,95.295,96.175,97.478,98.324,99.923,102.663 +950,1,91.6024,0.03917,80.514,83.255,84.854,85.701,87.004,87.884,89.182,91.602,94.023,95.321,96.201,97.504,98.351,99.949,102.69 +951,1,91.6271,0.03918,80.533,83.276,84.875,85.722,87.026,87.906,89.206,91.627,94.048,95.348,96.228,97.532,98.379,99.979,102.721 +952,1,91.6518,0.03918,80.555,83.298,84.898,85.745,87.05,87.93,89.23,91.652,94.074,95.374,96.254,97.558,98.406,100.006,102.749 +953,1,91.6764,0.03919,80.574,83.318,84.919,85.767,87.072,87.953,89.253,91.676,94.1,95.4,96.281,97.586,98.434,100.034,102.779 +954,1,91.7011,0.0392,80.593,83.339,84.94,85.788,87.094,87.975,89.277,91.701,94.126,95.427,96.308,97.614,98.462,100.064,102.81 +955,1,91.7257,0.0392,80.614,83.361,84.963,85.811,87.118,87.999,89.3,91.726,94.151,95.452,96.334,97.64,98.488,100.09,102.837 +956,1,91.7503,0.03921,80.633,83.381,84.984,85.833,87.14,88.022,89.324,91.75,94.177,95.479,96.361,97.668,98.517,100.119,102.868 +957,1,91.7749,0.03922,80.652,83.401,85.005,85.854,87.162,88.044,89.347,91.775,94.203,95.505,96.388,97.695,98.545,100.148,102.898 +958,1,91.7995,0.03922,80.674,83.424,85.028,85.877,87.185,88.068,89.371,91.8,94.228,95.531,96.414,97.722,98.571,100.175,102.925 +959,1,91.8241,0.03923,80.692,83.444,85.049,85.899,87.208,88.091,89.394,91.824,94.254,95.558,96.441,97.749,98.599,100.204,102.956 +960,1,91.8486,0.03924,80.711,83.464,85.07,85.92,87.23,88.113,89.418,91.849,94.28,95.584,96.467,97.777,98.627,100.233,102.986 +961,1,91.8731,0.03924,80.733,83.486,85.093,85.943,87.253,88.137,89.441,91.873,94.305,95.61,96.493,97.803,98.654,100.26,103.014 +962,1,91.8976,0.03925,80.751,83.507,85.114,85.965,87.275,88.159,89.465,91.898,94.33,95.636,96.52,97.831,98.682,100.289,103.044 +963,1,91.9221,0.03926,80.77,83.527,85.135,85.986,87.297,88.182,89.488,91.922,94.356,95.662,96.547,97.858,98.71,100.318,103.074 +964,1,91.9466,0.03926,80.791,83.549,85.157,86.009,87.32,88.205,89.512,91.947,94.381,95.688,96.573,97.884,98.736,100.344,103.102 +965,1,91.9711,0.03927,80.81,83.569,85.178,86.03,87.343,88.228,89.535,91.971,94.407,95.714,96.6,97.912,98.764,100.373,103.132 +966,1,91.9955,0.03928,80.829,83.589,85.199,86.052,87.365,88.25,89.558,91.996,94.433,95.741,96.626,97.939,98.792,100.402,103.162 +967,1,92.02,0.03928,80.85,83.611,85.222,86.075,87.388,88.274,89.582,92.02,94.458,95.766,96.652,97.965,98.818,100.429,103.19 +968,1,92.0444,0.03929,80.869,83.631,85.243,86.096,87.41,88.296,89.605,92.044,94.484,95.793,96.679,97.993,98.846,100.457,103.22 +969,1,92.0688,0.03929,80.89,83.654,85.265,86.119,87.433,88.32,89.629,92.069,94.509,95.818,96.705,98.019,98.872,100.484,103.247 +970,1,92.0932,0.0393,80.909,83.674,85.286,86.14,87.455,88.342,89.652,92.093,94.534,95.844,96.731,98.046,98.9,100.513,103.278 +971,1,92.1175,0.03931,80.927,83.693,85.307,86.161,87.477,88.364,89.675,92.118,94.56,95.871,96.758,98.074,98.928,100.542,103.308 +972,1,92.1419,0.03931,80.949,83.716,85.329,86.184,87.5,88.388,89.699,92.142,94.585,95.896,96.784,98.1,98.954,100.568,103.335 +973,1,92.1662,0.03932,80.967,83.736,85.35,86.205,87.522,88.41,89.722,92.166,94.611,95.922,96.811,98.127,98.982,100.597,103.365 +974,1,92.1906,0.03933,80.986,83.756,85.371,86.227,87.544,88.433,89.745,92.191,94.636,95.949,96.837,98.155,99.01,100.626,103.395 +975,1,92.2149,0.03933,81.007,83.778,85.394,86.249,87.567,88.456,89.769,92.215,94.661,95.974,96.863,98.18,99.036,100.652,103.423 +976,1,92.2392,0.03934,81.026,83.798,85.414,86.271,87.589,88.478,89.792,92.239,94.687,96,96.89,98.208,99.064,100.681,103.453 +977,1,92.2635,0.03935,81.044,83.818,85.435,86.292,87.611,88.501,89.815,92.264,94.712,96.026,96.916,98.235,99.092,100.709,103.483 +978,1,92.2877,0.03935,81.065,83.84,85.458,86.314,87.634,88.524,89.838,92.288,94.737,96.052,96.942,98.261,99.118,100.736,103.51 +979,1,92.312,0.03936,81.084,83.859,85.478,86.336,87.656,88.546,89.861,92.312,94.763,96.078,96.968,98.288,99.146,100.765,103.54 +980,1,92.3362,0.03936,81.105,83.881,85.501,86.358,87.679,88.569,89.885,92.336,94.788,96.103,96.994,98.314,99.172,100.791,103.567 +981,1,92.3604,0.03937,81.124,83.901,85.521,86.379,87.7,88.592,89.908,92.36,94.813,96.129,97.02,98.341,99.199,100.82,103.597 +982,1,92.3846,0.03938,81.142,83.921,85.542,86.4,87.722,88.614,89.931,92.385,94.838,96.155,97.047,98.369,99.227,100.848,103.627 +983,1,92.4088,0.03938,81.163,83.943,85.564,86.423,87.745,88.637,89.954,92.409,94.863,96.18,97.072,98.395,99.253,100.875,103.654 +984,1,92.433,0.03939,81.182,83.963,85.585,86.444,87.767,88.659,89.977,92.433,94.889,96.207,97.099,98.422,99.281,100.903,103.684 +985,1,92.4572,0.0394,81.2,83.983,85.606,86.465,87.789,88.682,90,92.457,94.914,96.233,97.126,98.449,99.309,100.932,103.714 +986,1,92.4813,0.0394,81.221,84.005,85.628,86.488,87.812,88.705,90.024,92.481,94.939,96.258,97.151,98.475,99.334,100.958,103.741 +987,1,92.5054,0.03941,81.24,84.024,85.649,86.509,87.833,88.727,90.046,92.505,94.964,96.284,97.177,98.502,99.362,100.986,103.771 +988,1,92.5295,0.03942,81.258,84.044,85.669,86.53,87.855,88.749,90.069,92.53,94.99,96.31,97.204,98.529,99.39,101.015,103.801 +989,1,92.5536,0.03942,81.279,84.066,85.692,86.552,87.878,88.772,90.093,92.554,95.014,96.335,97.229,98.555,99.416,101.041,103.828 +990,1,92.5777,0.03943,81.297,84.086,85.712,86.573,87.9,88.794,90.116,92.578,95.04,96.361,97.256,98.582,99.443,101.07,103.858 +991,1,92.6018,0.03943,81.318,84.108,85.734,86.596,87.922,88.817,90.139,92.602,95.065,96.386,97.281,98.608,99.469,101.096,103.885 +992,1,92.6259,0.03944,81.337,84.127,85.755,86.617,87.944,88.84,90.162,92.626,95.09,96.412,97.308,98.635,99.497,101.124,103.915 +993,1,92.6499,0.03945,81.355,84.147,85.776,86.638,87.966,88.862,90.185,92.65,95.115,96.438,97.334,98.662,99.524,101.153,103.945 +994,1,92.6739,0.03945,81.376,84.169,85.798,86.66,87.989,88.885,90.208,92.674,95.14,96.463,97.359,98.687,99.55,101.179,103.972 +995,1,92.698,0.03946,81.394,84.189,85.818,86.681,88.01,88.907,90.231,92.698,95.165,96.489,97.386,98.715,99.578,101.207,104.002 +996,1,92.722,0.03947,81.413,84.208,85.839,86.702,88.032,88.929,90.254,92.722,95.19,96.515,97.412,98.742,99.605,101.236,104.031 +997,1,92.7459,0.03947,81.434,84.23,85.861,86.725,88.055,88.952,90.277,92.746,95.215,96.54,97.437,98.767,99.631,101.262,104.058 +998,1,92.7699,0.03948,81.452,84.25,85.881,86.746,88.076,88.974,90.3,92.77,95.24,96.566,97.464,98.794,99.658,101.29,104.088 +999,1,92.7939,0.03948,81.473,84.271,85.904,86.768,88.099,88.997,90.323,92.794,95.265,96.591,97.489,98.82,99.684,101.316,104.115 +1000,1,92.8178,0.03949,81.491,84.291,85.924,86.789,88.12,89.019,90.346,92.818,95.29,96.617,97.515,98.847,99.712,101.345,104.145 +1001,1,92.8418,0.0395,81.509,84.31,85.944,86.81,88.142,89.041,90.368,92.842,95.315,96.643,97.542,98.874,99.739,101.373,104.174 +1002,1,92.8657,0.0395,81.53,84.332,85.967,86.832,88.165,89.064,90.392,92.866,95.34,96.668,97.567,98.899,99.765,101.399,104.201 +1003,1,92.8896,0.03951,81.548,84.352,85.987,86.853,88.186,89.086,90.414,92.89,95.365,96.693,97.593,98.926,99.792,101.427,104.231 +1004,1,92.9135,0.03952,81.566,84.371,86.007,86.874,88.208,89.108,90.437,92.914,95.39,96.719,97.619,98.953,99.82,101.456,104.261 +1005,1,92.9373,0.03952,81.587,84.393,86.029,86.896,88.23,89.131,90.46,92.937,95.415,96.744,97.644,98.979,99.845,101.482,104.287 +1006,1,92.9612,0.03953,81.605,84.412,86.05,86.917,88.252,89.153,90.483,92.961,95.44,96.77,97.671,99.006,99.873,101.51,104.317 +1007,1,92.985,0.03953,81.626,84.434,86.072,86.939,88.274,89.175,90.506,92.985,95.464,96.795,97.696,99.031,99.898,101.536,104.344 +1008,1,93.0089,0.03954,81.644,84.454,86.092,86.96,88.296,89.197,90.528,93.009,95.489,96.82,97.722,99.058,99.926,101.564,104.373 +1009,1,93.0327,0.03955,81.662,84.473,86.112,86.981,88.317,89.219,90.551,93.033,95.514,96.846,97.748,99.085,99.953,101.592,104.403 +1010,1,93.0565,0.03955,81.683,84.495,86.134,87.003,88.34,89.242,90.574,93.057,95.539,96.871,97.773,99.11,99.979,101.618,104.43 +1011,1,93.0803,0.03956,81.701,84.514,86.155,87.024,88.361,89.264,90.597,93.08,95.564,96.897,97.799,99.137,100.006,101.647,104.459 +1012,1,93.1041,0.03957,81.719,84.534,86.175,87.044,88.383,89.286,90.619,93.104,95.589,96.922,97.826,99.164,100.033,101.675,104.489 +1013,1,93.1278,0.03957,81.74,84.555,86.197,87.066,88.405,89.308,90.642,93.128,95.613,96.947,97.85,99.189,100.059,101.701,104.516 +1014,1,93.1516,0.03958,81.758,84.574,86.217,87.087,88.427,89.33,90.665,93.152,95.638,96.973,97.877,99.216,100.086,101.729,104.545 +1015,1,93.1753,0.03958,81.779,84.596,86.239,87.109,88.449,89.353,90.688,93.175,95.663,96.998,97.902,99.241,100.111,101.755,104.572 +1016,1,93.1991,0.03959,81.797,84.615,86.259,87.13,88.47,89.375,90.71,93.199,95.688,97.023,97.928,99.268,100.139,101.783,104.601 +1017,1,93.2228,0.0396,81.815,84.635,86.28,87.151,88.492,89.397,90.733,93.223,95.713,97.049,97.954,99.295,100.166,101.811,104.631 +1018,1,93.2465,0.0396,81.836,84.656,86.302,87.173,88.514,89.419,90.756,93.247,95.737,97.074,97.979,99.32,100.191,101.837,104.657 +1019,1,93.2702,0.03961,81.854,84.676,86.322,87.193,88.536,89.441,90.778,93.27,95.762,97.099,98.005,99.347,100.219,101.865,104.687 +1020,1,93.2938,0.03961,81.874,84.697,86.344,87.215,88.558,89.464,90.801,93.294,95.786,97.124,98.03,99.372,100.244,101.891,104.713 +1021,1,93.3175,0.03962,81.892,84.716,86.364,87.236,88.579,89.486,90.824,93.318,95.811,97.149,98.056,99.399,100.271,101.919,104.743 +1022,1,93.3411,0.03963,81.91,84.736,86.384,87.257,88.601,89.507,90.846,93.341,95.836,97.175,98.082,99.426,100.298,101.947,104.772 +1023,1,93.3648,0.03963,81.931,84.757,86.406,87.279,88.623,89.53,90.869,93.365,95.86,97.2,98.107,99.451,100.324,101.972,104.799 +1024,1,93.3884,0.03964,81.949,84.776,86.426,87.299,88.644,89.552,90.891,93.388,95.885,97.225,98.133,99.478,100.351,102,104.828 +1025,1,93.412,0.03964,81.969,84.798,86.448,87.321,88.667,89.574,90.914,93.412,95.91,97.25,98.157,99.503,100.376,102.026,104.855 +1026,1,93.4356,0.03965,81.987,84.817,86.468,87.342,88.688,89.596,90.937,93.436,95.934,97.275,98.183,99.529,100.403,102.054,104.884 +1027,1,93.4592,0.03966,82.005,84.836,86.488,87.362,88.709,89.618,90.959,93.459,95.959,97.301,98.209,99.556,100.431,102.082,104.913 +1028,1,93.4827,0.03966,82.026,84.858,86.51,87.384,88.731,89.64,90.982,93.483,95.983,97.325,98.234,99.581,100.456,102.108,104.94 +1029,1,93.5063,0.03967,82.043,84.877,86.53,87.405,88.753,89.662,91.004,93.506,96.008,97.351,98.26,99.608,100.483,102.136,104.969 +1030,1,93.5298,0.03968,82.061,84.896,86.55,87.425,88.774,89.683,91.027,93.53,96.033,97.376,98.286,99.634,100.51,102.163,104.998 +1031,1,93.5534,0.03968,82.082,84.918,86.572,87.447,88.796,89.706,91.05,93.553,96.057,97.401,98.311,99.659,100.535,102.189,105.025 +1032,1,93.5769,0.03969,82.1,84.937,86.592,87.468,88.817,89.728,91.072,93.577,96.082,97.426,98.337,99.686,100.562,102.217,105.054 +1033,1,93.6004,0.03969,82.12,84.958,86.613,87.49,88.839,89.75,91.095,93.6,96.106,97.451,98.361,99.711,100.588,102.243,105.081 +1034,1,93.6239,0.0397,82.138,84.977,86.633,87.51,88.861,89.772,91.117,93.624,96.131,97.476,98.387,99.738,100.615,102.271,105.11 +1035,1,93.6473,0.03971,82.156,84.996,86.653,87.531,88.882,89.793,91.139,93.647,96.156,97.502,98.413,99.764,100.641,102.298,105.139 +1036,1,93.6708,0.03971,82.176,85.018,86.675,87.552,88.904,89.816,91.162,93.671,96.18,97.526,98.438,99.789,100.667,102.324,105.165 +1037,1,93.6943,0.03972,82.194,85.037,86.695,87.573,88.925,89.837,91.184,93.694,96.204,97.551,98.464,99.816,100.694,102.352,105.195 +1038,1,93.7177,0.03972,82.214,85.058,86.717,87.595,88.947,89.86,91.207,93.718,96.228,97.576,98.488,99.841,100.719,102.377,105.221 +1039,1,93.7411,0.03973,82.232,85.077,86.736,87.615,88.968,89.881,91.229,93.741,96.253,97.601,98.514,99.867,100.746,102.405,105.25 +1040,1,93.7646,0.03974,82.25,85.096,86.756,87.636,88.989,89.903,91.251,93.765,96.278,97.627,98.54,99.894,100.773,102.433,105.279 +1041,1,93.788,0.03974,82.27,85.117,86.778,87.657,89.011,89.925,91.274,93.788,96.302,97.651,98.565,99.919,100.798,102.459,105.306 +1042,1,93.8113,0.03975,82.288,85.136,86.798,87.678,89.032,89.946,91.296,93.811,96.326,97.676,98.59,99.945,100.825,102.486,105.335 +1043,1,93.8347,0.03975,82.308,85.158,86.819,87.7,89.055,89.969,91.319,93.835,96.35,97.701,98.615,99.97,100.85,102.512,105.361 +1044,1,93.8581,0.03976,82.326,85.177,86.839,87.72,89.076,89.99,91.341,93.858,96.375,97.726,98.641,99.996,100.877,102.54,105.39 +1045,1,93.8814,0.03977,82.344,85.196,86.859,87.74,89.097,90.012,91.363,93.881,96.4,97.751,98.666,100.023,100.904,102.567,105.419 +1046,1,93.9048,0.03977,82.364,85.217,86.881,87.762,89.119,90.034,91.386,93.905,96.424,97.775,98.691,100.048,100.929,102.593,105.446 +1047,1,93.9281,0.03978,82.382,85.236,86.901,87.782,89.14,90.056,91.408,93.928,96.448,97.801,98.717,100.074,100.956,102.62,105.475 +1048,1,93.9514,0.03978,82.402,85.257,86.922,87.804,89.162,90.078,91.431,93.951,96.472,97.825,98.741,100.099,100.981,102.646,105.501 +1049,1,93.9747,0.03979,82.42,85.276,86.942,87.824,89.183,90.099,91.453,93.975,96.497,97.85,98.767,100.125,101.007,102.674,105.53 +1050,1,93.998,0.0398,82.437,85.295,86.962,87.844,89.204,90.121,91.475,93.998,96.521,97.875,98.792,100.152,101.034,102.701,105.559 +1051,1,94.0213,0.0398,82.458,85.316,86.983,87.866,89.226,90.143,91.497,94.021,96.545,97.9,98.817,100.176,101.059,102.727,105.585 +1052,1,94.0446,0.03981,82.475,85.335,87.003,87.886,89.247,90.164,91.519,94.045,96.57,97.925,98.843,100.203,101.086,102.754,105.614 +1053,1,94.0678,0.03981,82.495,85.356,87.025,87.908,89.269,90.187,91.542,94.068,96.594,97.949,98.867,100.228,101.111,102.78,105.64 +1054,1,94.0911,0.03982,82.513,85.375,87.044,87.928,89.29,90.208,91.564,94.091,96.618,97.974,98.893,100.254,101.138,102.807,105.669 +1055,1,94.1143,0.03983,82.53,85.394,87.064,87.948,89.31,90.229,91.586,94.114,96.643,97.999,98.918,100.28,101.165,102.835,105.698 +1056,1,94.1376,0.03983,82.551,85.415,87.086,87.97,89.332,90.251,91.609,94.138,96.667,98.024,98.943,100.305,101.19,102.86,105.724 +1057,1,94.1608,0.03984,82.568,85.434,87.105,87.99,89.353,90.273,91.631,94.161,96.691,98.049,98.968,100.331,101.216,102.888,105.753 +1058,1,94.184,0.03984,82.589,85.455,87.127,88.012,89.375,90.295,91.653,94.184,96.715,98.073,98.993,100.356,101.241,102.913,105.779 +1059,1,94.2071,0.03985,82.606,85.474,87.146,88.032,89.396,90.316,91.675,94.207,96.739,98.098,99.018,100.382,101.268,102.941,105.808 +1060,1,94.2303,0.03986,82.623,85.492,87.166,88.052,89.417,90.337,91.697,94.23,96.764,98.123,99.044,100.408,101.295,102.968,105.837 +1061,1,94.2535,0.03986,82.644,85.514,87.187,88.074,89.439,90.36,91.719,94.254,96.788,98.147,99.068,100.433,101.32,102.993,105.863 +1062,1,94.2766,0.03987,82.661,85.532,87.207,88.094,89.459,90.381,91.741,94.277,96.812,98.172,99.094,100.459,101.346,103.021,105.892 +1063,1,94.2998,0.03987,82.681,85.553,87.229,88.116,89.482,90.403,91.764,94.3,96.836,98.197,99.118,100.484,101.371,103.046,105.918 +1064,1,94.3229,0.03988,82.699,85.572,87.248,88.136,89.502,90.424,91.786,94.323,96.86,98.222,99.144,100.51,101.398,103.074,105.947 +1065,1,94.346,0.03989,82.716,85.591,87.268,88.156,89.523,90.445,91.808,94.346,96.884,98.247,99.169,100.536,101.424,103.101,105.976 +1066,1,94.3691,0.03989,82.736,85.612,87.289,88.177,89.545,90.468,91.83,94.369,96.908,98.271,99.193,100.561,101.449,103.126,106.002 +1067,1,94.3922,0.0399,82.754,85.631,87.309,88.197,89.566,90.489,91.852,94.392,96.932,98.296,99.219,100.587,101.476,103.154,106.031 +1068,1,94.4153,0.0399,82.774,85.652,87.33,88.219,89.587,90.511,91.874,94.415,96.956,98.32,99.243,100.612,101.501,103.179,106.057 +1069,1,94.4384,0.03991,82.791,85.67,87.35,88.239,89.608,90.532,91.896,94.438,96.981,98.345,99.269,100.638,101.527,103.206,106.086 +1070,1,94.4615,0.03991,82.811,85.691,87.371,88.26,89.63,90.554,91.919,94.462,97.004,98.369,99.293,100.663,101.552,103.232,106.112 +1071,1,94.4845,0.03992,82.829,85.71,87.39,88.28,89.651,90.575,91.94,94.485,97.029,98.394,99.318,100.689,101.579,103.259,106.14 +1072,1,94.5075,0.03993,82.846,85.729,87.41,88.3,89.671,90.596,91.962,94.508,97.053,98.419,99.344,100.715,101.605,103.286,106.169 +1073,1,94.5306,0.03993,82.866,85.75,87.431,88.322,89.693,90.618,91.985,94.531,97.077,98.443,99.368,100.739,101.63,103.312,106.195 +1074,1,94.5536,0.03994,82.883,85.768,87.451,88.342,89.714,90.64,92.006,94.554,97.101,98.468,99.393,100.765,101.656,103.339,106.224 +1075,1,94.5766,0.03994,82.904,85.789,87.472,88.363,89.736,90.662,92.029,94.577,97.124,98.492,99.418,100.79,101.681,103.364,106.25 +1076,1,94.5996,0.03995,82.921,85.808,87.492,88.383,89.756,90.683,92.051,94.6,97.149,98.517,99.443,100.816,101.708,103.391,106.278 +1077,1,94.6226,0.03996,82.938,85.826,87.511,88.403,89.777,90.704,92.072,94.623,97.173,98.541,99.468,100.842,101.734,103.419,106.307 +1078,1,94.6455,0.03996,82.958,85.847,87.532,88.425,89.799,90.726,92.095,94.646,97.196,98.565,99.492,100.866,101.759,103.444,106.333 +1079,1,94.6685,0.03997,82.975,85.866,87.552,88.445,89.819,90.747,92.116,94.669,97.221,98.59,99.518,100.892,101.785,103.471,106.362 +1080,1,94.6914,0.03997,82.995,85.887,87.573,88.466,89.841,90.769,92.139,94.691,97.244,98.614,99.542,100.917,101.81,103.496,106.387 +1081,1,94.7144,0.03998,83.013,85.905,87.592,88.486,89.862,90.79,92.16,94.714,97.268,98.639,99.567,100.943,101.836,103.524,106.416 +1082,1,94.7373,0.03999,83.03,85.924,87.612,88.506,89.882,90.811,92.182,94.737,97.293,98.664,99.593,100.969,101.863,103.551,106.445 +1083,1,94.7602,0.03999,83.05,85.945,87.633,88.527,89.904,90.833,92.204,94.76,97.316,98.688,99.617,100.993,101.887,103.576,106.471 +1084,1,94.7831,0.04,83.067,85.963,87.652,88.547,89.924,90.854,92.226,94.783,97.34,98.713,99.642,101.019,101.914,103.603,106.499 +1085,1,94.806,0.04,83.087,85.984,87.674,88.568,89.946,90.876,92.248,94.806,97.364,98.736,99.666,101.044,101.938,103.628,106.525 +1086,1,94.8289,0.04001,83.104,86.002,87.693,88.588,89.967,90.897,92.27,94.829,97.388,98.761,99.691,101.07,101.965,103.655,106.554 +1087,1,94.8518,0.04001,83.124,86.023,87.714,88.61,89.988,90.919,92.292,94.852,97.412,98.785,99.715,101.094,101.989,103.68,106.579 +1088,1,94.8747,0.04002,83.141,86.042,87.734,88.629,90.009,90.939,92.314,94.875,97.436,98.81,99.741,101.12,102.016,103.708,106.608 +1089,1,94.8975,0.04003,83.158,86.06,87.753,88.649,90.029,90.96,92.335,94.898,97.46,98.835,99.766,101.146,102.042,103.735,106.637 +1090,1,94.9203,0.04003,83.178,86.081,87.774,88.67,90.051,90.982,92.357,94.92,97.483,98.858,99.79,101.17,102.067,103.76,106.662 +1091,1,94.9432,0.04004,83.196,86.1,87.793,88.69,90.071,91.003,92.379,94.943,97.507,98.883,99.815,101.196,102.093,103.787,106.691 +1092,1,94.966,0.04004,83.216,86.12,87.814,88.712,90.093,91.025,92.401,94.966,97.531,98.907,99.839,101.22,102.118,103.812,106.716 +1093,1,94.9888,0.04005,83.233,86.139,87.834,88.731,90.113,91.046,92.423,94.989,97.555,98.932,99.864,101.246,102.144,103.839,106.745 +1094,1,95.0116,0.04005,83.253,86.159,87.855,88.753,90.135,91.068,92.445,95.012,97.578,98.955,99.888,101.271,102.168,103.864,106.771 +1095,1,95.0344,0.04006,83.27,86.178,87.874,88.772,90.155,91.089,92.467,95.034,97.602,98.98,99.913,101.296,102.195,103.891,106.799 +1096,1,95.0572,0.04007,83.287,86.196,87.893,88.792,90.176,91.109,92.488,95.057,97.626,99.005,99.939,101.322,102.221,103.918,106.828 +1097,1,95.0799,0.04007,83.307,86.217,87.914,88.813,90.197,91.131,92.51,95.08,97.65,99.029,99.962,101.347,102.245,103.943,106.853 +1098,1,95.1027,0.04008,83.324,86.235,87.934,88.833,90.218,91.152,92.532,95.103,97.674,99.053,99.988,101.372,102.272,103.97,106.882 +1099,1,95.1254,0.04008,83.343,86.256,87.955,88.854,90.239,91.174,92.554,95.125,97.697,99.077,100.011,101.397,102.296,103.995,106.907 +1100,1,95.1482,0.04009,83.361,86.274,87.974,88.874,90.26,91.195,92.575,95.148,97.721,99.102,100.037,101.422,102.322,104.022,106.936 +1101,1,95.1709,0.04009,83.38,86.295,87.995,88.895,90.281,91.216,92.597,95.171,97.744,99.125,100.061,101.447,102.347,104.047,106.961 +1102,1,95.1936,0.0401,83.397,86.313,88.014,88.915,90.302,91.237,92.619,95.194,97.768,99.15,100.086,101.472,102.373,104.074,106.99 +1103,1,95.2163,0.04011,83.414,86.332,88.033,88.934,90.322,91.258,92.64,95.216,97.792,99.175,100.111,101.498,102.399,104.101,107.018 +1104,1,95.239,0.04011,83.434,86.352,88.054,88.956,90.343,91.28,92.662,95.239,97.816,99.198,100.135,101.522,102.424,104.126,107.044 +1105,1,95.2617,0.04012,83.451,86.371,88.073,88.975,90.364,91.301,92.684,95.262,97.84,99.223,100.16,101.548,102.45,104.153,107.072 +1106,1,95.2844,0.04012,83.471,86.391,88.094,88.996,90.385,91.322,92.706,95.284,97.863,99.246,100.184,101.572,102.474,104.178,107.098 +1107,1,95.307,0.04013,83.488,86.409,88.114,89.016,90.405,91.343,92.727,95.307,97.887,99.271,100.209,101.598,102.5,104.205,107.126 +1108,1,95.3297,0.04013,83.508,86.43,88.135,89.037,90.427,91.365,92.749,95.33,97.91,99.295,100.232,101.622,102.525,104.229,107.152 +1109,1,95.3523,0.04014,83.525,86.448,88.154,89.057,90.447,91.385,92.771,95.352,97.934,99.319,100.257,101.648,102.551,104.256,107.18 +1110,1,95.375,0.04015,83.542,86.467,88.173,89.076,90.468,91.406,92.792,95.375,97.958,99.344,100.282,101.674,102.577,104.283,107.208 +1111,1,95.3976,0.04015,83.561,86.487,88.194,89.097,90.489,91.428,92.814,95.398,97.981,99.367,100.306,101.698,102.601,104.308,107.234 +1112,1,95.4202,0.04016,83.578,86.505,88.213,89.117,90.509,91.449,92.836,95.42,98.005,99.392,100.331,101.723,102.628,104.335,107.262 +1113,1,95.4428,0.04016,83.598,86.526,88.234,89.138,90.531,91.47,92.857,95.443,98.028,99.415,100.355,101.747,102.652,104.36,107.288 +1114,1,95.4654,0.04017,83.615,86.544,88.253,89.158,90.551,91.491,92.879,95.465,98.052,99.44,100.38,101.773,102.678,104.387,107.316 +1115,1,95.488,0.04017,83.635,86.565,88.274,89.179,90.572,91.512,92.901,95.488,98.075,99.464,100.404,101.797,102.702,104.411,107.341 +1116,1,95.5105,0.04018,83.651,86.583,88.293,89.198,90.592,91.533,92.922,95.511,98.099,99.488,100.429,101.823,102.728,104.438,107.37 +1117,1,95.5331,0.04019,83.668,86.601,88.312,89.218,90.613,91.554,92.943,95.533,98.123,99.512,100.454,101.848,102.754,104.465,107.398 +1118,1,95.5556,0.04019,83.688,86.622,88.333,89.239,90.634,91.575,92.965,95.556,98.146,99.536,100.477,101.872,102.779,104.49,107.423 +1119,1,95.5782,0.0402,83.705,86.64,88.352,89.258,90.654,91.596,92.987,95.578,98.17,99.56,100.502,101.898,102.805,104.517,107.452 +1120,1,95.6007,0.0402,83.724,86.66,88.373,89.279,90.676,91.618,93.009,95.601,98.193,99.584,100.526,101.922,102.829,104.541,107.477 +1121,1,95.6232,0.04021,83.741,86.678,88.392,89.299,90.696,91.638,93.03,95.623,98.217,99.608,100.551,101.948,102.855,104.568,107.505 +1122,1,95.6457,0.04021,83.761,86.699,88.412,89.32,90.717,91.66,93.052,95.646,98.24,99.632,100.574,101.972,102.879,104.593,107.53 +1123,1,95.6682,0.04022,83.778,86.717,88.431,89.339,90.737,91.68,93.073,95.668,98.263,99.656,100.599,101.997,102.905,104.619,107.559 +1124,1,95.6907,0.04023,83.794,86.735,88.45,89.359,90.757,91.701,93.094,95.691,98.287,99.681,100.624,102.023,102.931,104.646,107.587 +1125,1,95.7132,0.04023,83.814,86.755,88.471,89.38,90.779,91.722,93.116,95.713,98.31,99.704,100.648,102.047,102.955,104.671,107.612 +1126,1,95.7356,0.04024,83.831,86.774,88.49,89.399,90.799,91.743,93.137,95.736,98.334,99.728,100.673,102.072,102.981,104.698,107.64 +1127,1,95.7581,0.04024,83.85,86.794,88.511,89.42,90.82,91.764,93.159,95.758,98.357,99.752,100.696,102.096,103.005,104.722,107.666 +1128,1,95.7805,0.04025,83.867,86.812,88.53,89.439,90.84,91.785,93.18,95.781,98.381,99.776,100.721,102.122,103.031,104.749,107.694 +1129,1,95.803,0.04025,83.887,86.832,88.551,89.46,90.861,91.806,93.202,95.803,98.404,99.8,100.745,102.146,103.055,104.774,107.719 +1130,1,95.8254,0.04026,83.903,86.851,88.569,89.48,90.881,91.827,93.223,95.825,98.428,99.824,100.77,102.171,103.081,104.8,107.747 +1131,1,95.8478,0.04026,83.923,86.871,88.59,89.501,90.903,91.848,93.245,95.848,98.451,99.847,100.793,102.195,103.105,104.825,107.772 +1132,1,95.8702,0.04027,83.94,86.889,88.609,89.52,90.923,91.869,93.266,95.87,98.474,99.872,100.818,102.22,103.131,104.852,107.801 +1133,1,95.8926,0.04028,83.956,86.907,88.628,89.539,90.943,91.889,93.287,95.893,98.498,99.896,100.843,102.246,103.157,104.878,107.829 +1134,1,95.915,0.04028,83.976,86.927,88.649,89.56,90.964,91.911,93.309,95.915,98.521,99.919,100.866,102.27,103.181,104.903,107.854 +1135,1,95.9374,0.04029,83.993,86.945,88.668,89.58,90.984,91.931,93.33,95.937,98.545,99.944,100.891,102.295,103.207,104.929,107.882 +1136,1,95.9597,0.04029,84.012,86.966,88.688,89.6,91.005,91.953,93.352,95.96,98.567,99.967,100.914,102.319,103.231,104.954,107.907 +1137,1,95.9821,0.0403,84.029,86.984,88.707,89.62,91.025,91.973,93.373,95.982,98.591,99.991,100.939,102.345,103.257,104.981,107.935 +1138,1,96.0044,0.0403,84.048,87.004,88.728,89.64,91.046,91.994,93.395,96.004,98.614,100.014,100.963,102.368,103.281,105.005,107.96 +1139,1,96.0268,0.04031,84.065,87.022,88.747,89.66,91.066,92.015,93.416,96.027,98.638,100.039,100.987,102.394,103.307,105.032,107.989 +1140,1,96.0491,0.04032,84.082,87.04,88.765,89.679,91.086,92.035,93.437,96.049,98.661,100.063,101.012,102.419,103.333,105.058,108.017 +1141,1,96.0714,0.04032,84.101,87.06,88.786,89.7,91.107,92.057,93.459,96.071,98.684,100.086,101.036,102.443,103.357,105.083,108.042 +1142,1,96.0937,0.04033,84.118,87.078,88.805,89.719,91.127,92.077,93.48,96.094,98.708,100.11,101.06,102.468,103.383,105.109,108.07 +1143,1,96.116,0.04033,84.137,87.098,88.825,89.74,91.148,92.098,93.501,96.116,98.731,100.134,101.084,102.492,103.407,105.134,108.095 +1144,1,96.1383,0.04034,84.154,87.116,88.844,89.759,91.168,92.119,93.522,96.138,98.754,100.158,101.108,102.517,103.432,105.16,108.123 +1145,1,96.1606,0.04034,84.173,87.136,88.865,89.78,91.189,92.14,93.544,96.161,98.777,100.181,101.132,102.541,103.456,105.185,108.148 +1146,1,96.1828,0.04035,84.19,87.154,88.883,89.799,91.209,92.16,93.565,96.183,98.8,100.205,101.156,102.566,103.482,105.211,108.176 +1147,1,96.2051,0.04035,84.209,87.175,88.904,89.82,91.23,92.182,93.587,96.205,98.823,100.228,101.18,102.59,103.506,105.236,108.201 +1148,1,96.2273,0.04036,84.226,87.192,88.923,89.839,91.25,92.202,93.608,96.227,98.847,100.253,101.205,102.615,103.532,105.262,108.229 +1149,1,96.2495,0.04036,84.245,87.212,88.943,89.86,91.271,92.223,93.629,96.25,98.87,100.276,101.228,102.639,103.556,105.287,108.254 +1150,1,96.2718,0.04037,84.262,87.23,88.962,89.879,91.291,92.244,93.65,96.272,98.893,100.3,101.253,102.665,103.581,105.313,108.282 +1151,1,96.294,0.04038,84.278,87.248,88.981,89.898,91.311,92.264,93.671,96.294,98.917,100.324,101.277,102.69,103.607,105.34,108.31 +1152,1,96.3162,0.04038,84.298,87.268,89.001,89.919,91.332,92.285,93.693,96.316,98.939,100.347,101.3,102.713,103.631,105.364,108.335 +1153,1,96.3384,0.04039,84.314,87.286,89.02,89.938,91.352,92.306,93.714,96.338,98.963,100.371,101.325,102.739,103.657,105.39,108.363 +1154,1,96.3606,0.04039,84.333,87.306,89.041,89.959,91.373,92.327,93.735,96.361,98.986,100.394,101.348,102.762,103.681,105.415,108.388 +1155,1,96.3827,0.0404,84.35,87.324,89.059,89.978,91.393,92.347,93.756,96.383,99.009,100.418,101.373,102.788,103.706,105.441,108.416 +1156,1,96.4049,0.0404,84.369,87.344,89.08,89.999,91.414,92.368,93.778,96.405,99.032,100.442,101.396,102.811,103.73,105.465,108.441 +1157,1,96.427,0.04041,84.386,87.362,89.098,90.018,91.433,92.388,93.799,96.427,99.055,100.466,101.421,102.836,103.756,105.492,108.468 +1158,1,96.4492,0.04041,84.405,87.382,89.119,90.038,91.454,92.41,93.82,96.449,99.078,100.489,101.444,102.86,103.78,105.516,108.493 +1159,1,96.4713,0.04042,84.421,87.4,89.137,90.057,91.474,92.43,93.841,96.471,99.101,100.513,101.469,102.885,103.805,105.543,108.521 +1160,1,96.4934,0.04043,84.438,87.418,89.156,90.076,91.494,92.45,93.862,96.493,99.125,100.537,101.493,102.91,103.831,105.569,108.549 +1161,1,96.5156,0.04043,84.457,87.438,89.177,90.097,91.515,92.471,93.884,96.516,99.148,100.56,101.516,102.934,103.855,105.593,108.574 +1162,1,96.5377,0.04044,84.473,87.456,89.195,90.116,91.535,92.491,93.905,96.538,99.171,100.584,101.541,102.959,103.88,105.62,108.602 +1163,1,96.5598,0.04044,84.493,87.476,89.216,90.137,91.555,92.513,93.926,96.56,99.194,100.607,101.564,102.983,103.904,105.644,108.627 +1164,1,96.5818,0.04045,84.509,87.493,89.234,90.156,91.575,92.533,93.947,96.582,99.217,100.631,101.588,103.008,103.93,105.67,108.655 +1165,1,96.6039,0.04045,84.528,87.513,89.254,90.176,91.596,92.554,93.968,96.604,99.24,100.654,101.612,103.031,103.953,105.694,108.679 +1166,1,96.626,0.04046,84.545,87.531,89.273,90.195,91.616,92.574,93.989,96.626,99.263,100.678,101.636,103.057,103.979,105.721,108.707 +1167,1,96.648,0.04046,84.564,87.551,89.293,90.216,91.637,92.595,94.01,96.648,99.286,100.701,101.659,103.08,104.003,105.745,108.732 +1168,1,96.6701,0.04047,84.58,87.569,89.312,90.235,91.656,92.615,94.031,96.67,99.309,100.725,101.684,103.105,104.028,105.771,108.76 +1169,1,96.6921,0.04047,84.6,87.589,89.332,90.256,91.677,92.636,94.053,96.692,99.331,100.748,101.707,103.129,104.052,105.795,108.785 +1170,1,96.7141,0.04048,84.616,87.606,89.351,90.275,91.697,92.656,94.073,96.714,99.355,100.772,101.731,103.154,104.077,105.822,108.812 +1171,1,96.7362,0.04049,84.632,87.624,89.369,90.294,91.717,92.677,94.094,96.736,99.378,100.796,101.756,103.179,104.103,105.848,108.84 +1172,1,96.7582,0.04049,84.651,87.644,89.39,90.314,91.737,92.698,94.116,96.758,99.401,100.819,101.779,103.202,104.127,105.872,108.865 +1173,1,96.7802,0.0405,84.668,87.662,89.408,90.333,91.757,92.718,94.136,96.78,99.424,100.843,101.803,103.227,104.152,105.899,108.893 +1174,1,96.8021,0.0405,84.687,87.682,89.428,90.353,91.778,92.739,94.158,96.802,99.446,100.865,101.826,103.251,104.176,105.923,108.917 +1175,1,96.8241,0.04051,84.703,87.699,89.447,90.372,91.797,92.759,94.179,96.824,99.47,100.889,101.851,103.276,104.201,105.949,108.945 +1176,1,96.8461,0.04051,84.722,87.719,89.467,90.393,91.818,92.78,94.2,96.846,99.492,100.912,101.874,103.299,104.225,105.973,108.97 +1177,1,96.868,0.04052,84.739,87.737,89.486,90.412,91.838,92.8,94.221,96.868,99.515,100.936,101.898,103.324,104.25,105.999,108.997 +1178,1,96.89,0.04052,84.758,87.757,89.506,90.432,91.859,92.821,94.242,96.89,99.538,100.959,101.921,103.348,104.274,106.023,109.022 +1179,1,96.9119,0.04053,84.774,87.774,89.524,90.451,91.878,92.841,94.263,96.912,99.561,100.983,101.946,103.373,104.299,106.049,109.05 +1180,1,96.9339,0.04053,84.793,87.794,89.545,90.472,91.899,92.862,94.284,96.934,99.584,101.006,101.969,103.396,104.323,106.073,109.075 +1181,1,96.9558,0.04054,84.809,87.812,89.563,90.491,91.919,92.882,94.305,96.956,99.607,101.03,101.993,103.421,104.348,106.1,109.102 +1182,1,96.9777,0.04054,84.829,87.832,89.583,90.511,91.939,92.903,94.326,96.978,99.629,101.052,102.016,103.444,104.372,106.124,109.127 +1183,1,96.9996,0.04055,84.845,87.849,89.602,90.53,91.959,92.923,94.347,97,99.653,101.076,102.04,103.469,104.397,106.15,109.155 +1184,1,97.0215,0.04056,84.861,87.867,89.62,90.549,91.978,92.943,94.367,97.022,99.676,101.1,102.065,103.494,104.423,106.176,109.182 +1185,1,97.0434,0.04056,84.88,87.887,89.64,90.569,91.999,92.964,94.389,97.043,99.698,101.123,102.088,103.518,104.446,106.2,109.207 +1186,1,97.0652,0.04057,84.896,87.904,89.659,90.588,92.019,92.984,94.409,97.065,99.721,101.147,102.112,103.543,104.472,106.226,109.234 +1187,1,97.0871,0.04057,84.915,87.924,89.679,90.608,92.039,93.005,94.43,97.087,99.744,101.169,102.135,103.566,104.495,106.25,109.259 +1188,1,97.1089,0.04058,84.931,87.942,89.697,90.627,92.059,93.025,94.451,97.109,99.767,101.193,102.159,103.591,104.521,106.276,109.287 +1189,1,97.1308,0.04058,84.95,87.961,89.718,90.647,92.079,93.046,94.472,97.131,99.789,101.216,102.182,103.614,104.544,106.3,109.311 +1190,1,97.1526,0.04059,84.967,87.979,89.736,90.666,92.099,93.066,94.493,97.153,99.812,101.24,102.206,103.639,104.569,106.326,109.339 +1191,1,97.1744,0.04059,84.986,87.999,89.756,90.687,92.12,93.086,94.514,97.174,99.835,101.262,102.229,103.662,104.593,106.35,109.363 +1192,1,97.1963,0.0406,85.002,88.016,89.774,90.705,92.139,93.106,94.535,97.196,99.858,101.286,102.254,103.687,104.618,106.376,109.391 +1193,1,97.2181,0.0406,85.021,88.036,89.795,90.726,92.16,93.127,94.556,97.218,99.88,101.309,102.276,103.71,104.642,106.4,109.415 +1194,1,97.2399,0.04061,85.037,88.053,89.813,90.745,92.179,93.147,94.576,97.24,99.903,101.333,102.301,103.735,104.667,106.426,109.443 +1195,1,97.2616,0.04061,85.056,88.073,89.833,90.765,92.2,93.168,94.598,97.262,99.926,101.355,102.323,103.758,104.69,106.45,109.467 +1196,1,97.2834,0.04062,85.072,88.09,89.851,90.784,92.219,93.188,94.618,97.283,99.949,101.379,102.348,103.783,104.716,106.476,109.495 +1197,1,97.3052,0.04063,85.088,88.108,89.869,90.802,92.239,93.208,94.639,97.305,99.972,101.403,102.372,103.808,104.741,106.502,109.522 +1198,1,97.3269,0.04063,85.107,88.128,89.89,90.823,92.259,93.228,94.66,97.327,99.994,101.425,102.395,103.831,104.764,106.526,109.547 +1199,1,97.3487,0.04064,85.123,88.145,89.908,90.841,92.279,93.248,94.68,97.349,100.017,101.449,102.419,103.856,104.79,106.552,109.574 +1200,1,97.3704,0.04064,85.142,88.165,89.928,90.861,92.299,93.269,94.701,97.37,100.039,101.472,102.442,103.879,104.813,106.576,109.599 +1201,1,97.3922,0.04065,85.158,88.182,89.946,90.88,92.319,93.289,94.722,97.392,100.063,101.495,102.466,103.904,104.838,106.602,109.626 +1202,1,97.4139,0.04065,85.177,88.202,89.966,90.9,92.339,93.31,94.743,97.414,100.085,101.518,102.489,103.927,104.862,106.626,109.651 +1203,1,97.4356,0.04066,85.193,88.219,89.984,90.919,92.358,93.33,94.763,97.436,100.108,101.542,102.513,103.952,104.887,106.652,109.678 +1204,1,97.4573,0.04066,85.212,88.239,90.004,90.939,92.379,93.35,94.785,97.457,100.13,101.564,102.536,103.975,104.91,106.676,109.703 +1205,1,97.479,0.04067,85.228,88.256,90.023,90.958,92.398,93.37,94.805,97.479,100.153,101.588,102.56,104,104.935,106.702,109.73 +1206,1,97.5007,0.04067,85.247,88.276,90.043,90.978,92.419,93.391,94.826,97.501,100.175,101.611,102.583,104.023,104.959,106.725,109.755 +1207,1,97.5223,0.04068,85.263,88.293,90.061,90.997,92.438,93.411,94.846,97.522,100.198,101.634,102.606,104.048,104.984,106.751,109.782 +1208,1,97.544,0.04068,85.282,88.313,90.081,91.017,92.459,93.431,94.868,97.544,100.22,101.657,102.629,104.071,105.007,106.775,109.806 +1209,1,97.5657,0.04069,85.298,88.33,90.099,91.036,92.478,93.451,94.888,97.566,100.243,101.68,102.653,104.096,105.032,106.801,109.834 +1210,1,97.5873,0.04069,85.317,88.35,90.119,91.056,92.498,93.472,94.909,97.587,100.266,101.703,102.676,104.119,105.056,106.825,109.858 +1211,1,97.6089,0.0407,85.332,88.367,90.137,91.074,92.518,93.491,94.929,97.609,100.288,101.726,102.7,104.143,105.081,106.851,109.885 +1212,1,97.6306,0.0407,85.351,88.387,90.157,91.095,92.538,93.512,94.95,97.631,100.311,101.749,102.723,104.167,105.104,106.874,109.91 +1213,1,97.6522,0.04071,85.367,88.404,90.175,91.113,92.557,93.532,94.971,97.652,100.334,101.772,102.747,104.191,105.129,106.9,109.937 +1214,1,97.6738,0.04072,85.383,88.421,90.193,91.132,92.577,93.552,94.991,97.674,100.356,101.796,102.771,104.216,105.154,106.926,109.965 +1215,1,97.6954,0.04072,85.402,88.441,90.213,91.152,92.597,93.572,95.012,97.695,100.379,101.818,102.794,104.239,105.177,106.95,109.989 +1216,1,97.717,0.04073,85.418,88.458,90.231,91.17,92.616,93.592,95.033,97.717,100.401,101.842,102.818,104.264,105.203,106.976,110.016 +1217,1,97.7385,0.04073,85.437,88.478,90.251,91.191,92.637,93.613,95.053,97.739,100.424,101.864,102.84,104.286,105.226,106.999,110.04 +1218,1,97.7601,0.04074,85.452,88.495,90.269,91.209,92.656,93.632,95.074,97.76,100.446,101.888,102.864,104.311,105.251,107.025,110.068 +1219,1,97.7817,0.04074,85.471,88.514,90.289,91.229,92.676,93.653,95.095,97.782,100.469,101.91,102.887,104.334,105.274,107.049,110.092 +1220,1,97.8032,0.04075,85.487,88.532,90.307,91.248,92.696,93.673,95.115,97.803,100.491,101.934,102.911,104.359,105.299,107.075,110.119 +1221,1,97.8248,0.04075,85.506,88.551,90.327,91.268,92.716,93.693,95.136,97.825,100.514,101.956,102.934,104.382,105.322,107.098,110.144 +1222,1,97.8463,0.04076,85.522,88.568,90.345,91.286,92.735,93.713,95.156,97.846,100.536,101.98,102.957,104.406,105.347,107.124,110.171 +1223,1,97.8678,0.04076,85.541,88.588,90.365,91.306,92.756,93.733,95.177,97.868,100.558,102.002,102.98,104.429,105.37,107.148,110.195 +1224,1,97.8893,0.04077,85.556,88.605,90.383,91.325,92.775,93.753,95.197,97.889,100.581,102.026,103.004,104.454,105.395,107.174,110.222 +1225,1,97.9108,0.04077,85.575,88.624,90.403,91.345,92.795,93.774,95.218,97.911,100.603,102.048,103.027,104.477,105.419,107.197,110.246 +1226,1,97.9323,0.04078,85.591,88.642,90.421,91.363,92.814,93.793,95.239,97.932,100.626,102.071,103.05,104.501,105.444,107.223,110.274 +1227,1,97.9538,0.04078,85.61,88.661,90.441,91.383,92.835,93.814,95.26,97.954,100.648,102.094,103.073,104.524,105.467,107.247,110.298 +1228,1,97.9753,0.04079,85.625,88.678,90.459,91.402,92.854,93.833,95.28,97.975,100.671,102.117,103.097,104.549,105.492,107.272,110.325 +1229,1,97.9968,0.04079,85.644,88.698,90.479,91.422,92.874,93.854,95.301,97.997,100.693,102.14,103.12,104.572,105.515,107.296,110.349 +1230,1,98.0182,0.0408,85.66,88.715,90.497,91.44,92.893,93.873,95.321,98.018,100.716,102.163,103.143,104.596,105.54,107.322,110.376 +1231,1,98.0397,0.0408,85.679,88.734,90.516,91.46,92.913,93.894,95.342,98.04,100.738,102.185,103.166,104.619,105.563,107.345,110.401 +1232,1,98.0611,0.04081,85.694,88.751,90.534,91.479,92.932,93.913,95.362,98.061,100.76,102.209,103.19,104.644,105.588,107.371,110.428 +1233,1,98.0825,0.04081,85.713,88.771,90.554,91.499,92.953,93.934,95.383,98.083,100.782,102.231,103.212,104.666,105.611,107.394,110.452 +1234,1,98.1039,0.04082,85.729,88.788,90.572,91.517,92.972,93.953,95.403,98.104,100.805,102.254,103.236,104.691,105.636,107.42,110.479 +1235,1,98.1253,0.04082,85.747,88.807,90.592,91.537,92.992,93.974,95.424,98.125,100.827,102.277,103.259,104.714,105.659,107.443,110.503 +1236,1,98.1467,0.04083,85.763,88.824,90.61,91.555,93.011,93.993,95.444,98.147,100.85,102.3,103.282,104.738,105.684,107.469,110.53 +1237,1,98.1681,0.04084,85.779,88.841,90.628,91.574,93.03,94.013,95.464,98.168,100.872,102.323,103.306,104.763,105.709,107.495,110.557 +1238,1,98.1895,0.04084,85.797,88.861,90.647,91.594,93.05,94.033,95.485,98.19,100.894,102.346,103.329,104.785,105.732,107.518,110.582 +1239,1,98.2109,0.04085,85.813,88.878,90.665,91.612,93.069,94.053,95.505,98.211,100.917,102.369,103.352,104.81,105.756,107.544,110.609 +1240,1,98.2322,0.04085,85.832,88.897,90.685,91.632,93.09,94.073,95.526,98.232,100.939,102.391,103.375,104.833,105.779,107.567,110.633 +1241,1,98.2536,0.04086,85.847,88.914,90.703,91.65,93.109,94.093,95.546,98.254,100.961,102.415,103.399,104.857,105.804,107.593,110.66 +1242,1,98.2749,0.04086,85.866,88.933,90.723,91.67,93.129,94.113,95.566,98.275,100.983,102.437,103.421,104.88,105.827,107.616,110.684 +1243,1,98.2963,0.04087,85.882,88.951,90.74,91.688,93.148,94.133,95.587,98.296,101.006,102.46,103.445,104.904,105.852,107.642,110.711 +1244,1,98.3176,0.04087,85.9,88.97,90.76,91.708,93.168,94.153,95.607,98.318,101.028,102.482,103.467,104.927,105.875,107.665,110.735 +1245,1,98.3389,0.04088,85.916,88.987,90.778,91.726,93.187,94.172,95.627,98.339,101.05,102.505,103.491,104.951,105.9,107.691,110.762 +1246,1,98.3602,0.04088,85.934,89.006,90.798,91.746,93.207,94.193,95.648,98.36,101.072,102.528,103.513,104.974,105.923,107.714,110.786 +1247,1,98.3815,0.04089,85.95,89.023,90.815,91.765,93.226,94.212,95.668,98.382,101.095,102.551,103.537,104.998,105.948,107.74,110.813 +1248,1,98.4028,0.04089,85.969,89.042,90.835,91.784,93.246,94.233,95.689,98.403,101.117,102.573,103.559,105.021,105.971,107.763,110.837 +1249,1,98.4241,0.0409,85.984,89.059,90.853,91.803,93.265,94.252,95.709,98.424,101.139,102.596,103.583,105.046,105.995,107.789,110.864 +1250,1,98.4453,0.0409,86.003,89.078,90.872,91.822,93.285,94.272,95.73,98.445,101.161,102.618,103.605,105.068,106.018,107.812,110.888 +1251,1,98.4666,0.04091,86.018,89.095,90.89,91.841,93.304,94.292,95.75,98.467,101.184,102.642,103.629,105.093,106.043,107.838,110.915 +1252,1,98.4878,0.04091,86.037,89.115,90.91,91.86,93.324,94.312,95.77,98.488,101.205,102.664,103.651,105.115,106.066,107.861,110.939 +1253,1,98.5091,0.04092,86.052,89.132,90.928,91.879,93.343,94.331,95.79,98.509,101.228,102.687,103.675,105.139,106.091,107.887,110.966 +1254,1,98.5303,0.04092,86.071,89.151,90.947,91.898,93.363,94.352,95.811,98.53,101.25,102.709,103.697,105.162,106.113,107.91,110.99 +1255,1,98.5515,0.04093,86.086,89.168,90.965,91.917,93.382,94.371,95.831,98.552,101.272,102.732,103.721,105.186,106.138,107.935,111.017 +1256,1,98.5727,0.04093,86.105,89.187,90.984,91.936,93.402,94.391,95.851,98.573,101.294,102.754,103.743,105.209,106.161,107.959,111.04 +1257,1,98.5939,0.04094,86.12,89.204,91.002,91.955,93.421,94.41,95.871,98.594,101.316,102.777,103.767,105.233,106.186,107.984,111.067 +1258,1,98.6151,0.04094,86.139,89.223,91.022,91.974,93.441,94.431,95.892,98.615,101.338,102.799,103.789,105.256,106.208,108.007,111.091 +1259,1,98.6363,0.04095,86.154,89.24,91.039,91.992,93.46,94.45,95.912,98.636,101.361,102.823,103.813,105.28,106.233,108.033,111.118 +1260,1,98.6575,0.04095,86.173,89.259,91.059,92.012,93.48,94.47,95.933,98.658,101.382,102.845,103.835,105.303,106.256,108.056,111.142 +1261,1,98.6786,0.04096,86.188,89.276,91.077,92.03,93.499,94.489,95.952,98.679,101.405,102.868,103.858,105.327,106.281,108.081,111.169 +1262,1,98.6998,0.04096,86.207,89.295,91.096,92.05,93.519,94.51,95.973,98.7,101.427,102.89,103.881,105.35,106.303,108.105,111.193 +1263,1,98.7209,0.04097,86.222,89.312,91.114,92.068,93.538,94.529,95.993,98.721,101.449,102.913,103.904,105.374,106.328,108.13,111.22 +1264,1,98.7421,0.04097,86.241,89.331,91.133,92.088,93.558,94.549,96.013,98.742,101.471,102.935,103.927,105.396,106.351,108.153,111.244 +1265,1,98.7632,0.04098,86.256,89.348,91.151,92.106,93.576,94.568,96.033,98.763,101.493,102.958,103.95,105.42,106.375,108.179,111.27 +1266,1,98.7843,0.04098,86.274,89.367,91.171,92.126,93.596,94.589,96.054,98.784,101.515,102.98,103.972,105.443,106.398,108.202,111.294 +1267,1,98.8054,0.04099,86.29,89.384,91.188,92.144,93.615,94.608,96.074,98.805,101.537,103.003,103.996,105.467,106.423,108.227,111.321 +1268,1,98.8265,0.04099,86.308,89.403,91.208,92.163,93.635,94.628,96.094,98.827,101.559,103.025,104.018,105.49,106.445,108.25,111.345 +1269,1,98.8476,0.041,86.324,89.419,91.225,92.181,93.654,94.647,96.114,98.848,101.581,103.048,104.041,105.514,106.47,108.276,111.372 +1270,1,98.8687,0.041,86.342,89.439,91.245,92.201,93.674,94.667,96.135,98.869,101.603,103.07,104.064,105.536,106.493,108.299,111.395 +1271,1,98.8897,0.04101,86.357,89.455,91.262,92.219,93.692,94.686,96.154,98.89,101.625,103.093,104.087,105.56,106.517,108.324,111.422 +1272,1,98.9108,0.04101,86.376,89.474,91.282,92.239,93.712,94.707,96.175,98.911,101.647,103.115,104.109,105.583,106.54,108.347,111.446 +1273,1,98.9318,0.04102,86.391,89.491,91.299,92.257,93.731,94.726,96.195,98.932,101.669,103.138,104.133,105.607,106.564,108.373,111.473 +1274,1,98.9529,0.04103,86.406,89.508,91.317,92.275,93.75,94.745,96.214,98.953,101.691,103.161,104.156,105.631,106.589,108.398,111.499 +1275,1,98.9739,0.04103,86.425,89.527,91.336,92.294,93.77,94.765,96.235,98.974,101.713,103.183,104.178,105.653,106.612,108.421,111.523 +1276,1,98.9949,0.04104,86.44,89.544,91.354,92.312,93.788,94.784,96.255,98.995,101.735,103.206,104.202,105.678,106.636,108.446,111.55 +1277,1,99.0159,0.04104,86.458,89.563,91.373,92.332,93.808,94.804,96.275,99.016,101.757,103.228,104.224,105.7,106.659,108.469,111.573 +1278,1,99.0369,0.04105,86.474,89.579,91.391,92.35,93.827,94.823,96.295,99.037,101.779,103.25,104.247,105.724,106.683,108.495,111.6 +1279,1,99.0579,0.04105,86.492,89.598,91.41,92.369,93.847,94.843,96.315,99.058,101.801,103.272,104.269,105.746,106.706,108.518,111.624 +1280,1,99.0789,0.04106,86.507,89.615,91.427,92.387,93.865,94.863,96.335,99.079,101.823,103.295,104.292,105.77,106.73,108.543,111.651 +1281,1,99.0999,0.04106,86.526,89.634,91.447,92.407,93.885,94.883,96.355,99.1,101.844,103.317,104.315,105.793,106.753,108.566,111.674 +1282,1,99.1208,0.04107,86.541,89.65,91.464,92.425,93.904,94.902,96.375,99.121,101.867,103.34,104.338,105.817,106.777,108.591,111.701 +1283,1,99.1418,0.04107,86.559,89.669,91.484,92.444,93.924,94.922,96.395,99.142,101.888,103.362,104.36,105.839,106.8,108.614,111.724 +1284,1,99.1628,0.04108,86.574,89.686,91.501,92.462,93.942,94.941,96.415,99.163,101.91,103.385,104.383,105.863,106.824,108.639,111.751 +1285,1,99.1837,0.04108,86.593,89.705,91.52,92.482,93.962,94.961,96.436,99.184,101.932,103.407,104.405,105.886,106.847,108.662,111.775 +1286,1,99.2046,0.04109,86.608,89.722,91.538,92.5,93.981,94.98,96.455,99.205,101.954,103.429,104.429,105.91,106.871,108.688,111.801 +1287,1,99.2255,0.04109,86.626,89.741,91.557,92.519,94,95,96.475,99.226,101.976,103.451,104.451,105.932,106.894,108.71,111.825 +1288,1,99.2464,0.0411,86.641,89.757,91.575,92.537,94.019,95.019,96.495,99.246,101.998,103.474,104.474,105.956,106.918,108.736,111.852 +1289,1,99.2673,0.0411,86.66,89.776,91.594,92.556,94.039,95.039,96.515,99.267,102.019,103.496,104.496,105.978,106.941,108.759,111.875 +1290,1,99.2882,0.04111,86.675,89.793,91.611,92.574,94.057,95.058,96.535,99.288,102.041,103.519,104.519,106.002,106.965,108.784,111.902 +1291,1,99.3091,0.04111,86.693,89.812,91.631,92.594,94.077,95.078,96.555,99.309,102.063,103.54,104.541,106.024,106.988,108.807,111.925 +1292,1,99.33,0.04112,86.708,89.828,91.648,92.612,94.096,95.097,96.575,99.33,102.085,103.563,104.564,106.048,107.012,108.832,111.952 +1293,1,99.3509,0.04112,86.726,89.847,91.667,92.631,94.115,95.117,96.595,99.351,102.106,103.585,104.586,106.071,107.035,108.855,111.975 +1294,1,99.3717,0.04113,86.741,89.864,91.685,92.649,94.134,95.136,96.615,99.372,102.128,103.608,104.61,106.094,107.059,108.88,112.002 +1295,1,99.3926,0.04113,86.76,89.882,91.704,92.668,94.154,95.156,96.635,99.393,102.15,103.63,104.632,106.117,107.081,108.903,112.026 +1296,1,99.4134,0.04114,86.775,89.899,91.721,92.686,94.172,95.175,96.655,99.413,102.172,103.652,104.655,106.141,107.106,108.928,112.052 +1297,1,99.4342,0.04114,86.793,89.918,91.74,92.706,94.192,95.194,96.675,99.434,102.193,103.674,104.677,106.163,107.128,108.951,112.075 +1298,1,99.455,0.04115,86.808,89.934,91.758,92.723,94.21,95.213,96.695,99.455,102.215,103.697,104.7,106.187,107.152,108.976,112.102 +1299,1,99.4758,0.04115,86.826,89.953,91.777,92.743,94.23,95.233,96.715,99.476,102.237,103.718,104.722,106.209,107.175,108.999,112.125 +1300,1,99.4966,0.04116,86.841,89.97,91.794,92.76,94.248,95.252,96.734,99.497,102.259,103.741,104.745,106.233,107.199,109.024,112.152 +1301,1,99.5174,0.04116,86.859,89.988,91.813,92.78,94.268,95.272,96.755,99.517,102.28,103.763,104.767,106.255,107.221,109.046,112.175 +1302,1,99.5382,0.04117,86.874,90.005,91.831,92.798,94.286,95.291,96.774,99.538,102.302,103.785,104.79,106.279,107.246,109.072,112.202 +1303,1,99.559,0.04117,86.893,90.024,91.85,92.817,94.306,95.311,96.794,99.559,102.324,103.807,104.812,106.301,107.268,109.094,112.225 +1304,1,99.5798,0.04118,86.908,90.04,91.867,92.835,94.325,95.33,96.814,99.58,102.346,103.83,104.835,106.325,107.292,109.119,112.252 +1305,1,99.6005,0.04118,86.926,90.059,91.886,92.854,94.344,95.35,96.834,99.601,102.367,103.851,104.857,106.347,107.315,109.142,112.275 +1306,1,99.6212,0.04119,86.941,90.075,91.904,92.872,94.362,95.368,96.854,99.621,102.389,103.874,104.88,106.371,107.339,109.167,112.302 +1307,1,99.642,0.04119,86.959,90.094,91.923,92.891,94.382,95.388,96.874,99.642,102.41,103.896,104.902,106.393,107.361,109.19,112.325 +1308,1,99.6627,0.0412,86.974,90.11,91.94,92.909,94.401,95.407,96.893,99.663,102.432,103.918,104.925,106.417,107.385,109.215,112.352 +1309,1,99.6834,0.0412,86.992,90.129,91.959,92.928,94.42,95.427,96.913,99.683,102.453,103.94,104.947,106.439,107.408,109.238,112.375 +1310,1,99.7041,0.04121,87.007,90.146,91.976,92.946,94.438,95.446,96.933,99.704,102.475,103.963,104.97,106.462,107.432,109.263,112.401 +1311,1,99.7248,0.04121,87.025,90.164,91.995,92.965,94.458,95.465,96.953,99.725,102.497,103.984,104.992,106.485,107.454,109.285,112.425 +1312,1,99.7455,0.04122,87.04,90.181,92.013,92.983,94.476,95.484,96.972,99.746,102.519,104.007,105.015,106.508,107.478,109.31,112.451 +1313,1,99.7662,0.04122,87.058,90.199,92.032,93.002,94.496,95.504,96.992,99.766,102.54,104.028,105.036,106.53,107.501,109.333,112.474 +1314,1,99.7869,0.04123,87.073,90.216,92.049,93.02,94.514,95.523,97.012,99.787,102.562,104.051,105.059,106.554,107.525,109.358,112.501 +1315,1,99.8075,0.04123,87.091,90.234,92.068,93.039,94.534,95.543,97.032,99.808,102.583,104.072,105.081,106.576,107.547,109.381,112.524 +1316,1,99.8282,0.04124,87.106,90.251,92.085,93.056,94.552,95.561,97.051,99.828,102.605,104.095,105.104,106.6,107.571,109.406,112.55 +1317,1,99.8488,0.04124,87.124,90.269,92.104,93.076,94.572,95.581,97.071,99.849,102.626,104.117,105.126,106.622,107.593,109.428,112.574 +1318,1,99.8695,0.04125,87.139,90.286,92.121,93.093,94.59,95.6,97.091,99.87,102.648,104.139,105.149,106.646,107.618,109.453,112.6 +1319,1,99.8901,0.04125,87.157,90.304,92.14,93.113,94.61,95.62,97.111,99.89,102.669,104.161,105.171,106.668,107.64,109.476,112.623 +1320,1,99.9107,0.04126,87.172,90.321,92.157,93.13,94.628,95.638,97.13,99.911,102.691,104.183,105.194,106.691,107.664,109.501,112.65 +1321,1,99.9313,0.04126,87.19,90.339,92.176,93.149,94.647,95.658,97.15,99.931,102.712,104.205,105.215,106.713,107.686,109.523,112.673 +1322,1,99.9519,0.04126,87.208,90.358,92.195,93.168,94.667,95.678,97.17,99.952,102.734,104.226,105.237,106.735,107.708,109.546,112.696 +1323,1,99.9725,0.04127,87.223,90.374,92.213,93.186,94.685,95.696,97.19,99.973,102.755,104.249,105.26,106.759,107.732,109.571,112.722 +1324,1,99.9931,0.04127,87.241,90.393,92.232,93.205,94.705,95.716,97.21,99.993,102.777,104.27,105.282,106.781,107.755,109.593,112.746 +1325,1,100.0137,0.04128,87.255,90.409,92.249,93.223,94.723,95.735,97.229,100.014,102.798,104.293,105.305,106.805,107.779,109.618,112.772 +1326,1,100.0342,0.04128,87.273,90.428,92.268,93.242,94.742,95.754,97.249,100.034,102.819,104.314,105.326,106.826,107.801,109.641,112.795 +1327,1,100.0548,0.04129,87.288,90.444,92.285,93.259,94.76,95.773,97.268,100.055,102.841,104.337,105.349,106.85,107.825,109.666,112.821 +1328,1,100.0753,0.04129,87.306,90.463,92.304,93.279,94.78,95.793,97.288,100.075,102.862,104.358,105.371,106.872,107.847,109.688,112.844 +1329,1,100.0959,0.0413,87.321,90.479,92.321,93.296,94.798,95.811,97.308,100.096,102.884,104.38,105.394,106.896,107.871,109.713,112.871 +1330,1,100.1164,0.0413,87.339,90.497,92.34,93.315,94.817,95.831,97.328,100.116,102.905,104.402,105.415,106.918,107.893,109.735,112.894 +1331,1,100.1369,0.04131,87.354,90.514,92.357,93.333,94.836,95.85,97.347,100.137,102.927,104.424,105.438,106.941,107.917,109.76,112.92 +1332,1,100.1574,0.04131,87.372,90.532,92.376,93.352,94.855,95.869,97.367,100.157,102.948,104.446,105.46,106.963,107.939,109.783,112.943 +1333,1,100.1779,0.04132,87.386,90.548,92.393,93.369,94.873,95.888,97.386,100.178,102.97,104.468,105.483,106.987,107.963,109.807,112.969 +1334,1,100.1984,0.04132,87.404,90.567,92.412,93.388,94.893,95.907,97.406,100.198,102.991,104.489,105.504,107.008,107.985,109.83,112.993 +1335,1,100.2189,0.04133,87.419,90.583,92.429,93.406,94.911,95.926,97.425,100.219,103.013,104.512,105.527,107.032,108.009,109.855,113.019 +1336,1,100.2394,0.04133,87.437,90.602,92.447,93.425,94.93,95.946,97.445,100.239,103.034,104.533,105.549,107.054,108.031,109.877,113.042 +1337,1,100.2598,0.04134,87.452,90.618,92.464,93.442,94.948,95.964,97.464,100.26,103.055,104.556,105.571,107.077,108.055,109.902,113.068 +1338,1,100.2803,0.04134,87.469,90.636,92.483,93.461,94.968,95.984,97.484,100.28,103.076,104.577,105.593,107.099,108.077,109.924,113.091 +1339,1,100.3007,0.04135,87.484,90.652,92.5,93.479,94.986,96.002,97.503,100.301,103.098,104.599,105.616,107.123,108.101,109.949,113.117 +1340,1,100.3212,0.04135,87.502,90.671,92.519,93.498,95.005,96.022,97.523,100.321,103.119,104.621,105.637,107.145,108.123,109.972,113.14 +1341,1,100.3416,0.04136,87.517,90.687,92.536,93.515,95.023,96.04,97.542,100.342,103.141,104.643,105.66,107.168,108.147,109.996,113.166 +1342,1,100.362,0.04136,87.535,90.705,92.555,93.534,95.042,96.06,97.562,100.362,103.162,104.664,105.682,107.19,108.169,110.019,113.189 +1343,1,100.3824,0.04137,87.549,90.721,92.572,93.552,95.06,96.078,97.581,100.382,103.183,104.687,105.704,107.213,108.193,110.043,113.216 +1344,1,100.4028,0.04137,87.567,90.74,92.591,93.571,95.08,96.098,97.601,100.403,103.204,104.708,105.726,107.235,108.215,110.066,113.239 +1345,1,100.4232,0.04138,87.582,90.756,92.608,93.588,95.098,96.116,97.62,100.423,103.226,104.73,105.749,107.258,108.239,110.09,113.265 +1346,1,100.4436,0.04138,87.599,90.774,92.626,93.607,95.117,96.136,97.64,100.444,103.247,104.751,105.77,107.28,108.261,110.113,113.288 +1347,1,100.464,0.04139,87.614,90.791,92.643,93.624,95.135,96.154,97.659,100.464,103.269,104.774,105.793,107.304,108.285,110.137,113.314 +1348,1,100.4843,0.04139,87.632,90.809,92.662,93.643,95.154,96.174,97.679,100.484,103.29,104.795,105.814,107.325,108.307,110.16,113.337 +1349,1,100.5047,0.0414,87.647,90.825,92.679,93.661,95.172,96.192,97.698,100.505,103.311,104.817,105.837,107.349,108.33,110.184,113.363 +1350,1,100.525,0.0414,87.664,90.843,92.698,93.68,95.192,96.212,97.718,100.525,103.332,104.838,105.858,107.37,108.352,110.207,113.386 +1351,1,100.5454,0.04141,87.679,90.859,92.715,93.697,95.21,96.23,97.737,100.545,103.354,104.861,105.881,107.394,108.376,110.231,113.412 +1352,1,100.5657,0.04141,87.697,90.878,92.733,93.716,95.229,96.25,97.757,100.566,103.375,104.882,105.903,107.416,108.398,110.254,113.435 +1353,1,100.586,0.04142,87.711,90.894,92.75,93.733,95.247,96.268,97.776,100.586,103.396,104.904,105.925,107.439,108.422,110.278,113.461 +1354,1,100.6063,0.04142,87.729,90.912,92.769,93.752,95.266,96.287,97.796,100.606,103.417,104.925,105.947,107.461,108.444,110.3,113.484 +1355,1,100.6266,0.04143,87.744,90.928,92.786,93.769,95.284,96.306,97.815,100.627,103.439,104.947,105.969,107.484,108.468,110.325,113.51 +1356,1,100.6469,0.04143,87.761,90.946,92.804,93.788,95.303,96.325,97.834,100.647,103.459,104.969,105.991,107.506,108.489,110.347,113.533 +1357,1,100.6672,0.04144,87.776,90.962,92.821,93.805,95.321,96.344,97.853,100.667,103.481,104.991,106.013,107.529,108.513,110.372,113.559 +1358,1,100.6875,0.04144,87.794,90.981,92.84,93.824,95.34,96.363,97.873,100.688,103.502,105.012,106.035,107.551,108.535,110.394,113.581 +1359,1,100.7077,0.04145,87.808,90.997,92.857,93.842,95.358,96.381,97.892,100.708,103.523,105.034,106.057,107.574,108.559,110.419,113.607 +1360,1,100.728,0.04145,87.826,91.015,92.875,93.86,95.377,96.401,97.912,100.728,103.544,105.055,106.079,107.596,108.581,110.441,113.63 +1361,1,100.7482,0.04146,87.84,91.031,92.892,93.878,95.395,96.419,97.931,100.748,103.566,105.077,106.101,107.619,108.604,110.465,113.656 +1362,1,100.7685,0.04146,87.858,91.049,92.911,93.897,95.414,96.438,97.951,100.769,103.586,105.099,106.123,107.64,108.626,110.488,113.679 +1363,1,100.7887,0.04146,87.876,91.068,92.929,93.915,95.433,96.458,97.97,100.789,103.607,105.12,106.144,107.662,108.648,110.51,113.702 +1364,1,100.8089,0.04147,87.89,91.083,92.946,93.933,95.451,96.476,97.989,100.809,103.629,105.142,106.166,107.685,108.672,110.534,113.728 +1365,1,100.8291,0.04147,87.908,91.102,92.965,93.951,95.47,96.495,98.009,100.829,103.649,105.163,106.188,107.707,108.693,110.556,113.751 +1366,1,100.8493,0.04148,87.922,91.118,92.982,93.969,95.488,96.514,98.028,100.849,103.671,105.185,106.21,107.73,108.717,110.581,113.776 +1367,1,100.8695,0.04148,87.94,91.136,93,93.987,95.507,96.533,98.047,100.87,103.692,105.206,106.232,107.752,108.739,110.603,113.799 +1368,1,100.8897,0.04149,87.954,91.152,93.017,94.004,95.525,96.551,98.066,100.89,103.713,105.228,106.254,107.775,108.763,110.628,113.825 +1369,1,100.9099,0.04149,87.972,91.17,93.035,94.023,95.544,96.571,98.086,100.91,103.734,105.249,106.275,107.796,108.784,110.65,113.848 +1370,1,100.9301,0.0415,87.986,91.186,93.052,94.04,95.562,96.589,98.105,100.93,103.755,105.271,106.298,107.82,108.808,110.674,113.874 +1371,1,100.9502,0.0415,88.004,91.204,93.071,94.059,95.581,96.608,98.124,100.95,103.776,105.292,106.319,107.841,108.83,110.696,113.897 +1372,1,100.9704,0.04151,88.018,91.22,93.087,94.076,95.599,96.626,98.143,100.97,103.797,105.314,106.342,107.864,108.853,110.721,113.922 +1373,1,100.9905,0.04151,88.036,91.238,93.106,94.095,95.618,96.646,98.163,100.991,103.818,105.335,106.363,107.886,108.875,110.743,113.945 +1374,1,101.0107,0.04152,88.05,91.254,93.123,94.112,95.636,96.664,98.182,101.011,103.839,105.357,106.385,107.909,108.899,110.767,113.971 +1375,1,101.0308,0.04152,88.068,91.272,93.141,94.131,95.655,96.683,98.201,101.031,103.86,105.378,106.407,107.931,108.92,110.789,113.994 +1376,1,101.0509,0.04153,88.082,91.288,93.158,94.148,95.673,96.701,98.22,101.051,103.881,105.4,106.429,107.954,108.944,110.814,114.02 +1377,1,101.071,0.04153,88.1,91.306,93.176,94.167,95.692,96.721,98.24,101.071,103.902,105.421,106.45,107.975,108.966,110.836,114.042 +1378,1,101.0911,0.04154,88.114,91.322,93.193,94.184,95.709,96.739,98.259,101.091,103.924,105.443,106.473,107.998,108.989,110.86,114.068 +1379,1,101.1112,0.04154,88.132,91.34,93.212,94.203,95.728,96.758,98.278,101.111,103.944,105.464,106.494,108.02,109.011,110.882,114.091 +1380,1,101.1313,0.04155,88.146,91.356,93.228,94.22,95.746,96.776,98.297,101.131,103.966,105.486,106.516,108.043,109.034,110.907,114.116 +1381,1,101.1514,0.04155,88.164,91.374,93.247,94.238,95.765,96.795,98.317,101.151,103.986,105.507,106.538,108.064,109.056,110.929,114.139 +1382,1,101.1714,0.04156,88.178,91.39,93.263,94.255,95.783,96.814,98.335,101.171,104.007,105.529,106.56,108.087,109.08,110.953,114.165 +1383,1,101.1915,0.04156,88.195,91.408,93.282,94.274,95.802,96.833,98.355,101.192,104.028,105.55,106.581,108.109,109.101,110.975,114.188 +1384,1,101.2115,0.04157,88.21,91.424,93.298,94.291,95.82,96.851,98.374,101.212,104.049,105.572,106.603,108.132,109.125,110.999,114.213 +1385,1,101.2316,0.04157,88.227,91.442,93.317,94.31,95.839,96.87,98.393,101.232,104.07,105.593,106.625,108.153,109.146,111.021,114.236 +1386,1,101.2516,0.04158,88.242,91.458,93.333,94.327,95.856,96.888,98.412,101.252,104.091,105.615,106.647,108.177,109.17,111.046,114.262 +1387,1,101.2716,0.04158,88.259,91.476,93.352,94.345,95.875,96.907,98.431,101.272,104.112,105.636,106.668,108.198,109.191,111.068,114.284 +1388,1,101.2917,0.04158,88.277,91.494,93.37,94.364,95.894,96.927,98.451,101.292,104.132,105.657,106.689,108.219,109.213,111.09,114.307 +1389,1,101.3117,0.04159,88.291,91.51,93.387,94.381,95.912,96.945,98.47,101.312,104.154,105.679,106.712,108.242,109.237,111.114,114.333 +1390,1,101.3317,0.04159,88.308,91.528,93.405,94.4,95.931,96.964,98.489,101.332,104.174,105.7,106.733,108.264,109.258,111.136,114.355 +1391,1,101.3517,0.0416,88.323,91.543,93.422,94.417,95.948,96.982,98.508,101.352,104.196,105.722,106.755,108.287,109.282,111.16,114.381 +1392,1,101.3716,0.0416,88.34,91.561,93.44,94.435,95.967,97.001,98.527,101.372,104.216,105.742,106.776,108.308,109.303,111.182,114.403 +1393,1,101.3916,0.04161,88.354,91.577,93.457,94.452,95.985,97.019,98.546,101.392,104.237,105.764,106.798,108.331,109.326,111.206,114.429 +1394,1,101.4116,0.04161,88.372,91.595,93.475,94.471,96.004,97.038,98.565,101.412,104.258,105.785,106.819,108.352,109.348,111.228,114.452 +1395,1,101.4315,0.04162,88.386,91.611,93.492,94.488,96.021,97.056,98.584,101.432,104.279,105.807,106.842,108.375,109.371,111.252,114.477 +1396,1,101.4515,0.04162,88.403,91.629,93.51,94.506,96.04,97.075,98.604,101.452,104.299,105.828,106.863,108.397,109.393,111.274,114.5 +1397,1,101.4714,0.04163,88.417,91.644,93.526,94.523,96.058,97.093,98.622,101.471,104.321,105.85,106.885,108.42,109.416,111.298,114.525 +1398,1,101.4914,0.04163,88.435,91.662,93.545,94.542,96.077,97.112,98.642,101.491,104.341,105.87,106.906,108.441,109.438,111.32,114.548 +1399,1,101.5113,0.04164,88.449,91.678,93.561,94.559,96.094,97.13,98.66,101.511,104.362,105.892,106.928,108.464,109.461,111.345,114.573 +1400,1,101.5312,0.04164,88.466,91.696,93.58,94.577,96.113,97.149,98.68,101.531,104.383,105.913,106.949,108.485,109.483,111.366,114.596 +1401,1,101.5511,0.04165,88.481,91.712,93.596,94.594,96.131,97.167,98.698,101.551,104.404,105.935,106.972,108.508,109.506,111.391,114.622 +1402,1,101.571,0.04165,88.498,91.73,93.614,94.613,96.149,97.186,98.718,101.571,104.424,105.956,106.993,108.529,109.528,111.412,114.644 +1403,1,101.5909,0.04166,88.512,91.745,93.631,94.629,96.167,97.204,98.736,101.591,104.446,105.977,107.015,108.552,109.551,111.437,114.67 +1404,1,101.6108,0.04166,88.53,91.763,93.649,94.648,96.186,97.223,98.756,101.611,104.466,105.998,107.036,108.574,109.572,111.458,114.692 +1405,1,101.6306,0.04167,88.544,91.779,93.666,94.665,96.203,97.241,98.774,101.631,104.487,106.02,107.058,108.596,109.596,111.483,114.718 +1406,1,101.6505,0.04167,88.561,91.797,93.684,94.683,96.222,97.26,98.794,101.651,104.507,106.041,107.079,108.618,109.617,111.504,114.74 +1407,1,101.6704,0.04167,88.578,91.815,93.702,94.702,96.241,97.279,98.813,101.67,104.528,106.061,107.1,108.639,109.639,111.526,114.762 +1408,1,101.6902,0.04168,88.592,91.83,93.719,94.719,96.258,97.297,98.831,101.69,104.549,106.083,107.122,108.662,109.662,111.55,114.788 +1409,1,101.7101,0.04168,88.61,91.848,93.737,94.737,96.277,97.316,98.851,101.71,104.569,106.104,107.143,108.683,109.683,111.572,114.81 +1410,1,101.7299,0.04169,88.624,91.864,93.753,94.754,96.295,97.334,98.869,101.73,104.59,106.126,107.165,108.706,109.707,111.596,114.836 +1411,1,101.7497,0.04169,88.641,91.881,93.771,94.772,96.313,97.353,98.889,101.75,104.611,106.146,107.186,108.727,109.728,111.618,114.858 +1412,1,101.7695,0.0417,88.655,91.897,93.788,94.789,96.331,97.371,98.907,101.77,104.632,106.168,107.208,108.75,109.751,111.642,114.884 +1413,1,101.7893,0.0417,88.672,91.915,93.806,94.808,96.35,97.39,98.926,101.789,104.652,106.189,107.229,108.771,109.773,111.664,114.906 +1414,1,101.8091,0.04171,88.687,91.93,93.822,94.824,96.367,97.408,98.945,101.809,104.673,106.21,107.251,108.794,109.796,111.688,114.932 +1415,1,101.8289,0.04171,88.704,91.948,93.841,94.843,96.386,97.427,98.964,101.829,104.694,106.231,107.272,108.815,109.817,111.71,114.954 +1416,1,101.8487,0.04172,88.718,91.964,93.857,94.86,96.403,97.445,98.983,101.849,104.715,106.253,107.294,108.838,109.84,111.734,114.979 +1417,1,101.8685,0.04172,88.735,91.982,93.875,94.878,96.422,97.464,99.002,101.869,104.735,106.273,107.315,108.859,109.862,111.755,115.002 +1418,1,101.8883,0.04173,88.749,91.997,93.892,94.895,96.439,97.482,99.021,101.888,104.756,106.295,107.337,108.882,109.885,111.779,115.027 +1419,1,101.908,0.04173,88.766,92.015,93.91,94.913,96.458,97.5,99.04,101.908,104.776,106.316,107.358,108.903,109.906,111.801,115.05 +1420,1,101.9278,0.04174,88.781,92.03,93.926,94.93,96.475,97.518,99.058,101.928,104.797,106.337,107.38,108.926,109.93,111.825,115.075 +1421,1,101.9475,0.04174,88.798,92.048,93.944,94.948,96.494,97.537,99.077,101.948,104.818,106.358,107.401,108.947,109.951,111.847,115.097 +1422,1,101.9673,0.04175,88.812,92.064,93.961,94.965,96.512,97.555,99.096,101.967,104.839,106.38,107.423,108.97,109.974,111.871,115.123 +1423,1,101.987,0.04175,88.829,92.082,93.979,94.983,96.53,97.574,99.115,101.987,104.859,106.4,107.444,108.991,109.995,111.892,115.145 +1424,1,102.0067,0.04175,88.846,92.099,93.997,95.002,96.549,97.593,99.134,102.007,104.879,106.421,107.465,109.012,110.017,111.914,115.167 +1425,1,102.0264,0.04176,88.86,92.115,94.013,95.018,96.566,97.611,99.153,102.026,104.9,106.442,107.487,109.035,110.04,111.938,115.193 +1426,1,102.0461,0.04176,88.877,92.132,94.031,95.037,96.585,97.629,99.172,102.046,104.92,106.463,107.507,109.056,110.061,111.96,115.215 +1427,1,102.0658,0.04177,88.891,92.148,94.047,95.053,96.602,97.647,99.19,102.066,104.941,106.484,107.529,109.078,110.084,111.984,115.24 +1428,1,102.0855,0.04177,88.908,92.166,94.066,95.072,96.621,97.666,99.209,102.086,104.962,106.505,107.55,109.099,110.105,112.005,115.263 +1429,1,102.1052,0.04178,88.922,92.181,94.082,95.088,96.638,97.684,99.228,102.105,104.983,106.527,107.572,109.122,110.129,112.029,115.288 +1430,1,102.1249,0.04178,88.94,92.199,94.1,95.107,96.657,97.703,99.247,102.125,105.003,106.547,107.593,109.143,110.15,112.051,115.31 +1431,1,102.1446,0.04179,88.954,92.214,94.116,95.123,96.674,97.72,99.265,102.145,105.024,106.569,107.615,109.166,110.173,112.075,115.336 +1432,1,102.1642,0.04179,88.971,92.232,94.134,95.142,96.693,97.739,99.285,102.164,105.044,106.589,107.636,109.187,110.194,112.096,115.358 +1433,1,102.1839,0.0418,88.985,92.247,94.15,95.158,96.71,97.757,99.303,102.184,105.065,106.611,107.658,109.21,110.217,112.12,115.383 +1434,1,102.2035,0.0418,89.002,92.265,94.169,95.177,96.729,97.776,99.322,102.204,105.085,106.631,107.678,109.23,110.238,112.142,115.405 +1435,1,102.2232,0.04181,89.016,92.281,94.185,95.193,96.746,97.794,99.34,102.223,105.106,106.653,107.7,109.253,110.262,112.166,115.431 +1436,1,102.2428,0.04181,89.033,92.298,94.203,95.211,96.764,97.812,99.36,102.243,105.126,106.673,107.721,109.274,110.283,112.187,115.453 +1437,1,102.2624,0.04181,89.05,92.316,94.221,95.23,96.783,97.831,99.379,102.262,105.146,106.694,107.742,109.295,110.304,112.209,115.475 +1438,1,102.282,0.04182,89.064,92.331,94.237,95.246,96.8,97.849,99.397,102.282,105.167,106.715,107.764,109.318,110.327,112.233,115.5 +1439,1,102.3016,0.04182,89.081,92.349,94.255,95.265,96.819,97.867,99.416,102.302,105.187,106.736,107.784,109.339,110.348,112.254,115.522 +1440,1,102.3212,0.04183,89.095,92.364,94.271,95.281,96.836,97.885,99.434,102.321,105.208,106.757,107.806,109.361,110.371,112.278,115.548 +1441,1,102.3408,0.04183,89.112,92.382,94.289,95.299,96.855,97.904,99.453,102.341,105.228,106.778,107.827,109.382,110.392,112.3,115.57 +1442,1,102.3604,0.04184,89.126,92.397,94.305,95.316,96.872,97.922,99.472,102.36,105.249,106.799,107.849,109.405,110.415,112.324,115.595 +1443,1,102.38,0.04184,89.143,92.415,94.323,95.334,96.89,97.94,99.491,102.38,105.269,106.82,107.87,109.426,110.437,112.345,115.617 +1444,1,102.3996,0.04185,89.157,92.43,94.34,95.351,96.908,97.958,99.509,102.4,105.29,106.841,107.892,109.448,110.46,112.369,115.643 +1445,1,102.4191,0.04185,89.174,92.448,94.358,95.369,96.926,97.977,99.528,102.419,105.31,106.862,107.912,109.469,110.481,112.39,115.665 +1446,1,102.4387,0.04186,89.188,92.463,94.374,95.385,96.943,97.994,99.546,102.439,105.331,106.883,107.934,109.492,110.504,112.414,115.69 +1447,1,102.4582,0.04186,89.205,92.481,94.392,95.404,96.962,98.013,99.565,102.458,105.351,106.903,107.955,109.513,110.525,112.436,115.712 +1448,1,102.4778,0.04187,89.218,92.496,94.408,95.42,96.979,98.031,99.584,102.478,105.372,106.925,107.977,109.535,110.548,112.46,115.737 +1449,1,102.4973,0.04187,89.235,92.514,94.426,95.438,96.997,98.049,99.603,102.497,105.392,106.945,107.997,109.556,110.569,112.481,115.759 +1450,1,102.5168,0.04187,89.252,92.531,94.444,95.456,97.016,98.068,99.622,102.517,105.412,106.966,108.018,109.577,110.59,112.502,115.781 +1451,1,102.5364,0.04188,89.266,92.547,94.46,95.473,97.033,98.086,99.64,102.536,105.433,106.987,108.04,109.6,110.613,112.526,115.807 +1452,1,102.5559,0.04188,89.283,92.564,94.478,95.491,97.052,98.104,99.659,102.556,105.453,107.007,108.06,109.621,110.634,112.548,115.829 +1453,1,102.5754,0.04189,89.297,92.579,94.494,95.508,97.069,98.122,99.677,102.575,105.474,107.029,108.082,109.643,110.657,112.571,115.854 +1454,1,102.5949,0.04189,89.314,92.597,94.512,95.526,97.087,98.141,99.696,102.595,105.494,107.049,108.103,109.664,110.678,112.593,115.876 +1455,1,102.6144,0.0419,89.328,92.612,94.528,95.542,97.104,98.158,99.714,102.614,105.514,107.071,108.124,109.687,110.701,112.617,115.901 +1456,1,102.6338,0.0419,89.345,92.63,94.546,95.56,97.123,98.177,99.733,102.634,105.534,107.091,108.145,109.707,110.722,112.638,115.923 +1457,1,102.6533,0.04191,89.359,92.645,94.562,95.577,97.14,98.194,99.752,102.653,105.555,107.112,108.167,109.73,110.745,112.662,115.948 +1458,1,102.6728,0.04191,89.375,92.662,94.58,95.595,97.158,98.213,99.77,102.673,105.575,107.133,108.187,109.751,110.766,112.683,115.97 +1459,1,102.6923,0.04192,89.389,92.678,94.596,95.611,97.175,98.231,99.789,102.692,105.596,107.154,108.209,109.773,110.789,112.707,115.995 +1460,1,102.7117,0.04192,89.406,92.695,94.614,95.629,97.194,98.249,99.808,102.712,105.616,107.174,108.23,109.794,110.81,112.728,116.017 +1461,1,102.7312,0.04193,89.42,92.71,94.63,95.646,97.211,98.267,99.826,102.731,105.637,107.196,108.252,109.816,110.833,112.752,116.042 +1462,1,102.7506,0.04193,89.437,92.728,94.648,95.664,97.229,98.285,99.845,102.751,105.657,107.216,108.272,109.837,110.854,112.773,116.064 +1463,1,102.77,0.04193,89.454,92.745,94.665,95.682,97.248,98.304,99.864,102.77,105.676,107.236,108.292,109.858,110.875,112.795,116.086 +1464,1,102.7895,0.04194,89.468,92.761,94.681,95.699,97.265,98.321,99.882,102.79,105.697,107.258,108.314,109.88,110.898,112.818,116.111 +1465,1,102.8089,0.04194,89.484,92.778,94.699,95.717,97.283,98.34,99.901,102.809,105.717,107.278,108.335,109.901,110.919,112.84,116.133 +1466,1,102.8283,0.04195,89.498,92.793,94.715,95.733,97.3,98.357,99.919,102.828,105.738,107.299,108.356,109.924,110.941,112.863,116.158 +1467,1,102.8477,0.04195,89.515,92.811,94.733,95.751,97.318,98.376,99.938,102.848,105.758,107.319,108.377,109.944,110.962,112.885,116.18 +1468,1,102.8671,0.04196,89.529,92.826,94.749,95.767,97.336,98.394,99.956,102.867,105.778,107.341,108.399,109.967,110.985,112.908,116.205 +1469,1,102.8865,0.04196,89.546,92.843,94.767,95.785,97.354,98.412,99.975,102.887,105.798,107.361,108.419,109.988,111.006,112.93,116.227 +1470,1,102.9059,0.04197,89.559,92.858,94.783,95.802,97.371,98.43,99.993,102.906,105.819,107.382,108.441,110.01,111.029,112.953,116.252 +1471,1,102.9252,0.04197,89.576,92.876,94.801,95.82,97.389,98.448,100.012,102.925,105.839,107.402,108.461,110.031,111.05,112.974,116.274 +1472,1,102.9446,0.04198,89.59,92.891,94.817,95.836,97.406,98.466,100.03,102.945,105.859,107.424,108.483,110.053,111.073,112.998,116.299 +1473,1,102.964,0.04198,89.607,92.909,94.834,95.854,97.425,98.484,100.049,102.964,105.879,107.444,108.503,110.074,111.094,113.019,116.321 +1474,1,102.9833,0.04198,89.623,92.926,94.852,95.872,97.443,98.503,100.067,102.983,105.899,107.464,108.524,110.094,111.114,113.041,116.343 +1475,1,103.0027,0.04199,89.637,92.941,94.868,95.889,97.46,98.52,100.085,103.003,105.92,107.485,108.546,110.117,111.137,113.064,116.368 +1476,1,103.022,0.04199,89.654,92.958,94.886,95.907,97.478,98.538,100.104,103.022,105.94,107.506,108.566,110.137,111.158,113.086,116.39 +1477,1,103.0414,0.042,89.668,92.974,94.902,95.923,97.495,98.556,100.122,103.041,105.96,107.527,108.588,110.16,111.181,113.109,116.415 +1478,1,103.0607,0.042,89.684,92.991,94.92,95.941,97.513,98.574,100.141,103.061,105.98,107.547,108.608,110.181,111.202,113.13,116.437 +1479,1,103.08,0.04201,89.698,93.006,94.935,95.957,97.53,98.592,100.159,103.08,106.001,107.568,108.63,110.203,111.225,113.154,116.462 +1480,1,103.0993,0.04201,89.715,93.023,94.953,95.975,97.549,98.61,100.178,103.099,106.021,107.588,108.65,110.223,111.245,113.175,116.484 +1481,1,103.1186,0.04202,89.728,93.038,94.969,95.991,97.566,98.628,100.196,103.119,106.041,107.61,108.672,110.246,111.268,113.199,116.509 +1482,1,103.1379,0.04202,89.745,93.056,94.987,96.009,97.584,98.646,100.215,103.138,106.061,107.63,108.692,110.266,111.289,113.22,116.531 +1483,1,103.1572,0.04203,89.759,93.071,95.003,96.026,97.601,98.664,100.233,103.157,106.082,107.651,108.714,110.289,111.312,113.244,116.556 +1484,1,103.1765,0.04203,89.776,93.088,95.02,96.044,97.619,98.682,100.252,103.177,106.101,107.671,108.734,110.309,111.333,113.265,116.577 +1485,1,103.1958,0.04203,89.792,93.106,95.038,96.062,97.637,98.7,100.27,103.196,106.121,107.691,108.754,110.33,111.353,113.286,116.599 +1486,1,103.2151,0.04204,89.806,93.121,95.054,96.078,97.654,98.718,100.288,103.215,106.142,107.712,108.776,110.352,111.376,113.31,116.624 +1487,1,103.2343,0.04204,89.823,93.138,95.072,96.096,97.672,98.736,100.307,103.234,106.162,107.732,108.796,110.373,111.397,113.331,116.646 +1488,1,103.2536,0.04205,89.836,93.153,95.088,96.112,97.689,98.754,100.325,103.254,106.182,107.754,108.818,110.395,111.42,113.354,116.671 +1489,1,103.2728,0.04205,89.853,93.17,95.105,96.13,97.708,98.772,100.344,103.273,106.202,107.774,108.838,110.416,111.44,113.375,116.693 +1490,1,103.2921,0.04206,89.867,93.185,95.121,96.146,97.724,98.789,100.362,103.292,106.222,107.795,108.86,110.438,111.463,113.399,116.718 +1491,1,103.3113,0.04206,89.883,93.203,95.139,96.164,97.743,98.808,100.38,103.311,106.242,107.815,108.88,110.459,111.484,113.42,116.739 +1492,1,103.3306,0.04207,89.897,93.218,95.155,96.18,97.76,98.825,100.399,103.331,106.263,107.836,108.902,110.481,111.507,113.444,116.764 +1493,1,103.3498,0.04207,89.914,93.235,95.172,96.198,97.778,98.843,100.417,103.35,106.282,107.856,108.922,110.502,111.527,113.465,116.786 +1494,1,103.369,0.04208,89.927,93.25,95.188,96.214,97.795,98.861,100.435,103.369,106.303,107.877,108.943,110.524,111.55,113.488,116.811 +1495,1,103.3882,0.04208,89.944,93.267,95.206,96.232,97.813,98.879,100.454,103.388,106.323,107.897,108.964,110.544,111.571,113.509,116.832 +1496,1,103.4074,0.04208,89.961,93.285,95.223,96.25,97.831,98.897,100.472,103.407,106.342,107.917,108.984,110.565,111.591,113.53,116.854 +1497,1,103.4266,0.04209,89.974,93.299,95.239,96.266,97.848,98.915,100.49,103.427,106.363,107.938,109.005,110.587,111.614,113.554,116.879 +1498,1,103.4458,0.04209,89.991,93.317,95.257,96.284,97.866,98.933,100.509,103.446,106.383,107.958,109.026,110.608,111.635,113.575,116.901 +1499,1,103.465,0.0421,90.004,93.332,95.272,96.3,97.883,98.95,100.527,103.465,106.403,107.98,109.047,110.63,111.658,113.598,116.926 +1500,1,103.4842,0.0421,90.021,93.349,95.29,96.318,97.901,98.969,100.546,103.484,106.423,108,109.068,110.65,111.678,113.619,116.947 +1501,1,103.5034,0.04211,90.035,93.364,95.306,96.334,97.918,98.986,100.564,103.503,106.443,108.021,109.089,110.673,111.701,113.643,116.972 +1502,1,103.5225,0.04211,90.051,93.381,95.323,96.352,97.936,99.004,100.582,103.523,106.463,108.041,109.109,110.693,111.722,113.664,116.994 +1503,1,103.5417,0.04212,90.065,93.396,95.339,96.368,97.953,99.022,100.6,103.542,106.483,108.062,109.131,110.715,111.744,113.687,117.019 +1504,1,103.5608,0.04212,90.081,93.413,95.357,96.386,97.971,99.04,100.619,103.561,106.503,108.082,109.151,110.736,111.765,113.708,117.04 +1505,1,103.58,0.04212,90.098,93.431,95.374,96.404,97.989,99.058,100.637,103.58,106.523,108.102,109.171,110.756,111.786,113.729,117.062 +1506,1,103.5991,0.04213,90.111,93.445,95.39,96.42,98.006,99.075,100.655,103.599,106.543,108.123,109.193,110.778,111.808,113.753,117.087 +1507,1,103.6183,0.04213,90.128,93.463,95.408,96.438,98.024,99.094,100.674,103.618,106.563,108.143,109.213,110.799,111.829,113.774,117.109 +1508,1,103.6374,0.04214,90.141,93.478,95.423,96.454,98.041,99.111,100.692,103.637,106.583,108.164,109.234,110.821,111.851,113.797,117.133 +1509,1,103.6565,0.04214,90.158,93.495,95.441,96.472,98.059,99.129,100.71,103.657,106.603,108.184,109.254,110.841,111.872,113.818,117.155 +1510,1,103.6756,0.04215,90.172,93.51,95.457,96.488,98.075,99.146,100.728,103.676,106.623,108.205,109.276,110.863,111.895,113.842,117.18 +1511,1,103.6947,0.04215,90.188,93.527,95.474,96.505,98.093,99.165,100.747,103.695,106.643,108.225,109.296,110.884,111.915,113.863,117.201 +1512,1,103.7138,0.04216,90.202,93.542,95.49,96.522,98.11,99.182,100.765,103.714,106.663,108.246,109.317,110.906,111.938,113.886,117.226 +1513,1,103.7329,0.04216,90.218,93.559,95.507,96.539,98.128,99.2,100.783,103.733,106.683,108.266,109.338,110.926,111.958,113.907,117.248 +1514,1,103.752,0.04216,90.235,93.576,95.525,96.557,98.146,99.218,100.802,103.752,106.702,108.286,109.358,110.947,111.979,113.928,117.269 +1515,1,103.7711,0.04217,90.248,93.591,95.541,96.573,98.163,99.236,100.82,103.771,106.723,108.307,109.379,110.969,112.002,113.951,117.294 +1516,1,103.7902,0.04217,90.265,93.608,95.558,96.591,98.181,99.254,100.838,103.79,106.742,108.326,109.399,110.989,112.022,113.972,117.316 +1517,1,103.8092,0.04218,90.278,93.623,95.574,96.607,98.198,99.271,100.856,103.809,106.763,108.347,109.421,111.011,112.045,113.996,117.34 +1518,1,103.8283,0.04218,90.295,93.64,95.591,96.625,98.216,99.289,100.874,103.828,106.782,108.367,109.441,111.032,112.065,114.016,117.362 +1519,1,103.8473,0.04219,90.308,93.655,95.607,96.641,98.232,99.306,100.892,103.847,106.802,108.388,109.462,111.054,112.088,114.04,117.387 +1520,1,103.8664,0.04219,90.325,93.672,95.625,96.658,98.25,99.325,100.911,103.866,106.822,108.408,109.482,111.074,112.108,114.061,117.408 +1521,1,103.8854,0.0422,90.338,93.687,95.64,96.674,98.267,99.342,100.928,103.885,106.842,108.429,109.504,111.096,112.131,114.084,117.433 +1522,1,103.9045,0.0422,90.355,93.704,95.658,96.692,98.285,99.36,100.947,103.905,106.862,108.449,109.524,111.117,112.151,114.105,117.454 +1523,1,103.9235,0.0422,90.371,93.721,95.675,96.71,98.303,99.378,100.965,103.924,106.882,108.469,109.544,111.137,112.172,114.126,117.476 +1524,1,103.9425,0.04221,90.384,93.736,95.691,96.726,98.32,99.395,100.983,103.943,106.902,108.49,109.565,111.159,112.194,114.149,117.501 +1525,1,103.9616,0.04221,90.401,93.753,95.708,96.744,98.338,99.414,101.002,103.962,106.921,108.51,109.585,111.18,112.215,114.17,117.522 +1526,1,103.9806,0.04222,90.414,93.768,95.724,96.76,98.355,99.431,101.02,103.981,106.942,108.531,109.607,111.202,112.237,114.193,117.547 +1527,1,103.9996,0.04222,90.431,93.785,95.741,96.777,98.372,99.449,101.038,104,106.961,108.55,109.627,111.222,112.258,114.214,117.568 +1528,1,104.0186,0.04223,90.444,93.8,95.757,96.793,98.389,99.466,101.056,104.019,106.981,108.571,109.648,111.244,112.28,114.238,117.593 +1529,1,104.0376,0.04223,90.461,93.817,95.774,96.811,98.407,99.484,101.074,104.038,107.001,108.591,109.668,111.264,112.301,114.258,117.615 +1530,1,104.0565,0.04224,90.474,93.831,95.79,96.827,98.424,99.501,101.092,104.057,107.021,108.612,109.689,111.286,112.323,114.282,117.639 +1531,1,104.0755,0.04224,90.49,93.849,95.807,96.844,98.442,99.519,101.11,104.076,107.041,108.632,109.709,111.307,112.344,114.302,117.661 +1532,1,104.0945,0.04224,90.507,93.866,95.825,96.862,98.46,99.537,101.129,104.095,107.06,108.652,109.729,111.327,112.364,114.323,117.682 +1533,1,104.1135,0.04225,90.52,93.88,95.84,96.878,98.476,99.554,101.147,104.114,107.08,108.673,109.751,111.349,112.387,114.347,117.707 +1534,1,104.1324,0.04225,90.537,93.897,95.858,96.896,98.494,99.573,101.165,104.132,107.1,108.692,109.771,111.369,112.407,114.367,117.728 +1535,1,104.1514,0.04226,90.55,93.912,95.873,96.912,98.511,99.59,101.183,104.151,107.12,108.713,109.792,111.391,112.43,114.391,117.753 +1536,1,104.1703,0.04226,90.566,93.929,95.891,96.929,98.529,99.608,101.201,104.17,107.14,108.733,109.812,111.411,112.45,114.411,117.774 +1537,1,104.1893,0.04227,90.58,93.944,95.906,96.945,98.545,99.625,101.219,104.189,107.16,108.754,109.833,111.433,112.472,114.435,117.799 +1538,1,104.2082,0.04227,90.596,93.961,95.924,96.963,98.563,99.643,101.237,104.208,107.179,108.774,109.853,111.454,112.493,114.455,117.82 +1539,1,104.2271,0.04227,90.613,93.978,95.941,96.98,98.581,99.661,101.256,104.227,107.199,108.793,109.873,111.474,112.513,114.476,117.842 +1540,1,104.2461,0.04228,90.626,93.993,95.956,96.996,98.598,99.678,101.273,104.246,107.219,108.814,109.895,111.496,112.536,114.5,117.866 +1541,1,104.265,0.04228,90.642,94.01,95.974,97.014,98.616,99.696,101.292,104.265,107.238,108.834,109.914,111.516,112.556,114.52,117.888 +1542,1,104.2839,0.04229,90.655,94.024,95.989,97.03,98.632,99.713,101.309,104.284,107.259,108.855,109.936,111.538,112.579,114.543,117.912 +1543,1,104.3028,0.04229,90.672,94.041,96.007,97.047,98.65,99.731,101.328,104.303,107.278,108.874,109.956,111.558,112.599,114.564,117.934 +1544,1,104.3217,0.0423,90.685,94.056,96.022,97.063,98.666,99.748,101.345,104.322,107.298,108.895,109.977,111.58,112.621,114.587,117.958 +1545,1,104.3406,0.0423,90.702,94.073,96.04,97.081,98.684,99.766,101.364,104.341,107.318,108.915,109.997,111.6,112.642,114.608,117.98 +1546,1,104.3595,0.04231,90.715,94.088,96.055,97.097,98.701,99.783,101.381,104.36,107.338,108.936,110.018,111.622,112.664,114.631,118.004 +1547,1,104.3784,0.04231,90.731,94.105,96.072,97.114,98.719,99.801,101.4,104.378,107.357,108.956,110.038,111.642,112.684,114.652,118.026 +1548,1,104.3972,0.04231,90.748,94.122,96.09,97.132,98.737,99.819,101.418,104.397,107.376,108.975,110.058,111.663,112.705,114.673,118.047 +1549,1,104.4161,0.04232,90.761,94.136,96.105,97.148,98.753,99.836,101.436,104.416,107.397,108.996,110.079,111.685,112.727,114.696,118.071 +1550,1,104.435,0.04232,90.777,94.153,96.122,97.165,98.771,99.854,101.454,104.435,107.416,109.016,110.099,111.705,112.748,114.717,118.093 +1551,1,104.4538,0.04233,90.79,94.168,96.138,97.181,98.787,99.871,101.472,104.454,107.436,109.036,110.12,111.727,112.77,114.74,118.117 +1552,1,104.4727,0.04233,90.807,94.185,96.155,97.199,98.805,99.889,101.49,104.473,107.456,109.056,110.14,111.747,112.79,114.761,118.139 +1553,1,104.4915,0.04234,90.82,94.199,96.171,97.214,98.822,99.906,101.507,104.492,107.476,109.077,110.161,111.769,112.812,114.784,118.163 +1554,1,104.5104,0.04234,90.836,94.216,96.188,97.232,98.84,99.924,101.526,104.51,107.495,109.097,110.181,111.789,112.833,114.804,118.185 +1555,1,104.5292,0.04234,90.853,94.233,96.205,97.249,98.857,99.942,101.544,104.529,107.514,109.116,110.201,111.809,112.853,114.825,118.206 +1556,1,104.548,0.04235,90.866,94.248,96.221,97.265,98.874,99.959,101.562,104.548,107.534,109.137,110.222,111.831,112.875,114.848,118.23 +1557,1,104.5668,0.04235,90.882,94.265,96.238,97.283,98.892,99.977,101.58,104.567,107.554,109.157,110.242,111.851,112.896,114.869,118.252 +1558,1,104.5856,0.04236,90.895,94.279,96.253,97.298,98.908,99.994,101.597,104.586,107.574,109.177,110.263,111.873,112.918,114.892,118.276 +1559,1,104.6045,0.04236,90.912,94.296,96.271,97.316,98.926,100.012,101.616,104.605,107.593,109.197,110.283,111.893,112.938,114.913,118.297 +1560,1,104.6233,0.04237,90.925,94.311,96.286,97.332,98.942,100.029,101.633,104.623,107.613,109.218,110.304,111.915,112.961,114.936,118.322 +1561,1,104.6421,0.04237,90.941,94.328,96.303,97.349,98.96,100.047,101.652,104.642,107.633,109.237,110.324,111.935,112.981,114.956,118.343 +1562,1,104.6608,0.04238,90.954,94.342,96.318,97.365,98.976,100.064,101.669,104.661,107.653,109.258,110.345,111.957,113.003,114.979,118.368 +1563,1,104.6796,0.04238,90.97,94.359,96.336,97.383,98.994,100.082,101.687,104.68,107.672,109.278,110.365,111.977,113.023,115,118.389 +1564,1,104.6984,0.04238,90.987,94.376,96.353,97.4,99.012,100.1,101.706,104.698,107.691,109.297,110.385,111.997,113.044,115.021,118.41 +1565,1,104.7172,0.04239,91,94.391,96.368,97.416,99.028,100.117,101.723,104.717,107.711,109.318,110.406,112.019,113.066,115.044,118.435 +1566,1,104.736,0.04239,91.016,94.408,96.386,97.433,99.046,100.134,101.741,104.736,107.731,109.338,110.426,112.039,113.086,115.064,118.456 +1567,1,104.7547,0.0424,91.029,94.422,96.401,97.449,99.063,100.151,101.759,104.755,107.751,109.358,110.447,112.06,113.108,115.087,118.48 +1568,1,104.7735,0.0424,91.045,94.439,96.418,97.466,99.08,100.169,101.777,104.774,107.77,109.378,110.467,112.081,113.129,115.108,118.502 +1569,1,104.7922,0.04241,91.058,94.453,96.434,97.482,99.097,100.186,101.795,104.792,107.79,109.398,110.488,112.102,113.151,115.131,118.526 +1570,1,104.811,0.04241,91.075,94.47,96.451,97.5,99.114,100.204,101.813,104.811,107.809,109.418,110.508,112.122,113.171,115.152,118.547 +1571,1,104.8297,0.04241,91.091,94.487,96.468,97.517,99.132,100.222,101.831,104.83,107.828,109.438,110.527,112.142,113.191,115.172,118.568 +1572,1,104.8484,0.04242,91.104,94.502,96.483,97.533,99.148,100.239,101.848,104.848,107.848,109.458,110.548,112.164,113.214,115.195,118.593 +1573,1,104.8672,0.04242,91.12,94.519,96.501,97.55,99.166,100.257,101.867,104.867,107.868,109.478,110.568,112.184,113.234,115.216,118.614 +1574,1,104.8859,0.04243,91.133,94.533,96.516,97.566,99.183,100.273,101.884,104.886,107.888,109.498,110.589,112.206,113.256,115.239,118.638 +1575,1,104.9046,0.04243,91.15,94.55,96.533,97.583,99.2,100.291,101.902,104.905,107.907,109.518,110.609,112.226,113.276,115.259,118.66 +1576,1,104.9233,0.04244,91.163,94.564,96.548,97.599,99.217,100.308,101.92,104.923,107.927,109.538,110.63,112.248,113.298,115.282,118.684 +1577,1,104.942,0.04244,91.179,94.581,96.565,97.616,99.234,100.326,101.938,104.942,107.946,109.558,110.65,112.268,113.319,115.303,118.705 +1578,1,104.9607,0.04244,91.195,94.598,96.583,97.634,99.252,100.344,101.956,104.961,107.965,109.578,110.669,112.288,113.339,115.323,118.726 +1579,1,104.9794,0.04245,91.208,94.612,96.598,97.649,99.268,100.361,101.974,104.979,107.985,109.598,110.69,112.309,113.361,115.346,118.751 +1580,1,104.9981,0.04245,91.224,94.629,96.615,97.667,99.286,100.379,101.992,104.998,108.004,109.618,110.71,112.329,113.381,115.367,118.772 +1581,1,105.0167,0.04246,91.237,94.643,96.63,97.682,99.302,100.395,102.009,105.017,108.024,109.638,110.731,112.351,113.403,115.39,118.796 +1582,1,105.0354,0.04246,91.254,94.66,96.647,97.7,99.32,100.413,102.027,105.035,108.043,109.658,110.751,112.371,113.423,115.41,118.817 +1583,1,105.0541,0.04247,91.267,94.675,96.663,97.715,99.336,100.43,102.045,105.054,108.063,109.678,110.772,112.393,113.446,115.433,118.842 +1584,1,105.0727,0.04247,91.283,94.692,96.68,97.733,99.354,100.448,102.063,105.073,108.083,109.698,110.792,112.413,113.466,115.454,118.863 +1585,1,105.0914,0.04247,91.299,94.708,96.697,97.75,99.372,100.466,102.081,105.091,108.102,109.717,110.811,112.433,113.486,115.474,118.884 +1586,1,105.11,0.04248,91.312,94.723,96.712,97.766,99.388,100.482,102.098,105.11,108.122,109.738,110.832,112.454,113.508,115.497,118.908 +1587,1,105.1287,0.04248,91.328,94.74,96.729,97.783,99.405,100.5,102.117,105.129,108.141,109.757,110.852,112.474,113.528,115.518,118.929 +1588,1,105.1473,0.04249,91.341,94.754,96.744,97.799,99.422,100.517,102.134,105.147,108.161,109.778,110.873,112.496,113.55,115.541,118.954 +1589,1,105.166,0.04249,91.357,94.771,96.762,97.816,99.439,100.535,102.152,105.166,108.18,109.797,110.893,112.516,113.57,115.561,118.975 +1590,1,105.1846,0.0425,91.37,94.785,96.777,97.832,99.456,100.551,102.169,105.185,108.2,109.818,110.914,112.538,113.592,115.584,118.999 +1591,1,105.2032,0.0425,91.386,94.802,96.794,97.849,99.473,100.569,102.187,105.203,108.219,109.837,110.933,112.558,113.612,115.605,119.02 +1592,1,105.2218,0.0425,91.403,94.819,96.811,97.866,99.491,100.587,102.206,105.222,108.238,109.857,110.953,112.577,113.633,115.625,119.041 +1593,1,105.2404,0.04251,91.415,94.833,96.826,97.882,99.507,100.604,102.223,105.24,108.258,109.877,110.974,112.599,113.655,115.648,119.065 +1594,1,105.259,0.04251,91.432,94.85,96.843,97.899,99.525,100.621,102.241,105.259,108.277,109.897,110.993,112.619,113.675,115.668,119.086 +1595,1,105.2776,0.04252,91.444,94.864,96.858,97.915,99.541,100.638,102.258,105.278,108.297,109.917,111.014,112.641,113.697,115.691,119.111 +1596,1,105.2962,0.04252,91.461,94.881,96.876,97.932,99.558,100.656,102.276,105.296,108.316,109.937,111.034,112.661,113.717,115.712,119.132 +1597,1,105.3148,0.04253,91.474,94.895,96.891,97.947,99.575,100.673,102.294,105.315,108.336,109.957,111.055,112.682,113.739,115.735,119.156 +1598,1,105.3334,0.04253,91.49,94.912,96.908,97.965,99.592,100.69,102.312,105.333,108.355,109.976,111.075,112.702,113.759,115.755,119.177 +1599,1,105.352,0.04253,91.506,94.929,96.925,97.982,99.61,100.708,102.33,105.352,108.374,109.996,111.094,112.722,113.779,115.775,119.198 +1600,1,105.3705,0.04254,91.519,94.943,96.94,97.998,99.626,100.725,102.347,105.371,108.394,110.016,111.115,112.743,113.801,115.798,119.222 +1601,1,105.3891,0.04254,91.535,94.959,96.957,98.015,99.644,100.743,102.365,105.389,108.413,110.036,111.135,112.763,113.821,115.819,119.243 +1602,1,105.4076,0.04255,91.548,94.974,96.972,98.03,99.66,100.759,102.382,105.408,108.433,110.056,111.155,112.785,113.843,115.841,119.268 +1603,1,105.4262,0.04255,91.564,94.99,96.989,98.048,99.677,100.777,102.401,105.426,108.452,110.076,111.175,112.805,113.863,115.862,119.289 +1604,1,105.4447,0.04256,91.577,95.005,97.004,98.063,99.693,100.793,102.418,105.445,108.472,110.096,111.196,112.826,113.885,115.885,119.313 +1605,1,105.4633,0.04256,91.593,95.021,97.021,98.08,99.711,100.811,102.436,105.463,108.491,110.115,111.216,112.846,113.905,115.905,119.334 +1606,1,105.4818,0.04256,91.609,95.038,97.038,98.098,99.729,100.829,102.454,105.482,108.51,110.135,111.235,112.866,113.925,115.925,119.355 +1607,1,105.5003,0.04257,91.622,95.052,97.053,98.113,99.745,100.846,102.471,105.5,108.53,110.155,111.256,112.888,113.947,115.948,119.379 +1608,1,105.5189,0.04257,91.638,95.069,97.07,98.13,99.762,100.863,102.489,105.519,108.549,110.174,111.276,112.907,113.967,115.969,119.4 +1609,1,105.5374,0.04258,91.651,95.083,97.086,98.146,99.778,100.88,102.506,105.537,108.568,110.195,111.296,112.929,113.989,115.992,119.424 +1610,1,105.5559,0.04258,91.667,95.1,97.103,98.163,99.796,100.898,102.524,105.556,108.587,110.214,111.316,112.949,114.009,116.012,119.445 +1611,1,105.5744,0.04259,91.679,95.114,97.118,98.178,99.812,100.914,102.542,105.574,108.607,110.235,111.337,112.97,114.031,116.035,119.469 +1612,1,105.5929,0.04259,91.696,95.131,97.135,98.196,99.83,100.932,102.56,105.593,108.626,110.254,111.356,112.99,114.051,116.055,119.49 +1613,1,105.6114,0.04259,91.712,95.148,97.152,98.213,99.847,100.95,102.578,105.611,108.645,110.273,111.376,113.01,114.071,116.075,119.511 +1614,1,105.6299,0.0426,91.724,95.162,97.167,98.228,99.863,100.966,102.595,105.63,108.665,110.294,111.397,113.031,114.093,116.098,119.535 +1615,1,105.6483,0.0426,91.74,95.178,97.184,98.245,99.881,100.984,102.613,105.648,108.684,110.313,111.416,113.051,114.113,116.118,119.556 +1616,1,105.6668,0.04261,91.753,95.193,97.199,98.261,99.897,101,102.63,105.667,108.704,110.333,111.437,113.073,114.135,116.141,119.58 +1617,1,105.6853,0.04261,91.769,95.209,97.216,98.278,99.914,101.018,102.648,105.685,108.723,110.353,111.456,113.092,114.155,116.161,119.601 +1618,1,105.7037,0.04262,91.782,95.223,97.231,98.293,99.93,101.034,102.665,105.704,108.742,110.373,111.477,113.114,114.177,116.184,119.625 +1619,1,105.7222,0.04262,91.798,95.24,97.248,98.311,99.948,101.052,102.683,105.722,108.761,110.392,111.497,113.134,114.197,116.204,119.646 +1620,1,105.7406,0.04262,91.814,95.257,97.264,98.328,99.965,101.07,102.701,105.741,108.78,110.411,111.516,113.153,114.217,116.225,119.667 +1621,1,105.7591,0.04263,91.827,95.271,97.28,98.343,99.981,101.086,102.718,105.759,108.8,110.432,111.537,113.175,114.239,116.247,119.691 +1622,1,105.7775,0.04263,91.843,95.287,97.296,98.36,99.999,101.104,102.736,105.778,108.819,110.451,111.556,113.195,114.259,116.268,119.712 +1623,1,105.796,0.04264,91.856,95.302,97.311,98.376,100.015,101.121,102.753,105.796,108.839,110.471,111.577,113.216,114.281,116.29,119.736 +1624,1,105.8144,0.04264,91.872,95.318,97.328,98.393,100.032,101.138,102.771,105.814,108.858,110.491,111.597,113.236,114.3,116.311,119.757 +1625,1,105.8328,0.04264,91.887,95.335,97.345,98.41,100.05,101.156,102.789,105.833,108.877,110.51,111.616,113.256,114.32,116.331,119.778 +1626,1,105.8512,0.04265,91.9,95.349,97.36,98.425,100.066,101.172,102.806,105.851,108.896,110.53,111.637,113.277,114.342,116.354,119.802 +1627,1,105.8696,0.04265,91.916,95.365,97.377,98.443,100.083,101.19,102.824,105.87,108.915,110.549,111.656,113.297,114.362,116.374,119.823 +1628,1,105.888,0.04266,91.929,95.379,97.392,98.458,100.099,101.206,102.841,105.888,108.935,110.57,111.677,113.318,114.384,116.397,119.847 +1629,1,105.9064,0.04266,91.945,95.396,97.409,98.475,100.116,101.224,102.859,105.906,108.954,110.589,111.696,113.338,114.404,116.417,119.868 +1630,1,105.9248,0.04267,91.958,95.41,97.424,98.49,100.132,101.24,102.876,105.925,108.973,110.609,111.717,113.359,114.426,116.439,119.892 +1631,1,105.9432,0.04267,91.974,95.427,97.441,98.507,100.15,101.258,102.894,105.943,108.992,110.628,111.737,113.379,114.446,116.46,119.913 +1632,1,105.9616,0.04267,91.989,95.443,97.458,98.525,100.167,101.275,102.912,105.962,109.011,110.648,111.756,113.399,114.465,116.48,119.934 +1633,1,105.98,0.04268,92.002,95.457,97.473,98.54,100.183,101.292,102.929,105.98,109.031,110.668,111.777,113.42,114.487,116.503,119.958 +1634,1,105.9983,0.04268,92.018,95.474,97.49,98.557,100.201,101.309,102.947,105.998,109.05,110.687,111.796,113.44,114.507,116.523,119.979 +1635,1,106.0167,0.04269,92.031,95.488,97.505,98.572,100.217,101.326,102.964,106.017,109.069,110.707,111.817,113.461,114.529,116.545,120.003 +1636,1,106.0351,0.04269,92.047,95.505,97.521,98.589,100.234,101.344,102.982,106.035,109.088,110.727,111.836,113.481,114.549,116.566,120.023 +1637,1,106.0534,0.0427,92.059,95.519,97.536,98.605,100.25,101.36,102.999,106.053,109.108,110.747,111.857,113.502,114.571,116.588,120.047 +1638,1,106.0718,0.0427,92.075,95.535,97.553,98.622,100.267,101.378,103.017,106.072,109.127,110.766,111.876,113.522,114.59,116.608,120.068 +1639,1,106.0901,0.0427,92.091,95.552,97.57,98.639,100.285,101.395,103.035,106.09,109.146,110.785,111.896,113.541,114.61,116.629,120.089 +1640,1,106.1084,0.04271,92.104,95.566,97.585,98.654,100.301,101.411,103.052,106.108,109.165,110.805,111.916,113.563,114.632,116.651,120.113 +1641,1,106.1268,0.04271,92.12,95.582,97.602,98.671,100.318,101.429,103.07,106.127,109.184,110.825,111.936,113.582,114.652,116.671,120.134 +1642,1,106.1451,0.04272,92.132,95.596,97.617,98.686,100.334,101.445,103.087,106.145,109.204,110.845,111.956,113.604,114.674,116.694,120.158 +1643,1,106.1634,0.04272,92.148,95.613,97.633,98.703,100.351,101.463,103.104,106.163,109.222,110.864,111.976,113.623,114.693,116.714,120.179 +1644,1,106.1817,0.04272,92.164,95.629,97.65,98.721,100.368,101.48,103.122,106.182,109.241,110.883,111.995,113.643,114.713,116.734,120.199 +1645,1,106.2,0.04273,92.177,95.643,97.665,98.736,100.384,101.497,103.139,106.2,109.261,110.903,112.016,113.664,114.735,116.757,120.223 +1646,1,106.2183,0.04273,92.193,95.66,97.682,98.753,100.402,101.514,103.157,106.218,109.28,110.922,112.035,113.684,114.755,116.777,120.244 +1647,1,106.2366,0.04274,92.205,95.674,97.697,98.768,100.418,101.531,103.174,106.237,109.299,110.943,112.056,113.705,114.776,116.8,120.268 +1648,1,106.2549,0.04274,92.221,95.69,97.714,98.785,100.435,101.548,103.192,106.255,109.318,110.962,112.075,113.725,114.796,116.82,120.289 +1649,1,106.2732,0.04275,92.234,95.704,97.728,98.8,100.451,101.564,103.209,106.273,109.338,110.982,112.096,113.746,114.818,116.842,120.313 +1650,1,106.2915,0.04275,92.25,95.721,97.745,98.817,100.468,101.582,103.227,106.292,109.356,111.001,112.115,113.766,114.838,116.862,120.333 +1651,1,106.3097,0.04275,92.265,95.737,97.762,98.834,100.485,101.599,103.244,106.31,109.375,111.02,112.134,113.785,114.857,116.882,120.354 +1652,1,106.328,0.04276,92.278,95.751,97.777,98.85,100.501,101.616,103.261,106.328,109.395,111.04,112.155,113.806,114.879,116.905,120.378 +1653,1,106.3463,0.04276,92.294,95.768,97.794,98.867,100.519,101.633,103.279,106.346,109.413,111.059,112.174,113.826,114.899,116.925,120.399 +1654,1,106.3645,0.04277,92.306,95.781,97.808,98.882,100.534,101.65,103.296,106.365,109.433,111.079,112.195,113.847,114.921,116.948,120.423 +1655,1,106.3828,0.04277,92.322,95.798,97.825,98.899,100.552,101.667,103.314,106.383,109.452,111.099,112.214,113.867,114.94,116.968,120.443 +1656,1,106.401,0.04277,92.338,95.814,97.842,98.916,100.569,101.684,103.332,106.401,109.47,111.118,112.233,113.886,114.96,116.988,120.464 +1657,1,106.4192,0.04278,92.351,95.828,97.857,98.931,100.585,101.701,103.349,106.419,109.49,111.138,112.254,113.908,114.982,117.01,120.488 +1658,1,106.4375,0.04278,92.366,95.845,97.874,98.948,100.602,101.718,103.366,106.438,109.509,111.157,112.273,113.927,115.001,117.03,120.509 +1659,1,106.4557,0.04279,92.379,95.859,97.888,98.963,100.618,101.734,103.383,106.456,109.528,111.177,112.293,113.948,115.023,117.053,120.532 +1660,1,106.4739,0.04279,92.395,95.875,97.905,98.98,100.635,101.752,103.401,106.474,109.547,111.196,112.313,113.968,115.043,117.073,120.553 +1661,1,106.4921,0.0428,92.407,95.889,97.92,98.995,100.651,101.768,103.418,106.492,109.566,111.216,112.333,113.989,115.064,117.095,120.577 +1662,1,106.5103,0.0428,92.423,95.905,97.936,99.012,100.668,101.786,103.436,106.51,109.585,111.235,112.352,114.009,115.084,117.115,120.598 +1663,1,106.5285,0.0428,92.439,95.922,97.953,99.029,100.685,101.803,103.453,106.529,109.604,111.254,112.372,114.028,115.104,117.135,120.618 +1664,1,106.5467,0.04281,92.451,95.936,97.968,99.044,100.701,101.819,103.47,106.547,109.623,111.274,112.392,114.049,115.125,117.158,120.642 +1665,1,106.5649,0.04281,92.467,95.952,97.985,99.061,100.718,101.837,103.488,106.565,109.642,111.293,112.411,114.069,115.145,117.178,120.663 +1666,1,106.5831,0.04282,92.48,95.966,97.999,99.076,100.734,101.853,103.505,106.583,109.661,111.313,112.432,114.09,115.167,117.2,120.687 +1667,1,106.6013,0.04282,92.495,95.982,98.016,99.093,100.751,101.87,103.522,106.601,109.68,111.332,112.451,114.11,115.186,117.22,120.707 +1668,1,106.6195,0.04282,92.511,95.999,98.033,99.11,100.769,101.888,103.54,106.62,109.699,111.351,112.47,114.129,115.206,117.24,120.728 +1669,1,106.6376,0.04283,92.524,96.012,98.047,99.125,100.784,101.904,103.557,106.638,109.718,111.371,112.491,114.15,115.228,117.263,120.752 +1670,1,106.6558,0.04283,92.539,96.029,98.064,99.142,100.802,101.921,103.575,106.656,109.737,111.39,112.51,114.17,115.247,117.283,120.772 +1671,1,106.6739,0.04284,92.552,96.043,98.079,99.157,100.817,101.937,103.592,106.674,109.756,111.41,112.53,114.191,115.269,117.305,120.796 +1672,1,106.6921,0.04284,92.568,96.059,98.096,99.174,100.835,101.955,103.609,106.692,109.775,111.429,112.55,114.21,115.289,117.325,120.817 +1673,1,106.7102,0.04285,92.58,96.073,98.11,99.189,100.85,101.971,103.626,106.71,109.794,111.449,112.57,114.231,115.31,117.348,120.84 +1674,1,106.7284,0.04285,92.596,96.089,98.127,99.206,100.867,101.988,103.644,106.728,109.813,111.468,112.589,114.251,115.33,117.368,120.861 +1675,1,106.7465,0.04285,92.612,96.106,98.144,99.223,100.885,102.006,103.661,106.747,109.832,111.487,112.608,114.27,115.349,117.387,120.881 +1676,1,106.7646,0.04286,92.624,96.119,98.158,99.238,100.9,102.022,103.678,106.765,109.851,111.507,112.629,114.291,115.371,117.41,120.905 +1677,1,106.7828,0.04286,92.64,96.136,98.175,99.255,100.918,102.039,103.696,106.783,109.87,111.526,112.648,114.311,115.391,117.43,120.926 +1678,1,106.8009,0.04287,92.652,96.15,98.19,99.27,100.933,102.056,103.713,106.801,109.889,111.546,112.669,114.332,115.412,117.452,120.95 +1679,1,106.819,0.04287,92.668,96.166,98.206,99.287,100.95,102.073,103.73,106.819,109.908,111.565,112.688,114.351,115.432,117.472,120.97 +1680,1,106.8371,0.04287,92.684,96.182,98.223,99.303,100.967,102.09,103.748,106.837,109.926,111.584,112.707,114.371,115.451,117.492,120.991 +1681,1,106.8552,0.04288,92.696,96.196,98.237,99.319,100.983,102.106,103.765,106.855,109.946,111.604,112.727,114.392,115.473,117.514,121.014 +1682,1,106.8733,0.04288,92.712,96.212,98.254,99.335,101,102.124,103.782,106.873,109.964,111.623,112.746,114.411,115.492,117.534,121.035 +1683,1,106.8914,0.04289,92.724,96.226,98.269,99.35,101.016,102.14,103.799,106.891,109.984,111.643,112.767,114.432,115.514,117.557,121.059 +1684,1,106.9094,0.04289,92.74,96.242,98.285,99.367,101.033,102.157,103.817,106.909,110.002,111.662,112.786,114.452,115.533,117.577,121.079 +1685,1,106.9275,0.04289,92.755,96.259,98.302,99.384,101.05,102.174,103.834,106.928,110.021,111.681,112.805,114.471,115.553,117.596,121.1 +1686,1,106.9456,0.0429,92.768,96.272,98.317,99.399,101.066,102.19,103.851,106.946,110.04,111.701,112.825,114.492,115.575,117.619,121.123 +1687,1,106.9636,0.0429,92.783,96.289,98.333,99.416,101.083,102.208,103.869,106.964,110.059,111.72,112.844,114.511,115.594,117.639,121.144 +1688,1,106.9817,0.04291,92.796,96.302,98.348,99.431,101.099,102.224,103.885,106.982,110.078,111.74,112.865,114.533,115.616,117.661,121.168 +1689,1,106.9998,0.04291,92.811,96.319,98.364,99.448,101.116,102.241,103.903,107,110.097,111.758,112.884,114.552,115.635,117.681,121.188 +1690,1,107.0178,0.04292,92.824,96.332,98.379,99.463,101.131,102.257,103.92,107.018,110.116,111.778,112.904,114.573,115.657,117.703,121.212 +1691,1,107.0358,0.04292,92.839,96.349,98.395,99.479,101.148,102.274,103.937,107.036,110.134,111.797,112.923,114.592,115.676,117.723,121.232 +1692,1,107.0539,0.04292,92.855,96.365,98.412,99.496,101.165,102.292,103.955,107.054,110.153,111.816,112.942,114.612,115.696,117.743,121.253 +1693,1,107.0719,0.04293,92.867,96.379,98.427,99.511,101.181,102.308,103.972,107.072,110.172,111.836,112.963,114.633,115.717,117.765,121.276 +1694,1,107.0899,0.04293,92.883,96.395,98.443,99.528,101.198,102.325,103.989,107.09,110.191,111.855,112.982,114.652,115.737,117.785,121.297 +1695,1,107.1079,0.04294,92.895,96.409,98.458,99.543,101.214,102.341,104.006,107.108,110.21,111.875,113.002,114.673,115.758,117.807,121.321 +1696,1,107.126,0.04294,92.911,96.425,98.474,99.56,101.231,102.358,104.023,107.126,110.229,111.894,113.021,114.692,115.778,117.827,121.341 +1697,1,107.144,0.04294,92.927,96.441,98.491,99.576,101.248,102.376,104.041,107.144,110.247,111.912,113.04,114.712,115.797,117.847,121.361 +1698,1,107.162,0.04295,92.939,96.455,98.505,99.591,101.264,102.392,104.058,107.162,110.266,111.932,113.06,114.733,115.819,117.869,121.385 +1699,1,107.1799,0.04295,92.954,96.471,98.522,99.608,101.28,102.409,104.075,107.18,110.285,111.951,113.079,114.752,115.838,117.889,121.405 +1700,1,107.1979,0.04296,92.967,96.485,98.536,99.623,101.296,102.425,104.092,107.198,110.304,111.971,113.1,114.773,115.859,117.911,121.429 +1701,1,107.2159,0.04296,92.982,96.501,98.553,99.64,101.313,102.442,104.109,107.216,110.323,111.99,113.119,114.792,115.879,117.931,121.449 +1702,1,107.2339,0.04296,92.998,96.517,98.57,99.656,101.33,102.459,104.127,107.234,110.341,112.009,113.138,114.811,115.898,117.951,121.47 +1703,1,107.2519,0.04297,93.01,96.531,98.584,99.671,101.346,102.475,104.143,107.252,110.36,112.028,113.158,114.832,115.92,117.973,121.494 +1704,1,107.2698,0.04297,93.026,96.547,98.601,99.688,101.363,102.492,104.161,107.27,110.379,112.047,113.177,114.852,115.939,117.993,121.514 +1705,1,107.2878,0.04298,93.038,96.56,98.615,99.703,101.378,102.509,104.178,107.288,110.398,112.067,113.197,114.873,115.961,118.015,121.538 +1706,1,107.3057,0.04298,93.054,96.577,98.631,99.72,101.395,102.526,104.195,107.306,110.416,112.086,113.216,114.892,115.98,118.035,121.558 +1707,1,107.3237,0.04299,93.066,96.59,98.646,99.735,101.411,102.542,104.212,107.324,110.436,112.106,113.237,114.913,116.001,118.057,121.582 +1708,1,107.3416,0.04299,93.081,96.606,98.662,99.751,101.428,102.559,104.229,107.342,110.454,112.124,113.255,114.932,116.021,118.077,121.602 +1709,1,107.3596,0.04299,93.097,96.623,98.679,99.768,101.445,102.576,104.247,107.36,110.473,112.143,113.274,114.951,116.04,118.097,121.622 +1710,1,107.3775,0.043,93.109,96.636,98.693,99.783,101.46,102.592,104.263,107.378,110.492,112.163,113.295,114.972,116.062,118.119,121.646 +1711,1,107.3954,0.043,93.125,96.652,98.71,99.799,101.477,102.609,104.281,107.395,110.51,112.182,113.314,114.991,116.081,118.138,121.666 +1712,1,107.4133,0.04301,93.137,96.666,98.724,99.814,101.493,102.625,104.297,107.413,110.529,112.201,113.334,115.012,116.102,118.161,121.69 +1713,1,107.4312,0.04301,93.152,96.682,98.741,99.831,101.51,102.642,104.315,107.431,110.548,112.22,113.353,115.031,116.122,118.18,121.71 +1714,1,107.4492,0.04301,93.168,96.698,98.757,99.848,101.527,102.659,104.332,107.449,110.566,112.239,113.372,115.051,116.141,118.2,121.73 +1715,1,107.4671,0.04302,93.18,96.712,98.772,99.863,101.542,102.675,104.349,107.467,110.585,112.259,113.392,115.072,116.162,118.222,121.754 +1716,1,107.4849,0.04302,93.196,96.728,98.788,99.879,101.559,102.692,104.366,107.485,110.604,112.277,113.411,115.091,116.182,118.242,121.774 +1717,1,107.5028,0.04303,93.208,96.741,98.803,99.894,101.575,102.708,104.383,107.503,110.623,112.297,113.431,115.112,116.203,118.264,121.798 +1718,1,107.5207,0.04303,93.223,96.758,98.819,99.911,101.591,102.726,104.4,107.521,110.641,112.316,113.45,115.131,116.222,118.284,121.818 +1719,1,107.5386,0.04303,93.239,96.774,98.835,99.927,101.608,102.743,104.417,107.539,110.66,112.335,113.469,115.15,116.242,118.304,121.838 +1720,1,107.5565,0.04304,93.251,96.787,98.85,99.942,101.624,102.759,104.434,107.557,110.679,112.354,113.489,115.171,116.263,118.326,121.862 +1721,1,107.5743,0.04304,93.267,96.803,98.866,99.959,101.641,102.776,104.451,107.574,110.697,112.373,113.508,115.19,116.282,118.345,121.882 +1722,1,107.5922,0.04305,93.279,96.817,98.881,99.973,101.656,102.792,104.468,107.592,110.716,112.393,113.528,115.211,116.304,118.367,121.906 +1723,1,107.61,0.04305,93.294,96.833,98.897,99.99,101.673,102.809,104.485,107.61,110.735,112.411,113.547,115.23,116.323,118.387,121.926 +1724,1,107.6279,0.04305,93.31,96.849,98.913,100.007,101.69,102.826,104.503,107.628,110.753,112.43,113.566,115.249,116.342,118.407,121.946 +1725,1,107.6457,0.04306,93.322,96.863,98.928,100.021,101.705,102.842,104.519,107.646,110.772,112.45,113.586,115.27,116.364,118.429,121.97 +1726,1,107.6636,0.04306,93.337,96.879,98.944,100.038,101.722,102.859,104.537,107.664,110.791,112.468,113.605,115.289,116.383,118.449,121.99 +1727,1,107.6814,0.04307,93.349,96.892,98.959,100.053,101.738,102.875,104.553,107.681,110.81,112.488,113.625,115.31,116.404,118.471,122.013 +1728,1,107.6992,0.04307,93.365,96.908,98.975,100.069,101.755,102.892,104.571,107.699,110.828,112.507,113.644,115.329,116.423,118.49,122.034 +1729,1,107.717,0.04308,93.377,96.922,98.989,100.084,101.77,102.907,104.587,107.717,110.847,112.527,113.664,115.35,116.445,118.512,122.057 +1730,1,107.7349,0.04308,93.392,96.938,99.006,100.101,101.787,102.925,104.604,107.735,110.865,112.545,113.683,115.369,116.464,118.532,122.077 +1731,1,107.7527,0.04308,93.408,96.954,99.022,100.117,101.804,102.942,104.622,107.753,110.884,112.564,113.702,115.388,116.483,118.552,122.098 +1732,1,107.7705,0.04309,93.42,96.967,99.036,100.132,101.819,102.957,104.638,107.771,110.903,112.584,113.722,115.409,116.505,118.574,122.121 +1733,1,107.7883,0.04309,93.435,96.983,99.053,100.149,101.836,102.974,104.656,107.788,110.921,112.602,113.741,115.428,116.524,118.593,122.141 +1734,1,107.806,0.0431,93.447,96.997,99.067,100.163,101.851,102.99,104.672,107.806,110.94,112.622,113.761,115.449,116.545,118.615,122.165 +1735,1,107.8238,0.0431,93.463,97.013,99.083,100.18,101.868,103.007,104.689,107.824,110.958,112.64,113.779,115.468,116.564,118.635,122.185 +1736,1,107.8416,0.0431,93.478,97.029,99.1,100.196,101.885,103.024,104.707,107.842,110.977,112.659,113.798,115.487,116.583,118.654,122.205 +1737,1,107.8594,0.04311,93.49,97.042,99.114,100.211,101.9,103.04,104.723,107.859,110.996,112.679,113.818,115.508,116.605,118.676,122.228 +1738,1,107.8772,0.04311,93.506,97.058,99.13,100.228,101.917,103.057,104.74,107.877,111.014,112.697,113.837,115.527,116.624,118.696,122.249 +1739,1,107.8949,0.04312,93.518,97.072,99.145,100.242,101.933,103.073,104.757,107.895,111.033,112.717,113.857,115.547,116.645,118.718,122.272 +1740,1,107.9127,0.04312,93.533,97.088,99.161,100.259,101.949,103.09,104.774,107.913,111.051,112.735,113.876,115.567,116.664,118.738,122.292 +1741,1,107.9304,0.04312,93.549,97.104,99.177,100.275,101.966,103.107,104.791,107.93,111.069,112.754,113.895,115.585,116.684,118.757,122.312 +1742,1,107.9482,0.04313,93.561,97.117,99.192,100.29,101.982,103.123,104.808,107.948,111.088,112.774,113.915,115.606,116.705,118.779,122.336 +1743,1,107.9659,0.04313,93.576,97.133,99.208,100.307,101.998,103.14,104.825,107.966,111.107,112.792,113.934,115.625,116.724,118.799,122.356 +1744,1,107.9836,0.04314,93.588,97.147,99.222,100.321,102.014,103.155,104.842,107.984,111.126,112.812,113.954,115.646,116.745,118.821,122.379 +1745,1,108.0014,0.04314,93.603,97.163,99.238,100.338,102.03,103.172,104.859,108.001,111.144,112.83,113.972,115.665,116.764,118.84,122.399 +1746,1,108.0191,0.04314,93.619,97.178,99.255,100.354,102.047,103.189,104.876,108.019,111.162,112.849,113.991,115.684,116.783,118.86,122.419 +1747,1,108.0368,0.04315,93.631,97.192,99.269,100.369,102.062,103.205,104.892,108.037,111.181,112.868,114.011,115.705,116.805,118.882,122.443 +1748,1,108.0545,0.04315,93.646,97.208,99.285,100.385,102.079,103.222,104.91,108.055,111.199,112.887,114.03,115.724,116.824,118.901,122.463 +1749,1,108.0722,0.04316,93.658,97.221,99.299,100.4,102.095,103.238,104.926,108.072,111.218,112.907,114.05,115.744,116.845,118.923,122.486 +1750,1,108.0899,0.04316,93.673,97.237,99.316,100.416,102.111,103.255,104.943,108.09,111.237,112.925,114.069,115.763,116.864,118.943,122.506 +1751,1,108.1076,0.04316,93.689,97.253,99.332,100.433,102.128,103.272,104.96,108.108,111.255,112.944,114.087,115.782,116.883,118.962,122.526 +1752,1,108.1253,0.04317,93.701,97.266,99.346,100.448,102.143,103.287,104.977,108.125,111.274,112.963,114.107,115.803,116.904,118.984,122.55 +1753,1,108.143,0.04317,93.716,97.282,99.362,100.464,102.16,103.304,104.994,108.143,111.292,112.982,114.126,115.822,116.924,119.004,122.57 +1754,1,108.1607,0.04318,93.728,97.296,99.377,100.479,102.175,103.32,105.011,108.161,111.311,113.001,114.146,115.843,116.945,119.026,122.593 +1755,1,108.1783,0.04318,93.743,97.312,99.393,100.495,102.192,103.337,105.028,108.178,111.329,113.02,114.165,115.862,116.964,119.045,122.613 +1756,1,108.196,0.04318,93.759,97.328,99.409,100.511,102.209,103.354,105.045,108.196,111.347,113.038,114.183,115.881,116.983,119.064,122.633 +1757,1,108.2137,0.04319,93.771,97.341,99.423,100.526,102.224,103.37,105.061,108.214,111.366,113.058,114.203,115.901,117.004,119.086,122.657 +1758,1,108.2313,0.04319,93.786,97.357,99.44,100.542,102.241,103.386,105.078,108.231,111.384,113.076,114.222,115.92,117.023,119.106,122.677 +1759,1,108.249,0.0432,93.798,97.37,99.454,100.557,102.256,103.402,105.095,108.249,111.403,113.096,114.242,115.941,117.044,119.128,122.7 +1760,1,108.2666,0.0432,93.813,97.386,99.47,100.573,102.273,103.419,105.112,108.267,111.421,113.114,114.261,115.96,117.063,119.147,122.72 +1761,1,108.2842,0.04321,93.825,97.399,99.484,100.588,102.288,103.435,105.128,108.284,111.44,113.134,114.281,115.98,117.084,119.169,122.743 +1762,1,108.3019,0.04321,93.84,97.415,99.5,100.604,102.305,103.452,105.145,108.302,111.458,113.152,114.299,115.999,117.103,119.189,122.763 +1763,1,108.3195,0.04321,93.856,97.431,99.516,100.621,102.321,103.468,105.163,108.32,111.476,113.171,114.318,116.018,117.123,119.208,122.783 +1764,1,108.3371,0.04322,93.868,97.444,99.531,100.635,102.336,103.484,105.179,108.337,111.495,113.19,114.338,116.039,117.144,119.23,122.807 +1765,1,108.3547,0.04322,93.883,97.46,99.547,100.652,102.353,103.501,105.196,108.355,111.513,113.208,114.356,116.058,117.163,119.249,122.827 +1766,1,108.3723,0.04323,93.895,97.474,99.561,100.666,102.368,103.517,105.212,108.372,111.532,113.228,114.376,116.078,117.184,119.271,122.85 +1767,1,108.3899,0.04323,93.91,97.489,99.577,100.683,102.385,103.533,105.229,108.39,111.55,113.246,114.395,116.097,117.203,119.29,122.87 +1768,1,108.4075,0.04323,93.925,97.505,99.593,100.699,102.402,103.55,105.247,108.408,111.568,113.265,114.413,116.116,117.222,119.31,122.89 +1769,1,108.4251,0.04324,93.937,97.518,99.607,100.714,102.417,103.566,105.263,108.425,111.587,113.284,114.433,116.137,117.243,119.332,122.913 +1770,1,108.4427,0.04324,93.952,97.534,99.624,100.73,102.433,103.583,105.28,108.443,111.605,113.303,114.452,116.156,117.262,119.351,122.933 +1771,1,108.4603,0.04325,93.964,97.548,99.638,100.744,102.449,103.598,105.296,108.46,111.624,113.322,114.472,116.176,117.283,119.373,122.956 +1772,1,108.4779,0.04325,93.98,97.563,99.654,100.761,102.465,103.615,105.313,108.478,111.642,113.341,114.491,116.195,117.302,119.392,122.976 +1773,1,108.4954,0.04325,93.995,97.579,99.67,100.777,102.482,103.632,105.33,108.495,111.66,113.359,114.509,116.214,117.321,119.412,122.996 +1774,1,108.513,0.04326,94.007,97.592,99.684,100.792,102.497,103.648,105.347,108.513,111.679,113.378,114.529,116.234,117.342,119.434,123.019 +1775,1,108.5306,0.04326,94.022,97.608,99.7,100.808,102.514,103.665,105.364,108.531,111.697,113.397,114.548,116.253,117.361,119.453,123.039 +1776,1,108.5481,0.04327,94.034,97.622,99.714,100.822,102.529,103.68,105.38,108.548,111.716,113.416,114.567,116.274,117.382,119.475,123.063 +1777,1,108.5657,0.04327,94.049,97.637,99.73,100.839,102.545,103.697,105.397,108.566,111.734,113.434,114.586,116.293,117.401,119.494,123.082 +1778,1,108.5832,0.04327,94.064,97.653,99.746,100.855,102.562,103.714,105.414,108.583,111.752,113.453,114.604,116.311,117.42,119.513,123.102 +1779,1,108.6008,0.04328,94.076,97.666,99.761,100.87,102.577,103.729,105.431,108.601,111.771,113.472,114.624,116.332,117.441,119.535,123.126 +1780,1,108.6183,0.04328,94.091,97.682,99.777,100.886,102.594,103.746,105.448,108.618,111.789,113.491,114.643,116.351,117.46,119.554,123.145 +1781,1,108.6358,0.04329,94.103,97.695,99.791,100.9,102.609,103.762,105.464,108.636,111.808,113.51,114.663,116.371,117.481,119.576,123.169 +1782,1,108.6533,0.04329,94.118,97.711,99.807,100.917,102.625,103.778,105.481,108.653,111.826,113.528,114.681,116.39,117.5,119.596,123.189 +1783,1,108.6709,0.04329,94.133,97.727,99.823,100.933,102.642,103.795,105.498,108.671,111.844,113.547,114.7,116.409,117.519,119.615,123.208 +1784,1,108.6884,0.0433,94.145,97.74,99.837,100.947,102.657,103.811,105.514,108.688,111.863,113.566,114.72,116.429,117.54,119.637,123.232 +1785,1,108.7059,0.0433,94.16,97.756,99.853,100.964,102.674,103.827,105.531,108.706,111.881,113.584,114.738,116.448,117.559,119.656,123.252 +1786,1,108.7234,0.04331,94.172,97.769,99.867,100.978,102.689,103.843,105.547,108.723,111.899,113.604,114.758,116.469,117.58,119.678,123.275 +1787,1,108.7409,0.04331,94.187,97.785,99.883,100.994,102.705,103.86,105.564,108.741,111.917,113.622,114.776,116.487,117.599,119.697,123.295 +1788,1,108.7583,0.04331,94.202,97.8,99.899,101.011,102.722,103.876,105.581,108.758,111.935,113.64,114.795,116.506,117.617,119.716,123.314 +1789,1,108.7758,0.04332,94.214,97.814,99.913,101.025,102.737,103.892,105.597,108.776,111.954,113.66,114.815,116.527,117.638,119.738,123.337 +1790,1,108.7933,0.04332,94.229,97.829,99.929,101.041,102.753,103.909,105.614,108.793,111.972,113.678,114.833,116.545,117.657,119.757,123.357 +1791,1,108.8108,0.04333,94.241,97.843,99.943,101.056,102.769,103.924,105.631,108.811,111.991,113.697,114.853,116.566,117.678,119.779,123.381 +1792,1,108.8282,0.04333,94.256,97.858,99.959,101.072,102.785,103.941,105.648,108.828,112.009,113.716,114.871,116.585,117.697,119.798,123.4 +1793,1,108.8457,0.04333,94.271,97.874,99.975,101.088,102.802,103.958,105.665,108.846,112.027,113.734,114.89,116.603,117.716,119.817,123.42 +1794,1,108.8632,0.04334,94.283,97.887,99.989,101.103,102.817,103.973,105.681,108.863,112.046,113.753,114.91,116.624,117.737,119.839,123.443 +1795,1,108.8806,0.04334,94.298,97.903,100.005,101.119,102.833,103.99,105.698,108.881,112.063,113.771,114.928,116.642,117.756,119.858,123.463 +1796,1,108.8981,0.04335,94.31,97.916,100.019,101.133,102.848,104.005,105.714,108.898,112.082,113.791,114.948,116.663,117.777,119.88,123.486 +1797,1,108.9155,0.04335,94.325,97.932,100.035,101.149,102.865,104.022,105.731,108.916,112.1,113.809,114.966,116.682,117.796,119.899,123.506 +1798,1,108.9329,0.04335,94.34,97.947,100.051,101.166,102.881,104.039,105.748,108.933,112.118,113.827,114.985,116.7,117.814,119.918,123.526 +1799,1,108.9504,0.04336,94.352,97.961,100.065,101.18,102.896,104.054,105.764,108.95,112.137,113.847,115.005,116.721,117.835,119.94,123.549 +1800,1,108.9678,0.04336,94.367,97.976,100.081,101.196,102.913,104.071,105.781,108.968,112.155,113.865,115.023,116.739,117.854,119.959,123.569 +1801,1,108.9852,0.04337,94.379,97.989,100.095,101.21,102.928,104.086,105.797,108.985,112.173,113.884,115.043,116.76,117.875,119.981,123.592 +1802,1,109.0026,0.04337,94.394,98.005,100.111,101.227,102.944,104.103,105.814,109.003,112.191,113.902,115.061,116.779,117.894,120,123.611 +1803,1,109.02,0.04337,94.409,98.021,100.127,101.243,102.961,104.12,105.831,109.02,112.209,113.92,115.079,116.797,117.913,120.019,123.631 +1804,1,109.0374,0.04338,94.42,98.034,100.141,101.257,102.976,104.135,105.847,109.037,112.228,113.94,115.099,116.818,117.934,120.041,123.654 +1805,1,109.0548,0.04338,94.436,98.049,100.157,101.273,102.992,104.152,105.864,109.055,112.246,113.958,115.118,116.836,117.952,120.06,123.674 +1806,1,109.0722,0.04339,94.447,98.062,100.171,101.288,103.007,104.167,105.88,109.072,112.264,113.977,115.137,116.857,117.973,120.082,123.697 +1807,1,109.0896,0.04339,94.462,98.078,100.187,101.304,103.024,104.184,105.897,109.09,112.282,113.995,115.156,116.875,117.992,120.101,123.717 +1808,1,109.107,0.04339,94.477,98.094,100.203,101.32,103.04,104.2,105.914,109.107,112.3,114.014,115.174,116.894,118.011,120.12,123.737 +1809,1,109.1244,0.0434,94.489,98.107,100.217,101.334,103.055,104.216,105.93,109.124,112.319,114.033,115.194,116.914,118.032,120.142,123.76 +1810,1,109.1417,0.0434,94.504,98.122,100.233,101.35,103.071,104.232,105.947,109.142,112.337,114.051,115.212,116.933,118.051,120.161,123.779 +1811,1,109.1591,0.04341,94.516,98.135,100.247,101.365,103.086,104.248,105.963,109.159,112.355,114.07,115.232,116.953,118.071,120.183,123.802 +1812,1,109.1764,0.04341,94.531,98.151,100.263,101.381,103.103,104.264,105.98,109.176,112.373,114.088,115.25,116.972,118.09,120.202,123.822 +1813,1,109.1938,0.04341,94.546,98.167,100.279,101.397,103.119,104.281,105.997,109.194,112.391,114.107,115.268,116.991,118.109,120.221,123.842 +1814,1,109.2112,0.04342,94.557,98.18,100.293,101.411,103.134,104.296,106.013,109.211,112.41,114.126,115.288,117.011,118.13,120.243,123.865 +1815,1,109.2285,0.04342,94.572,98.195,100.308,101.427,103.15,104.313,106.03,109.229,112.427,114.144,115.307,117.03,118.149,120.262,123.885 +1816,1,109.2458,0.04343,94.584,98.208,100.322,101.442,103.165,104.328,106.046,109.246,112.446,114.163,115.326,117.05,118.169,120.283,123.908 +1817,1,109.2632,0.04343,94.599,98.224,100.338,101.458,103.182,104.345,106.063,109.263,112.464,114.181,115.345,117.069,118.188,120.302,123.927 +1818,1,109.2805,0.04343,94.614,98.24,100.354,101.474,103.198,104.362,106.079,109.281,112.482,114.199,115.363,117.087,118.207,120.321,123.947 +1819,1,109.2978,0.04344,94.626,98.253,100.368,101.488,103.213,104.377,106.095,109.298,112.5,114.219,115.382,117.107,118.228,120.343,123.97 +1820,1,109.3151,0.04344,94.641,98.268,100.384,101.504,103.229,104.393,106.112,109.315,112.518,114.237,115.401,117.126,118.246,120.362,123.99 +1821,1,109.3324,0.04345,94.652,98.281,100.398,101.519,103.244,104.409,106.128,109.332,112.537,114.256,115.42,117.146,118.267,120.384,124.013 +1822,1,109.3498,0.04345,94.667,98.297,100.414,101.535,103.261,104.425,106.145,109.35,112.554,114.274,115.439,117.165,118.286,120.403,124.032 +1823,1,109.3671,0.04345,94.682,98.312,100.43,101.551,103.277,104.442,106.162,109.367,112.572,114.292,115.457,117.183,118.305,120.422,124.052 +1824,1,109.3844,0.04346,94.694,98.325,100.443,101.565,103.292,104.457,106.178,109.384,112.591,114.311,115.477,117.204,118.325,120.443,124.075 +1825,1,109.4016,0.04346,94.709,98.341,100.459,101.581,103.308,104.474,106.195,109.402,112.609,114.329,115.495,117.222,118.344,120.462,124.094 +1826,1,109.4189,0.04346,94.724,98.356,100.475,101.597,103.325,104.49,106.211,109.419,112.626,114.347,115.513,117.241,118.363,120.481,124.114 +1827,1,109.4362,0.04347,94.735,98.369,100.489,101.611,103.34,104.506,106.228,109.436,112.645,114.367,115.533,117.261,118.383,120.503,124.137 +1828,1,109.4535,0.04347,94.75,98.385,100.505,101.627,103.356,104.522,106.244,109.454,112.663,114.385,115.551,117.28,118.402,120.522,124.157 +1829,1,109.4708,0.04348,94.762,98.398,100.519,101.642,103.371,104.538,106.26,109.471,112.681,114.404,115.571,117.3,118.423,120.544,124.18 +1830,1,109.488,0.04348,94.777,98.413,100.534,101.658,103.387,104.554,106.277,109.488,112.699,114.422,115.589,117.318,118.442,120.563,124.199 +1831,1,109.5053,0.04348,94.792,98.429,100.55,101.674,103.403,104.571,106.294,109.505,112.717,114.44,115.607,117.337,118.46,120.582,124.219 +1832,1,109.5225,0.04349,94.803,98.442,100.564,101.688,103.418,104.586,106.31,109.523,112.735,114.459,115.627,117.357,118.481,120.603,124.242 +1833,1,109.5398,0.04349,94.818,98.457,100.58,101.704,103.435,104.602,106.327,109.54,112.753,114.477,115.645,117.376,118.5,120.622,124.261 +1834,1,109.557,0.0435,94.83,98.47,100.594,101.718,103.449,104.618,106.343,109.557,112.771,114.496,115.665,117.396,118.52,120.644,124.284 +1835,1,109.5743,0.0435,94.845,98.486,100.61,101.734,103.466,104.634,106.359,109.574,112.789,114.514,115.683,117.414,118.539,120.663,124.304 +1836,1,109.5915,0.0435,94.86,98.501,100.625,101.75,103.482,104.651,106.376,109.592,112.807,114.532,115.701,117.433,118.558,120.682,124.323 +1837,1,109.6088,0.04351,94.871,98.514,100.639,101.764,103.497,104.666,106.392,109.609,112.825,114.552,115.721,117.453,118.578,120.703,124.346 +1838,1,109.626,0.04351,94.886,98.53,100.655,101.78,103.513,104.682,106.409,109.626,112.843,114.57,115.739,117.472,118.597,120.722,124.366 +1839,1,109.6432,0.04352,94.898,98.543,100.669,101.794,103.528,104.698,106.425,109.643,112.862,114.589,115.758,117.492,118.618,120.744,124.389 +1840,1,109.6604,0.04352,94.913,98.558,100.684,101.81,103.544,104.714,106.441,109.66,112.879,114.607,115.777,117.51,118.636,120.763,124.408 +1841,1,109.6776,0.04352,94.927,98.574,100.7,101.826,103.561,104.731,106.458,109.678,112.897,114.625,115.795,117.529,118.655,120.782,124.428 +1842,1,109.6948,0.04353,94.939,98.586,100.714,101.841,103.575,104.746,106.474,109.695,112.915,114.644,115.814,117.549,118.676,120.803,124.451 +1843,1,109.712,0.04353,94.954,98.602,100.73,101.857,103.592,104.762,106.491,109.712,112.933,114.662,115.832,117.567,118.694,120.822,124.47 +1844,1,109.7292,0.04354,94.965,98.615,100.744,101.871,103.606,104.778,106.507,109.729,112.952,114.681,115.852,117.588,118.715,120.844,124.493 +1845,1,109.7464,0.04354,94.98,98.63,100.759,101.887,103.623,104.794,106.523,109.746,112.969,114.699,115.87,117.606,118.734,120.863,124.513 +1846,1,109.7636,0.04354,94.995,98.646,100.775,101.903,103.639,104.81,106.54,109.764,112.987,114.717,115.888,117.625,118.752,120.881,124.532 +1847,1,109.7808,0.04355,95.007,98.659,100.789,101.917,103.654,104.826,106.556,109.781,113.006,114.736,115.908,117.645,118.773,120.903,124.555 +1848,1,109.798,0.04355,95.021,98.674,100.805,101.933,103.67,104.842,106.573,109.798,113.023,114.754,115.926,117.663,118.791,120.922,124.575 +1849,1,109.8151,0.04356,95.033,98.687,100.818,101.947,103.685,104.857,106.589,109.815,113.042,114.773,115.945,117.683,118.812,120.943,124.597 +1850,1,109.8323,0.04356,95.048,98.702,100.834,101.963,103.701,104.874,106.605,109.832,113.059,114.791,115.964,117.702,118.831,120.962,124.617 +1851,1,109.8494,0.04356,95.063,98.718,100.85,101.979,103.717,104.89,106.622,109.849,113.077,114.809,115.982,117.72,118.849,120.981,124.636 +1852,1,109.8666,0.04357,95.074,98.731,100.863,101.993,103.732,104.905,106.638,109.867,113.095,114.828,116.001,117.74,118.87,121.003,124.659 +1853,1,109.8837,0.04357,95.089,98.746,100.879,102.009,103.748,104.922,106.654,109.884,113.113,114.846,116.019,117.759,118.888,121.021,124.679 +1854,1,109.9009,0.04358,95.1,98.759,100.893,102.023,103.763,104.937,106.67,109.901,113.131,114.865,116.039,117.779,118.909,121.043,124.702 +1855,1,109.918,0.04358,95.115,98.774,100.909,102.039,103.779,104.953,106.687,109.918,113.149,114.883,116.057,117.797,118.927,121.062,124.721 +1856,1,109.9352,0.04358,95.13,98.79,100.924,102.055,103.795,104.97,106.704,109.935,113.167,114.901,116.075,117.816,118.946,121.081,124.74 diff --git a/core/models.py b/core/models.py index e4127563..06ef4b90 100644 --- a/core/models.py +++ b/core/models.py @@ -404,6 +404,31 @@ class Height(models.Model): validate_date(self.date, "date") +class HeightPercentile(models.Model): + model_name = "height percentile" + age_in_days = models.DurationField(null=False) + p3_height = models.FloatField(null=False) + p15_height = models.FloatField(null=False) + p50_height = models.FloatField(null=False) + p85_height = models.FloatField(null=False) + p97_height = models.FloatField(null=False) + sex = models.CharField( + null=False, + max_length=255, + choices=[ + ("girl", _("Girl")), + ("boy", _("Boy")), + ], + ) + + class Meta: + constraints = [ + models.UniqueConstraint( + fields=["age_in_days", "sex"], name="unique_age_sex_height" + ) + ] + + class Note(models.Model): model_name = "note" child = models.ForeignKey( diff --git a/locale/ca/LC_MESSAGES/django.mo b/locale/ca/LC_MESSAGES/django.mo index bf397af1..514c8388 100644 Binary files a/locale/ca/LC_MESSAGES/django.mo and b/locale/ca/LC_MESSAGES/django.mo differ diff --git a/locale/ca/LC_MESSAGES/django.po b/locale/ca/LC_MESSAGES/django.po index 70271e8d..3c7611c9 100644 --- a/locale/ca/LC_MESSAGES/django.po +++ b/locale/ca/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -267,20 +267,20 @@ msgstr "Error: %(error)s" msgid "Error: Some fields have errors. See below for details." msgstr "Error: Alguns camps amb errors. Veure detalls." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Canvi Bolquers" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Biberó" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -293,15 +293,15 @@ msgid "Pumping" msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Nota" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -311,8 +311,8 @@ msgstr "Dormir" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -330,7 +330,7 @@ msgid "Timeline" msgstr "Línia de Temps" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -340,10 +340,10 @@ msgstr "Línia de Temps" msgid "Children" msgstr "Nadons" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -359,10 +359,10 @@ msgstr "Nadons" msgid "Child" msgstr "Nadó" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -372,8 +372,8 @@ msgstr "Notes" msgid "Measurements" msgstr "Mides" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -387,8 +387,8 @@ msgstr "BMI" msgid "BMI entry" msgstr "Entrada BMI" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -407,15 +407,15 @@ msgstr "Circumferència del Cap" msgid "Head Circumference entry" msgstr "Entrada de circumferència de Cap" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -426,8 +426,8 @@ msgstr "Alçada" msgid "Height entry" msgstr "Entrada Alçada" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -436,7 +436,7 @@ msgstr "Entrada Alçada" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -446,8 +446,8 @@ msgstr "Temperatura" msgid "Temperature reading" msgstr "Lectura Temperatura" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -455,9 +455,9 @@ msgstr "Lectura Temperatura" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Pes" @@ -479,7 +479,7 @@ msgid "Change" msgstr "Canvi" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -504,7 +504,7 @@ msgstr "Entrada de temps de panxa" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Usuari" @@ -751,7 +751,7 @@ msgstr "Email" msgid "Staff" msgstr "Personal" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Actiu" @@ -771,7 +771,7 @@ msgstr "" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -825,7 +825,7 @@ msgstr "" "Apreneu i prediu les necessitats del nadó sense (tant) el treball " "d'endevinar utilitzant Baby Buddy per fer un seguiment de —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1056,55 +1056,55 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Nom no concorda amb nom nadó." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." msgstr "" -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "La data no pot ser futura." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "Hora inici ha de ser abans de l'hora d'acabada." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Durada massa llarga." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Una altra entrada talla el període de temps especificat." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Data/Temps no pot ser futur." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Color" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1113,7 +1113,7 @@ msgstr "" msgid "Tags" msgstr "" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1125,33 +1125,39 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Data" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Nom" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Cognom" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Data Naixement" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Data Naixement" + +#: core/models.py:176 msgid "Slug" msgstr "Fitxa" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Foto" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1159,51 +1165,51 @@ msgstr "Foto" msgid "Time" msgstr "Temps" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Líquid" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Sòlit" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Negre" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Marró" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Verd" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Groc" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Quantitat" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Temps Inici" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Temps Fi" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1211,71 +1217,83 @@ msgstr "Temps Fi" msgid "Duration" msgstr "Durada" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Llet Materna" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Fórmula" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Llet materna enriquida" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Menjar Sòlid" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Tipus" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Ampolla" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Pit esquerre" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Pit dret" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Ambdós Pits" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Alimentat per pares" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Autoalimentat" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Mètode" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Becaina" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Nom" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Temporitzador" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1284,23 +1302,15 @@ msgstr "Temporitzador" msgid "Timers" msgstr "Temporitzadors" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Temporitzador #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Fita" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Esborra entrada BMI" @@ -1466,7 +1476,7 @@ msgstr "Afegir Nota" msgid "Add Note" msgstr "Afegir Nota" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Notes no trobades." @@ -1712,72 +1722,68 @@ msgstr "Avui" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 dies" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "Fa %(days_ago)s dies" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "avui" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "ahir" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s estan panxa avall!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s han acabat panxa avall." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s dormint." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s desperts." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Import: %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s han començat a alimentar-se." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s han acabat d'alimentar." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s tenia un canvi de bolquer de %(type)s." -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1868,6 +1874,12 @@ msgstr "líquid" msgid "solid" msgstr "sòlid" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Canvis" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "últim menjar" @@ -1980,66 +1992,65 @@ msgid "Child actions" msgstr "Accions Nadó" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Informes" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Mitjana migdiades" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Mitjana migdiades per dia" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Mitjana temps de son" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Mitjana temps despert" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Canvi pes setmanal" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Canvi de pes per setmana" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Canvi de circumferència per setmana" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "canvi BMI per setmana" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Freqüència Canvi Bolquers" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Freqüència d'alimentació (darrers 3 dies)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Freqüència d'alimentació (darreres 2 setmanes)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Freqüència Alimentació" @@ -2132,7 +2143,27 @@ msgstr "" msgid "Head Circumference" msgstr "Circumferència de cap" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Alçada" @@ -2185,26 +2216,6 @@ msgstr "Durades totals del temps de panxa" msgid "Total duration (minutes)" msgstr "Total durada (minuts)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Pes" @@ -2215,7 +2226,7 @@ msgid "Diaper Amounts" msgstr "Quantitats Volquers" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2243,7 +2254,7 @@ msgid "Average Feeding Durations" msgstr "Durada mitjana de l'alimentació" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2269,30 +2280,38 @@ msgid "Feeding Durations (Average)" msgstr "Durada de l'alimentació (mitja)" #: reports/templates/reports/report_list.html:29 -msgid "Pumping Amounts" +msgid "WHO Height Percentiles for Boys in cm" msgstr "" #: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 +msgid "Pumping Amounts" +msgstr "" + +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Patró Son" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Totals Son" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Durada del temps de panxa (suma)" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2301,6 +2320,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Durada total del temps de panxa" +#~ msgid "0 days" +#~ msgstr "0 dies" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "Fa %(key)s dies" diff --git a/locale/cs/LC_MESSAGES/django.mo b/locale/cs/LC_MESSAGES/django.mo index 5cb99626..f7556882 100644 Binary files a/locale/cs/LC_MESSAGES/django.mo and b/locale/cs/LC_MESSAGES/django.mo differ diff --git a/locale/cs/LC_MESSAGES/django.po b/locale/cs/LC_MESSAGES/django.po index 55e06a39..5bc3234d 100644 --- a/locale/cs/LC_MESSAGES/django.po +++ b/locale/cs/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -275,20 +275,20 @@ msgid "Error: Some fields have errors. See below for details." msgstr "" "Chyba: Některé kolonky jsou chybné. Podrobnosti viz níže." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Výměna plenky" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Krmení" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -301,15 +301,15 @@ msgid "Pumping" msgstr "Odsávání mléka" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Poznámka" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -319,8 +319,8 @@ msgstr "Spánek" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -338,7 +338,7 @@ msgid "Timeline" msgstr "Časová osa" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -348,10 +348,10 @@ msgstr "Časová osa" msgid "Children" msgstr "Děti" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -367,10 +367,10 @@ msgstr "Děti" msgid "Child" msgstr "Dítě" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -380,8 +380,8 @@ msgstr "Poznámky" msgid "Measurements" msgstr "Míry" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -395,8 +395,8 @@ msgstr "BMI" msgid "BMI entry" msgstr "záznam BMI" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -415,15 +415,15 @@ msgstr "obvod hlavy" msgid "Head Circumference entry" msgstr "záznam obvodu hlavy" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -434,8 +434,8 @@ msgstr "Výška/délka" msgid "Height entry" msgstr "záznam výšky" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -444,7 +444,7 @@ msgstr "záznam výšky" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -454,8 +454,8 @@ msgstr "Teplota" msgid "Temperature reading" msgstr "Teplotní údaj" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -463,9 +463,9 @@ msgstr "Teplotní údaj" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Váha" @@ -487,7 +487,7 @@ msgid "Change" msgstr "Výměna" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -512,7 +512,7 @@ msgstr "Položka doby na břiše" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Uživatel" @@ -760,7 +760,7 @@ msgstr "E-mail" msgid "Staff" msgstr "Personál" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Aktivní" @@ -780,7 +780,7 @@ msgstr "Zablokovaný" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -834,7 +834,7 @@ msgstr "" "Zjistěte a předvídejte potřeby dítěte bez (přílišného) hádání " "pomocí Baby Buddy pro sledování —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1068,15 +1068,15 @@ msgstr "" "Nejdřívější čas zahájení šlofíka %(min)s musí být dřívější než nejzašší čas " "zahájení šlofíka %(max)s." -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "Značka" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Jméno se neshoduje se jménem dítěte." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." @@ -1084,41 +1084,41 @@ msgstr "" "Klikněte na značku, abyste ji přidali (+) nebo odebrali (-), případně " "použijte textové pole pro přidání nové značky." -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "Datum nemůže být v budoucnosti." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "Je třeba, aby okamžik zahájení byl před okamžikem skončení." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Trvání je příliš dlouhé." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Se zadaným obdobím se kříží jiná položka." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Datum/čas nemůže být v budoucnosti." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Barva" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Naposledy použité" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1127,7 +1127,7 @@ msgstr "Naposledy použité" msgid "Tags" msgstr "Značky" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1139,33 +1139,39 @@ msgstr "Značky" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Datum" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Jméno" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Příjmení" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Datum narození" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Datum narození" + +#: core/models.py:176 msgid "Slug" msgstr "Unikátní klíč" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Obrázek" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1173,51 +1179,51 @@ msgstr "Obrázek" msgid "Time" msgstr "Čas" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Mokré" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Pevné" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Černá" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Hnědá" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Zelená" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Žlutá" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Množství" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Okamžik zahájení" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Okamžik ukončení" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1225,71 +1231,83 @@ msgstr "Okamžik ukončení" msgid "Duration" msgstr "Trvání" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Mateřské mléko" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Umělé mléko" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Mateřské mléko s doplňkem" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Pevná strava" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Typ" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Láhev" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Levé prso" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Pravé prso" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Oba prsy" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Krmený rodičem" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Najezený sám" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Metoda" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Šlofík" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "Nastavení šlofíku" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Název" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Časovač" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1298,23 +1316,15 @@ msgstr "Časovač" msgid "Timers" msgstr "Časovače" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Časovač č.{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Milník" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Smazat záznam BMI" @@ -1480,7 +1490,7 @@ msgstr "Přidat poznámku" msgid "Add Note" msgstr "Přidat poznámku" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Nenalezeny žádné poznámky." @@ -1726,72 +1736,68 @@ msgstr "Dnes" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 dní" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "před %(days_ago)s dny" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "dnes" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "včera" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s zahájila dobu na břiše!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s ukončila dobu na břiše." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s usnul(a)." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s se vzbudil(a)." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Množství: %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s – zahájeno krmení." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s dokončeno krmení." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s byl/a přebalen/a. Nálož: %(type)s" -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "Teplota: %(temperature).0f" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "Dítěti %(child)s byla změřena teplota." @@ -1885,6 +1891,12 @@ msgstr "mokré" msgid "solid" msgstr "pevné" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Výměny" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Poslední krmení" @@ -2002,66 +2014,65 @@ msgid "Child actions" msgstr "Akce dítěte" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Výkazy" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Průměrná výdrž plenky" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Průměrně šlofíků za den" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Průměrná doba spánku" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Průměrná doba bdělosti" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Změna váhy za týden" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Rozdíl výšky/délky za týden" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Rozdíl obvodu hlavy za týden" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "Rozdíl BMI za týden" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Frekvence přebalování (poslední 3 dny)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Frekvence přebalování (poslední 2 týdny)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Četnost výměn plenek" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Frekvence krmení (poslední 3 dny)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Frekvence krmení (poslední 2 týdny)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Četnost krmení" @@ -2154,7 +2165,27 @@ msgstr "" msgid "Head Circumference" msgstr " Obvod hlavy" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Výška/délka" @@ -2207,26 +2238,6 @@ msgstr "Celková doba polohy na bříšku" msgid "Total duration (minutes)" msgstr "Celková doba (v minutách)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Váha" @@ -2237,7 +2248,7 @@ msgid "Diaper Amounts" msgstr "Počet plenek" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2265,7 +2276,7 @@ msgid "Average Feeding Durations" msgstr "Průměrná trvání krmení" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2291,30 +2302,38 @@ msgid "Feeding Durations (Average)" msgstr "Doba trvání krmení (průměr)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Odsátá množství" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Spánkové vzorce" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Celková doba spánku" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Celkový čas strávený na bříšku" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2323,6 +2342,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Celková doba polohy na bříšku" +#~ msgid "0 days" +#~ msgstr "0 dní" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "před %(key)s dny" diff --git a/locale/da/LC_MESSAGES/django.mo b/locale/da/LC_MESSAGES/django.mo index 6f87a322..64ea6e11 100644 Binary files a/locale/da/LC_MESSAGES/django.mo and b/locale/da/LC_MESSAGES/django.mo differ diff --git a/locale/da/LC_MESSAGES/django.po b/locale/da/LC_MESSAGES/django.po index 1296e32c..17ac2d13 100644 --- a/locale/da/LC_MESSAGES/django.po +++ b/locale/da/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -269,20 +269,20 @@ msgstr "" "Fejl: Nogle felter indeholder fejl. Se nedenstående for " "detaljer" -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Bleskift" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Madning" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -295,15 +295,15 @@ msgid "Pumping" msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Note" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -313,8 +313,8 @@ msgstr "Søvn" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -332,7 +332,7 @@ msgid "Timeline" msgstr "Tidslinje" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -342,10 +342,10 @@ msgstr "Tidslinje" msgid "Children" msgstr "Børn" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -361,10 +361,10 @@ msgstr "Børn" msgid "Child" msgstr "Barn" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -374,8 +374,8 @@ msgstr "Noter" msgid "Measurements" msgstr "Målinger" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -389,8 +389,8 @@ msgstr "BMI" msgid "BMI entry" msgstr "BMI-registrering" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -409,15 +409,15 @@ msgstr "Hovedmål" msgid "Head Circumference entry" msgstr "Hovedmålsregistrering" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -428,8 +428,8 @@ msgstr "Højde" msgid "Height entry" msgstr "Højderegistrering" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -438,7 +438,7 @@ msgstr "Højderegistrering" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -448,8 +448,8 @@ msgstr "Temperatur" msgid "Temperature reading" msgstr "Temperaturmåling" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -457,9 +457,9 @@ msgstr "Temperaturmåling" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Vægt" @@ -481,7 +481,7 @@ msgid "Change" msgstr "Bleskift" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -506,7 +506,7 @@ msgstr "Mavetid indtastning" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Bruger" @@ -755,7 +755,7 @@ msgstr "Email" msgid "Staff" msgstr "Personale" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Aktiv" @@ -775,7 +775,7 @@ msgstr "" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -829,7 +829,7 @@ msgstr "" "Lær mere om og forudse din babys behov uden (så meget) gætværk ved " "at bruge Baby Buddy til at holde øje med —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1057,55 +1057,55 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Navnet stemmer ikke med barnets navn." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." msgstr "" -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "Datoen kan ikke ligge i fremtiden." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "Startdato skal komme før slutdato." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Længden er for lang." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "En anden registrering skærer den angivne tidsperiode." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Dato/tid kan ikke ligge i fremtiden" -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Farve" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Sidst brugt" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1114,7 +1114,7 @@ msgstr "Sidst brugt" msgid "Tags" msgstr "" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1126,33 +1126,39 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Dato" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Fornavn" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Efternavn" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Fødselsnavn" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Fødselsnavn" + +#: core/models.py:176 msgid "Slug" msgstr "Slug" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Billede" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1160,51 +1166,51 @@ msgstr "Billede" msgid "Time" msgstr "Tid" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Våd" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Solid" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Sort" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Brun" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Grøn" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Gul" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Mængde" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Starttidspunkt" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Sluttidspunkt" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1212,71 +1218,83 @@ msgstr "Sluttidspunkt" msgid "Duration" msgstr "Længde" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Brystmælk" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Mælkserstatning" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Beriget modermælk" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Fast føde" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Type" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Flaske" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Venstre bryst" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Højre bryst" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Begge bryster" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Fodret af forælder" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Selvfodret" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Metode" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Lur" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Navn" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Timer" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1285,23 +1303,15 @@ msgstr "Timer" msgid "Timers" msgstr "Timers" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Timer #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Milepæl" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Slet en BMI Registrering" @@ -1468,7 +1478,7 @@ msgstr "Tilføj en Note" msgid "Add Note" msgstr "Tilføj Note" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Ingen noter fundet." @@ -1714,72 +1724,68 @@ msgstr "I dag" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 dage" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "%(days_ago)s dage siden" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "I dag" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "I går" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s begyndte mavetid." -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s afsluttede mavetid." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s faldt i søvn." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s vågnede." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s begyndte madning." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s afsluttede madning." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "" -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1870,6 +1876,12 @@ msgstr "Våd" msgid "solid" msgstr "fast" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Antal Bleskift" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Seneste madning" @@ -1982,66 +1994,65 @@ msgid "Child actions" msgstr "Handlinger for Barn" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Rapporter" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Gennemsnitlig lurlængde" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Gennemsnitlige antal lure per dag" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Gennemsnitlig søvnlængde" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Gennemsnitlig tid vågen" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Vægtændring pr. uge" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Højdeændring per uge" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Ændring i hovedmål per uge" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "BMI-ændring per uge" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Bleskift frekvens" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Fodringsfrekvens (sidste 3 dage)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Fodringsfrekvens (sidste 2 uger)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Madnings frekvens" @@ -2134,7 +2145,27 @@ msgstr "" msgid "Head Circumference" msgstr "Hovedmål" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Højde" @@ -2187,26 +2218,6 @@ msgstr "" msgid "Total duration (minutes)" msgstr "" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Vægt" @@ -2217,7 +2228,7 @@ msgid "Diaper Amounts" msgstr "Antal Bleer" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2245,7 +2256,7 @@ msgid "Average Feeding Durations" msgstr "Gennemsnitlig madningslængde" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2271,30 +2282,38 @@ msgid "Feeding Durations (Average)" msgstr "Madningslængder (gennemsnit)" #: reports/templates/reports/report_list.html:29 -msgid "Pumping Amounts" +msgid "WHO Height Percentiles for Boys in cm" msgstr "" #: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 +msgid "Pumping Amounts" +msgstr "" + +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Søvnmønster" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Søvn totaler" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Mavetid (Total)" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2303,6 +2322,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "" +#~ msgid "0 days" +#~ msgstr "0 dage" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "%(key)s dage siden" diff --git a/locale/de/LC_MESSAGES/django.mo b/locale/de/LC_MESSAGES/django.mo index ab3ba30b..9aa7d3ac 100644 Binary files a/locale/de/LC_MESSAGES/django.mo and b/locale/de/LC_MESSAGES/django.mo differ diff --git a/locale/de/LC_MESSAGES/django.po b/locale/de/LC_MESSAGES/django.po index 33779050..2d24876b 100644 --- a/locale/de/LC_MESSAGES/django.po +++ b/locale/de/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -276,20 +276,20 @@ msgstr "" "Fehler: Gewisse Felder sind fehlerhaft. Details sind unten " "ersichtlich." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Windelwechsel" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Mahlzeit" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -302,15 +302,15 @@ msgid "Pumping" msgstr "Abpumpen" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Notiz" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -320,8 +320,8 @@ msgstr "Schlafen" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -339,7 +339,7 @@ msgid "Timeline" msgstr "Zeitverlauf" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -349,10 +349,10 @@ msgstr "Zeitverlauf" msgid "Children" msgstr "Kinder" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -368,10 +368,10 @@ msgstr "Kinder" msgid "Child" msgstr "Kind" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -381,8 +381,8 @@ msgstr "Notizen" msgid "Measurements" msgstr "Messungen" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -396,8 +396,8 @@ msgstr "BMI" msgid "BMI entry" msgstr "BMI-Eintrag" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -416,15 +416,15 @@ msgstr "Kopfumfang" msgid "Head Circumference entry" msgstr "Kopfumfang-Eintrag" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -435,8 +435,8 @@ msgstr "Größe" msgid "Height entry" msgstr "Größen-Eintrag" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -445,7 +445,7 @@ msgstr "Größen-Eintrag" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -455,8 +455,8 @@ msgstr "Temperatur" msgid "Temperature reading" msgstr "Temperaturmessung" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -464,9 +464,9 @@ msgstr "Temperaturmessung" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Gewicht" @@ -488,7 +488,7 @@ msgid "Change" msgstr "Wechsel" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -513,7 +513,7 @@ msgstr "Bauchzeit-Eintrag" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Benutzer" @@ -762,7 +762,7 @@ msgstr "E-Mail" msgid "Staff" msgstr "Angestellte" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Aktiv" @@ -782,7 +782,7 @@ msgstr "Gesperrt" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -836,7 +836,7 @@ msgstr "" "Lerne und sehe die Bedürfnisse deines Babys voraus, ohne (allzu viel)Spekulation, indem du Baby Buddy verwendest —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1073,15 +1073,15 @@ msgstr "" "Der minimale Wert für den Beginn des Nickerchens %(min)s muss kleiner sein " "als der minimale Wert für den Beginn des Nickerchens %(max)s." -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "Tag" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Name entspricht nicht dem Kindernamen." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." @@ -1089,41 +1089,41 @@ msgstr "" "Klicke auf die Tags zum Hinzuzufügen (+) oder Entfernen (-) oder nutze den " "Texteditor, um neue Tags zu erstellen." -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "Datum darf nicht in der Zukunft liegen." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "Startzeit muss vor Endzeit sein." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Dauer zu lange." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Ein anderer Eintrag schneidet sich mit der angegebenen Zeitperiode." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Datum/Zeit darf nicht in der Zukunft liegen." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Farbe" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "zuletzt verwendet" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1132,7 +1132,7 @@ msgstr "zuletzt verwendet" msgid "Tags" msgstr "Tags" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1144,33 +1144,39 @@ msgstr "Tags" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Datum" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Vorname" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Nachname" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Geburtsdatum" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Geburtsdatum" + +#: core/models.py:176 msgid "Slug" msgstr "Slug" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Bild" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1178,51 +1184,51 @@ msgstr "Bild" msgid "Time" msgstr "Zeit" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Nass" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Fest" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Schwarz" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Braun" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Grün" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Gelb" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Menge" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Startzeit" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Endzeit" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1230,71 +1236,83 @@ msgstr "Endzeit" msgid "Duration" msgstr "Dauer" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Brustmilch" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Säuglingsnahrung" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Angereicherte Brustmilch" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Feste Nahrung" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Typ" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Fläschchen" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Linke Brust" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Rechte Brust" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Beide Brüste" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Durch Eltern gefüttert" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Selber gefüttert" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Methode" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Nickerchen" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "Schlaf-Einstellungen" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Name" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Timer" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1303,23 +1321,15 @@ msgstr "Timer" msgid "Timers" msgstr "Timer" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Timer #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Meilenstein" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Lösche BMI-Eintrag" @@ -1486,7 +1496,7 @@ msgstr "Notiz hinzufügen" msgid "Add Note" msgstr "Notiz hinzufügen" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Keine Notizen gefunden." @@ -1732,72 +1742,68 @@ msgstr "heute" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 Tage" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "Vor %(days_ago)s Tagen" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "heute" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "gestern" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s liegt nun auf dem Bauch." -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s liegt nicht mehr auf dem Bauch." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s ist eingeschlafen." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s ist aufgewacht." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Menge: %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s hat begonnen zu essen." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s hat fertig gegessen." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s hatte einen %(type)s Windelwechsel." -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "Temperatur: %(temperature).0f" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "%(child)s hatte eine Temperaturmessung." @@ -1888,6 +1894,12 @@ msgstr "nass" msgid "solid" msgstr "fest" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Wechsel" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Letzte Mahlzeit" @@ -2000,66 +2012,65 @@ msgid "Child actions" msgstr "Aktionen des Kindes" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Reports" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Durchschnittliche Nickerchen-Dauer" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Durchschnittliche Anzahl Nickerchen" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Durchschnittliche Schlafdauer" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Durchschnittlich wach" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Gewichtsänderung pro Woche" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Größenänderung pro Woche" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Kopfumfang-Änderung pro Woche" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "BMI-Änderung pro Woche" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Windelwechselintervall (die letzten drei Tage)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Windelwechselintervall (die letzten zwei Wochen)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Frequenz Windelwechsel" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Mahlzeitenintervall (letzte 3 Tage)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Mahlzeitenintervall (letzte 2 Wochen)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Frequenz Mahlzeiten" @@ -2152,7 +2163,27 @@ msgstr "" msgid "Head Circumference" msgstr "Kopfumfang" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Größe" @@ -2205,26 +2236,6 @@ msgstr "Totale Bauchzeit-Dauer" msgid "Total duration (minutes)" msgstr "Länge insgesamt (Minuten)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Gewicht" @@ -2235,7 +2246,7 @@ msgid "Diaper Amounts" msgstr "Windel-Mengen" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2263,7 +2274,7 @@ msgid "Average Feeding Durations" msgstr "Durchschnittliche Mahlzeitendauer" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2289,30 +2300,38 @@ msgid "Feeding Durations (Average)" msgstr "Mahlzeit-Dauer (Durchschnitt)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Abgepumpte Menge" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Schlafrhythmus" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Schlaf Total" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Bauchzeit-Dauer (Summe)" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2321,6 +2340,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Totale Bauchzeit-Dauer" +#~ msgid "0 days" +#~ msgstr "0 Tage" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "Vor %(key)s Tagen" diff --git a/locale/en_GB/LC_MESSAGES/django.po b/locale/en_GB/LC_MESSAGES/django.po index 2a062a62..fe824bf8 100644 --- a/locale/en_GB/LC_MESSAGES/django.po +++ b/locale/en_GB/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: en-GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -264,20 +264,20 @@ msgstr "" msgid "Error: Some fields have errors. See below for details." msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Nappy Change" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -290,15 +290,15 @@ msgid "Pumping" msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -308,8 +308,8 @@ msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -327,7 +327,7 @@ msgid "Timeline" msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -337,10 +337,10 @@ msgstr "" msgid "Children" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -356,10 +356,10 @@ msgstr "" msgid "Child" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -369,8 +369,8 @@ msgstr "" msgid "Measurements" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -384,8 +384,8 @@ msgstr "" msgid "BMI entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -404,15 +404,15 @@ msgstr "" msgid "Head Circumference entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -423,8 +423,8 @@ msgstr "" msgid "Height entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -433,7 +433,7 @@ msgstr "" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -443,8 +443,8 @@ msgstr "" msgid "Temperature reading" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -452,9 +452,9 @@ msgstr "" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "" @@ -476,7 +476,7 @@ msgid "Change" msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -501,7 +501,7 @@ msgstr "" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "" @@ -746,7 +746,7 @@ msgstr "" msgid "Staff" msgstr "" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "" @@ -766,7 +766,7 @@ msgstr "" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -818,7 +818,7 @@ msgid "" "by using Baby Buddy to track —" msgstr "" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1034,55 +1034,55 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "" -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." msgstr "" -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "" -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "" -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "" -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "" -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "" -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Colour" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1091,7 +1091,7 @@ msgstr "" msgid "Tags" msgstr "" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1103,33 +1103,37 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "" -#: core/models.py:174 +#: core/models.py:169 +msgid "Birth time" +msgstr "" + +#: core/models.py:176 msgid "Slug" msgstr "" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1137,51 +1141,51 @@ msgstr "" msgid "Time" msgstr "" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1189,71 +1193,83 @@ msgstr "" msgid "Duration" msgstr "" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1262,23 +1278,15 @@ msgstr "" msgid "Timers" msgstr "" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "" @@ -1444,7 +1452,7 @@ msgstr "" msgid "Add Note" msgstr "" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "" @@ -1690,72 +1698,68 @@ msgstr "" msgid "{}, {}" msgstr "" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "" -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "" -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "" -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "" -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "" -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s had a %(type)s nappy change." -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1846,6 +1850,10 @@ msgstr "" msgid "solid" msgstr "" +#: dashboard/templates/cards/diaperchange_types.html:53 +msgid "changes" +msgstr "" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "" @@ -1958,66 +1966,65 @@ msgid "Child actions" msgstr "" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Nappy change frequency (past 3 days)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Nappy change frequency (past 2 weeks)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Nappy change frequency" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "" @@ -2110,7 +2117,27 @@ msgstr "" msgid "Head Circumference" msgstr "" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "" @@ -2163,26 +2190,6 @@ msgstr "" msgid "Total duration (minutes)" msgstr "" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "" @@ -2193,7 +2200,7 @@ msgid "Diaper Amounts" msgstr "Nappy Amounts" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "Nappy Change Intervals" @@ -2221,7 +2228,7 @@ msgid "Average Feeding Durations" msgstr "" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2247,30 +2254,38 @@ msgid "Feeding Durations (Average)" msgstr "" #: reports/templates/reports/report_list.html:29 -msgid "Pumping Amounts" +msgid "WHO Height Percentiles for Boys in cm" msgstr "" #: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 +msgid "Pumping Amounts" +msgstr "" + +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" diff --git a/locale/es/LC_MESSAGES/django.mo b/locale/es/LC_MESSAGES/django.mo index f1b7f89c..af95198f 100644 Binary files a/locale/es/LC_MESSAGES/django.mo and b/locale/es/LC_MESSAGES/django.mo differ diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po index 8ac7df07..385e8ba1 100644 --- a/locale/es/LC_MESSAGES/django.po +++ b/locale/es/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -269,20 +269,20 @@ msgstr "" "Error: Algunos campos contienen errores. Mira más abajo " "para más detalles." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Cambio de Pañal" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Toma" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -295,15 +295,15 @@ msgid "Pumping" msgstr "Extracciones" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Nota" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -313,8 +313,8 @@ msgstr "Sueño" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -332,7 +332,7 @@ msgid "Timeline" msgstr "Cronología" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -342,10 +342,10 @@ msgstr "Cronología" msgid "Children" msgstr "Niños" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -361,10 +361,10 @@ msgstr "Niños" msgid "Child" msgstr "Niño" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -374,8 +374,8 @@ msgstr "Notas" msgid "Measurements" msgstr "Mediciones" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -389,8 +389,8 @@ msgstr "IMC" msgid "BMI entry" msgstr "Entrada de IMC" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -409,15 +409,15 @@ msgstr "Perímetro craneal" msgid "Head Circumference entry" msgstr "Entrada de perímetro craneal" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -428,8 +428,8 @@ msgstr "Altura" msgid "Height entry" msgstr "Entrada de altura" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -438,7 +438,7 @@ msgstr "Entrada de altura" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -448,8 +448,8 @@ msgstr "Temperatura" msgid "Temperature reading" msgstr "Lectura de temperatura" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -457,9 +457,9 @@ msgstr "Lectura de temperatura" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Peso" @@ -481,7 +481,7 @@ msgid "Change" msgstr "Cambio" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -506,7 +506,7 @@ msgstr "Entrada de tiempo boca abajo" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Usuario" @@ -755,7 +755,7 @@ msgstr "Email" msgid "Staff" msgstr "Personal" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Activo" @@ -775,7 +775,7 @@ msgstr "" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -829,7 +829,7 @@ msgstr "" "Aprende a predecir las necesidades de tu bebé sin tener que adivinar " "haciendo track con Baby Buddy —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1059,15 +1059,15 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "Etiqueta" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "El nombre no coincide con el nombre del niño." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." @@ -1075,41 +1075,41 @@ msgstr "" "Haz click en las etiquetas para añadirlas (+) o eliminarlas (-). O usa el " "editor de texto para crearlas nuevas." -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "La fecha no puede establecerse en el futuro." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "El tiempo de inicio debe ser anterior al tiempo de fin." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Duración demasiado larga." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Otra entrada coincide con el periodo de tiempo indicado." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "La fecha/hora no puede establecerse en el futuro." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Color" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Últimas usadas" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1118,7 +1118,7 @@ msgstr "Últimas usadas" msgid "Tags" msgstr "Etiquetas" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1130,33 +1130,39 @@ msgstr "Etiquetas" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Fecha" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Nombre" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Apellido" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Fecha de nacimiento" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Fecha de nacimiento" + +#: core/models.py:176 msgid "Slug" msgstr "Slug" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Foto" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1164,51 +1170,51 @@ msgstr "Foto" msgid "Time" msgstr "Hora" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Mojado" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Sólido" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Negro" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Marrón" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Verde" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Amarillo" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Cantidad" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Tiempo inicio" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Tiempo fin" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1216,71 +1222,83 @@ msgstr "Tiempo fin" msgid "Duration" msgstr "Duración" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Leche de pecho" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Fórmula" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Leche de pecho fortificada" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Comida sólida" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Tipo" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Botella" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Pecho izquierdo" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Pecho derecho" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Ambos pechos" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Comió con ayuda" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Comió solo" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Método" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Siesta" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Nombre" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Temporizador" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1289,23 +1307,15 @@ msgstr "Temporizador" msgid "Timers" msgstr "Temporizadores" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Temporizador #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Hito" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Eliminar una entrada de IMC" @@ -1471,7 +1481,7 @@ msgstr "Añadir una Nota" msgid "Add Note" msgstr "Añadir Nota" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "No se han encontrado notas." @@ -1717,72 +1727,68 @@ msgstr "hoy" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 días" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "hace %(days_ago)s días" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "hoy" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "ayer" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "¡%(child)s ha empezado tiempo boca abajo!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s ha finalizado tiempo boca abajo." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s se ha dormido." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s se ha despertado." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Cantidad: %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s ha empezado una toma." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s ha finalizado una toma." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s tuvo un cambio de pañal %(type)s." -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1873,6 +1879,12 @@ msgstr "mojado" msgid "solid" msgstr "sólido" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Cambios" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Última Toma" @@ -1985,66 +1997,65 @@ msgid "Child actions" msgstr "Acciones de niño" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Reportes" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Duración media siesta" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Media de siestas por día" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Duración media sueño" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Duración media despierto" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Cambio de peso por semana" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Cambio de altura por semana" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Cambio de perímetro craneal por semana" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "Cambio de IMC por semana" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Frecuencia de pañales (últimos 3 días)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Frecuencia de pañales (últimas 2 semanas)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Frecuencia de cambio de pañal" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Frecuenca de tomas (últimos 3 días)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Frecuenca de tomas (últimas 2 semanas)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Frecuencia de tomas" @@ -2137,7 +2148,27 @@ msgstr "" msgid "Head Circumference" msgstr "Perímetro craneal" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Altura" @@ -2190,26 +2221,6 @@ msgstr "Tiempo Boca Abajo Total" msgid "Total duration (minutes)" msgstr "Duración total (minutos)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Peso" @@ -2220,7 +2231,7 @@ msgid "Diaper Amounts" msgstr "Cantidades de Pañal" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2248,7 +2259,7 @@ msgid "Average Feeding Durations" msgstr "Duración Media Tomas" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2274,30 +2285,38 @@ msgid "Feeding Durations (Average)" msgstr "Duración de Tomas (Media)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Cantidad de extracciones" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Patrón de Sueño" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Totales de Sueño" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Tiempo Boca Abajo (Suma)" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2306,6 +2325,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Duración Total Tiempo Boca Abajo" +#~ msgid "0 days" +#~ msgstr "0 días" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "hace %(key)s días" diff --git a/locale/fi/LC_MESSAGES/django.mo b/locale/fi/LC_MESSAGES/django.mo index a9fe7d9b..c1e514c5 100644 Binary files a/locale/fi/LC_MESSAGES/django.mo and b/locale/fi/LC_MESSAGES/django.mo differ diff --git a/locale/fi/LC_MESSAGES/django.po b/locale/fi/LC_MESSAGES/django.po index 001d0329..fd1bce62 100644 --- a/locale/fi/LC_MESSAGES/django.po +++ b/locale/fi/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -266,20 +266,20 @@ msgid "Error: Some fields have errors. See below for details." msgstr "" "Virhe: Joissakin kentissä on virheitä. Tarkista ne alta." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Vaipanvaihto" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Syöttö" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -292,15 +292,15 @@ msgid "Pumping" msgstr "Pumppaus" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Muistiinpano" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -310,8 +310,8 @@ msgstr "Uni" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -329,7 +329,7 @@ msgid "Timeline" msgstr "Aikajana" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -339,10 +339,10 @@ msgstr "Aikajana" msgid "Children" msgstr "Lapset" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -358,10 +358,10 @@ msgstr "Lapset" msgid "Child" msgstr "Lapsi" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -371,8 +371,8 @@ msgstr "Muistiinpanot" msgid "Measurements" msgstr "Mitat" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -386,8 +386,8 @@ msgstr "" msgid "BMI entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -406,15 +406,15 @@ msgstr "Päänympärys" msgid "Head Circumference entry" msgstr "Päänympätysmerkintä" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -425,8 +425,8 @@ msgstr "Pituus" msgid "Height entry" msgstr "Pituusmerkintä" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -435,7 +435,7 @@ msgstr "Pituusmerkintä" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -445,8 +445,8 @@ msgstr "Lämpötila" msgid "Temperature reading" msgstr "Lämpötilalukema" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -454,9 +454,9 @@ msgstr "Lämpötilalukema" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Paino" @@ -478,7 +478,7 @@ msgid "Change" msgstr "Vaihto" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -503,7 +503,7 @@ msgstr "Maha-aikamerkintä" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Käyttäjä" @@ -752,7 +752,7 @@ msgstr "Sähköposti" msgid "Staff" msgstr "Henkilökunta" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Aktiivinen" @@ -772,7 +772,7 @@ msgstr "Lukittu" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -826,7 +826,7 @@ msgstr "" "Opi ennustamaan lapsen tarpeita ilman (niin suurta) arvailua " "käyttämällä BabyBuddy-sovellusta —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1049,55 +1049,55 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Nimi ei täsmää lapseen." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." msgstr "" -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "Päivämäärä ei voi olla tulevaisuudessa." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "Aloitus on oltava ennen lopetusta." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Liian pitkä kesto." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Toinen merkintä on päällekkäin annetun aikavälin kanssa." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Aika ei voi olla tulevaisuudessa." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Väri" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Viimeksi käytetty" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1106,7 +1106,7 @@ msgstr "Viimeksi käytetty" msgid "Tags" msgstr "" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1118,33 +1118,39 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Päivämäärä" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Etunimi" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Sukunimi" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Syntymäpäivä" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Syntymäpäivä" + +#: core/models.py:176 msgid "Slug" msgstr "Slug" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Kuva" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1152,51 +1158,51 @@ msgstr "Kuva" msgid "Time" msgstr "Aika" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Märkä" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Kiinteä" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Musta" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Ruskea" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Vihreä" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Keltainen" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Määrä" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Aloitus" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Lopetus" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1204,71 +1210,83 @@ msgstr "Lopetus" msgid "Duration" msgstr "Kesto" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Rintamaito" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Korvike" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Rikastettu rintamaito" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Kiinteä ruoka" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Tyyppi" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Pullo" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Vasen" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Oikea" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Molemmat tissit" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Vanhempi syötti" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Söi itse" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Tapa" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Päiväuni" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Nimi" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Ajastin" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1277,23 +1295,15 @@ msgstr "Ajastin" msgid "Timers" msgstr "Ajastimet" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Ajastin {id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Virstanpylväs" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "" @@ -1459,7 +1469,7 @@ msgstr "Lisää muistiinpano" msgid "Add Note" msgstr "Lisää muistiinpano" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Muistiinpanoja ei löytynyt." @@ -1705,72 +1715,68 @@ msgstr "tänään" msgid "{}, {}" msgstr "" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 päivää" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "%(days_ago)s päivää sitten" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "tänään" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "eilen" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s aloitti maha-ajan!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s lopetti maha-ajan." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s nukahti." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s heräsi." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s aloitti syömisen." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s lopetti syömisen." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "" -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1861,6 +1867,12 @@ msgstr "märkä" msgid "solid" msgstr "kiinteä" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Vaihdot" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Edellinen syöttö" @@ -1973,66 +1985,65 @@ msgid "Child actions" msgstr "Lapsen toiminnot" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Raportit" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Päiväunen kesto keskimäärin" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Päiväunia päivässä" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Unen kesto keskimäärin" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Hereilläoloaika keskimäärin" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Painonmuutos viikossa" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Vaipanvaihtotaajuus (past 3 days)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Vaipanvaihtotaajuus (past 2 weeks)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Vaipanvaihtotaajuus" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Syöttötaajuus" @@ -2125,7 +2136,27 @@ msgstr "" msgid "Head Circumference" msgstr "Päänympärys" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Pituus" @@ -2178,26 +2209,6 @@ msgstr "" msgid "Total duration (minutes)" msgstr "Kokonaiskesto (minuutteja)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Paino" @@ -2208,7 +2219,7 @@ msgid "Diaper Amounts" msgstr "Vaippojen määrä" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2236,7 +2247,7 @@ msgid "Average Feeding Durations" msgstr "Syöttöjen kesto keskimäärin" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2262,30 +2273,38 @@ msgid "Feeding Durations (Average)" msgstr "Syötön kesto keskimäärin" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Pumppausmäärät" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Unikuvio" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Uni yhteensä" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2294,6 +2313,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Maha-aika tänään" +#~ msgid "0 days" +#~ msgstr "0 päivää" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "%(key)s päivää sitten" diff --git a/locale/fr/LC_MESSAGES/django.mo b/locale/fr/LC_MESSAGES/django.mo index 29cac202..afbeea70 100644 Binary files a/locale/fr/LC_MESSAGES/django.mo and b/locale/fr/LC_MESSAGES/django.mo differ diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po index 50fa8b85..a79a0f71 100644 --- a/locale/fr/LC_MESSAGES/django.po +++ b/locale/fr/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -277,20 +277,20 @@ msgstr "" "Erreur : Certains champs comportent des erreurs. Plus de " "détails sont disponibles ci-dessous. " -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Changement de couche" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Alimentation" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -303,15 +303,15 @@ msgid "Pumping" msgstr "Tirage" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Note" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -321,8 +321,8 @@ msgstr "Sommeil" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -340,7 +340,7 @@ msgid "Timeline" msgstr "Chronologie" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -350,10 +350,10 @@ msgstr "Chronologie" msgid "Children" msgstr "Enfants" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -369,10 +369,10 @@ msgstr "Enfants" msgid "Child" msgstr "Enfant" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -382,8 +382,8 @@ msgstr "Notes" msgid "Measurements" msgstr "Mesures" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -397,8 +397,8 @@ msgstr "IMC" msgid "BMI entry" msgstr "Calcul d'IMC" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -417,15 +417,15 @@ msgstr "Périmètre crânien" msgid "Head Circumference entry" msgstr "Mesure du périmètre crânien" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -436,8 +436,8 @@ msgstr "Taille" msgid "Height entry" msgstr "Mesure de taille" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -446,7 +446,7 @@ msgstr "Mesure de taille" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -456,8 +456,8 @@ msgstr "Température" msgid "Temperature reading" msgstr "Prise de température" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -465,9 +465,9 @@ msgstr "Prise de température" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Poids" @@ -489,7 +489,7 @@ msgid "Change" msgstr "Nouveau change" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -514,7 +514,7 @@ msgstr "Période de motricité libre" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Utilisateur" @@ -763,7 +763,7 @@ msgstr "Email" msgid "Staff" msgstr "Administrateur" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Actif" @@ -783,7 +783,7 @@ msgstr "Verrouillé" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -837,7 +837,7 @@ msgstr "" "En savoir plus les besoins de bébé et les prédire sans (trop) de " "devinettes en utilisant Baby Buddy pour suivre —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1079,15 +1079,15 @@ msgstr "" "L'heure minimale de début de sieste %(min)s doit être inférieure à l'heure " "maximale de début de sieste %(max)s" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "Étiquette" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Le nom ne correspond pas au nom de l'enfant." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." @@ -1095,41 +1095,41 @@ msgstr "" "Cliquez sur une étiquette pour l'ajouter (+) ou l'enlever (-) ou utilisez " "l'éditeur de texte pour en créer de nouvelles" -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "La date ne peut pas être dans le futur." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "L'heure de début doit arriver avant l'heure de fin." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Durée trop longue." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Une autre entrée coupe la période spécifiée." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "La date / heure ne peut pas être dans le futur." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Couleur" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Dernière utilisation" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1138,7 +1138,7 @@ msgstr "Dernière utilisation" msgid "Tags" msgstr "Étiquettes" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1150,33 +1150,37 @@ msgstr "Étiquettes" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Date" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Prénom" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Nom" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Date de naissance" -#: core/models.py:174 +#: core/models.py:169 +msgid "Birth time" +msgstr "Heure de naissance" + +#: core/models.py:176 msgid "Slug" msgstr "Jeton" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Image" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1184,51 +1188,51 @@ msgstr "Image" msgid "Time" msgstr "Heure" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Humide" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Solide" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Noir" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Brun" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Verte" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Jaune" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Quantité" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Heure de début" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Heure de fin" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1236,71 +1240,83 @@ msgstr "Heure de fin" msgid "Duration" msgstr "Durée" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Lait maternel" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Formule bébé" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Lait maternel enrichi" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Nourriture solide" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Type" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Biberon" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Sein gauche" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Sein droit" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Les deux seins" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Nourri par le parent" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Auto-alimenté" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Mode" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "Fille" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "Garçon" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Sieste" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "Paramètres de sieste" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Nom du chronomètre" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Chronomètre" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1309,23 +1325,15 @@ msgstr "Chronomètre" msgid "Timers" msgstr "Chronomètres" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Chronomètre #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Étape importante" -#: core/models.py:716 -msgid "Girl" -msgstr "Fille" - -#: core/models.py:717 -msgid "Boy" -msgstr "Garçon" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Supprimer un calcul d'IMC" @@ -1492,7 +1500,7 @@ msgstr "Ajouter une note" msgid "Add Note" msgstr "Ajouter une note" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Aucune note trouvée." @@ -1738,72 +1746,68 @@ msgstr "Aujourd'hui" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 jour" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "il y a %(days_ago)s jours" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "aujourd'hui" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "hier" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s a commencé de la motricité libre." -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s a fini la motricité libre." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s s'est endormi." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s s'est réveillé." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Quantité : %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s a commencé à se nourrir." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s a fini de se nourrir." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "La couche %(type)s de %(child)s a été changée." -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "Température : %(temperature).0f" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "La température de %(child)s a été mesurée." @@ -1894,6 +1898,10 @@ msgstr "humide" msgid "solid" msgstr "solide" +#: dashboard/templates/cards/diaperchange_types.html:53 +msgid "changes" +msgstr "Changements de couches" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Dernier repas" @@ -2006,66 +2014,65 @@ msgid "Child actions" msgstr "Opérations sur l'enfant" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Rapports" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Durée moyenne des siestes" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Nombre moyen de siestes par jour" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Durée moyenne du sommeil" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Durée moyenne d'éveil" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Changement de poids par semaine" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Changement de taille par semaine" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Changement de circonférence de la tête par semaine" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "Changement d'IMC par semaine" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Fréquence de changement des couches (3 derniers jours)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Fréquence de changement des couches (2 dernières semaines)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Fréquence de change" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Fréquence d'alimentation (3 derniers jours)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Fréquence d'alimentation (2 dernières semaines)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Fréquence des repas" @@ -2158,7 +2165,27 @@ msgstr "Fréquence d'alimentation (heures)" msgid "Head Circumference" msgstr "Périmètre crânien" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "P3" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "P15" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "P50" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "P87" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "P97" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Taille" @@ -2211,26 +2238,6 @@ msgstr "Durée totale de motricité libre" msgid "Total duration (minutes)" msgstr "Durée totale (minutes)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "P3" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "P15" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "P50" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "P87" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "P97" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Poids" @@ -2241,7 +2248,7 @@ msgid "Diaper Amounts" msgstr "Nombre de couches" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "Fréquence de changement des couches" @@ -2269,7 +2276,7 @@ msgid "Average Feeding Durations" msgstr "Durée moyenne des repas" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "Fréquence d'alimentation" @@ -2295,30 +2302,38 @@ msgid "Feeding Durations (Average)" msgstr "Durée des repas (moyenne)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "Percentiles de taille de l'OMS pour les garçons en cm" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "Percentiles de taille de l'OMS pour les filles en cm" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Quantités tirées" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Rythme de sommeil" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Temps de sommeil total" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Durée de motricité libre (total)" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "Percentiles de poids de l'OMS pour les garçons en kg" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "Percentiles de poids de l'OMS pour les filles en kg" @@ -2327,6 +2342,9 @@ msgstr "Percentiles de poids de l'OMS pour les filles en kg" msgid "Total Tummy Time Durations" msgstr "Durée totale de motricité libre" +#~ msgid "0 days" +#~ msgstr "0 jour" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "il y a %(key)s jours" diff --git a/locale/hu/LC_MESSAGES/django.mo b/locale/hu/LC_MESSAGES/django.mo index c7931251..dbc781f4 100644 Binary files a/locale/hu/LC_MESSAGES/django.mo and b/locale/hu/LC_MESSAGES/django.mo differ diff --git a/locale/hu/LC_MESSAGES/django.po b/locale/hu/LC_MESSAGES/django.po index 03e1b39d..81a9fbf9 100644 --- a/locale/hu/LC_MESSAGES/django.po +++ b/locale/hu/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -275,20 +275,20 @@ msgstr "Hiba: %(error)s" msgid "Error: Some fields have errors. See below for details." msgstr "Hiba: Néhány mező hibás. Részletek lentebb." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Pelenkacsere" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Etetés" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -301,15 +301,15 @@ msgid "Pumping" msgstr "Pumpálás" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Megjegyzés" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -319,8 +319,8 @@ msgstr "Alvás" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -338,7 +338,7 @@ msgid "Timeline" msgstr "Idővonal" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -348,10 +348,10 @@ msgstr "Idővonal" msgid "Children" msgstr "Gyermekek" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -367,10 +367,10 @@ msgstr "Gyermekek" msgid "Child" msgstr "Gyermek" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -380,8 +380,8 @@ msgstr "Megjegyzések" msgid "Measurements" msgstr "Méretek" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -395,8 +395,8 @@ msgstr "BMI" msgid "BMI entry" msgstr "BMI bevitele" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -415,15 +415,15 @@ msgstr "Fejkörfogat" msgid "Head Circumference entry" msgstr "Fejkörfogat bevitele" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -434,8 +434,8 @@ msgstr "Magasság" msgid "Height entry" msgstr "Magasság bevitele" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -444,7 +444,7 @@ msgstr "Magasság bevitele" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -454,8 +454,8 @@ msgstr "Testhőmérséklet" msgid "Temperature reading" msgstr "Testhőmérséklet bevitele" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -463,9 +463,9 @@ msgstr "Testhőmérséklet bevitele" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Tömeg" @@ -487,7 +487,7 @@ msgid "Change" msgstr "Csere bevitele" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -512,7 +512,7 @@ msgstr "Pocakidő bevitele" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Felhasználó" @@ -761,7 +761,7 @@ msgstr "Email" msgid "Staff" msgstr "Admin" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Aktív" @@ -781,7 +781,7 @@ msgstr "Lezárva" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -836,7 +836,7 @@ msgstr "" "előrejelezheted kisbabád szükségleteit találgatás nélkül (legalábbis " "talán nem olyan nagyon sok találgatással)" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1064,15 +1064,15 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "Címke" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "A név nem felel meg egyik gyermek nevének sem." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." @@ -1080,41 +1080,41 @@ msgstr "" "Kattintson a címkékre azok hozzáadásához (+) vagy eltávolításához (-), vagy " "használja a szövegszerkesztőt új címkék létrehozásához." -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "A dátum nem lehet a jövőben." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "A kezdésnek meg kell előznie a végét." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Túl hosszú időtartam." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Egy másik bejegyzés átfed a megadott időtartammal." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "A dátum és idő nem lehet a jövőben." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Szín" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Utoljára használva" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1123,7 +1123,7 @@ msgstr "Utoljára használva" msgid "Tags" msgstr "Címkék" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1135,33 +1135,39 @@ msgstr "Címkék" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Dátum" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Keresztnév" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Vezetéknév" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Születési idő" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Születési idő" + +#: core/models.py:176 msgid "Slug" msgstr "slug" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Fénykép" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1169,51 +1175,51 @@ msgstr "Fénykép" msgid "Time" msgstr "Idő" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Pisis" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Kakis" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Fekete" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Barna" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Zöld" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Sárga" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Mennyiség" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Kezdési idő" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Befejezési idő" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1221,71 +1227,83 @@ msgstr "Befejezési idő" msgid "Duration" msgstr "Időtartam" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Anyatej" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Tápszer" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Tápszeres anyatej" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Szilárd étel" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Típus" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Cumisüveg" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Bal mell" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Jobb mell" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Mindkét mell" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Szülő eteti" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Önetető" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Bevitel módja" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Szundi" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "Szundi beállítások" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Név" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Stopper" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1294,23 +1312,15 @@ msgstr "Stopper" msgid "Timers" msgstr "Stopperek" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "#{id}. stopper" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Mérföldkő" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "BMI bejegyzés törlése" @@ -1476,7 +1486,7 @@ msgstr "Megjegyzés hozzáadása" msgid "Add Note" msgstr "Megjegyzés hozzáadása" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Nem található megjegyzés." @@ -1722,72 +1732,68 @@ msgstr "Ma" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 nap" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "%(days_ago)s nappal ezelőtt" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "ma" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "tegnap" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s pocakra lett téve!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s befejezte a pocakidőt." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s elaludt." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s felébredt." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Mennyiség: %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s elkezdett enni." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s befejezte az evést." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s-nak %(type)s pelenkacseréje volt." -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1878,6 +1884,12 @@ msgstr "pisis" msgid "solid" msgstr "kakis" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Pelenkacsere" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Utolsó etetés" @@ -1990,66 +2002,65 @@ msgid "Child actions" msgstr "Műveletek a gyermekkel" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Összesítők" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Átlagos szundi időtartam" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Átlagos napi szundi szám" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Átlagos alvási időtartam" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Átlagos ébren töltött idő" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Heti tömegnövekedés" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Magasság válzotás / hét" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Fejkörfogat változás / hét" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "BMI változás / hét" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Pelenkacsere gyakorisága (utolsó 3 nap)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Pelenkacsere gyakorisága (utolsó 2 hét)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Pelenkacsere gyakoriság" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Etetés gyakorisága (elmúlt 3 nap)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Etetés gyakorisága (elmúlt 2 hét)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Etetési gyakoriság" @@ -2142,7 +2153,27 @@ msgstr "" msgid "Head Circumference" msgstr "Fejkörfogat" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Magasság" @@ -2195,26 +2226,6 @@ msgstr "Teljes pocakidő" msgid "Total duration (minutes)" msgstr "Teljes időtartam (perc)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Testtömeg" @@ -2225,7 +2236,7 @@ msgid "Diaper Amounts" msgstr "Pelenkák száma" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2253,7 +2264,7 @@ msgid "Average Feeding Durations" msgstr "Átlagos etetési időtartam" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2279,30 +2290,38 @@ msgid "Feeding Durations (Average)" msgstr "Etetési idők (átlagos)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Pumpált mennyiség" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Alvási minta" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Összes alvás" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Pocakidő (Összes)" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2311,6 +2330,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Összes pocakidő" +#~ msgid "0 days" +#~ msgstr "0 nap" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "%(key)s nappal ezelőtt" diff --git a/locale/it/LC_MESSAGES/django.mo b/locale/it/LC_MESSAGES/django.mo index 243f79e6..97e2b237 100644 Binary files a/locale/it/LC_MESSAGES/django.mo and b/locale/it/LC_MESSAGES/django.mo differ diff --git a/locale/it/LC_MESSAGES/django.po b/locale/it/LC_MESSAGES/django.po index cf7b8a02..d75d8f18 100644 --- a/locale/it/LC_MESSAGES/django.po +++ b/locale/it/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -271,20 +271,20 @@ msgstr "" "Errore: Alcuni campi contengono errori. I dettagli sono " "riportati di seguito." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Cambio Pannolino" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Pasto" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -297,15 +297,15 @@ msgid "Pumping" msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Note" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -315,8 +315,8 @@ msgstr "Riposo" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -334,7 +334,7 @@ msgid "Timeline" msgstr "Andamento temporale" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -344,10 +344,10 @@ msgstr "Andamento temporale" msgid "Children" msgstr "Bambino" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -363,10 +363,10 @@ msgstr "Bambino" msgid "Child" msgstr "Figlio" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -376,8 +376,8 @@ msgstr "Note" msgid "Measurements" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -391,8 +391,8 @@ msgstr "" msgid "BMI entry" msgstr "Ingresso BMI" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -411,15 +411,15 @@ msgstr "" msgid "Head Circumference entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -430,8 +430,8 @@ msgstr "Altezza" msgid "Height entry" msgstr "Ingresso in altezza" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -440,7 +440,7 @@ msgstr "Ingresso in altezza" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -450,8 +450,8 @@ msgstr "Temperatura" msgid "Temperature reading" msgstr "Lettura temperatura" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -459,9 +459,9 @@ msgstr "Lettura temperatura" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Peso" @@ -483,7 +483,7 @@ msgid "Change" msgstr "Cambio" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -508,7 +508,7 @@ msgstr "Aggiungi Tummy Time" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Utente" @@ -757,7 +757,7 @@ msgstr "Email" msgid "Staff" msgstr "Staff" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Attivo" @@ -777,7 +777,7 @@ msgstr "" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -831,7 +831,7 @@ msgstr "" "Conosci di più e predici le necessità del tuo bimbo senza (troppo) " "indovinare usando Baby Buddy per tracciare —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1056,55 +1056,55 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Il nome non corrisponde con il nome del figlio." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." msgstr "" -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "La data non può essere nel futuro." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "La data di inizio deve essere prima della data di fine." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Durata troppo lunga." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Un'altra voce interseca il periodo specificato." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "La data non può essere nel futuro." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Colore" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Ultimo utilizzo" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1113,7 +1113,7 @@ msgstr "Ultimo utilizzo" msgid "Tags" msgstr "" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1125,33 +1125,39 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Data" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Nome" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Cognome" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Data di nascita" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Data di nascita" + +#: core/models.py:176 msgid "Slug" msgstr "Slug" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Immagine" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1159,51 +1165,51 @@ msgstr "Immagine" msgid "Time" msgstr "Orario" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Liquida" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Solida" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Nero" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Marrone" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Verde" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Giallo" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Quantità" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Ora d'inizio" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Ora di fine" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1211,71 +1217,83 @@ msgstr "Ora di fine" msgid "Duration" msgstr "Durata" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Latte Materno" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Latte Artificiale" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Latte Artificale 1" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Cibo solido" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Tipo" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Biberon" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Seno Sinistro" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Seno Destro" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Entrambi i seni" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Imboccato dai genitori" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Mangia da solo" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Metodo" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Pisolino" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Nome" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Timer" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1284,23 +1302,15 @@ msgstr "Timer" msgid "Timers" msgstr "Timers" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Timer #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Traguardo" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Eliminare una voce BMI" @@ -1468,7 +1478,7 @@ msgstr "Aggiungi una nota" msgid "Add Note" msgstr "Aggiungi Nota" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Nessuna nota trovata." @@ -1714,72 +1724,68 @@ msgstr "oggi" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 giorni" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "%(days_ago)s giorni fa" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "oggi" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "ieri" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "Tummy Time iniziato per %(child)s!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "Tummy Time terminato per %(child)s!" -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s ha preso sonno." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s sveglio." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Quantità: %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s ha iniziato il pasto." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s ha terminato il pasto." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s ha il %(type)s pannolino da cambiare." -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1870,6 +1876,12 @@ msgstr "liquida" msgid "solid" msgstr "solida" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Cambi" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Ultimo Pasto" @@ -1982,66 +1994,65 @@ msgid "Child actions" msgstr "Azioni Bimbo" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Report" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Durata media riposini" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Media riposini al giorno" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Durata media riposi" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Durata media bimbo sveglio" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Cambiamento di peso settimanale" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Variazione di altezza a settimana" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Variazione della circonferenza della testa a settimana" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "Variazione di BMI a settimana" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Frequenza del cambio del pannolino (ultimi 3 giorni)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Frequenza del cambio del pannolino (ultime 2 settimane)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Frequenza cambio pannolino" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Frequenza pasti (ultimi 3 giorni)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Frequenza pasti (ultime 2 settimane)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Frequenza pasti" @@ -2134,7 +2145,27 @@ msgstr "" msgid "Head Circumference" msgstr "" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Altezza" @@ -2187,26 +2218,6 @@ msgstr "Durata totale Tummy Time" msgid "Total duration (minutes)" msgstr "Durata totale (in minuti)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Peso" @@ -2217,7 +2228,7 @@ msgid "Diaper Amounts" msgstr "Numero di pannolini" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2245,7 +2256,7 @@ msgid "Average Feeding Durations" msgstr "Durata Media Pasti" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2271,30 +2282,38 @@ msgid "Feeding Durations (Average)" msgstr "Durata Pasti (Media)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Quantità di estrazione del seno" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Modello Riposo" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Riposi totali" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Durata totale Tummy Time" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2303,6 +2322,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Durata totale Tummy Time" +#~ msgid "0 days" +#~ msgstr "0 giorni" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "%(key)s giorni fa" diff --git a/locale/nb/LC_MESSAGES/django.mo b/locale/nb/LC_MESSAGES/django.mo index 7b267941..828fbb90 100644 Binary files a/locale/nb/LC_MESSAGES/django.mo and b/locale/nb/LC_MESSAGES/django.mo differ diff --git a/locale/nb/LC_MESSAGES/django.po b/locale/nb/LC_MESSAGES/django.po index 08d18f52..3b5118af 100644 --- a/locale/nb/LC_MESSAGES/django.po +++ b/locale/nb/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -269,20 +269,20 @@ msgid "Error: Some fields have errors. See below for details." msgstr "" " Feil: Feil funnet på noen felt. Se nedenfor for detaljer." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Bleieskift" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Mating" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -295,15 +295,15 @@ msgid "Pumping" msgstr "Pumping" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Notat" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -313,8 +313,8 @@ msgstr "Søvn" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -332,7 +332,7 @@ msgid "Timeline" msgstr "TIdslinje" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -342,10 +342,10 @@ msgstr "TIdslinje" msgid "Children" msgstr "Barn" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -361,10 +361,10 @@ msgstr "Barn" msgid "Child" msgstr "Barn" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -374,8 +374,8 @@ msgstr "Notater" msgid "Measurements" msgstr "Målinger" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -389,8 +389,8 @@ msgstr "BMI" msgid "BMI entry" msgstr "Legg til BMI" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -409,15 +409,15 @@ msgstr "Hodeomkrets" msgid "Head Circumference entry" msgstr "Legg til hodeomkrets" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -428,8 +428,8 @@ msgstr "Høyde" msgid "Height entry" msgstr "Legg til høye" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -438,7 +438,7 @@ msgstr "Legg til høye" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -448,8 +448,8 @@ msgstr "Temperatur" msgid "Temperature reading" msgstr "Temperaturavlesning" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -457,9 +457,9 @@ msgstr "Temperaturavlesning" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Vekt" @@ -481,7 +481,7 @@ msgid "Change" msgstr "Bleiebytte" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -506,7 +506,7 @@ msgstr "Observert mageleie oppføring" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Bruker" @@ -755,7 +755,7 @@ msgstr "Epost" msgid "Staff" msgstr "Personale" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Aktive" @@ -775,7 +775,7 @@ msgstr "Låst" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -829,7 +829,7 @@ msgstr "" "Lær om, og forutse, barnets behov uten (så mye) gjettearbeid ved å " "bruke Baby Buddy —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1059,15 +1059,15 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "Tagg" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Navnet samsvarer ikke med barnets navn" -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." @@ -1075,41 +1075,41 @@ msgstr "" "Klikk på taggene (+) eller for å fjerne (-) tagger, eller brukt " "tekstredigereren for å opprette nye tagger." -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "Dato kan ikke være i fremtiden." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "Starttid må komme før sluttid." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Varigheten er for lang." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "En annen oppføring kolliderer med den satte tidsperioden." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Dato/tid kan ikke være i fremtiden." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Farge" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Sist brukt" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1118,7 +1118,7 @@ msgstr "Sist brukt" msgid "Tags" msgstr "Tagger" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1130,33 +1130,39 @@ msgstr "Tagger" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Dato" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Fornavn" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Etternavn" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Fødselsdato" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Fødselsdato" + +#: core/models.py:176 msgid "Slug" msgstr "Slug" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Bilde" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1164,51 +1170,51 @@ msgstr "Bilde" msgid "Time" msgstr "Tid" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Våt" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Fast" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Svart" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Brun" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Grønn" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Gul" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Mengde" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Startid" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Sluttid" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1216,71 +1222,83 @@ msgstr "Sluttid" msgid "Duration" msgstr "Varighet" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Brystmelk" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Sammensetning" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Forsterket morsmelk" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Fast føde" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Type" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Flaske" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Venstre bryst" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Høyre bryst" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Begge bryst" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Foreldrestyrt mating" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Selvstyrt mating" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Metode" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Lur" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Navn" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Tidtaker" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1289,23 +1307,15 @@ msgstr "Tidtaker" msgid "Timers" msgstr "Tidtakere" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Tidtaker #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Milepæl" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Slett BMI-oppføring" @@ -1471,7 +1481,7 @@ msgstr "Legg til notat" msgid "Add Note" msgstr "Legg til notat" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Ingen notat funnet." @@ -1717,72 +1727,68 @@ msgstr "I dag" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 dager" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "%(days_ago)s dager siden" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "i dag" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "i går" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s har startet magetid!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s avsluttet magetid." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s sovnet." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s våknet." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Mengde: %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s startet mating." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s avsluttet mating." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s har hatt en %(type)s bleieskift." -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1873,6 +1879,12 @@ msgstr "våt" msgid "solid" msgstr "fast" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Bleiebytter" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Sist mating" @@ -1985,66 +1997,65 @@ msgid "Child actions" msgstr "Barnets handlinger" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Rapporter" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Gjennomsnitt hvilelengde" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Gjennomsnitt hvilelengde per dag" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Gjennomsnitt søvnlengde" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Gjennomsnitt våken" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Vektendring per uke" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Høydeendring per uke" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Hodeomkrets per uke" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "BMI-endring per uke" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Bleieskiftfrekvens (siste 3 dager)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Bleieskiftfrekvens (siste 2 uker)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Bleieskiftfrekvens" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Matefrekvens (siste 3 dager)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Matefrekvens (siste 2 uker)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Matfrekvens" @@ -2137,7 +2148,27 @@ msgstr "" msgid "Head Circumference" msgstr "Hodeomkrets" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Høyde" @@ -2190,26 +2221,6 @@ msgstr "Total varighet magetid" msgid "Total duration (minutes)" msgstr "Total varighet (i minutter)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Vekt" @@ -2220,7 +2231,7 @@ msgid "Diaper Amounts" msgstr "Bleiemengde" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2248,7 +2259,7 @@ msgid "Average Feeding Durations" msgstr "Gjennomsnitt varighet på mating" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2274,30 +2285,38 @@ msgid "Feeding Durations (Average)" msgstr "Tid brukt på mating (gjennomsnitt)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Brystpumpemengde" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Søvnmønster" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Total søvn" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Magetid totalt" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2306,6 +2325,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Varighet for magetid totalt" +#~ msgid "0 days" +#~ msgstr "0 dager" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "%(key)s dager siden" diff --git a/locale/nl/LC_MESSAGES/django.mo b/locale/nl/LC_MESSAGES/django.mo index 5d1a7ed5..7303321a 100644 Binary files a/locale/nl/LC_MESSAGES/django.mo and b/locale/nl/LC_MESSAGES/django.mo differ diff --git a/locale/nl/LC_MESSAGES/django.po b/locale/nl/LC_MESSAGES/django.po index 9ac6078e..492035b8 100644 --- a/locale/nl/LC_MESSAGES/django.po +++ b/locale/nl/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -275,20 +275,20 @@ msgstr "" "Fout: Sommige velden bevatten fouten. Kijk hieronder voor " "details." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Luierverschoning" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Voeding" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -301,15 +301,15 @@ msgid "Pumping" msgstr "Afkolven" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Notitie" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -319,8 +319,8 @@ msgstr "Slaap" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -338,7 +338,7 @@ msgid "Timeline" msgstr "Tijdslijn" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -348,10 +348,10 @@ msgstr "Tijdslijn" msgid "Children" msgstr "Kinderen" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -367,10 +367,10 @@ msgstr "Kinderen" msgid "Child" msgstr "Kind" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -380,8 +380,8 @@ msgstr "Notities" msgid "Measurements" msgstr "Metingen" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -395,8 +395,8 @@ msgstr "BMI" msgid "BMI entry" msgstr "BMI invoer" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -415,15 +415,15 @@ msgstr "Hoofd omtrek" msgid "Head Circumference entry" msgstr "Hoofd omtrek invoer" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -434,8 +434,8 @@ msgstr "Lengte" msgid "Height entry" msgstr "Lengte invoer" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -444,7 +444,7 @@ msgstr "Lengte invoer" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -454,8 +454,8 @@ msgstr "Temperatuur" msgid "Temperature reading" msgstr "Temperatuurmeting" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -463,9 +463,9 @@ msgstr "Temperatuurmeting" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Gewicht" @@ -487,7 +487,7 @@ msgid "Change" msgstr "Verschoning" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -512,7 +512,7 @@ msgstr "Buikliggen invoer" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Gebruiker" @@ -761,7 +761,7 @@ msgstr "Email" msgid "Staff" msgstr "Personeel" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Actief" @@ -781,7 +781,7 @@ msgstr "Vergrendeld" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -836,7 +836,7 @@ msgstr "" "mogelijk) gokwerk door het gebruiken van Baby Buddy om alles te loggen " "—" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1075,15 +1075,15 @@ msgstr "" "Dutje start min. waarde %(min)s moet kleiner zijn dan dutje start min. " "waarde %(max)s." -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "Label" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Naam komt niet overeen met de naam van het kind." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." @@ -1091,41 +1091,41 @@ msgstr "" "Klik op het label om deze toe te voegen (+) of te verwijderen (-) of gebruik " "de tekstverwerker om nieuwe labels te maken." -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "Datum kan niet in de toekomst zijn." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "Start tijd moet voor de eind tijd zijn." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Tijdsduur is te lang." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Een andere invoer overlapt met deze tijdsperiode." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Datum/tijd kan niet in de toekomst zijn." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Kleur" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Laatst gebruikt" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1134,7 +1134,7 @@ msgstr "Laatst gebruikt" msgid "Tags" msgstr "Labels" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1146,33 +1146,39 @@ msgstr "Labels" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Datum" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Voornaam" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Achternaam" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Geboortedatum" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Geboortedatum" + +#: core/models.py:176 msgid "Slug" msgstr "Slug" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Afbeelding" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1180,51 +1186,51 @@ msgstr "Afbeelding" msgid "Time" msgstr "Tijd" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Nat" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Vast" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Zwart" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Bruin" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Groen" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Geel" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Hoeveelheid" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Starttijd" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Eindtijd" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1232,71 +1238,83 @@ msgstr "Eindtijd" msgid "Duration" msgstr "Tijdsduur" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Borstvoeding" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Kunstvoeding" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Verrijkte moedermelk" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Vast voedsel" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Type" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Fles" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Linkerborst" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Rechterborst" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Beide borsten" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Ouder voeding" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Zelf voeding" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Methode" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Dutje" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "Dutje instellingen" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Naam" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Timer" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1305,23 +1323,15 @@ msgstr "Timer" msgid "Timers" msgstr "Timers" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Timer #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Mijlpaal" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Verwijder een BMI invoer" @@ -1487,7 +1497,7 @@ msgstr "Voeg een notitie toe" msgid "Add Note" msgstr "Voeg notitie toe" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Geen notities gevonden." @@ -1733,72 +1743,68 @@ msgstr "Vandaag" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 dagen" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "%(days_ago)s dagen geleden" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "vandaag" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "gisteren" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s is begonnen met buikligging!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s is gestopt met buikligging." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s is in slaap gevallen." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s is wakker geworden." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Hoeveelheid: %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s is begonnen met eten." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s is gestopt met eten." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s onderging een %(type)s luierverschoning." -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "Temperatuur: %(temperature).0f" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "%(child)s hebben een temperatuur meting gehad." @@ -1889,6 +1895,12 @@ msgstr "nat" msgid "solid" msgstr "vast" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Verschoningen" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Laatste maaltijd" @@ -2001,66 +2013,65 @@ msgid "Child actions" msgstr "Kind acties" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Rapporten" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Gemiddelde duur dutjes" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Gemiddelde dutjes per dag" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Gemiddelde slaapduur" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Gemiddeld wakker duur" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Gewichtsverandering per week" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Lengte verandering per week" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Hoofdomtrek verandering per week" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "BMI verandering per week" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Luierverschoningsfrequentie (afgelopen 3 dagen)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Luierverschoningsfrequentie (afgelopen 2 weken)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Luierverschoningsfrequentie" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Voedingsfrequenties (afgelopen 3 dagen)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Voedingsfrequenties (afgelopen 2 weken)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Eetfrequentie" @@ -2153,7 +2164,27 @@ msgstr "" msgid "Head Circumference" msgstr "Hoofdomtrek" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Lengte" @@ -2206,26 +2237,6 @@ msgstr "Totale tijdsduur Buikliggen" msgid "Total duration (minutes)" msgstr "Totale tijdsduur (minuten)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Gewicht" @@ -2236,7 +2247,7 @@ msgid "Diaper Amounts" msgstr "Aantal luiers" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2264,7 +2275,7 @@ msgid "Average Feeding Durations" msgstr "Gemiddelde voedingsduur" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2290,30 +2301,38 @@ msgid "Feeding Durations (Average)" msgstr "Etensduur (gemiddelde)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Afkolf hoeveelheden" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Slaappatroon" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Totaal Slaap" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Duur Buikliggen (Som)" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2322,6 +2341,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Totale tijdsduur Buikliggen" +#~ msgid "0 days" +#~ msgstr "0 dagen" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "%(key)s dagen geleden" diff --git a/locale/pl/LC_MESSAGES/django.po b/locale/pl/LC_MESSAGES/django.po index b89051d7..d410da50 100644 --- a/locale/pl/LC_MESSAGES/django.po +++ b/locale/pl/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -268,20 +268,20 @@ msgstr "" "Błąd: Niektóre pola zawierają błędy. Spójrz poniżej po " "więcej szczegółów." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Zmiana pieluchy" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Karmienie" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -294,15 +294,15 @@ msgid "Pumping" msgstr "Odciągniecie" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Notatka" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -312,8 +312,8 @@ msgstr "Sen" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -331,7 +331,7 @@ msgid "Timeline" msgstr "Oś czasu" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -341,10 +341,10 @@ msgstr "Oś czasu" msgid "Children" msgstr "Dzieci" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -360,10 +360,10 @@ msgstr "Dzieci" msgid "Child" msgstr "Dziecko" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -373,8 +373,8 @@ msgstr "Notatki" msgid "Measurements" msgstr "Pomiary" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -388,8 +388,8 @@ msgstr "Indeks BMI" msgid "BMI entry" msgstr "Wpis indeksu BMI" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -408,15 +408,15 @@ msgstr "Średnica głowy" msgid "Head Circumference entry" msgstr "Wpis średnicy głowy" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -427,8 +427,8 @@ msgstr "Wzrost" msgid "Height entry" msgstr "Wpis wzrostu" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -437,7 +437,7 @@ msgstr "Wpis wzrostu" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -447,8 +447,8 @@ msgstr "Temperatura" msgid "Temperature reading" msgstr "Odczyt temperatury" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -456,9 +456,9 @@ msgstr "Odczyt temperatury" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Waga" @@ -480,7 +480,7 @@ msgid "Change" msgstr "Zmiana" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -505,7 +505,7 @@ msgstr "Czas na brzuszku" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Użytkownik" @@ -751,7 +751,7 @@ msgstr "Email" msgid "Staff" msgstr "Zespół" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Aktywny" @@ -771,7 +771,7 @@ msgstr "Zablokowane" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -825,7 +825,7 @@ msgstr "" "Poznaj i przewiduj potrzeby dziecka bez (tak dużo) zgadywania, " "używając Baby Buddy do śledzenia —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1052,15 +1052,15 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "Tag" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Imię nie pasuje do imienia dziecka" -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." @@ -1068,41 +1068,41 @@ msgstr "" "Kliknij na tagi by dodać (+) lub usunąć (-) tagi lub użyj edytora tekstu by " "stworzyć nowe tagi." -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "Data nie może być z przyszłości" -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "Czas startu musi być przed końcem czasu" -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Czas trwania zbyt długi." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Kolejny wpis przecina określony okres czasu" -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Data/czas nie mogą być z przyszłości" -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Kolor" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Ostatnio używane" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1111,7 +1111,7 @@ msgstr "Ostatnio używane" msgid "Tags" msgstr "Tagi" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1123,33 +1123,39 @@ msgstr "Tagi" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Data" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Imię" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Nazwisko" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Data urodzenia" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Data urodzenia" + +#: core/models.py:176 msgid "Slug" msgstr "Śliskość" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Zdjęcie" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1157,51 +1163,51 @@ msgstr "Zdjęcie" msgid "Time" msgstr "Czas" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Mokra" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Stała" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Czarne" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Brązowe" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Zielone" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Żółte" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Ilość" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Czas startu" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Czas końca" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1209,71 +1215,83 @@ msgstr "Czas końca" msgid "Duration" msgstr "Czas trwania" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Mleko matki" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Mleko w proszku" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Wzbogacone mleko matki" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Pokarm stały" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Typ" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Butelka" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Lewa pierś" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Prawa pierś" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Obie piersi" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Karmione przez rodzica" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Samodzielne jedzenie" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Metoda" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Drzemka" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "Ustawienia drzemki" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Nazwa" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Stoper" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1282,23 +1300,15 @@ msgstr "Stoper" msgid "Timers" msgstr "Stopery" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Stoper #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Kamień milowy" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Usuń wpis indeksu BMI" @@ -1464,7 +1474,7 @@ msgstr "Dodaj notatkę" msgid "Add Note" msgstr "Dodaj notatkę" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Brak notatek" @@ -1710,72 +1720,68 @@ msgstr "Dzisiaj" msgid "{}, {}" msgstr "" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "%(days_ago)s dni temu" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "Dzisiaj" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "Wczoraj" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s zaczął czas leżakowania" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s zakończył czas leżakowania" -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s zasnęło" -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s wstał/a" -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s rozpoczęto karmienie" -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s ukończono karmienie" -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s miał %(type)s zmianę pieluchy" -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1872,6 +1878,12 @@ msgstr "mokra" msgid "solid" msgstr "stała" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Zmiany" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Ostatnie karmienie" @@ -1993,66 +2005,65 @@ msgid "Child actions" msgstr "Akcje dzieci" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Zgłoszeń" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Średni czas drzemki" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Średnia ilość drzemek dziennie" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Średni czas spania" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Średni czas wstawania" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Zmiana wagi w ciągu tygodnia" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Zmiana wzrostu w ciągu tygodnia" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Zmiana rozmiaru głowy w ciągu tygodnia" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "Zmiana indeksu BMI w ciągu tygodnia" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Częstotliwość zmiany pieluchy (ostatnie 3 dni)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Częstotliwość zmiany pieluchy (w ostatnich dwóch tygodniach)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Częstotliwość zmiany pieluchy" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Częstotliwość karmienia (ostatnie 3 dni)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Częstotliwość karmienia (ostatnie 2 tygodnie)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Częstotliwość karmienia" @@ -2145,7 +2156,27 @@ msgstr "" msgid "Head Circumference" msgstr "Średnica głowy" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Wzrost" @@ -2198,26 +2229,6 @@ msgstr "Całkowity czas leżenia na brzuszku" msgid "Total duration (minutes)" msgstr "Całkowita długość (minuty)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Waga" @@ -2228,7 +2239,7 @@ msgid "Diaper Amounts" msgstr "Zmiana pieluchy" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2256,7 +2267,7 @@ msgid "Average Feeding Durations" msgstr "Średni czas karmienia" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2282,30 +2293,38 @@ msgid "Feeding Durations (Average)" msgstr "Czas karmienia (średni)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Ilość odciągnięć" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Wzór snu" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Snu łącznie" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" diff --git a/locale/pt/LC_MESSAGES/django.mo b/locale/pt/LC_MESSAGES/django.mo index 73e4892c..ae4eb9af 100644 Binary files a/locale/pt/LC_MESSAGES/django.mo and b/locale/pt/LC_MESSAGES/django.mo differ diff --git a/locale/pt/LC_MESSAGES/django.po b/locale/pt/LC_MESSAGES/django.po index 097cb433..e507f4ac 100644 --- a/locale/pt/LC_MESSAGES/django.po +++ b/locale/pt/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -268,20 +268,20 @@ msgid "Error: Some fields have errors. See below for details." msgstr "" "Erro: Alguns campos têm erros. Veja abaixo, para detalhes" -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Mudança de Fralda" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Alimentação" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -294,15 +294,15 @@ msgid "Pumping" msgstr "Extração com Bomba" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Nota" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -312,8 +312,8 @@ msgstr "Sono" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -331,7 +331,7 @@ msgid "Timeline" msgstr "Linha temporal" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -341,10 +341,10 @@ msgstr "Linha temporal" msgid "Children" msgstr "Crianças" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -360,10 +360,10 @@ msgstr "Crianças" msgid "Child" msgstr "Criança" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -373,8 +373,8 @@ msgstr "Notas" msgid "Measurements" msgstr "Medidas" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -388,8 +388,8 @@ msgstr "Índice de Massa Corporal" msgid "BMI entry" msgstr "Registo Índice de Massa Corporal" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -408,15 +408,15 @@ msgstr "Circunferência da Cabeça" msgid "Head Circumference entry" msgstr "Registo Circunferência da Cabeça" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -427,8 +427,8 @@ msgstr "Altura" msgid "Height entry" msgstr "Registo Altura" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -437,7 +437,7 @@ msgstr "Registo Altura" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -447,8 +447,8 @@ msgstr "Temperatura" msgid "Temperature reading" msgstr "Leitura de temperatura" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -456,9 +456,9 @@ msgstr "Leitura de temperatura" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Peso" @@ -480,7 +480,7 @@ msgid "Change" msgstr "Editar" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -505,7 +505,7 @@ msgstr "Entrada de Tempo de Barriga para Baixo" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Utilizador" @@ -754,7 +754,7 @@ msgstr "Email" msgid "Staff" msgstr "Staff" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Activo" @@ -774,7 +774,7 @@ msgstr "Bloqueado" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -828,7 +828,7 @@ msgstr "" "Aprenda e preveja as necessidades do(s) bebé(s) sem (muita) " "adivinhação utilizando o Baby Buddy para contorlar —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1055,15 +1055,15 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "Tag" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Nome não coincide com o nome da criança." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." @@ -1071,41 +1071,41 @@ msgstr "" "Clica nas tags para adicionar (+) ou remover (-) tags ou use o editor de " "texto para criar novas tags." -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "Data não pode ser no futuro." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "Hora de início deve ser antes da hora do final" -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Duração demasiado longa." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Outra entrada intercepta o período de tempo definido." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Data/hora não podem ser no futuro." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Cor" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Usado pela última vez" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1114,7 +1114,7 @@ msgstr "Usado pela última vez" msgid "Tags" msgstr "Tags" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1126,33 +1126,39 @@ msgstr "Tags" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Data" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Primeiro nome" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Último nome" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Data de nascimento" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Data de nascimento" + +#: core/models.py:176 msgid "Slug" msgstr "Slug" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Imagem" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1160,51 +1166,51 @@ msgstr "Imagem" msgid "Time" msgstr "Tempo" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Molhado" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Sólido" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Preto" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Castanho" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Verde" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Amarelo" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Quantidade" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Hora de início" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Hora de fim" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1212,71 +1218,83 @@ msgstr "Hora de fim" msgid "Duration" msgstr "Duração" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Leite materno" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Fórmula" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Leite materno fortificado" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Comida sólida" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Tipo" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Biberão" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Mama esquerda" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Mama direita" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Ambas as mamas" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Alimentado pelos pais" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Alimentado(a) por si próprio(a)" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Método" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Sesta" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Nome" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Temporizador" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1285,23 +1303,15 @@ msgstr "Temporizador" msgid "Timers" msgstr "Temporizadores" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Temporizador #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Meta" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Apagar um registo de Índice de Massa Corporal" @@ -1467,7 +1477,7 @@ msgstr "Adicionar uma Nota" msgid "Add Note" msgstr "Adicionar Nota" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Não foram encontradas notas" @@ -1713,72 +1723,68 @@ msgstr "Hoje" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 dias" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "%(days_ago)s dias atrás" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "hoje" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "ontem" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s começou tempo de barriga para baixo!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s terminou tempo de barriga para baixo!" -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s adormeceu." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s acordou." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Quantidade: %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s começou a alimentar-se." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s terminou de se alimentar." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s mudou a fralda %(type)s." -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1869,6 +1875,12 @@ msgstr "molhado" msgid "solid" msgstr "sólido" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Mudanças de fralda" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Última Alimentação" @@ -1981,66 +1993,65 @@ msgid "Child actions" msgstr "Acções da criança" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Relatórios" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Média de duração das sestas" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Média de sestas por dia" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Média de duração dos sonos" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Média de tempo acordado" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Alterações de peso por semana" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Mudanças de altura por semana" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Alterações da Circunferência da Cabeça por semana" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "Alterações Índice de Massa Corporal por semana" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Frequência de troca de fraldas (últimos 3 dias)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Frequência de troca de fraldas (últimas 2 semanas)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Frequência da mudança de fralda" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Frequência de alimentação (últimos 3 dias)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Frequência de alimentação (últimas 2 semanas)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Frequência de alimentação" @@ -2133,7 +2144,27 @@ msgstr "" msgid "Head Circumference" msgstr "Circunferência da Cabeça" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Altura" @@ -2186,26 +2217,6 @@ msgstr "Duranção do tempo de barriga" msgid "Total duration (minutes)" msgstr "Duração Total (minutos)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Peso" @@ -2216,7 +2227,7 @@ msgid "Diaper Amounts" msgstr "Quantidade de Fraldas" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2244,7 +2255,7 @@ msgid "Average Feeding Durations" msgstr "Média de Duração das Alimentações" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2270,30 +2281,38 @@ msgid "Feeding Durations (Average)" msgstr "Durações das Alimentações (Média)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Quantidades de extração de mama" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Padrões de Sono" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Totais de Sono" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Duração do tempo de barriga (Soma)" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2302,6 +2321,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Duranção do tempo de barriga" +#~ msgid "0 days" +#~ msgstr "0 dias" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "%(key)s dias atrás" diff --git a/locale/ru/LC_MESSAGES/django.mo b/locale/ru/LC_MESSAGES/django.mo index e4bfaf4e..c3686424 100644 Binary files a/locale/ru/LC_MESSAGES/django.mo and b/locale/ru/LC_MESSAGES/django.mo differ diff --git a/locale/ru/LC_MESSAGES/django.po b/locale/ru/LC_MESSAGES/django.po index 07ab247b..4609b42e 100644 --- a/locale/ru/LC_MESSAGES/django.po +++ b/locale/ru/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -270,20 +270,20 @@ msgstr "" "Ошибка: Некоторые поля заполнены не корректно. Подробности " "ниже." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Смена подгузника" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Поел" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -296,15 +296,15 @@ msgid "Pumping" msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Заметка" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -314,8 +314,8 @@ msgstr "Сон" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -333,7 +333,7 @@ msgid "Timeline" msgstr "Лента событий" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -343,10 +343,10 @@ msgstr "Лента событий" msgid "Children" msgstr "Дети" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -362,10 +362,10 @@ msgstr "Дети" msgid "Child" msgstr "Ребёнок" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -375,8 +375,8 @@ msgstr "Заметки" msgid "Measurements" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -390,8 +390,8 @@ msgstr "" msgid "BMI entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -410,15 +410,15 @@ msgstr "" msgid "Head Circumference entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -429,8 +429,8 @@ msgstr "" msgid "Height entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -439,7 +439,7 @@ msgstr "" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -449,8 +449,8 @@ msgstr "Температура" msgid "Temperature reading" msgstr "Значение температуры" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -458,9 +458,9 @@ msgstr "Значение температуры" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Вес" @@ -482,7 +482,7 @@ msgid "Change" msgstr "Переоделся" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -507,7 +507,7 @@ msgstr "Полежал на животике" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Пользователь" @@ -756,7 +756,7 @@ msgstr "Email" msgid "Staff" msgstr "Сотрудник" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Активный" @@ -776,7 +776,7 @@ msgstr "" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -828,7 +828,7 @@ msgid "" "by using Baby Buddy to track —" msgstr "" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1053,55 +1053,55 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Имя не совпадает с именем ребёнка." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." msgstr "" -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "Дата не может быть в будущем." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "" -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Продолжительность слишком большая." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Другая запись пересекает указанный промежуток времени." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Дата/время не могут быть из будущего." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Цвет" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1110,7 +1110,7 @@ msgstr "" msgid "Tags" msgstr "" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1122,33 +1122,39 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Дата" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Имя" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Фамилия" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Дата рождения" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Дата рождения" + +#: core/models.py:176 msgid "Slug" msgstr "" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Изображение" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1156,51 +1162,51 @@ msgstr "Изображение" msgid "Time" msgstr "Время" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Жидкий" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Твёрдый" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Черный" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Коричниевый" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Зелёный" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Желтый" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Сколько" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Время начала" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Время конца" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1208,71 +1214,83 @@ msgstr "Время конца" msgid "Duration" msgstr "Продолжительность" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Грудное молоко" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Формула" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Обогащенное грудное молоко" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Твёрдая пища" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Тип" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Бутылочка" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Левая грудь" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Правая грудь" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Обе груди" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Кормил родитель" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Кушал сам" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Метод" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Поспал" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Имя" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Таймер" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1281,23 +1299,15 @@ msgstr "Таймер" msgid "Timers" msgstr "Таймеры" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Таймер №{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Достижение" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "" @@ -1463,7 +1473,7 @@ msgstr "Добавить заметку" msgid "Add Note" msgstr "Добавить заметку" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Не найдено заметок." @@ -1709,72 +1719,68 @@ msgstr "Сегодня" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 дней" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "%(days_ago)s дней тому назад" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "сегодня" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "вчера" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s лёг на животик!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s закончил лежать на животике." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s уснул." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s проснулся." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Колличество: %(amount).0f " -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s начал кушать." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s закончил кушать." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "" -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1871,6 +1877,12 @@ msgstr "жидкий" msgid "solid" msgstr "твёрдый" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Переодевания" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Последний раз кушал" @@ -1993,66 +2005,65 @@ msgid "Child actions" msgstr "Действия" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Отчеты" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Средняя продолжительность сна" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Спит в день в среднем" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Средняя продолжительность сна" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Средняя продолжительность бодрствования" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Изменение веса за неделю" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Частота замены подгузников" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Частота кормлений (последние 3 дня)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Частота кормлений (последние 2 недели)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Частота кормлений" @@ -2145,7 +2156,27 @@ msgstr "" msgid "Head Circumference" msgstr "" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "" @@ -2198,26 +2229,6 @@ msgstr "Сколько лежал на животике" msgid "Total duration (minutes)" msgstr "Продолжительность итого (минуты)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Вес" @@ -2228,7 +2239,7 @@ msgid "Diaper Amounts" msgstr "Колличетсво подгузников" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2256,7 +2267,7 @@ msgid "Average Feeding Durations" msgstr "Средняя продолжительность кормления" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2282,30 +2293,38 @@ msgid "Feeding Durations (Average)" msgstr "Продолжительность кормления (Средняя)" #: reports/templates/reports/report_list.html:29 -msgid "Pumping Amounts" +msgid "WHO Height Percentiles for Boys in cm" msgstr "" #: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 +msgid "Pumping Amounts" +msgstr "" + +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Распорядок сна" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Сколько спал" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Время на животике (суммарно)" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2314,6 +2333,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Сколько лежал на животике" +#~ msgid "0 days" +#~ msgstr "0 дней" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "%(key)s дней тому назад" diff --git a/locale/sv/LC_MESSAGES/django.mo b/locale/sv/LC_MESSAGES/django.mo index 969ea134..dd13f062 100644 Binary files a/locale/sv/LC_MESSAGES/django.mo and b/locale/sv/LC_MESSAGES/django.mo differ diff --git a/locale/sv/LC_MESSAGES/django.po b/locale/sv/LC_MESSAGES/django.po index afb09f98..75166a4b 100644 --- a/locale/sv/LC_MESSAGES/django.po +++ b/locale/sv/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -276,20 +276,20 @@ msgstr "" "Fel: Vissa fält innehåller felaktigheter. Se nedan för " "detaljer." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Blöjbyte" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Matning" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -302,15 +302,15 @@ msgid "Pumping" msgstr "Pumpning" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Anteckning" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -320,8 +320,8 @@ msgstr "Sömn" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -339,7 +339,7 @@ msgid "Timeline" msgstr "Tidslinje" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -349,10 +349,10 @@ msgstr "Tidslinje" msgid "Children" msgstr "Barn" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -368,10 +368,10 @@ msgstr "Barn" msgid "Child" msgstr "Barnet" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -381,8 +381,8 @@ msgstr "Anteckningar" msgid "Measurements" msgstr "Mätningar" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -396,8 +396,8 @@ msgstr "BMI" msgid "BMI entry" msgstr "BMI-inlägg" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -416,15 +416,15 @@ msgstr "Omkrets Huvud" msgid "Head Circumference entry" msgstr "Huvudomkrets-tillägg" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -435,8 +435,8 @@ msgstr "Längd" msgid "Height entry" msgstr "Längd-inlägg" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -445,7 +445,7 @@ msgstr "Längd-inlägg" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -455,8 +455,8 @@ msgstr "Temperatur" msgid "Temperature reading" msgstr "Temperaturavläsning" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -464,9 +464,9 @@ msgstr "Temperaturavläsning" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Vikt" @@ -488,7 +488,7 @@ msgid "Change" msgstr "Ändring" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -513,7 +513,7 @@ msgstr "Magläge-inlägg" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Användare" @@ -762,7 +762,7 @@ msgstr "E-post" msgid "Staff" msgstr "Personal" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Aktiv" @@ -782,7 +782,7 @@ msgstr "Låst" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -836,7 +836,7 @@ msgstr "" "Lär dig om och förutsäga barnets behov utan (så mycket) " "gissningsarbete genom att använda Baby Buddy för att spåra —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1070,15 +1070,15 @@ msgstr "" "Tupplurens min. start-värde %(min)s måste vara mindre än tuppluren max. " "start-värde %(max)s." -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "Märke" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "Namnet stämmer inte överens med barnets namn." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." @@ -1086,41 +1086,41 @@ msgstr "" "Klicka på märkena för att lägga till (+) eller ta bort (-) eller använd en " "text-editor för att lägga till nya märken." -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "Datum kan inte sättas i framtiden." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "Starttid måste komma före sluttid." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Varaktigheten är för lång." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "En annan post korsar den angivna tidsperioden." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Datum / tid kan inte anges i framtiden." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Färg" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Senast använd" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1129,7 +1129,7 @@ msgstr "Senast använd" msgid "Tags" msgstr "Märken" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1141,33 +1141,39 @@ msgstr "Märken" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Datum" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Förnamn" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Efternamn" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Födelsedatum" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Födelsedatum" + +#: core/models.py:176 msgid "Slug" msgstr "Slöhet" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Bild" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1175,51 +1181,51 @@ msgstr "Bild" msgid "Time" msgstr "Tid" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Våt" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Fast" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Svart" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Brunt" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Grönt" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Gult" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Mängd" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Starttid" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Sluttid" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1227,71 +1233,83 @@ msgstr "Sluttid" msgid "Duration" msgstr "Längd" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Bröstmjölk" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Formula" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Bröstmjölk" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Fast föda" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Typ" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Flaska" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Vänstra bröstet" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Högra bröstet" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Båda brösten" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Föräldramatad" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Självmatad" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Metod" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Tupplur" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "Tupplurs-inställningar" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "Namn" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Timer" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1300,23 +1318,15 @@ msgstr "Timer" msgid "Timers" msgstr "Timers" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Timer #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Milstolpe" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "Radera ett BMI-inlägg" @@ -1483,7 +1493,7 @@ msgstr "Lägg till anteckning" msgid "Add Note" msgstr "Lägg till Anteckning" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Inga anteckningar funna." @@ -1729,72 +1739,68 @@ msgstr "Idag" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 dagar" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "%(days_ago)s dagar sedan" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "idag" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "igår" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s startade magträningsläge!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s avslutade magträningsläge." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s somnade." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s vaknade." -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Mängd: %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s började matas." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s slutade matas." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "%(child)s hade ett %(type)s blöjbyte." -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "Temperatur: %(temperature).0f" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "%(child)s hade en temperatur-avläsning." @@ -1885,6 +1891,12 @@ msgstr "våt" msgid "solid" msgstr "fast" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Ändringar" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Senaste matning" @@ -1997,66 +2009,65 @@ msgid "Child actions" msgstr "Barnåtgärder" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Rapporter" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Genomsnittlig tupplurslängd" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Genomsnittlig mängd tupplurer per dag" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Genomsnittlig sömnlängd" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Genomsnittlig vakentid" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Viktförändring per vecka" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Längdförändring per vecka" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Huvudomkretsförändring per vecka" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "BMI-förändring per vecka" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Blöjbytesfrekvens (senaste 3 dagarna)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Blöjbytesfrekvens (senaste 2 veckorna)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Blöjbytesfrekvens" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Matningsfrekvens (senaste 3 dagarna)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Matningsfrekvens (senaste 2 veckorna)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Matningsfrekvens" @@ -2149,7 +2160,27 @@ msgstr "" msgid "Head Circumference" msgstr "Huvudomkrets" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Längd" @@ -2202,26 +2233,6 @@ msgstr "Total varaktighet för magläge" msgid "Total duration (minutes)" msgstr "Total varaktighet (minuter)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Vikt" @@ -2232,7 +2243,7 @@ msgid "Diaper Amounts" msgstr "Blöjmängd" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2260,7 +2271,7 @@ msgid "Average Feeding Durations" msgstr "Genomsnittlig matningsvaraktighet" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2286,30 +2297,38 @@ msgid "Feeding Durations (Average)" msgstr "Matningstid (Genomsnittlig)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Pumpningsmängder" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Sömnmönster" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Sömn totalt" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Magläge varaktighet (Totalt)" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2318,6 +2337,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Total varaktighet för magläge" +#~ msgid "0 days" +#~ msgstr "0 dagar" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "%(key)s dagar sedan" diff --git a/locale/tr/LC_MESSAGES/django.mo b/locale/tr/LC_MESSAGES/django.mo index 2ad03f4b..f70caafe 100644 Binary files a/locale/tr/LC_MESSAGES/django.mo and b/locale/tr/LC_MESSAGES/django.mo differ diff --git a/locale/tr/LC_MESSAGES/django.po b/locale/tr/LC_MESSAGES/django.po index 137f4a53..3c5c0286 100644 --- a/locale/tr/LC_MESSAGES/django.po +++ b/locale/tr/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-14 13:44+0000\n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -270,20 +270,20 @@ msgstr "" "Hata: Bazı alanlarda hata var. Detaylar için aşağıya " "bakınız." -#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:248 -#: core/models.py:252 +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 msgid "Diaper Change" msgstr "Bez Değişimi" #: babybuddy/templates/babybuddy/nav-dropdown.html:52 -#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:319 -#: core/models.py:323 core/templates/core/timer_detail.html:42 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 msgid "Feeding" msgstr "Beslenme" #: babybuddy/templates/babybuddy/nav-dropdown.html:58 -#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:455 -#: core/models.py:456 core/models.py:459 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 #: core/templates/core/pumping_confirm_delete.html:7 #: core/templates/core/pumping_form.html:13 #: core/templates/core/pumping_list.html:4 @@ -296,15 +296,15 @@ msgid "Pumping" msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:64 -#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:403 -#: core/models.py:414 core/models.py:418 core/templates/core/note_list.html:29 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 msgid "Note" msgstr "Not" #: babybuddy/templates/babybuddy/nav-dropdown.html:70 #: babybuddy/templates/babybuddy/nav-dropdown.html:285 -#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:499 -#: core/models.py:500 core/models.py:503 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 #: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 #: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 @@ -314,8 +314,8 @@ msgstr "Uyku" #: babybuddy/templates/babybuddy/nav-dropdown.html:76 #: babybuddy/templates/babybuddy/nav-dropdown.html:299 -#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:656 -#: core/models.py:657 core/models.py:660 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 #: core/templates/core/timer_detail.html:66 #: core/templates/core/tummytime_confirm_delete.html:7 #: core/templates/core/tummytime_form.html:13 @@ -333,7 +333,7 @@ msgid "Timeline" msgstr "Zaman çizelgesi" #: babybuddy/templates/babybuddy/nav-dropdown.html:112 -#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -343,10 +343,10 @@ msgstr "Zaman çizelgesi" msgid "Children" msgstr "Çocuklar" -#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:137 -#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:342 -#: core/models.py:374 core/models.py:401 core/models.py:427 core/models.py:475 -#: core/models.py:529 core/models.py:563 core/models.py:632 core/models.py:680 +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 #: core/templates/core/bmi_list.html:27 #: core/templates/core/diaperchange_list.html:27 #: core/templates/core/feeding_list.html:27 @@ -362,10 +362,10 @@ msgstr "Çocuklar" msgid "Child" msgstr "Çocuk" -#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:143 -#: core/models.py:240 core/models.py:311 core/models.py:350 core/models.py:380 -#: core/models.py:415 core/models.py:447 core/models.py:490 core/models.py:537 -#: core/models.py:686 core/templates/core/note_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 #: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 #: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 msgid "Notes" @@ -375,8 +375,8 @@ msgstr "Notlar" msgid "Measurements" msgstr "Ölçümler" -#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:139 -#: core/models.py:151 core/models.py:152 core/models.py:155 +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 #: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 @@ -390,8 +390,8 @@ msgstr "VKI" msgid "BMI entry" msgstr "VKI verisi" -#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:345 -#: core/models.py:358 core/models.py:359 core/models.py:362 +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 #: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_list.html:4 @@ -410,15 +410,15 @@ msgstr "Baş Çevresi" msgid "Head Circumference entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:376 -#: core/models.py:388 core/models.py:389 core/models.py:392 +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 #: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 #: core/templates/core/height_list.html:4 #: core/templates/core/height_list.html:7 #: core/templates/core/height_list.html:12 -#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19 -#: reports/graphs/height_change.py:30 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 #: reports/templates/reports/height_change.html:4 #: reports/templates/reports/height_change.html:9 #: reports/templates/reports/report_list.html:28 @@ -429,8 +429,8 @@ msgstr "Boy" msgid "Height entry" msgstr "Boy verisi" -#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:532 -#: core/models.py:545 core/models.py:546 core/models.py:549 +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 #: core/templates/core/temperature_confirm_delete.html:7 #: core/templates/core/temperature_form.html:13 #: core/templates/core/temperature_list.html:4 @@ -439,7 +439,7 @@ msgstr "Boy verisi" #: core/templates/core/temperature_list.html:29 #: reports/graphs/temperature_change.py:19 #: reports/graphs/temperature_change.py:29 -#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/report_list.html:34 #: reports/templates/reports/temperature_change.html:4 #: reports/templates/reports/temperature_change.html:9 msgid "Temperature" @@ -449,8 +449,8 @@ msgstr "Sıcaklık" msgid "Temperature reading" msgstr "Sıcaklık okuma" -#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:682 -#: core/models.py:694 core/models.py:695 core/models.py:698 +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 #: core/templates/core/weight_confirm_delete.html:7 #: core/templates/core/weight_form.html:13 #: core/templates/core/weight_list.html:4 @@ -458,9 +458,9 @@ msgstr "Sıcaklık okuma" #: core/templates/core/weight_list.html:12 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 #: reports/graphs/weight_change.py:87 -#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/report_list.html:36 #: reports/templates/reports/weight_change.html:4 -#: reports/templates/reports/weight_change.html:9 +#: reports/templates/reports/weight_change.html:10 msgid "Weight" msgstr "Ağırlık" @@ -482,7 +482,7 @@ msgid "Change" msgstr "Değişim" #: babybuddy/templates/babybuddy/nav-dropdown.html:258 -#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:320 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_list.html:4 @@ -507,7 +507,7 @@ msgstr "Karın Üstü Zaman Girişi" #: babybuddy/templates/babybuddy/user_add_device.html:7 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 -#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:576 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 #: core/templates/core/timer_list.html:29 msgid "User" msgstr "Kullanıcı" @@ -756,7 +756,7 @@ msgstr "Eposta" msgid "Staff" msgstr "Ekip" -#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:571 +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 msgid "Active" msgstr "Etkin" @@ -776,7 +776,7 @@ msgstr "" #: core/templates/core/head_circumference_list.html:37 #: core/templates/core/height_list.html:24 #: core/templates/core/height_list.html:37 -#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 #: core/templates/core/pumping_list.html:24 #: core/templates/core/pumping_list.html:38 #: core/templates/core/sleep_list.html:24 @@ -830,7 +830,7 @@ msgstr "" "Baby Buddy ile takip ederek tahmin etmeye (çok) gerek kalmadan " "bebeğin ihtiyaçlarını öğren —" -#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:249 +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 #: core/templates/core/diaperchange_confirm_delete.html:7 #: core/templates/core/diaperchange_form.html:13 #: core/templates/core/diaperchange_list.html:4 @@ -1056,55 +1056,55 @@ msgid "" "Nap start min. value %(min)s must be less than nap start min. value %(max)s." msgstr "" -#: core/filters.py:11 core/models.py:96 core/models.py:115 +#: core/filters.py:11 core/models.py:97 core/models.py:116 msgid "Tag" msgstr "Etiket" -#: core/forms.py:129 +#: core/forms.py:130 msgid "Name does not match child name." msgstr "İsim çocuk ismiyle eşleşmiyor." -#: core/forms.py:145 +#: core/forms.py:146 msgid "" "Click on the tags to add (+) or remove (-) tags or use the text editor to " "create new tags." msgstr "" -#: core/models.py:28 +#: core/models.py:29 msgid "Date can not be in the future." msgstr "Tarih gelecek bir zaman olamaz." -#: core/models.py:42 +#: core/models.py:43 msgid "Start time must come before end time." msgstr "Başkangıç zamanı bitiş zamanından önce olmalı." -#: core/models.py:45 +#: core/models.py:46 msgid "Duration too long." msgstr "Süre çok uzun." -#: core/models.py:61 +#: core/models.py:62 msgid "Another entry intersects the specified time period." msgstr "Birbaşka girdi belirlenen zaman aralığı ile kesişiyor." -#: core/models.py:75 +#: core/models.py:76 msgid "Date/time can not be in the future." msgstr "Tarih/zaman gelecek zaman olamaz." -#: core/models.py:84 core/models.py:237 +#: core/models.py:85 core/models.py:246 #: core/templates/core/diaperchange_list.html:30 msgid "Color" msgstr "Renk" -#: core/models.py:90 +#: core/models.py:91 msgid "Last used" msgstr "Son kullanılan" -#: core/models.py:97 core/templates/core/bmi_list.html:30 +#: core/models.py:98 core/templates/core/bmi_list.html:30 #: core/templates/core/diaperchange_list.html:32 #: core/templates/core/feeding_list.html:35 #: core/templates/core/head_circumference_list.html:30 #: core/templates/core/height_list.html:30 -#: core/templates/core/note_list.html:30 +#: core/templates/core/note_list.html:31 #: core/templates/core/pumping_list.html:31 #: core/templates/core/sleep_list.html:32 #: core/templates/core/temperature_list.html:30 @@ -1113,7 +1113,7 @@ msgstr "Son kullanılan" msgid "Tags" msgstr "Etiketler" -#: core/models.py:141 core/models.py:348 core/models.py:378 core/models.py:684 +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 #: core/templates/core/bmi_list.html:25 #: core/templates/core/feeding_list.html:25 #: core/templates/core/head_circumference_list.html:25 @@ -1125,33 +1125,39 @@ msgstr "Etiketler" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 #: reports/graphs/head_circumference_change.py:28 -#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 #: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 msgid "Date" msgstr "Tarih" -#: core/models.py:163 +#: core/models.py:164 msgid "First name" msgstr "Ad" -#: core/models.py:165 +#: core/models.py:166 msgid "Last name" msgstr "Soyad" -#: core/models.py:167 +#: core/models.py:168 msgid "Birth date" msgstr "Doğum Tarihi" -#: core/models.py:174 +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "Doğum Tarihi" + +#: core/models.py:176 msgid "Slug" msgstr "Slug" -#: core/models.py:177 +#: core/models.py:179 msgid "Picture" msgstr "Resim" -#: core/models.py:224 core/models.py:405 core/models.py:535 +#: core/models.py:233 core/models.py:439 core/models.py:572 #: core/templates/core/diaperchange_list.html:25 #: core/templates/core/note_list.html:25 #: core/templates/core/temperature_list.html:25 @@ -1159,51 +1165,51 @@ msgstr "Resim" msgid "Time" msgstr "Zaman" -#: core/models.py:226 core/templates/core/diaperchange_list.html:60 +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 #: reports/graphs/diaperchange_intervals.py:47 #: reports/graphs/diaperchange_types.py:36 msgid "Wet" msgstr "Islak" -#: core/models.py:227 core/templates/core/diaperchange_list.html:61 +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 #: reports/graphs/diaperchange_intervals.py:38 #: reports/graphs/diaperchange_types.py:30 msgid "Solid" msgstr "Kuru" -#: core/models.py:231 +#: core/models.py:240 msgid "Black" msgstr "Siyah" -#: core/models.py:232 +#: core/models.py:241 msgid "Brown" msgstr "Kahverengi" -#: core/models.py:233 +#: core/models.py:242 msgid "Green" msgstr "Yeşil" -#: core/models.py:234 +#: core/models.py:243 msgid "Yellow" msgstr "Sarı" -#: core/models.py:239 core/models.py:310 core/models.py:446 +#: core/models.py:248 core/models.py:319 core/models.py:483 #: core/templates/core/diaperchange_list.html:31 #: core/templates/core/pumping_list.html:29 #: dashboard/templates/cards/pumping_last.html:23 msgid "Amount" msgstr "Miktar" -#: core/models.py:280 core/models.py:433 core/models.py:481 core/models.py:569 -#: core/models.py:638 +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 msgid "Start time" msgstr "Başlangıç zamanı" -#: core/models.py:283 core/models.py:439 core/models.py:484 core/models.py:641 +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 msgid "End time" msgstr "Bitiş zamanı" -#: core/models.py:286 core/models.py:444 core/models.py:488 core/models.py:644 +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 #: core/templates/core/feeding_list.html:34 #: core/templates/core/pumping_list.html:30 #: core/templates/core/sleep_list.html:30 @@ -1211,71 +1217,83 @@ msgstr "Bitiş zamanı" msgid "Duration" msgstr "Süre" -#: core/models.py:290 +#: core/models.py:299 msgid "Breast milk" msgstr "Anne sütü" -#: core/models.py:291 +#: core/models.py:300 msgid "Formula" msgstr "Formül" -#: core/models.py:292 +#: core/models.py:301 msgid "Fortified breast milk" msgstr "Anne sütü" -#: core/models.py:293 +#: core/models.py:302 msgid "Solid food" msgstr "Katı yiyecek" -#: core/models.py:296 core/templates/core/feeding_list.html:30 +#: core/models.py:305 core/templates/core/feeding_list.html:30 msgid "Type" msgstr "Tip" -#: core/models.py:300 +#: core/models.py:309 msgid "Bottle" msgstr "Şişe" -#: core/models.py:301 +#: core/models.py:310 msgid "Left breast" msgstr "Sol göğüs" -#: core/models.py:302 +#: core/models.py:311 msgid "Right breast" msgstr "Sağ göğüs" -#: core/models.py:303 +#: core/models.py:312 msgid "Both breasts" msgstr "Her iki göğüs" -#: core/models.py:304 +#: core/models.py:313 msgid "Parent fed" msgstr "Ebeveyn beslenme" -#: core/models.py:305 +#: core/models.py:314 msgid "Self fed" msgstr "Kendi beslenme" -#: core/models.py:308 core/templates/core/feeding_list.html:29 +#: core/models.py:317 core/templates/core/feeding_list.html:29 msgid "Method" msgstr "Metod" -#: core/models.py:486 core/templates/core/sleep_list.html:31 +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 msgid "Nap" msgstr "Kısa uyku" -#: core/models.py:494 +#: core/models.py:531 msgid "Nap settings" msgstr "" -#: core/models.py:566 core/templates/core/timer_list.html:25 +#: core/models.py:603 core/templates/core/timer_list.html:25 msgid "Name" msgstr "İsim" -#: core/models.py:584 core/templates/core/timer_form.html:4 +#: core/models.py:621 core/templates/core/timer_form.html:4 msgid "Timer" msgstr "Zamanlayıcı" -#: core/models.py:585 core/templates/core/timer_confirm_delete.html:9 +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 #: core/templates/core/timer_detail.html:8 #: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 #: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 @@ -1284,23 +1302,15 @@ msgstr "Zamanlayıcı" msgid "Timers" msgstr "Zamallayıcılar" -#: core/models.py:588 +#: core/models.py:625 #, python-brace-format msgid "Timer #{id}" msgstr "Zamallayıcı #{id}" -#: core/models.py:647 core/templates/core/tummytime_list.html:30 +#: core/models.py:684 core/templates/core/tummytime_list.html:30 msgid "Milestone" msgstr "Dönüm noktası" -#: core/models.py:716 -msgid "Girl" -msgstr "" - -#: core/models.py:717 -msgid "Boy" -msgstr "" - #: core/templates/core/bmi_confirm_delete.html:4 msgid "Delete a BMI Entry" msgstr "VKI Verisi Sil" @@ -1466,7 +1476,7 @@ msgstr "Not Ekle" msgid "Add Note" msgstr "Not Ekle" -#: core/templates/core/note_list.html:64 +#: core/templates/core/note_list.html:71 msgid "No notes found." msgstr "Not bulunamadı" @@ -1712,72 +1722,68 @@ msgstr "bugün" msgid "{}, {}" msgstr "{}, {}" -#: core/templatetags/duration.py:25 -msgid "0 days" -msgstr "0 gün" - -#: core/templatetags/duration.py:110 +#: core/templatetags/duration.py:107 #: dashboard/templates/cards/diaperchange_types.html:50 #, python-format msgid "%(days_ago)s days ago" msgstr "%(days_ago)s gün önce" -#: core/templatetags/duration.py:113 +#: core/templatetags/duration.py:110 #: dashboard/templates/cards/diaperchange_types.html:46 msgid "today" msgstr "bugün" -#: core/templatetags/duration.py:115 +#: core/templatetags/duration.py:112 #: dashboard/templates/cards/diaperchange_types.html:48 msgid "yesterday" msgstr "dün" -#: core/timeline.py:54 +#: core/timeline.py:56 #, python-format msgid "%(child)s started tummy time!" msgstr "%(child)s karın üstü zamanı başladı!" -#: core/timeline.py:66 +#: core/timeline.py:68 #, python-format msgid "%(child)s finished tummy time." msgstr "%(child)s karın üstü zamanı bitti." -#: core/timeline.py:92 +#: core/timeline.py:96 #, python-format msgid "%(child)s fell asleep." msgstr "%(child)s uyudu." -#: core/timeline.py:104 +#: core/timeline.py:108 #, python-format msgid "%(child)s woke up." msgstr "%(child)s uyandı" -#: core/timeline.py:138 +#: core/timeline.py:143 #, python-format msgid "Amount: %(amount).0f" msgstr "Miktar: %(amount).0f" -#: core/timeline.py:146 +#: core/timeline.py:151 #, python-format msgid "%(child)s started feeding." msgstr "%(child)s beslenmeye başladı." -#: core/timeline.py:159 +#: core/timeline.py:164 #, python-format msgid "%(child)s finished feeding." msgstr "%(child)s beslenmesi bitti." -#: core/timeline.py:186 +#: core/timeline.py:193 #, python-format msgid "%(child)s had a %(type)s diaper change." msgstr "" -#: core/timeline.py:226 +#: core/timeline.py:233 #, python-format msgid "Temperature: %(temperature).0f" msgstr "" -#: core/timeline.py:234 +#: core/timeline.py:241 #, python-format msgid "%(child)s had a temperature measurement." msgstr "" @@ -1868,6 +1874,12 @@ msgstr "ıslak" msgid "solid" msgstr "kuru" +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "Değişimler" + #: dashboard/templates/cards/feeding_last.html:6 msgid "Last Feeding" msgstr "Son Beslenme" @@ -1980,66 +1992,65 @@ msgid "Child actions" msgstr "Çocuk eylemleri" #: dashboard/templates/dashboard/child_button_group.html:12 -#: reports/templates/reports/base.html:9 -#: reports/templates/reports/breadcrumb_common_chunk.html:6 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 #: reports/templates/reports/report_list.html:4 #: reports/templates/reports/report_list.html:11 msgid "Reports" msgstr "Raporlar" -#: dashboard/templatetags/cards.py:380 +#: dashboard/templatetags/cards.py:381 msgid "Average nap duration" msgstr "Ortalama kısa uyku süresi" -#: dashboard/templatetags/cards.py:387 +#: dashboard/templatetags/cards.py:388 msgid "Average naps per day" msgstr "Ortalama günlük kısa uyku" -#: dashboard/templatetags/cards.py:397 +#: dashboard/templatetags/cards.py:398 msgid "Average sleep duration" msgstr "Ortalama uyku süresi" -#: dashboard/templatetags/cards.py:404 +#: dashboard/templatetags/cards.py:405 msgid "Average awake duration" msgstr "Ortalama uyanıklık süresi" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:415 msgid "Weight change per week" msgstr "Haftalık ağırlık değişimi" -#: dashboard/templatetags/cards.py:424 +#: dashboard/templatetags/cards.py:425 msgid "Height change per week" msgstr "Haftalık boy değişimi" -#: dashboard/templatetags/cards.py:434 +#: dashboard/templatetags/cards.py:435 msgid "Head circumference change per week" msgstr "Haftalık baş çevresi değişimi" -#: dashboard/templatetags/cards.py:444 +#: dashboard/templatetags/cards.py:445 msgid "BMI change per week" msgstr "Haftalık vki değişimi" -#: dashboard/templatetags/cards.py:462 +#: dashboard/templatetags/cards.py:463 msgid "Diaper change frequency (past 3 days)" msgstr "Bebek bezi değiştirme sıklığı (son 3 gün)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:467 msgid "Diaper change frequency (past 2 weeks)" msgstr "Bebek bezi değiştirme sıklığı (son 2 hafta)" -#: dashboard/templatetags/cards.py:472 +#: dashboard/templatetags/cards.py:473 msgid "Diaper change frequency" msgstr "Bez değişim sıklığı" -#: dashboard/templatetags/cards.py:508 +#: dashboard/templatetags/cards.py:509 msgid "Feeding frequency (past 3 days)" msgstr "Beslenme sıklığı (son 3 gün)" -#: dashboard/templatetags/cards.py:512 +#: dashboard/templatetags/cards.py:513 msgid "Feeding frequency (past 2 weeks)" msgstr "Beslenme sıklığı (son 2 hafta)" -#: dashboard/templatetags/cards.py:518 +#: dashboard/templatetags/cards.py:519 msgid "Feeding frequency" msgstr "Beslenme sıklığı" @@ -2132,7 +2143,27 @@ msgstr "" msgid "Head Circumference" msgstr "Baş Çevresi" -#: reports/graphs/height_change.py:27 +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 msgid "Height" msgstr "Boy" @@ -2185,26 +2216,6 @@ msgstr "Toplam Karın Üstü Süresi" msgid "Total duration (minutes)" msgstr "Toplam süre (dakika)" -#: reports/graphs/weight_change.py:49 -msgid "P3" -msgstr "" - -#: reports/graphs/weight_change.py:55 -msgid "P15" -msgstr "" - -#: reports/graphs/weight_change.py:61 -msgid "P50" -msgstr "" - -#: reports/graphs/weight_change.py:67 -msgid "P85" -msgstr "" - -#: reports/graphs/weight_change.py:73 -msgid "P97" -msgstr "" - #: reports/graphs/weight_change.py:84 msgid "Weight" msgstr "Ağırlık" @@ -2215,7 +2226,7 @@ msgid "Diaper Amounts" msgstr "Bez Miktarı" #: reports/templates/reports/diaperchange_intervals.html:4 -#: reports/templates/reports/diaperchange_intervals.html:8 +#: reports/templates/reports/diaperchange_intervals.html:9 msgid "Diaper Change Intervals" msgstr "" @@ -2243,7 +2254,7 @@ msgid "Average Feeding Durations" msgstr "Ortalama Beslenme Süreleri" #: reports/templates/reports/feeding_intervals.html:4 -#: reports/templates/reports/feeding_intervals.html:8 +#: reports/templates/reports/feeding_intervals.html:9 #: reports/templates/reports/report_list.html:26 msgid "Feeding Intervals" msgstr "" @@ -2269,30 +2280,38 @@ msgid "Feeding Durations (Average)" msgstr "Beslenme Süreleri (Ortalama)" #: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 msgid "Pumping Amounts" msgstr "Breat Pompalama Miktarları" -#: reports/templates/reports/report_list.html:30 +#: reports/templates/reports/report_list.html:32 #: reports/templates/reports/sleep_pattern.html:4 #: reports/templates/reports/sleep_pattern.html:9 msgid "Sleep Pattern" msgstr "Uyku Deseni" -#: reports/templates/reports/report_list.html:31 +#: reports/templates/reports/report_list.html:33 #: reports/templates/reports/sleep_totals.html:4 #: reports/templates/reports/sleep_totals.html:9 msgid "Sleep Totals" msgstr "Toplam Uyku" -#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/report_list.html:35 msgid "Tummy Time Durations (Sum)" msgstr "Karın üstü süresi (Sum)" -#: reports/templates/reports/report_list.html:35 +#: reports/templates/reports/report_list.html:37 msgid "WHO Weight Percentiles for Boys in kg" msgstr "" -#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/report_list.html:38 msgid "WHO Weight Percentiles for Girls in kg" msgstr "" @@ -2301,6 +2320,9 @@ msgstr "" msgid "Total Tummy Time Durations" msgstr "Toplam Karın Üstü Süresi" +#~ msgid "0 days" +#~ msgstr "0 gün" + #, python-format #~ msgid "%(key)s days ago" #~ msgstr "%(key)s gün önce" diff --git a/locale/zh/LC_MESSAGES/django.mo b/locale/zh/LC_MESSAGES/django.mo index d6bd3bad..aec4c7de 100644 Binary files a/locale/zh/LC_MESSAGES/django.mo and b/locale/zh/LC_MESSAGES/django.mo differ diff --git a/locale/zh/LC_MESSAGES/django.po b/locale/zh/LC_MESSAGES/django.po new file mode 100644 index 00000000..697903ca --- /dev/null +++ b/locale/zh/LC_MESSAGES/django.po @@ -0,0 +1,2494 @@ +msgid "" +msgstr "" +"Project-Id-Version: Baby Buddy\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-19 17:07+0000\n" +"Language: zh-Hans\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: POEditor.com\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: babybuddy/admin.py:12 babybuddy/admin.py:13 +#: babybuddy/templates/babybuddy/nav-dropdown.html:331 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 +#: babybuddy/templates/babybuddy/user_settings_form.html:8 +#: babybuddy/templates/dbsettings/site_settings.html:8 +msgid "Settings" +msgstr "设置" + +#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:94 +#: babybuddy/templates/babybuddy/user_settings_form.html:61 +#: dashboard/templates/dashboard/child.html:4 +#: dashboard/templates/dashboard/child.html:11 +#: dashboard/templates/dashboard/child_button_group.html:6 +#: dashboard/templates/dashboard/dashboard.html:4 +#: dashboard/templates/dashboard/dashboard.html:7 +msgid "Dashboard" +msgstr "数据看板" + +#: babybuddy/forms.py:15 babybuddy/templates/babybuddy/user_list.html:21 +msgid "Read only" +msgstr "" + +#: babybuddy/forms.py:16 +msgid "Restricts user to viewing data only." +msgstr "" + +#: babybuddy/models.py:19 +msgid "Refresh rate" +msgstr "刷新频率" + +#: babybuddy/models.py:21 +msgid "" +"If supported by browser, the dashboard will only refresh when visible, and " +"also when receiving focus." +msgstr "如果浏览器支持,数据看板只会在可见及接收焦点时也会刷新。" + +#: babybuddy/models.py:28 +msgid "disabled" +msgstr "禁用" + +#: babybuddy/models.py:29 +msgid "1 min." +msgstr "1分钟" + +#: babybuddy/models.py:30 +msgid "2 min." +msgstr "2分钟" + +#: babybuddy/models.py:31 +msgid "3 min." +msgstr "3分钟" + +#: babybuddy/models.py:32 +msgid "4 min." +msgstr "4分钟" + +#: babybuddy/models.py:33 +msgid "5 min." +msgstr "5分钟" + +#: babybuddy/models.py:34 +msgid "10 min." +msgstr "10分钟" + +#: babybuddy/models.py:35 +msgid "15 min." +msgstr "15分钟" + +#: babybuddy/models.py:36 +msgid "30 min." +msgstr "30分钟" + +#: babybuddy/models.py:40 +msgid "Hide Empty Dashboard Cards" +msgstr "隐藏空的数据看板卡片" + +#: babybuddy/models.py:43 +msgid "Hide data older than" +msgstr "隐藏数据早于" + +#: babybuddy/models.py:45 +msgid "This setting controls which data will be shown in the dashboard." +msgstr "此设置控制哪些数据显示在数据看板中。" + +#: babybuddy/models.py:51 +msgid "show all data" +msgstr "展示所有数据" + +#: babybuddy/models.py:52 +msgid "1 day" +msgstr "1天" + +#: babybuddy/models.py:53 +msgid "2 days" +msgstr "2天" + +#: babybuddy/models.py:54 +msgid "3 days" +msgstr "3天" + +#: babybuddy/models.py:55 +msgid "1 week" +msgstr "1周" + +#: babybuddy/models.py:56 +msgid "4 weeks" +msgstr "4 周" + +#: babybuddy/models.py:63 +msgid "Language" +msgstr "语言" + +#: babybuddy/models.py:69 +msgid "Timezone" +msgstr "时区" + +#: babybuddy/models.py:73 +#, python-brace-format +msgid "{user}'s Settings" +msgstr "{user}的设置" + +#: babybuddy/settings/base.py:177 +msgid "Catalan" +msgstr "加泰罗尼亚语" + +#: babybuddy/settings/base.py:178 +msgid "Czech" +msgstr "" + +#: babybuddy/settings/base.py:179 +msgid "Chinese (simplified)" +msgstr "中文(简体)" + +#: babybuddy/settings/base.py:180 +msgid "Danish" +msgstr "" + +#: babybuddy/settings/base.py:181 +msgid "Dutch" +msgstr "荷兰语" + +#: babybuddy/settings/base.py:182 +msgid "English (US)" +msgstr "英语(美国)" + +#: babybuddy/settings/base.py:183 +msgid "English (UK)" +msgstr "英语(英国)" + +#: babybuddy/settings/base.py:184 +msgid "French" +msgstr "法语" + +#: babybuddy/settings/base.py:185 +msgid "Finnish" +msgstr "芬兰语" + +#: babybuddy/settings/base.py:186 +msgid "German" +msgstr "德语" + +#: babybuddy/settings/base.py:187 +msgid "Hungarian" +msgstr "" + +#: babybuddy/settings/base.py:188 +msgid "Italian" +msgstr "意大利语" + +#: babybuddy/settings/base.py:189 +msgid "Norwegian Bokmål" +msgstr "" + +#: babybuddy/settings/base.py:190 +msgid "Polish" +msgstr "波兰语" + +#: babybuddy/settings/base.py:191 +msgid "Portuguese" +msgstr "葡萄牙语" + +#: babybuddy/settings/base.py:192 +msgid "Russian" +msgstr "" + +#: babybuddy/settings/base.py:193 +msgid "Spanish" +msgstr "西班牙语" + +#: babybuddy/settings/base.py:194 +msgid "Swedish" +msgstr "瑞典语" + +#: babybuddy/settings/base.py:195 +msgid "Turkish" +msgstr "土耳其语" + +#: babybuddy/site_settings.py:23 +msgid "Default minimum nap start time" +msgstr "" + +#: babybuddy/site_settings.py:25 +msgid "" +"The minimum default time that a sleep entry is consider a nap. If set the " +"nap property will be preselected if the start time is within the bounds." +msgstr "" + +#: babybuddy/site_settings.py:32 +msgid "Default maximum nap start time" +msgstr "" + +#: babybuddy/site_settings.py:34 +msgid "" +"The maximum default time that a sleep entry is consider a nap. If set the " +"nap property will be preselected if the start time is within the bounds." +msgstr "" + +#: babybuddy/templates/admin/base_site.html:4 +#: babybuddy/templates/admin/base_site.html:7 +#: babybuddy/templates/babybuddy/nav-dropdown.html:349 +msgid "Database Admin" +msgstr "数据库管理员" + +#: babybuddy/templates/babybuddy/base.html:36 +msgid "Home" +msgstr "主页" + +#: babybuddy/templates/babybuddy/filter.html:18 +msgid "Filter" +msgstr "过滤" + +#: babybuddy/templates/babybuddy/filter.html:19 +msgid "Reset" +msgstr "重置" + +#: babybuddy/templates/babybuddy/filter.html:32 +msgid "Filters" +msgstr "过滤" + +#: babybuddy/templates/babybuddy/form.html:14 +#: babybuddy/templates/babybuddy/user_settings_form.html:89 +msgid "Submit" +msgstr "提交" + +#: babybuddy/templates/babybuddy/messages.html:16 +#: babybuddy/templates/babybuddy/user_settings_form.html:19 +#, python-format +msgid "Error: %(error)s" +msgstr "错误: %(error)s" + +#: babybuddy/templates/babybuddy/messages.html:21 +#: babybuddy/templates/babybuddy/user_settings_form.html:26 +msgid "Error: Some fields have errors. See below for details." +msgstr "错误: 有些字段有错误。详情见下文。 " + +#: babybuddy/templates/babybuddy/nav-dropdown.html:46 core/models.py:257 +#: core/models.py:261 +msgid "Diaper Change" +msgstr "更换尿布" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:52 +#: babybuddy/templates/babybuddy/nav-dropdown.html:264 core/models.py:328 +#: core/models.py:332 core/templates/core/timer_detail.html:42 +msgid "Feeding" +msgstr "喂食" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:58 +#: babybuddy/templates/babybuddy/nav-dropdown.html:272 core/models.py:492 +#: core/models.py:493 core/models.py:496 +#: core/templates/core/pumping_confirm_delete.html:7 +#: core/templates/core/pumping_form.html:13 +#: core/templates/core/pumping_list.html:4 +#: core/templates/core/pumping_list.html:7 +#: core/templates/core/pumping_list.html:12 +#: core/templates/core/timer_detail.html:50 +#: reports/templates/reports/pumping_amounts.html:4 +#: reports/templates/reports/pumping_amounts.html:9 +msgid "Pumping" +msgstr "吸奶" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:64 +#: babybuddy/templates/babybuddy/nav-dropdown.html:140 core/models.py:437 +#: core/models.py:451 core/models.py:455 core/templates/core/note_list.html:30 +msgid "Note" +msgstr "记录" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:70 +#: babybuddy/templates/babybuddy/nav-dropdown.html:285 +#: babybuddy/templates/babybuddy/welcome.html:48 core/models.py:536 +#: core/models.py:537 core/models.py:540 +#: core/templates/core/sleep_confirm_delete.html:7 +#: core/templates/core/sleep_form.html:13 core/templates/core/sleep_list.html:4 +#: core/templates/core/sleep_list.html:7 core/templates/core/sleep_list.html:12 +#: core/templates/core/timer_detail.html:58 +msgid "Sleep" +msgstr "睡眠" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:76 +#: babybuddy/templates/babybuddy/nav-dropdown.html:299 +#: babybuddy/templates/babybuddy/welcome.html:58 core/models.py:693 +#: core/models.py:694 core/models.py:697 +#: core/templates/core/timer_detail.html:66 +#: core/templates/core/tummytime_confirm_delete.html:7 +#: core/templates/core/tummytime_form.html:13 +#: core/templates/core/tummytime_list.html:4 +#: core/templates/core/tummytime_list.html:7 +#: core/templates/core/tummytime_list.html:12 +msgid "Tummy Time" +msgstr "趴玩时间" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:101 +#: core/templates/timeline/timeline.html:4 +#: core/templates/timeline/timeline.html:7 +#: dashboard/templates/dashboard/child_button_group.html:9 +msgid "Timeline" +msgstr "时间线" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:112 +#: babybuddy/templates/babybuddy/nav-dropdown.html:120 core/models.py:190 +#: core/templates/core/child_confirm_delete.html:7 +#: core/templates/core/child_detail.html:7 +#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 +#: core/templates/core/child_list.html:7 core/templates/core/child_list.html:12 +#: dashboard/templates/dashboard/child.html:7 +#: reports/templates/reports/base.html:7 +msgid "Children" +msgstr "我的宝宝" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:126 core/models.py:138 +#: core/models.py:189 core/models.py:230 core/models.py:283 core/models.py:351 +#: core/models.py:383 core/models.py:435 core/models.py:464 core/models.py:512 +#: core/models.py:566 core/models.py:600 core/models.py:669 core/models.py:717 +#: core/templates/core/bmi_list.html:27 +#: core/templates/core/diaperchange_list.html:27 +#: core/templates/core/feeding_list.html:27 +#: core/templates/core/head_circumference_list.html:27 +#: core/templates/core/height_list.html:27 +#: core/templates/core/note_list.html:27 +#: core/templates/core/pumping_list.html:27 +#: core/templates/core/sleep_list.html:28 +#: core/templates/core/temperature_list.html:27 +#: core/templates/core/timer_list.html:27 +#: core/templates/core/tummytime_list.html:27 +#: core/templates/core/weight_list.html:27 +msgid "Child" +msgstr "宝宝" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:134 core/models.py:144 +#: core/models.py:249 core/models.py:320 core/models.py:359 core/models.py:389 +#: core/models.py:452 core/models.py:484 core/models.py:527 core/models.py:574 +#: core/models.py:723 core/templates/core/note_confirm_delete.html:7 +#: core/templates/core/note_form.html:13 core/templates/core/note_list.html:4 +#: core/templates/core/note_list.html:7 core/templates/core/note_list.html:12 +msgid "Notes" +msgstr "成长记录" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:154 +msgid "Measurements" +msgstr "测量" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:162 core/models.py:140 +#: core/models.py:152 core/models.py:153 core/models.py:156 +#: core/templates/core/bmi_confirm_delete.html:7 +#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 +#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 +#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 +#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 +#: reports/templates/reports/bmi_change.html:9 +msgid "BMI" +msgstr "身体质量指数(BMI)" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:168 +msgid "BMI entry" +msgstr "BMI记录" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:176 core/models.py:354 +#: core/models.py:367 core/models.py:368 core/models.py:371 +#: core/templates/core/head_circumference_confirm_delete.html:7 +#: core/templates/core/head_circumference_form.html:13 +#: core/templates/core/head_circumference_list.html:4 +#: core/templates/core/head_circumference_list.html:7 +#: core/templates/core/head_circumference_list.html:12 +#: core/templates/core/head_circumference_list.html:29 +#: reports/graphs/head_circumference_change.py:19 +#: reports/graphs/head_circumference_change.py:30 +#: reports/templates/reports/head_circumference_change.html:4 +#: reports/templates/reports/head_circumference_change.html:9 +#: reports/templates/reports/report_list.html:27 +msgid "Head Circumference" +msgstr "头围" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:182 +msgid "Head Circumference entry" +msgstr "头围记录" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:190 core/models.py:385 +#: core/models.py:397 core/models.py:398 core/models.py:401 +#: core/templates/core/height_confirm_delete.html:7 +#: core/templates/core/height_form.html:13 +#: core/templates/core/height_list.html:4 +#: core/templates/core/height_list.html:7 +#: core/templates/core/height_list.html:12 +#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:28 +#: reports/graphs/height_change.py:87 +#: reports/templates/reports/height_change.html:4 +#: reports/templates/reports/height_change.html:9 +#: reports/templates/reports/report_list.html:28 +msgid "Height" +msgstr "身高" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:196 +msgid "Height entry" +msgstr "身高记录" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:204 core/models.py:569 +#: core/models.py:582 core/models.py:583 core/models.py:586 +#: core/templates/core/temperature_confirm_delete.html:7 +#: core/templates/core/temperature_form.html:13 +#: core/templates/core/temperature_list.html:4 +#: core/templates/core/temperature_list.html:7 +#: core/templates/core/temperature_list.html:12 +#: core/templates/core/temperature_list.html:29 +#: reports/graphs/temperature_change.py:19 +#: reports/graphs/temperature_change.py:29 +#: reports/templates/reports/report_list.html:34 +#: reports/templates/reports/temperature_change.html:4 +#: reports/templates/reports/temperature_change.html:9 +msgid "Temperature" +msgstr "体温" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:210 +msgid "Temperature reading" +msgstr "体温读数" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:218 core/models.py:719 +#: core/models.py:731 core/models.py:732 core/models.py:735 +#: core/templates/core/weight_confirm_delete.html:7 +#: core/templates/core/weight_form.html:13 +#: core/templates/core/weight_list.html:4 +#: core/templates/core/weight_list.html:7 +#: core/templates/core/weight_list.html:12 +#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:28 +#: reports/graphs/weight_change.py:87 +#: reports/templates/reports/report_list.html:36 +#: reports/templates/reports/weight_change.html:4 +#: reports/templates/reports/weight_change.html:10 +msgid "Weight" +msgstr "体重" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:224 +msgid "Weight entry" +msgstr "体重记录" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:237 +msgid "Activities" +msgstr "活动" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:245 +#: reports/graphs/diaperchange_lifetimes.py:27 +msgid "Changes" +msgstr "换尿布" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:251 +msgid "Change" +msgstr "换尿布" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:258 +#: babybuddy/templates/babybuddy/welcome.html:38 core/models.py:329 +#: core/templates/core/feeding_confirm_delete.html:7 +#: core/templates/core/feeding_form.html:13 +#: core/templates/core/feeding_list.html:4 +#: core/templates/core/feeding_list.html:7 +#: core/templates/core/feeding_list.html:12 +msgid "Feedings" +msgstr "喂食" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:278 +msgid "Pumping entry" +msgstr "吸奶记录" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:291 +msgid "Sleep entry" +msgstr "睡眠记录" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:305 +msgid "Tummy Time entry" +msgstr "趴玩时间记录" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:329 +#: babybuddy/templates/babybuddy/user_add_device.html:7 +#: babybuddy/templates/babybuddy/user_list.html:17 +#: babybuddy/templates/babybuddy/user_password_form.html:7 +#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:613 +#: core/templates/core/timer_list.html:29 +msgid "User" +msgstr "用户" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:333 +msgid "Password" +msgstr "密码" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:334 +#: babybuddy/templates/babybuddy/user_add_device.html:4 +#: babybuddy/templates/babybuddy/user_add_device.html:8 +#: babybuddy/templates/babybuddy/user_add_device.html:12 +msgid "Add a device" +msgstr "" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:338 +msgid "Logout" +msgstr "登出" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 +#: babybuddy/templates/dbsettings/site_settings.html:7 +msgid "Site" +msgstr "站点" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:342 +msgid "API Browser" +msgstr "API浏览" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:347 +#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 +#: babybuddy/templates/babybuddy/user_confirm_unlock.html:7 +#: babybuddy/templates/babybuddy/user_form.html:13 +#: babybuddy/templates/babybuddy/user_list.html:4 +#: babybuddy/templates/babybuddy/user_list.html:7 +msgid "Users" +msgstr "用户" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:351 +msgid "Support" +msgstr "支持" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:353 +msgid "Source Code" +msgstr "源代码" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +msgid "Chat / Support" +msgstr "聊天 / 支持" + +#: babybuddy/templates/babybuddy/paginator.html:11 +#: core/templates/timeline/_timeline.html:5 +#: core/templates/timeline/_timeline.html:7 +#: core/templates/timeline/_timeline.html:71 +#: core/templates/timeline/_timeline.html:73 +#: dashboard/templates/cards/feeding_last_method.html:37 +#: dashboard/templates/cards/feeding_recent.html:46 +#: dashboard/templates/cards/sleep_recent.html:43 +#: dashboard/templates/cards/statistics.html:37 +msgid "Previous" +msgstr "上一页" + +#: babybuddy/templates/babybuddy/paginator.html:28 +#: core/templates/timeline/_timeline.html:12 +#: core/templates/timeline/_timeline.html:14 +#: core/templates/timeline/_timeline.html:78 +#: core/templates/timeline/_timeline.html:80 +#: dashboard/templates/cards/feeding_last_method.html:44 +#: dashboard/templates/cards/feeding_recent.html:53 +#: dashboard/templates/cards/sleep_recent.html:47 +#: dashboard/templates/cards/statistics.html:44 +msgid "Next" +msgstr "下一页" + +#: babybuddy/templates/babybuddy/user_add_device.html:15 +msgid "Authentication Methods" +msgstr "" + +#: babybuddy/templates/babybuddy/user_add_device.html:18 +#: babybuddy/templates/babybuddy/user_settings_form.html:81 +msgid "Key" +msgstr "秘钥" + +#: babybuddy/templates/babybuddy/user_add_device.html:23 +#: babybuddy/templates/babybuddy/user_settings_form.html:84 +msgid "Regenerate" +msgstr "重新生成" + +#: babybuddy/templates/babybuddy/user_add_device.html:28 +msgid "Login QR code" +msgstr "" + +#: babybuddy/templates/babybuddy/user_confirm_delete.html:4 +msgid "Delete User" +msgstr "删除用户" + +#: babybuddy/templates/babybuddy/user_confirm_delete.html:9 +#: babybuddy/templates/babybuddy/user_confirm_delete.html:18 +#: core/templates/core/bmi_confirm_delete.html:8 +#: core/templates/core/bmi_confirm_delete.html:17 +#: core/templates/core/child_confirm_delete.html:9 +#: core/templates/core/child_confirm_delete.html:31 +#: core/templates/core/diaperchange_confirm_delete.html:8 +#: core/templates/core/diaperchange_confirm_delete.html:17 +#: core/templates/core/feeding_confirm_delete.html:8 +#: core/templates/core/feeding_confirm_delete.html:17 +#: core/templates/core/head_circumference_confirm_delete.html:8 +#: core/templates/core/head_circumference_confirm_delete.html:17 +#: core/templates/core/height_confirm_delete.html:8 +#: core/templates/core/height_confirm_delete.html:17 +#: core/templates/core/note_confirm_delete.html:8 +#: core/templates/core/note_confirm_delete.html:17 +#: core/templates/core/pumping_confirm_delete.html:8 +#: core/templates/core/pumping_confirm_delete.html:17 +#: core/templates/core/sleep_confirm_delete.html:8 +#: core/templates/core/sleep_confirm_delete.html:17 +#: core/templates/core/temperature_confirm_delete.html:8 +#: core/templates/core/temperature_confirm_delete.html:17 +#: core/templates/core/timer_confirm_delete.html:11 +#: core/templates/core/timer_confirm_delete.html:20 +#: core/templates/core/tummytime_confirm_delete.html:8 +#: core/templates/core/tummytime_confirm_delete.html:17 +#: core/templates/core/weight_confirm_delete.html:8 +#: core/templates/core/weight_confirm_delete.html:17 +#: dashboard/templates/dashboard/child_button_group.html:27 +msgid "Delete" +msgstr "删除" + +#: babybuddy/templates/babybuddy/user_confirm_delete.html:15 +#: core/templates/core/bmi_confirm_delete.html:14 +#: core/templates/core/child_confirm_delete.html:15 +#: core/templates/core/diaperchange_confirm_delete.html:14 +#: core/templates/core/feeding_confirm_delete.html:14 +#: core/templates/core/head_circumference_confirm_delete.html:14 +#: core/templates/core/height_confirm_delete.html:14 +#: core/templates/core/note_confirm_delete.html:14 +#: core/templates/core/pumping_confirm_delete.html:14 +#: core/templates/core/sleep_confirm_delete.html:14 +#: core/templates/core/temperature_confirm_delete.html:14 +#: core/templates/core/timer_confirm_delete.html:17 +#: core/templates/core/tummytime_confirm_delete.html:14 +#: core/templates/core/weight_confirm_delete.html:14 +#, python-format +msgid "" +"

Are you sure you want to delete %(object)s?

" +msgstr "

确定要删除%(object)s吗?

" + +#: babybuddy/templates/babybuddy/user_confirm_delete.html:19 +#: babybuddy/templates/babybuddy/user_confirm_unlock.html:19 +#: core/templates/core/bmi_confirm_delete.html:18 +#: core/templates/core/child_confirm_delete.html:32 +#: core/templates/core/diaperchange_confirm_delete.html:18 +#: core/templates/core/feeding_confirm_delete.html:18 +#: core/templates/core/head_circumference_confirm_delete.html:18 +#: core/templates/core/height_confirm_delete.html:18 +#: core/templates/core/note_confirm_delete.html:18 +#: core/templates/core/pumping_confirm_delete.html:18 +#: core/templates/core/sleep_confirm_delete.html:18 +#: core/templates/core/temperature_confirm_delete.html:18 +#: core/templates/core/timer_confirm_delete.html:21 +#: core/templates/core/tummytime_confirm_delete.html:18 +#: core/templates/core/weight_confirm_delete.html:18 +msgid "Cancel" +msgstr "取消" + +#: babybuddy/templates/babybuddy/user_confirm_unlock.html:4 +msgid "Unlock User" +msgstr "" + +#: babybuddy/templates/babybuddy/user_confirm_unlock.html:9 +#: babybuddy/templates/babybuddy/user_confirm_unlock.html:18 +#: babybuddy/templates/babybuddy/user_form.html:31 +msgid "Unlock" +msgstr "" + +#: babybuddy/templates/babybuddy/user_confirm_unlock.html:15 +#, python-format +msgid "" +"

Are you sure you want to unlock %(object)s?

" +msgstr "

确定要删除%(object)s吗?

" + +#: babybuddy/templates/babybuddy/user_form.html:8 +#: babybuddy/templates/babybuddy/user_form.html:18 +#: babybuddy/templates/babybuddy/user_form.html:39 +#: babybuddy/templates/babybuddy/user_list.html:71 +msgid "Create User" +msgstr "新增用户" + +#: babybuddy/templates/babybuddy/user_form.html:16 +#: core/templates/core/bmi_form.html:15 core/templates/core/child_form.html:16 +#: core/templates/core/diaperchange_form.html:15 +#: core/templates/core/feeding_form.html:15 +#: core/templates/core/head_circumference_form.html:15 +#: core/templates/core/height_form.html:15 +#: core/templates/core/note_form.html:15 +#: core/templates/core/pumping_form.html:15 +#: core/templates/core/sleep_form.html:15 +#: core/templates/core/temperature_form.html:15 +#: core/templates/core/timer_form.html:10 +#: core/templates/core/tummytime_form.html:15 +#: core/templates/core/weight_form.html:15 +msgid "Update" +msgstr "更新" + +#: babybuddy/templates/babybuddy/user_form.html:28 +msgid "User locked." +msgstr "" + +#: babybuddy/templates/babybuddy/user_form.html:35 +#: core/templates/core/bmi_form.html:23 core/templates/core/child_form.html:24 +#: core/templates/core/diaperchange_form.html:23 +#: core/templates/core/feeding_form.html:23 +#: core/templates/core/head_circumference_form.html:23 +#: core/templates/core/height_form.html:23 +#: core/templates/core/note_form.html:23 +#: core/templates/core/pumping_form.html:23 +#: core/templates/core/sleep_form.html:23 +#: core/templates/core/temperature_form.html:23 +#: core/templates/core/timer_form.html:18 +#: core/templates/core/tummytime_form.html:23 +#: core/templates/core/weight_form.html:23 +#, python-format +msgid "

Update %(object)s

" +msgstr "

更新 %(object)s

" + +#: babybuddy/templates/babybuddy/user_list.html:18 +#: core/templates/core/child_list.html:25 +msgid "First Name" +msgstr "名" + +#: babybuddy/templates/babybuddy/user_list.html:19 +#: core/templates/core/child_list.html:26 +msgid "Last Name" +msgstr "姓" + +#: babybuddy/templates/babybuddy/user_list.html:20 +msgid "Email" +msgstr "电子邮箱" + +#: babybuddy/templates/babybuddy/user_list.html:22 +msgid "Staff" +msgstr "管理员" + +#: babybuddy/templates/babybuddy/user_list.html:23 core/models.py:608 +msgid "Active" +msgstr "活动" + +#: babybuddy/templates/babybuddy/user_list.html:24 +msgid "Locked" +msgstr "" + +#: babybuddy/templates/babybuddy/user_list.html:25 +#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:37 +#: core/templates/core/child_list.html:28 +#: core/templates/core/child_list.html:47 +#: core/templates/core/diaperchange_list.html:24 +#: core/templates/core/diaperchange_list.html:39 +#: core/templates/core/feeding_list.html:24 +#: core/templates/core/feeding_list.html:42 +#: core/templates/core/head_circumference_list.html:24 +#: core/templates/core/head_circumference_list.html:37 +#: core/templates/core/height_list.html:24 +#: core/templates/core/height_list.html:37 +#: core/templates/core/note_list.html:24 core/templates/core/note_list.html:38 +#: core/templates/core/pumping_list.html:24 +#: core/templates/core/pumping_list.html:38 +#: core/templates/core/sleep_list.html:24 +#: core/templates/core/sleep_list.html:39 +#: core/templates/core/temperature_list.html:24 +#: core/templates/core/temperature_list.html:37 +#: core/templates/core/tummytime_list.html:23 +#: core/templates/core/tummytime_list.html:38 +#: core/templates/core/weight_list.html:24 +#: core/templates/core/weight_list.html:37 +msgid "Actions" +msgstr "操作" + +#: babybuddy/templates/babybuddy/user_list.html:61 +msgid "No users found." +msgstr "找不到用户" + +#: babybuddy/templates/babybuddy/user_password_form.html:4 +#: babybuddy/templates/babybuddy/user_password_form.html:8 +#: babybuddy/templates/babybuddy/user_password_form.html:12 +msgid "Change Password" +msgstr "更改密码" + +#: babybuddy/templates/babybuddy/user_settings_form.html:4 +#: babybuddy/templates/babybuddy/user_settings_form.html:12 +msgid "User Settings" +msgstr "用户设置" + +#: babybuddy/templates/babybuddy/user_settings_form.html:33 +msgid "User Profile" +msgstr "用户档案" + +#: babybuddy/templates/babybuddy/user_settings_form.html:79 +msgid "API" +msgstr "API" + +#: babybuddy/templates/babybuddy/welcome.html:4 +#: babybuddy/templates/babybuddy/welcome.html:7 +msgid "Welcome!" +msgstr "欢迎!" + +#: babybuddy/templates/babybuddy/welcome.html:13 +msgid "Welcome to Baby Buddy!" +msgstr "欢迎使用Baby Buddy!" + +#: babybuddy/templates/babybuddy/welcome.html:15 +msgid "" +"Learn about and predict baby's needs without (as much) guess work " +"by using Baby Buddy to track —" +msgstr "" +"通过使用 Baby Buddy 来跟踪了解和预测宝宝的需求,而无需 (过多地) 进行" +"猜测工作 —" + +#: babybuddy/templates/babybuddy/welcome.html:28 core/models.py:258 +#: core/templates/core/diaperchange_confirm_delete.html:7 +#: core/templates/core/diaperchange_form.html:13 +#: core/templates/core/diaperchange_list.html:4 +#: core/templates/core/diaperchange_list.html:7 +#: core/templates/core/diaperchange_list.html:12 +#: dashboard/templates/cards/diaperchange_types.html:6 +msgid "Diaper Changes" +msgstr "更换尿布" + +#: babybuddy/templates/babybuddy/welcome.html:65 +msgid "" +"As the amount of entries grows, Baby Buddy will help parents and caregivers " +"to identify small patterns in baby's habits using the dashboard and graphs. " +"Baby Buddy is mobile-friendly and uses a dark theme to help weary moms and " +"dads with 2AM feedings and changings. To get started, just click the button " +"below to add your first (or second, third, etc.) child!" +msgstr "" +"随着条目数量的增加,Baby Buddy将帮助家长和护理人员使用数据看板和图表识别宝宝" +"的习惯。Baby Buddy是一款手机友好型产品,使用黑色主题帮助疲惫的爸爸妈妈在凌晨2" +"点喂食和换尿布。想要开始使用,只需单击下面的按钮添加您的第一个(或第二个、第三" +"个等)宝宝!" + +#: babybuddy/templates/babybuddy/welcome.html:77 +#: core/templates/core/child_form.html:8 core/templates/core/child_form.html:18 +#: core/templates/core/child_form.html:28 +msgid "Add a Child" +msgstr "添加一个宝宝" + +#: babybuddy/templates/dbsettings/site_settings.html:4 +#: babybuddy/templates/dbsettings/site_settings.html:12 +msgid "Site Settings" +msgstr "" + +#: babybuddy/templates/error/400.html:4 babybuddy/templates/error/400.html:7 +msgid "Bad Request" +msgstr "请求无效" + +#: babybuddy/templates/error/403.html:4 babybuddy/templates/error/403.html:7 +msgid "Permission Denied" +msgstr "无权限" + +#: babybuddy/templates/error/403.html:9 +msgid "" +"You do not have permission to access this resource. Contact a site " +"administrator for assistance." +msgstr "您没有访问此资源的权限。请联系网站管理员以获得帮助。" + +#: babybuddy/templates/error/403_csrf_bad_origin.html:15 +msgid "How to Fix" +msgstr "如何修复" + +#: babybuddy/templates/error/403_csrf_bad_origin.html:16 +#, python-format +msgid "" +"Add %(origin)s to the CSRF_TRUSTED_ORIGINS " +"environment variable. If multiple origins are required separate with commas." +msgstr "" +"添加 %(origin)s 到环境变量 CSRF_TRUSTED_ORIGINS。用" +"英文逗号分隔多个来源。" + +#: babybuddy/templates/error/404.html:4 babybuddy/templates/error/404.html:7 +msgid "Page Not Found" +msgstr "页面未找到" + +#: babybuddy/templates/error/404.html:9 +#, python-format +msgid "The path %(request_path)s does not exist." +msgstr "路径 %(request_path)s 不存在。" + +#: babybuddy/templates/error/500.html:4 babybuddy/templates/error/500.html:7 +msgid "Server Error" +msgstr "服务器错误" + +#: babybuddy/templates/error/base.html:14 +msgid "Return to Baby Buddy" +msgstr "返回 Baby Buddy!" + +#: babybuddy/templates/error/lockout.html:4 +msgid "Too Many Login Attempts" +msgstr "" + +#: babybuddy/templates/registration/login.html:28 +msgid "Login" +msgstr "登录" + +#: babybuddy/templates/registration/login.html:34 +msgid "Forgot your password?" +msgstr "忘记了密码?" + +#: babybuddy/templates/registration/password_reset_complete.html:4 +msgid "Password Reset Successfully!" +msgstr "密码重置成功!" + +#: babybuddy/templates/registration/password_reset_complete.html:8 +msgid "Your password has been set. You may go ahead and log in now." +msgstr "密码设置完成,请重新登录。" + +#: babybuddy/templates/registration/password_reset_complete.html:9 +msgid "Log in" +msgstr "登录" + +#: babybuddy/templates/registration/password_reset_confirm.html:4 +msgid "Password Reset" +msgstr "密码重置" + +#: babybuddy/templates/registration/password_reset_confirm.html:13 +msgid "" +"Oh snap! The two passwords did not match. Please try again." +msgstr "糟糕! 两次密码输入的不一致,请重试。" + +#: babybuddy/templates/registration/password_reset_confirm.html:22 +msgid "Enter your new password in each field below." +msgstr "在下面的每个字段中输入新密码。" + +#: babybuddy/templates/registration/password_reset_confirm.html:42 +#: babybuddy/templates/registration/password_reset_form.html:29 +msgid "Reset Password" +msgstr "重置密码" + +#: babybuddy/templates/registration/password_reset_done.html:4 +msgid "Reset Email Sent" +msgstr "重置邮件发送" + +#: babybuddy/templates/registration/password_reset_done.html:9 +msgid "" +"We've emailed you instructions for setting your password, if an account " +"exists with the email you entered. You should receive them shortly." +msgstr "" +"我们已通过电子邮件向您发送了设置密码的说明。如果您输入的电子邮件正确,您将很" +"快收到邮件。" + +#: babybuddy/templates/registration/password_reset_done.html:15 +msgid "" +"If you don't receive an email, please make sure you've entered the address " +"you registered with, and check your spam folder." +msgstr "" +"如果您没有收到电子邮件,请确保您已输入正确的邮箱地址,并检查您的垃圾邮件文件" +"夹。" + +#: babybuddy/templates/registration/password_reset_email.html:2 +#, python-format +msgid "" +"You're receiving this email because you requested a password reset for your " +"user account at %(site_name)s." +msgstr "" + +#: babybuddy/templates/registration/password_reset_email.html:4 +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: babybuddy/templates/registration/password_reset_email.html:8 +msgid "Your username, in case you’ve forgotten:" +msgstr "" + +#: babybuddy/templates/registration/password_reset_email.html:10 +msgid "Thanks for using Baby Buddy!" +msgstr "" + +#: babybuddy/templates/registration/password_reset_form.html:4 +msgid "Forgot Password" +msgstr "忘记密码" + +#: babybuddy/templates/registration/password_reset_form.html:9 +msgid "" +"Enter your account email address in the form below. If the address is valid, " +"you will receive instructions for resetting your password." +msgstr "" +"在下面的表格中输入您的电子邮箱地址。如果地址有效,您将收到重置密码的说明。" + +#: babybuddy/views.py:55 +msgid "Forbidden" +msgstr "禁止访问" + +#: babybuddy/views.py:56 +msgid "CSRF verification failed. Request aborted." +msgstr "跨站请求伪造 (CSRF) 验证失败,请求中断。" + +#: babybuddy/views.py:114 +#, python-format +msgid "User %(username)s added!" +msgstr "用户 %(username)s 已添加!" + +#: babybuddy/views.py:125 +#, python-format +msgid "User %(username)s updated." +msgstr "用户 %(username)s 已更新。" + +#: babybuddy/views.py:140 +msgid "User unlocked." +msgstr "" + +#: babybuddy/views.py:164 +#, python-brace-format +msgid "User {user} deleted." +msgstr "User {user} 删除成功。" + +#: babybuddy/views.py:185 +msgid "Password updated." +msgstr "密码更新完成。" + +#: babybuddy/views.py:199 +msgid "User API key regenerated." +msgstr "用于API秘钥已重新生成。" + +#: babybuddy/views.py:240 +msgid "Settings saved!" +msgstr "设置已保存!" + +#: core/fields.py:13 +#, python-format +msgid "" +"Nap start max. value %(max)s must be greater than nap start min. value " +"%(min)s." +msgstr "" + +#: core/fields.py:27 +#, python-format +msgid "" +"Nap start min. value %(min)s must be less than nap start min. value %(max)s." +msgstr "" + +#: core/filters.py:11 core/models.py:97 core/models.py:116 +msgid "Tag" +msgstr "标签" + +#: core/forms.py:130 +msgid "Name does not match child name." +msgstr "名称与宝宝名称不匹配。" + +#: core/forms.py:146 +msgid "" +"Click on the tags to add (+) or remove (-) tags or use the text editor to " +"create new tags." +msgstr "点击标签来添加 (+) 或删除 (-),也可编辑以新建标签。" + +#: core/models.py:29 +msgid "Date can not be in the future." +msgstr "不能选择未来的时间。" + +#: core/models.py:43 +msgid "Start time must come before end time." +msgstr "开始时间必须早于结束时间。" + +#: core/models.py:46 +msgid "Duration too long." +msgstr "持续时间太长。" + +#: core/models.py:62 +msgid "Another entry intersects the specified time period." +msgstr "另一个条目与指定的时间段相交。" + +#: core/models.py:76 +msgid "Date/time can not be in the future." +msgstr "不能选择未来的日期/时间。" + +#: core/models.py:85 core/models.py:246 +#: core/templates/core/diaperchange_list.html:30 +msgid "Color" +msgstr "颜色" + +#: core/models.py:91 +msgid "Last used" +msgstr "上次使用" + +#: core/models.py:98 core/templates/core/bmi_list.html:30 +#: core/templates/core/diaperchange_list.html:32 +#: core/templates/core/feeding_list.html:35 +#: core/templates/core/head_circumference_list.html:30 +#: core/templates/core/height_list.html:30 +#: core/templates/core/note_list.html:31 +#: core/templates/core/pumping_list.html:31 +#: core/templates/core/sleep_list.html:32 +#: core/templates/core/temperature_list.html:30 +#: core/templates/core/tummytime_list.html:31 +#: core/templates/core/weight_list.html:30 +msgid "Tags" +msgstr "标签" + +#: core/models.py:142 core/models.py:357 core/models.py:387 core/models.py:721 +#: core/templates/core/bmi_list.html:25 +#: core/templates/core/feeding_list.html:25 +#: core/templates/core/head_circumference_list.html:25 +#: core/templates/core/height_list.html:25 +#: core/templates/core/pumping_list.html:25 +#: core/templates/core/weight_list.html:25 reports/graphs/bmi_change.py:28 +#: reports/graphs/diaperchange_amounts.py:37 +#: reports/graphs/diaperchange_intervals.py:67 +#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 +#: reports/graphs/feeding_duration.py:56 reports/graphs/feeding_intervals.py:42 +#: reports/graphs/head_circumference_change.py:28 +#: reports/graphs/height_change.py:85 reports/graphs/pumping_amounts.py:60 +#: reports/graphs/sleep_pattern.py:157 reports/graphs/sleep_totals.py:59 +#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:85 +msgid "Date" +msgstr "日期" + +#: core/models.py:164 +msgid "First name" +msgstr "名" + +#: core/models.py:166 +msgid "Last name" +msgstr "姓" + +#: core/models.py:168 +msgid "Birth date" +msgstr "出生日期" + +#: core/models.py:169 +#, fuzzy +#| msgid "Birth date" +msgid "Birth time" +msgstr "出生日期" + +#: core/models.py:176 +msgid "Slug" +msgstr "少量" + +#: core/models.py:179 +msgid "Picture" +msgstr "宝宝照片" + +#: core/models.py:233 core/models.py:439 core/models.py:572 +#: core/templates/core/diaperchange_list.html:25 +#: core/templates/core/note_list.html:25 +#: core/templates/core/temperature_list.html:25 +#: reports/graphs/temperature_change.py:27 +msgid "Time" +msgstr "时间" + +#: core/models.py:235 core/templates/core/diaperchange_list.html:60 +#: reports/graphs/diaperchange_intervals.py:47 +#: reports/graphs/diaperchange_types.py:36 +msgid "Wet" +msgstr "小便" + +#: core/models.py:236 core/templates/core/diaperchange_list.html:61 +#: reports/graphs/diaperchange_intervals.py:38 +#: reports/graphs/diaperchange_types.py:30 +msgid "Solid" +msgstr "大便" + +#: core/models.py:240 +msgid "Black" +msgstr "黑色" + +#: core/models.py:241 +msgid "Brown" +msgstr "棕色" + +#: core/models.py:242 +msgid "Green" +msgstr "绿色" + +#: core/models.py:243 +msgid "Yellow" +msgstr "黄色" + +#: core/models.py:248 core/models.py:319 core/models.py:483 +#: core/templates/core/diaperchange_list.html:31 +#: core/templates/core/pumping_list.html:29 +#: dashboard/templates/cards/pumping_last.html:23 +msgid "Amount" +msgstr "数量" + +#: core/models.py:289 core/models.py:470 core/models.py:518 core/models.py:606 +#: core/models.py:675 +msgid "Start time" +msgstr "开始时间" + +#: core/models.py:292 core/models.py:476 core/models.py:521 core/models.py:678 +msgid "End time" +msgstr "结束时间" + +#: core/models.py:295 core/models.py:481 core/models.py:525 core/models.py:681 +#: core/templates/core/feeding_list.html:34 +#: core/templates/core/pumping_list.html:30 +#: core/templates/core/sleep_list.html:30 +#: core/templates/core/tummytime_list.html:29 +msgid "Duration" +msgstr "持续时间" + +#: core/models.py:299 +msgid "Breast milk" +msgstr "母乳" + +#: core/models.py:300 +msgid "Formula" +msgstr "配方奶" + +#: core/models.py:301 +msgid "Fortified breast milk" +msgstr "强化母乳" + +#: core/models.py:302 +msgid "Solid food" +msgstr "固体食物" + +#: core/models.py:305 core/templates/core/feeding_list.html:30 +msgid "Type" +msgstr "类型" + +#: core/models.py:309 +msgid "Bottle" +msgstr "奶瓶" + +#: core/models.py:310 +msgid "Left breast" +msgstr "左乳房" + +#: core/models.py:311 +msgid "Right breast" +msgstr "右乳房" + +#: core/models.py:312 +msgid "Both breasts" +msgstr "两侧乳房" + +#: core/models.py:313 +msgid "Parent fed" +msgstr "父母喂养" + +#: core/models.py:314 +msgid "Self fed" +msgstr "自己吃" + +#: core/models.py:317 core/templates/core/feeding_list.html:29 +msgid "Method" +msgstr "方式" + +#: core/models.py:419 core/models.py:753 +msgid "Girl" +msgstr "" + +#: core/models.py:420 core/models.py:754 +msgid "Boy" +msgstr "" + +#: core/models.py:442 core/templates/core/note_list.html:29 +msgid "Image" +msgstr "" + +#: core/models.py:523 core/templates/core/sleep_list.html:31 +msgid "Nap" +msgstr "小睡" + +#: core/models.py:531 +msgid "Nap settings" +msgstr "" + +#: core/models.py:603 core/templates/core/timer_list.html:25 +msgid "Name" +msgstr "名字" + +#: core/models.py:621 core/templates/core/timer_form.html:4 +msgid "Timer" +msgstr "计时器" + +#: core/models.py:622 core/templates/core/timer_confirm_delete.html:9 +#: core/templates/core/timer_detail.html:8 +#: core/templates/core/timer_form.html:7 core/templates/core/timer_list.html:4 +#: core/templates/core/timer_list.html:7 core/templates/core/timer_list.html:12 +#: core/templates/core/timer_nav.html:10 core/templates/core/timer_nav.html:44 +#: dashboard/templates/cards/timer_list.html:6 +msgid "Timers" +msgstr "计时器" + +#: core/models.py:625 +#, python-brace-format +msgid "Timer #{id}" +msgstr "计时器 #{id}" + +#: core/models.py:684 core/templates/core/tummytime_list.html:30 +msgid "Milestone" +msgstr "里程碑" + +#: core/templates/core/bmi_confirm_delete.html:4 +msgid "Delete a BMI Entry" +msgstr "删除一条BMI记录" + +#: core/templates/core/bmi_form.html:8 core/templates/core/bmi_form.html:17 +#: core/templates/core/bmi_form.html:27 +msgid "Add a BMI Entry" +msgstr "新增一条BMI记录" + +#: core/templates/core/bmi_list.html:15 +msgid "Add BMI" +msgstr "新增BMI记录" + +#: core/templates/core/bmi_list.html:69 +msgid "No BMI entries found." +msgstr "未找到BMI记录。" + +#: core/templates/core/child_confirm_delete.html:4 +msgid "Delete a Child" +msgstr "删除宝宝信息" + +#: core/templates/core/child_confirm_delete.html:20 +msgid "To confirm this action. Type the full name of the child below." +msgstr "确认这一行为,请在下面键入孩子的全名。" + +#: core/templates/core/child_detail.html:25 +#: dashboard/templates/dashboard/dashboard.html:32 +msgid "Born" +msgstr "生日" + +#: core/templates/core/child_detail.html:26 +#: dashboard/templates/dashboard/dashboard.html:33 +msgid "Age" +msgstr "年龄" + +#: core/templates/core/child_list.html:15 +msgid "Add Child" +msgstr "新增宝宝" + +#: core/templates/core/child_list.html:27 +msgid "Birth Date" +msgstr "出生日期" + +#: core/templates/core/child_list.html:66 +msgid "No children found." +msgstr "未找到宝宝。" + +#: core/templates/core/child_quick_switch.html:6 +msgid "Switch child" +msgstr "" + +#: core/templates/core/child_quick_switch.html:13 +msgid "Switch to…" +msgstr "" + +#: core/templates/core/diaperchange_confirm_delete.html:4 +msgid "Delete a Diaper Change" +msgstr "删除一条换尿布记录" + +#: core/templates/core/diaperchange_form.html:6 +msgid "Update a Diaper Change" +msgstr "更新一条换尿布记录" + +#: core/templates/core/diaperchange_form.html:8 +#: core/templates/core/diaperchange_form.html:27 +msgid "Add a Diaper Change" +msgstr "添加一条换尿布记录" + +#: core/templates/core/diaperchange_form.html:17 +#: core/templates/core/feeding_form.html:17 +#: core/templates/core/note_form.html:17 core/templates/core/sleep_form.html:17 +#: core/templates/core/tummytime_form.html:17 +#: core/templates/core/widget_tag_editor.html:23 +msgid "Add" +msgstr "添加" + +#: core/templates/core/diaperchange_list.html:15 +msgid "Add Diaper Change" +msgstr "新增换尿布记录" + +#: core/templates/core/diaperchange_list.html:29 +msgid "Contents" +msgstr "内容" + +#: core/templates/core/diaperchange_list.html:76 +msgid "No diaper changes found." +msgstr "未找到换尿布记录。" + +#: core/templates/core/feeding_confirm_delete.html:4 +msgid "Delete a Feeding" +msgstr "删除一条喂食记录" + +#: core/templates/core/feeding_form.html:6 +msgid "Update a Feeding" +msgstr "更新一条喂食记录" + +#: core/templates/core/feeding_form.html:8 +#: core/templates/core/feeding_form.html:27 +msgid "Add a Feeding" +msgstr "新增一条喂食记录" + +#: core/templates/core/feeding_list.html:15 +msgid "Add Feeding" +msgstr "新增喂食记录" + +#: core/templates/core/feeding_list.html:33 +msgid "Amt." +msgstr "数量" + +#: core/templates/core/feeding_list.html:81 +msgid "No feedings found." +msgstr "未找到喂食记录。" + +#: core/templates/core/head_circumference_confirm_delete.html:4 +msgid "Delete a Head Circumference Entry" +msgstr "删除一条头围记录" + +#: core/templates/core/head_circumference_form.html:8 +#: core/templates/core/head_circumference_form.html:17 +#: core/templates/core/head_circumference_form.html:27 +msgid "Add a Head Circumference Entry" +msgstr "新增一条头围记录" + +#: core/templates/core/head_circumference_list.html:15 +msgid "Add Head Circumference" +msgstr "新增头围记录" + +#: core/templates/core/head_circumference_list.html:69 +msgid "No head circumference entries found." +msgstr "未找到头围记录。" + +#: core/templates/core/height_confirm_delete.html:4 +msgid "Delete a Height Entry" +msgstr "删除一条身高记录" + +#: core/templates/core/height_form.html:8 +#: core/templates/core/height_form.html:17 +#: core/templates/core/height_form.html:27 +msgid "Add a Height Entry" +msgstr "新增一条身高记录" + +#: core/templates/core/height_list.html:15 +msgid "Add Height" +msgstr "新增身高记录" + +#: core/templates/core/height_list.html:69 +msgid "No height entries found." +msgstr "未找到身高记录。" + +#: core/templates/core/note_confirm_delete.html:4 +msgid "Delete a Note" +msgstr "删除一条记录" + +#: core/templates/core/note_form.html:6 +msgid "Update a Note" +msgstr "更新一条记录" + +#: core/templates/core/note_form.html:8 core/templates/core/note_form.html:27 +msgid "Add a Note" +msgstr "新增一条记录" + +#: core/templates/core/note_list.html:15 +msgid "Add Note" +msgstr "新增笔记" + +#: core/templates/core/note_list.html:71 +msgid "No notes found." +msgstr "未找到记录。" + +#: core/templates/core/pumping_confirm_delete.html:4 +msgid "Delete a Pumping Entry" +msgstr "删除一条吸奶记录" + +#: core/templates/core/pumping_form.html:8 +#: core/templates/core/pumping_form.html:17 +#: core/templates/core/pumping_form.html:27 +msgid "Add a Pumping Entry" +msgstr "新增一条吸奶记录" + +#: core/templates/core/pumping_list.html:15 +msgid "Add Pumping Entry" +msgstr "新增吸奶记录" + +#: core/templates/core/pumping_list.html:71 +msgid "No pumping entries found." +msgstr "未找到吸奶记录。" + +#: core/templates/core/quick_timer_nav.html:9 +#: core/templates/core/quick_timer_nav.html:29 +#: core/templates/core/timer_nav.html:37 +msgid "Quick Start Timer" +msgstr "快速开始计时" + +#: core/templates/core/quick_timer_nav.html:19 +#: core/templates/core/timer_nav.html:28 +msgid "Quick Start Timer For…" +msgstr "快速开始计时" + +#: core/templates/core/sleep_confirm_delete.html:4 +msgid "Delete a Sleep Entry" +msgstr "删除一条睡眠记录" + +#: core/templates/core/sleep_form.html:6 +msgid "Update a Sleep Entry" +msgstr "更新一条睡眠记录" + +#: core/templates/core/sleep_form.html:8 core/templates/core/sleep_form.html:27 +msgid "Add a Sleep Entry" +msgstr "新增一条睡眠记录" + +#: core/templates/core/sleep_list.html:15 +msgid "Add Sleep" +msgstr "新增睡眠记录" + +#: core/templates/core/sleep_list.html:25 +#: core/templates/core/timer_form.html:12 +#: core/templates/core/timer_list.html:24 +#: core/templates/core/tummytime_list.html:24 +msgid "Start" +msgstr "开始" + +#: core/templates/core/sleep_list.html:26 +#: core/templates/core/tummytime_list.html:25 +msgid "End" +msgstr "结束" + +#: core/templates/core/sleep_list.html:73 +msgid "No sleep entries found." +msgstr "未找到睡眠记录。" + +#: core/templates/core/temperature_confirm_delete.html:4 +msgid "Delete a Temperature Reading" +msgstr "删除一个体温读数" + +#: core/templates/core/temperature_form.html:8 +#: core/templates/core/temperature_form.html:17 +msgid "Add a Temperature Reading" +msgstr "新增一个体温读数" + +#: core/templates/core/temperature_form.html:27 +msgid "Add a Temperature Entry" +msgstr "新增一个体温条目" + +#: core/templates/core/temperature_list.html:15 +msgid "Add Temperature Reading" +msgstr "新增体温记录" + +#: core/templates/core/temperature_list.html:69 +msgid "No temperature entries found." +msgstr "未找到体温条目。" + +#: core/templates/core/timer_confirm_delete.html:5 +#, python-format +msgid "Delete %(object)s" +msgstr "删除 %(object)s" + +#: core/templates/core/timer_detail.html:29 +msgid "Started" +msgstr "已经开始" + +#: core/templates/core/timer_detail.html:32 +#, python-format +msgid "%(timer)s created by %(user)s" +msgstr "%(timer)s 由 %(user)s 创建" + +#: core/templates/core/timer_detail.html:71 +msgid "Timer actions" +msgstr "计时器操作" + +#: core/templates/core/timer_detail.html:85 +msgid "Restart timer" +msgstr "重启计时器" + +#: core/templates/core/timer_form.html:22 +#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15 +msgid "Start Timer" +msgstr "开始计时" + +#: core/templates/core/timer_list.html:48 +msgid "No timer entries found." +msgstr "未找到计时器。" + +#: core/templates/core/timer_nav.html:20 +msgid "View Timers" +msgstr "查看计时器" + +#: core/templates/core/timer_nav.html:50 +#: dashboard/templates/cards/diaperchange_last.html:17 +#: dashboard/templates/cards/diaperchange_types.html:12 +#: dashboard/templates/cards/feeding_last.html:17 +#: dashboard/templates/cards/feeding_last_method.html:49 +#: dashboard/templates/cards/feeding_recent.html:20 +#: dashboard/templates/cards/feeding_recent.html:58 +#: dashboard/templates/cards/pumping_last.html:17 +#: dashboard/templates/cards/sleep_last.html:17 +#: dashboard/templates/cards/sleep_naps_day.html:18 +#: dashboard/templates/cards/sleep_recent.html:20 +#: dashboard/templates/cards/sleep_recent.html:52 +#: dashboard/templates/cards/tummytime_day.html:14 +msgid "None" +msgstr "无" + +#: core/templates/core/tummytime_confirm_delete.html:4 +msgid "Delete a Tummy Time Entry" +msgstr "删除一条趴玩记录" + +#: core/templates/core/tummytime_form.html:6 +msgid "Update a Tummy Time Entry" +msgstr "更新一条趴玩记录" + +#: core/templates/core/tummytime_form.html:8 +#: core/templates/core/tummytime_form.html:27 +msgid "Add a Tummy Time Entry" +msgstr "新增一条趴玩记录" + +#: core/templates/core/tummytime_list.html:15 +msgid "Add Tummy Time" +msgstr "新增趴玩时间" + +#: core/templates/core/tummytime_list.html:67 +msgid "No tummy time entries found." +msgstr "未找到趴玩记录。" + +#: core/templates/core/weight_confirm_delete.html:4 +msgid "Delete a Weight Entry" +msgstr "删除一条体重记录" + +#: core/templates/core/weight_form.html:8 +#: core/templates/core/weight_form.html:17 +#: core/templates/core/weight_form.html:27 +msgid "Add a Weight Entry" +msgstr "新增一条体重记录" + +#: core/templates/core/weight_list.html:15 +msgid "Add Weight" +msgstr "新增体重记录" + +#: core/templates/core/weight_list.html:69 +msgid "No weight entries found." +msgstr "未找到体重记录。" + +#: core/templates/core/widget_tag_editor.html:22 +msgid "Tag name" +msgstr "标签名" + +#: core/templates/core/widget_tag_editor.html:26 +msgid "Recently used:" +msgstr "最近使用:" + +#: core/templates/core/widget_tag_editor.html:45 +msgctxt "Error modal" +msgid "Error" +msgstr "错误" + +#: core/templates/core/widget_tag_editor.html:50 +msgctxt "Error modal" +msgid "An error ocurred." +msgstr "发生了一个错误。" + +#: core/templates/core/widget_tag_editor.html:51 +msgctxt "Error modal" +msgid "Invalid tag name." +msgstr "无效的标签名。" + +#: core/templates/core/widget_tag_editor.html:52 +msgctxt "Error modal" +msgid "Failed to create tag." +msgstr "新建标签失败。" + +#: core/templates/core/widget_tag_editor.html:53 +msgctxt "Error modal" +msgid "Failed to obtain tag data." +msgstr "拉取标签数据失败。" + +#: core/templates/core/widget_tag_editor.html:58 +msgctxt "Error modal" +msgid "Close" +msgstr "关闭" + +#: core/templates/timeline/_timeline.html:38 +#, python-format +msgid "%(since)s ago (%(time)s)" +msgstr "%(since)s 之前 (%(time)s)" + +#: core/templates/timeline/_timeline.html:44 +#, python-format +msgid "Duration: %(duration)s" +msgstr "持续时间:%(duration)s" + +#: core/templates/timeline/_timeline.html:53 +#, python-format +msgid "%(since)s since previous" +msgstr "距离上一次 %(since)s" + +#: core/templates/timeline/_timeline.html:61 +#: dashboard/templates/dashboard/child_button_group.html:20 +msgid "Edit" +msgstr "编辑" + +#: core/templates/timeline/_timeline.html:85 +msgid "No events" +msgstr "没有事件" + +#: core/templatetags/datetime.py:26 +msgid "Today" +msgstr "今天" + +#: core/templatetags/datetime.py:41 +msgid "{}, {}" +msgstr "{}, {}" + +#: core/templatetags/duration.py:107 +#: dashboard/templates/cards/diaperchange_types.html:50 +#, python-format +msgid "%(days_ago)s days ago" +msgstr "%(days_ago)s 天之前" + +#: core/templatetags/duration.py:110 +#: dashboard/templates/cards/diaperchange_types.html:46 +msgid "today" +msgstr "今天" + +#: core/templatetags/duration.py:112 +#: dashboard/templates/cards/diaperchange_types.html:48 +msgid "yesterday" +msgstr "昨天" + +#: core/timeline.py:56 +#, python-format +msgid "%(child)s started tummy time!" +msgstr "%(child)s 开始了趴玩时光!" + +#: core/timeline.py:68 +#, python-format +msgid "%(child)s finished tummy time." +msgstr "%(child)s 结束了趴玩。" + +#: core/timeline.py:96 +#, python-format +msgid "%(child)s fell asleep." +msgstr "%(child)s 睡着了。" + +#: core/timeline.py:108 +#, python-format +msgid "%(child)s woke up." +msgstr "%(child)s 醒了。" + +#: core/timeline.py:143 +#, python-format +msgid "Amount: %(amount).0f" +msgstr "数量: %(amount).0f" + +#: core/timeline.py:151 +#, python-format +msgid "%(child)s started feeding." +msgstr "%(child)s 开始喂食。" + +#: core/timeline.py:164 +#, python-format +msgid "%(child)s finished feeding." +msgstr "%(child)s 喂食完成。" + +#: core/timeline.py:193 +#, python-format +msgid "%(child)s had a %(type)s diaper change." +msgstr "%(child)s 有一条 %(type)s 换尿裤记录." + +#: core/timeline.py:233 +#, python-format +msgid "Temperature: %(temperature).0f" +msgstr "" + +#: core/timeline.py:241 +#, python-format +msgid "%(child)s had a temperature measurement." +msgstr "" + +#: core/utils.py:40 +#, python-format +msgid "%(hours)s hour" +msgid_plural "%(hours)s hours" +msgstr[0] "%(hours)s 小时" + +#: core/utils.py:44 +#, python-format +msgid "%(minutes)s minute" +msgid_plural "%(minutes)s minutes" +msgstr[0] "%(minutes)s 分钟" + +#: core/utils.py:50 +#, python-format +msgid "%(seconds)s second" +msgid_plural "%(seconds)s seconds" +msgstr[0] "%(seconds)s 秒" + +#: core/views.py:33 +#, python-format +msgid "%(model)s entry for %(child)s added!" +msgstr "为%(child)s 增加了一条 %(model)s 记录!" + +#: core/views.py:35 core/views.py:308 +#, python-format +msgid "%(model)s entry added!" +msgstr "增加了一条 %(model)s 记录!" + +#: core/views.py:61 core/views.py:316 +#, python-format +msgid "%(model)s entry for %(child)s updated." +msgstr "为%(child)s 更新了一条 %(model)s 记录!" + +#: core/views.py:63 +#, python-format +msgid "%(model)s entry updated." +msgstr "更新了一条 %(model)s 记录!" + +#: core/views.py:69 core/views.py:146 +#, python-format +msgid "%(model)s entry deleted." +msgstr "%(model)s 条目已删除。" + +#: core/views.py:115 +#, python-format +msgid "%(first_name)s %(last_name)s added!" +msgstr "%(first_name)s %(last_name)s 已新增!" + +#: core/views.py:366 +#, python-format +msgid "%(model)s reading added!" +msgstr "%(model)s 读数已增加!" + +#: core/views.py:374 +#, python-format +msgid "%(model)s reading for %(child)s updated." +msgstr "%(child)s 的 %(model)s 读数已更新。" + +#: dashboard/templates/cards/diaperchange_last.html:6 +msgid "Last Diaper Change" +msgstr "上一次换尿布" + +#: dashboard/templates/cards/diaperchange_last.html:12 +#: dashboard/templates/cards/feeding_last.html:12 +#: dashboard/templates/cards/pumping_last.html:12 +#: dashboard/templates/cards/sleep_last.html:12 +#: dashboard/templates/cards/tummytime_last.html:13 +#, python-format +msgid "
%(since)s ago
%(time)s" +msgstr "
%(since)s 之前
%(time)s" + +#: dashboard/templates/cards/diaperchange_types.html:14 +msgid "Past Week" +msgstr "过去一周" + +#: dashboard/templates/cards/diaperchange_types.html:26 +msgid "wet" +msgstr "小便" + +#: dashboard/templates/cards/diaperchange_types.html:33 +msgid "solid" +msgstr "大便" + +#: dashboard/templates/cards/diaperchange_types.html:53 +#, fuzzy +#| msgid "Changes" +msgid "changes" +msgstr "换尿布" + +#: dashboard/templates/cards/feeding_last.html:6 +msgid "Last Feeding" +msgstr "上一次喂食" + +#: dashboard/templates/cards/feeding_last_method.html:6 +msgid "Last Feeding Method" +msgstr "上一次喂食的方式" + +#: dashboard/templates/cards/feeding_last_method.html:19 +msgid "most recent" +msgstr "最近" + +#: dashboard/templates/cards/feeding_last_method.html:21 +#, python-format +msgid "%(n)s feeding ago" +msgid_plural "%(n)s feedings ago" +msgstr[0] "前 %(n)s 次喂食" + +#: dashboard/templates/cards/feeding_recent.html:6 +msgid "Recent Feedings" +msgstr "" + +#: dashboard/templates/cards/feeding_recent.html:25 +#, python-format +msgid "%(counter)s feeding" +msgid_plural "%(counter)s feedings" +msgstr[0] "%(counter)s 次喂食" + +#: dashboard/templates/cards/feeding_recent.html:32 +#: dashboard/templates/cards/sleep_recent.html:32 +#, python-format +msgid "
%(since)s
" +msgstr "" + +#: dashboard/templates/cards/pumping_last.html:6 +msgid "Last Pumping" +msgstr "吸奶" + +#: dashboard/templates/cards/sleep_last.html:6 +msgid "Last Sleep" +msgstr "上一次睡眠" + +#: dashboard/templates/cards/sleep_naps_day.html:6 +msgid "Today's Naps" +msgstr "今天的小睡" + +#: dashboard/templates/cards/sleep_naps_day.html:12 +#, python-format +msgid "%(count)s nap" +msgid_plural "%(count)s naps" +msgstr[0] "%(count)s 小睡" + +#: dashboard/templates/cards/sleep_recent.html:6 +msgid "Recent Sleep" +msgstr "上一次睡眠" + +#: dashboard/templates/cards/sleep_recent.html:25 +#, python-format +msgid "%(counter)s sleep" +msgid_plural "%(counter)s sleeps" +msgstr[0] "%(counter)s 次喂食" + +#: dashboard/templates/cards/statistics.html:7 +msgid "Statistics" +msgstr "统计数据" + +#: dashboard/templates/cards/statistics.html:25 +msgid "Not enough data" +msgstr "没有足够的数据" + +#: dashboard/templates/cards/statistics.html:48 +msgid "No data yet" +msgstr "还没有数据" + +#: dashboard/templates/cards/timer_list.html:12 +#, python-format +msgid "%(count)s timer" +msgid_plural "%(count)s timers" +msgstr[0] "" + +#: dashboard/templates/cards/timer_list.html:27 +#, python-format +msgid "Started by %(user)s at %(start)s" +msgstr "在 %(start)s 由 %(user)s 开始" + +#: dashboard/templates/cards/tummytime_day.html:6 +msgid "Today's Tummy Time" +msgstr "今天的趴玩时间" + +#: dashboard/templates/cards/tummytime_day.html:22 +#, python-format +msgid "%(duration)s at %(end)s" +msgstr "%(duration)s 直到 %(end)s" + +#: dashboard/templates/cards/tummytime_last.html:6 +msgid "Last Tummy Time" +msgstr "上一次趴玩时间" + +#: dashboard/templates/cards/tummytime_last.html:18 +msgid "Never" +msgstr "从不" + +#: dashboard/templates/dashboard/child_button_group.html:3 +msgid "Child actions" +msgstr "宝宝行动" + +#: dashboard/templates/dashboard/child_button_group.html:12 +#: reports/templates/reports/breadcrumb_common_chunk.html:7 +#: reports/templates/reports/report_list.html:4 +#: reports/templates/reports/report_list.html:11 +msgid "Reports" +msgstr "报告" + +#: dashboard/templatetags/cards.py:381 +msgid "Average nap duration" +msgstr "平均小睡时间" + +#: dashboard/templatetags/cards.py:388 +msgid "Average naps per day" +msgstr "每天的平均小睡次数" + +#: dashboard/templatetags/cards.py:398 +msgid "Average sleep duration" +msgstr "平均睡眠时间" + +#: dashboard/templatetags/cards.py:405 +msgid "Average awake duration" +msgstr "平均清醒时间" + +#: dashboard/templatetags/cards.py:415 +msgid "Weight change per week" +msgstr "每周体重变化" + +#: dashboard/templatetags/cards.py:425 +msgid "Height change per week" +msgstr "每周身高变化" + +#: dashboard/templatetags/cards.py:435 +msgid "Head circumference change per week" +msgstr "每周头围变化" + +#: dashboard/templatetags/cards.py:445 +msgid "BMI change per week" +msgstr "每周BMI变化" + +#: dashboard/templatetags/cards.py:463 +msgid "Diaper change frequency (past 3 days)" +msgstr "换尿布频率(过去三天)" + +#: dashboard/templatetags/cards.py:467 +msgid "Diaper change frequency (past 2 weeks)" +msgstr "换尿布频率(过去两周)" + +#: dashboard/templatetags/cards.py:473 +msgid "Diaper change frequency" +msgstr "换尿布频率" + +#: dashboard/templatetags/cards.py:509 +msgid "Feeding frequency (past 3 days)" +msgstr "喂食频率(过去三天)" + +#: dashboard/templatetags/cards.py:513 +msgid "Feeding frequency (past 2 weeks)" +msgstr "喂食频率(过去两周)" + +#: dashboard/templatetags/cards.py:519 +msgid "Feeding frequency" +msgstr "喂食频率" + +#: reports/graphs/bmi_change.py:27 +msgid "BMI" +msgstr "身体质量指数(BMI)" + +#: reports/graphs/diaperchange_amounts.py:27 +msgid "Diaper change amount" +msgstr "换尿布数量" + +#: reports/graphs/diaperchange_amounts.py:36 +msgid "Diaper Change Amounts" +msgstr "换尿布数量" + +#: reports/graphs/diaperchange_amounts.py:39 +msgid "Change amount" +msgstr "换尿布数量" + +#: reports/graphs/diaperchange_intervals.py:56 +#: reports/graphs/diaperchange_types.py:41 reports/graphs/feeding_amounts.py:58 +msgid "Total" +msgstr "总计" + +#: reports/graphs/diaperchange_intervals.py:66 +msgid "Diaper Change Intervals" +msgstr "" + +#: reports/graphs/diaperchange_intervals.py:69 +msgid "Interval (hours)" +msgstr "" + +#: reports/graphs/diaperchange_lifetimes.py:35 +msgid "Diaper Lifetimes" +msgstr "换尿布时间间隔" + +#: reports/graphs/diaperchange_lifetimes.py:36 +msgid "Time between changes (hours)" +msgstr "换尿布间隔时间(小时)" + +#: reports/graphs/diaperchange_types.py:48 +msgid "Diaper Change Types" +msgstr "换尿布类型" + +#: reports/graphs/diaperchange_types.py:51 +msgid "Number of changes" +msgstr "换尿布次数" + +#: reports/graphs/feeding_amounts.py:69 +msgid "Total Feeding Amount by Type" +msgstr "按类型划分的总喂食量统计" + +#: reports/graphs/feeding_amounts.py:72 +msgid "Feeding amount" +msgstr "喂食量" + +#: reports/graphs/feeding_duration.py:38 +msgid "Average duration" +msgstr "平均持续时间" + +#: reports/graphs/feeding_duration.py:46 +msgid "Total feedings" +msgstr "总喂食量" + +#: reports/graphs/feeding_duration.py:55 +msgid "Average Feeding Durations" +msgstr "平均喂食持续时间" + +#: reports/graphs/feeding_duration.py:58 +msgid "Average duration (minutes)" +msgstr "平均持续时间(分钟)" + +#: reports/graphs/feeding_duration.py:60 +msgid "Number of feedings" +msgstr "喂食次数" + +#: reports/graphs/feeding_intervals.py:32 +msgid "Interval" +msgstr "" + +#: reports/graphs/feeding_intervals.py:41 +msgid "Feeding intervals" +msgstr "" + +#: reports/graphs/feeding_intervals.py:44 +msgid "Feeding interval (hours)" +msgstr "" + +#: reports/graphs/head_circumference_change.py:27 +msgid "Head Circumference" +msgstr "头围" + +#: reports/graphs/height_change.py:49 reports/graphs/weight_change.py:49 +msgid "P3" +msgstr "" + +#: reports/graphs/height_change.py:55 reports/graphs/weight_change.py:55 +msgid "P15" +msgstr "" + +#: reports/graphs/height_change.py:61 reports/graphs/weight_change.py:61 +msgid "P50" +msgstr "" + +#: reports/graphs/height_change.py:67 reports/graphs/weight_change.py:67 +msgid "P85" +msgstr "" + +#: reports/graphs/height_change.py:73 reports/graphs/weight_change.py:73 +msgid "P97" +msgstr "" + +#: reports/graphs/height_change.py:84 +msgid "Height" +msgstr "身高" + +#: reports/graphs/pumping_amounts.py:59 +msgid "Total Pumping Amount" +msgstr "合计吸奶量" + +#: reports/graphs/pumping_amounts.py:62 +msgid "Pumping Amount" +msgstr "吸奶量" + +#: reports/graphs/sleep_pattern.py:154 +msgid "Sleep Pattern" +msgstr "睡眠类型" + +#: reports/graphs/sleep_pattern.py:171 +msgid "Time of day" +msgstr "当日时间" + +#: reports/graphs/sleep_totals.py:48 +msgid "Total sleep" +msgstr "睡眠统计" + +#: reports/graphs/sleep_totals.py:58 +msgid "Sleep Totals" +msgstr "睡眠总计" + +#: reports/graphs/sleep_totals.py:61 +msgid "Hours of sleep" +msgstr "睡眠时间" + +#: reports/graphs/temperature_change.py:26 +msgid "Temperature" +msgstr "体温" + +#: reports/graphs/tummytime_duration.py:34 +msgid "Total duration" +msgstr "总持续时间" + +#: reports/graphs/tummytime_duration.py:41 +#: reports/graphs/tummytime_duration.py:55 +msgid "Number of sessions" +msgstr "趴玩次数" + +#: reports/graphs/tummytime_duration.py:50 +msgid "Total Tummy Time Durations" +msgstr "趴玩时光持续时间合计" + +#: reports/graphs/tummytime_duration.py:53 +msgid "Total duration (minutes)" +msgstr "总持续时间(分钟)" + +#: reports/graphs/weight_change.py:84 +msgid "Weight" +msgstr "体重" + +#: reports/templates/reports/diaperchange_amounts.html:4 +#: reports/templates/reports/diaperchange_amounts.html:9 +msgid "Diaper Amounts" +msgstr "换尿布数量" + +#: reports/templates/reports/diaperchange_intervals.html:4 +#: reports/templates/reports/diaperchange_intervals.html:9 +msgid "Diaper Change Intervals" +msgstr "" + +#: reports/templates/reports/diaperchange_lifetimes.html:4 +#: reports/templates/reports/diaperchange_lifetimes.html:9 +#: reports/templates/reports/report_list.html:23 +msgid "Diaper Lifetimes" +msgstr "换尿布时间间隔" + +#: reports/templates/reports/diaperchange_types.html:4 +#: reports/templates/reports/diaperchange_types.html:9 +#: reports/templates/reports/report_list.html:21 +msgid "Diaper Change Types" +msgstr "换尿布类型" + +#: reports/templates/reports/feeding_amounts.html:4 +#: reports/templates/reports/feeding_amounts.html:9 +#: reports/templates/reports/report_list.html:24 +msgid "Feeding Amounts" +msgstr "喂食量" + +#: reports/templates/reports/feeding_duration.html:4 +#: reports/templates/reports/feeding_duration.html:9 +msgid "Average Feeding Durations" +msgstr "平均喂食持续时间" + +#: reports/templates/reports/feeding_intervals.html:4 +#: reports/templates/reports/feeding_intervals.html:9 +#: reports/templates/reports/report_list.html:26 +msgid "Feeding Intervals" +msgstr "" + +#: reports/templates/reports/report_base.html:18 +msgid "There is not enough data to generate this report." +msgstr "没有足够的数据来生成这个报告。" + +#: reports/templates/reports/report_list.html:19 +msgid "Body Mass Index (BMI)" +msgstr "身体质量指数 (BMI)" + +#: reports/templates/reports/report_list.html:20 +msgid "Diaper Change Amounts" +msgstr "换尿布数量" + +#: reports/templates/reports/report_list.html:22 +msgid "Diaper Intervals" +msgstr "" + +#: reports/templates/reports/report_list.html:25 +msgid "Feeding Durations (Average)" +msgstr "喂食时间(平均)" + +#: reports/templates/reports/report_list.html:29 +msgid "WHO Height Percentiles for Boys in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:30 +msgid "WHO Height Percentiles for Girls in cm" +msgstr "" + +#: reports/templates/reports/report_list.html:31 +msgid "Pumping Amounts" +msgstr "吸奶量" + +#: reports/templates/reports/report_list.html:32 +#: reports/templates/reports/sleep_pattern.html:4 +#: reports/templates/reports/sleep_pattern.html:9 +msgid "Sleep Pattern" +msgstr "睡眠类型" + +#: reports/templates/reports/report_list.html:33 +#: reports/templates/reports/sleep_totals.html:4 +#: reports/templates/reports/sleep_totals.html:9 +msgid "Sleep Totals" +msgstr "睡眠统计" + +#: reports/templates/reports/report_list.html:35 +msgid "Tummy Time Durations (Sum)" +msgstr "趴玩时光持续时间(合计)" + +#: reports/templates/reports/report_list.html:37 +msgid "WHO Weight Percentiles for Boys in kg" +msgstr "" + +#: reports/templates/reports/report_list.html:38 +msgid "WHO Weight Percentiles for Girls in kg" +msgstr "" + +#: reports/templates/reports/tummytime_duration.html:4 +#: reports/templates/reports/tummytime_duration.html:9 +msgid "Total Tummy Time Durations" +msgstr "趴玩时光持续时间合计" + +#~ msgid "0 days" +#~ msgstr "0天" + +#, python-format +#~ msgid "%(key)s days ago" +#~ msgstr "%(key)s 天之前" + +#~ msgid "" +#~ "This setting will only be used when a browser does not support refresh on " +#~ "focus." +#~ msgstr "此设置仅在浏览器不支持焦点刷新时使用。" + +#~ msgid "English" +#~ msgstr "英语" + +#~ msgid "" +#~ "You do not have permission to access this resource.\n" +#~ " Contact a site administrator for assistance." +#~ msgstr "" +#~ "您没有访问此资源的权限。\n" +#~ "请与站点管理员联系以获取帮助。" + +#~ msgid "" +#~ "Error: Some fields have errors. See below for details. " +#~ msgstr "错误: 字段填写错误。参见具体原因。 " + +#~ msgid "Backend Admin" +#~ msgstr "后台管理员" + +#~ msgid "" +#~ "Learn about and predict baby's needs without\n" +#~ " (as much) guess work by using Baby Buddy to track " +#~ "—" +#~ msgstr "" +#~ "通过使用 Baby Buddy 来跟踪了解和预测宝宝的需求,而无需(过多地)" +#~ "进行猜测工作 —" + +#~ msgid "" +#~ "As the amount of entries grows, Baby Buddy will help\n" +#~ " parents and caregivers to identify small patterns in baby's " +#~ "habits\n" +#~ " using the dashboard and graphs. Baby Buddy is mobile-friendly " +#~ "and\n" +#~ " uses a dark theme to help weary moms and dads with 2AM " +#~ "feedings and\n" +#~ " changings. To get started, just click the button below to add " +#~ "your\n" +#~ " first (or second, third, etc.) child!" +#~ msgstr "" +#~ "随着条目数量的增加,Baby Buddy 将帮助家长和护理人员使用数据看板和图表识别" +#~ "宝宝的习惯。Baby Buddy 是一款手机友好型产品,使用黑色主题帮助疲惫的爸爸妈" +#~ "妈在凌晨两点喂食和换尿布。想要开始使用,只需单击下面的按钮添加您的第一个" +#~ "(或第二个、第三个等)宝宝!" + +#~ msgid "" +#~ "

Oh snap! The\n" +#~ " two passwords did not match. Please try again.

" +#~ msgstr "" +#~ "

提示两次密码输入的不一致,请重试。

" + +#~ msgid "" +#~ "

We've emailed you instructions for setting your\n" +#~ " password, if an account exists with the email you entered. " +#~ "You\n" +#~ " should receive them shortly.

\n" +#~ "

If you don't receive an email, please make sure " +#~ "you've\n" +#~ " entered the address you registered with, and check your spam\n" +#~ " folder.

" +#~ msgstr "" +#~ "

我们已通过电子邮件向您发送了设置密码的说明。如果您输入的电子邮件正确," +#~ "您将很快收到邮件。

\n" +#~ "

如果您没有收到电子邮件,请确保您已输入正确的邮箱地址," +#~ "并检查您的垃圾邮件文件夹。

" + +#~ msgid "" +#~ "

Enter your account email address in the\n" +#~ " form below. If the address is valid, you will receive " +#~ "instructions for\n" +#~ " resetting your password.

" +#~ msgstr "" +#~ "

在下面的表格中输入您的帐户电子邮件地址。如果地址有效,您" +#~ "将收到重置密码的说明。

" + +#~ msgid "Wet and/or solid is required." +#~ msgstr "大便或小便是必填的。" + +#~ msgid "Only \"Bottle\" method is allowed with \"Formula\" type." +#~ msgstr "只有“奶瓶”方式才允许使用“配方奶”类型。" + +#~ msgid "Add a Change" +#~ msgstr "添加一条尿布记录" + +#~ msgid "Stopped" +#~ msgstr "已经结束" + +#~ msgid "%(timer)s created by %(object.user)s" +#~ msgstr "%(timer)s 由 %(object.user)s 创建" + +#~ msgid "Active Timers" +#~ msgstr "激活的计时器" + +#~ msgid "%(child)s had a diaper change." +#~ msgstr "%(child)s 换了一条尿布。" + +#~ msgid "%(timer)s stopped." +#~ msgstr "%(timer)s 停止。" + +#~ msgid "%(time)s ago" +#~ msgstr "%(time)s 之前" + +#~ msgid "Today's Sleep" +#~ msgstr "今天的睡觉" + +#~ msgid "None yet today" +#~ msgstr "今天还没有" + +#~ msgid "%(count)s sleep entries" +#~ msgstr "%(count)s 条睡眠记录" + +#~ msgid "Last Slept" +#~ msgstr "上一次入睡" + +#~ msgid "%(count)s nap%(plural)s" +#~ msgstr "%(count)s 小睡%(plural)s" + +#~ msgid "%(count)s active timer%(plural)s" +#~ msgstr "%(count)s 个激活的计时器%(plural)s" + +#~ msgid "Started by %(instance.user)s at %(start)s" +#~ msgstr "在 %(start)s 由 %(instance.user)s 开始" + +#~ msgid "There is no enough data to generate this report." +#~ msgstr "没有足够的数据来生成报告。" + +#~ msgid "Total feeding amount" +#~ msgstr "合计喂食量" + +#~ msgid "Total Feeding Amounts" +#~ msgstr "合计喂食量" + +#~ msgid "Delete All Inactive Timers" +#~ msgstr "删除所有处于非活动状态的计时器" + +#~ msgid "Delete Inactive" +#~ msgstr "删除非活动" + +#~ msgid "Are you sure you want to delete %(number)s inactive timer%(plural)s?" +#~ msgstr "确定要删除%(number)s个非活动的计时器%(plural)s?" + +#~ msgid "Delete Inactive Timers" +#~ msgstr "删除处于非活动状态下的计时器" + +#~ msgid "All inactive timers deleted." +#~ msgstr "所有处于非活动状态下的计时器已删除。" + +#~ msgid "No inactive timers exist." +#~ msgstr "不存在非活动的计时器。" + +#~ msgid "%(n)s feeding%(plural)s ago" +#~ msgstr "前 %(n)s 次喂食%(plural)s" + +#~ msgid "Delete timer" +#~ msgstr "删除计时器" + +#~ msgid "Contents: %(contents)s" +#~ msgstr "内容: %(contents)s" + +#~ msgid "Today's Feeding" +#~ msgstr "今天的喂食" + +#~ msgid "%(count)s feeding entries" +#~ msgstr "%(count)s 喂食条目" + +#~ msgid "Napping" +#~ msgstr "小睡" + +#~ msgid "No bmi entries found." +#~ msgstr "未找到BMI记录。" + +#~ msgid "
%(since)s
" +#~ msgstr "
%(since)s
" + +#~ msgid "Are you sure you want to delete %(number)s inactive timer?" +#~ msgid_plural "Are you sure you want to delete %(number)s inactive timers?" +#~ msgstr[0] "确定要删除%(number)s个非活动的计时器?" + +#~ msgid "%(count)s active timer" +#~ msgid_plural "%(count)s active timers" +#~ msgstr[0] "%(count)s 个激活的计时器" + +#~ msgid " days ago" +#~ msgstr "%(key)s 天之前" diff --git a/reports/graphs/height_change.py b/reports/graphs/height_change.py index 457e3a0d..d90878d0 100644 --- a/reports/graphs/height_change.py +++ b/reports/graphs/height_change.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +from datetime import datetime, timedelta from django.utils.translation import gettext as _ +from django.db.models.manager import BaseManager import plotly.offline as plotly import plotly.graph_objs as go @@ -7,28 +9,99 @@ import plotly.graph_objs as go from reports import utils -def height_change(objects): +def height_change( + actual_heights: BaseManager, percentile_heights: BaseManager, birthday: datetime +): """ Create a graph showing height over time. - :param objects: a QuerySet of Height instances. + :param actual_heights: a QuerySet of Height instances. + :param percentile_heights: a QuerySet of Height Percentile instances. + :param birthday: a datetime of the child's birthday :returns: a tuple of the the graph's html and javascript. """ - objects = objects.order_by("-date") + actual_heights = actual_heights.order_by("-date") - trace = go.Scatter( + weighing_dates: list[datetime] = list(actual_heights.values_list("date", flat=True)) + measured_heights = list(actual_heights.values_list("height", flat=True)) + + actual_heights_trace = go.Scatter( name=_("Height"), - x=list(objects.values_list("date", flat=True)), - y=list(objects.values_list("height", flat=True)), + x=weighing_dates, + y=measured_heights, fill="tozeroy", + mode="lines+markers", ) + if percentile_heights: + dates = list( + map( + lambda timedelta: birthday + timedelta, + percentile_heights.values_list("age_in_days", flat=True), + ) + ) + + # reduce percentile data xrange to end 1 day after last weigh in for formatting purposes + # https://github.com/babybuddy/babybuddy/pull/708#discussion_r1332335789 + last_date_for_percentiles = max(weighing_dates) + timedelta(days=2) + dates = dates[: dates.index(last_date_for_percentiles)] + + percentile_height_3_trace = go.Scatter( + name=_("P3"), + x=dates, + y=list(percentile_heights.values_list("p3_height", flat=True)), + line={"color": "red"}, + ) + percentile_height_15_trace = go.Scatter( + name=_("P15"), + x=dates, + y=list(percentile_heights.values_list("p15_height", flat=True)), + line={"color": "orange"}, + ) + percentile_height_50_trace = go.Scatter( + name=_("P50"), + x=dates, + y=list(percentile_heights.values_list("p50_height", flat=True)), + line={"color": "green"}, + ) + percentile_height_85_trace = go.Scatter( + name=_("P85"), + x=dates, + y=list(percentile_heights.values_list("p85_height", flat=True)), + line={"color": "orange"}, + ) + percentile_height_97_trace = go.Scatter( + name=_("P97"), + x=dates, + y=list(percentile_heights.values_list("p97_height", flat=True)), + line={"color": "red"}, + ) + + data = [ + actual_heights_trace, + ] layout_args = utils.default_graph_layout_options() layout_args["barmode"] = "stack" layout_args["title"] = _("Height") layout_args["xaxis"]["title"] = _("Date") layout_args["xaxis"]["rangeselector"] = utils.rangeselector_date() layout_args["yaxis"]["title"] = _("Height") + if percentile_heights: + # zoom in on the relevant dates + layout_args["xaxis"]["range"] = [ + birthday, + max(weighing_dates) + timedelta(days=1), + ] + layout_args["yaxis"]["range"] = [0, max(measured_heights) * 1.5] + data.extend( + [ + percentile_height_97_trace, + percentile_height_85_trace, + percentile_height_50_trace, + percentile_height_15_trace, + percentile_height_3_trace, + ] + ) - fig = go.Figure({"data": [trace], "layout": go.Layout(**layout_args)}) + fig = go.Figure({"data": data, "layout": go.Layout(**layout_args)}) output = plotly.plot(fig, output_type="div", include_plotlyjs=False) return utils.split_graph_output(output) diff --git a/reports/templates/reports/report_list.html b/reports/templates/reports/report_list.html index 90155bd9..626aab04 100644 --- a/reports/templates/reports/report_list.html +++ b/reports/templates/reports/report_list.html @@ -26,6 +26,8 @@ {% trans "Feeding Intervals" %} {% trans "Head Circumference" %} {% trans "Height" %} + {% trans "WHO Height Percentiles for Boys in cm" %} + {% trans "WHO Height Percentiles for Girls in cm" %} {% trans "Pumping Amounts" %} {% trans "Sleep Pattern" %} {% trans "Sleep Totals" %} diff --git a/reports/urls.py b/reports/urls.py index aba933db..a0094111 100644 --- a/reports/urls.py +++ b/reports/urls.py @@ -51,6 +51,16 @@ urlpatterns = [ views.HeightChangeChildReport.as_view(), name="report-height-change-child", ), + path( + "children//reports/height/boy/", + views.HeightChangeChildBoyReport.as_view(), + name="report-height-change-child-boy", + ), + path( + "children//reports/height/girl/", + views.HeightChangeChildGirlReport.as_view(), + name="report-height-change-child-girl", + ), path( "children//reports/feeding/duration/", views.FeedingDurationChildReport.as_view(), diff --git a/reports/views.py b/reports/views.py index 2191c03b..9a2cfcae 100644 --- a/reports/views.py +++ b/reports/views.py @@ -203,19 +203,43 @@ class HeightChangeChildReport(PermissionRequiredMixin, DetailView): Graph of height change over time. """ - model = models.Child - permission_required = ("core.view_child",) - template_name = "reports/height_change.html" + def __init__( + self, sex=None, target_url="reports:report-height-change-child" + ) -> None: + self.model = models.Child + self.permission_required = ("core.view_child",) + self.template_name = "reports/height_change.html" + self.sex = sex + self.target_url = target_url def get_context_data(self, **kwargs): context = super(HeightChangeChildReport, self).get_context_data(**kwargs) child = context["object"] - objects = models.Height.objects.filter(child=child) - if objects: - context["html"], context["js"] = graphs.height_change(objects) + birthday = child.birth_date + actual_heights = models.Height.objects.filter(child=child) + percentile_heights = models.HeightPercentile.objects.filter(sex=self.sex) + context["target_url"] = self.target_url + if actual_heights: + context["html"], context["js"] = graphs.height_change( + actual_heights, percentile_heights, birthday + ) return context +class HeightChangeChildBoyReport(HeightChangeChildReport): + def __init__(self): + super(HeightChangeChildBoyReport, self).__init__( + sex="boy", target_url="reports:report-height-change-child-boy" + ) + + +class HeightChangeChildGirlReport(HeightChangeChildReport): + def __init__(self): + super(HeightChangeChildGirlReport, self).__init__( + sex="girl", target_url="reports:report-height-change-child-girl" + ) + + class PumpingAmounts(PermissionRequiredMixin, DetailView): """ Graph of pumping milk amounts collected.