Skip to content

Instantly share code, notes, and snippets.

@taylor224
Last active September 16, 2015 05:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taylor224/f69b895f7fe01fe3f354 to your computer and use it in GitHub Desktop.
Save taylor224/f69b895f7fe01fe3f354 to your computer and use it in GitHub Desktop.
ECU Data Recording System
import obd
import json
import time
import os
import sys
from obd import OBDCommand
from obd.utils import unhex
def rpm(_hex):
v = unhex(_hex) # helper function to convert hex to int
v = v / 4.0
return (v, obd.Unit.RPM)
def speed(_hex):
v = unhex(_hex)
return (v, obd.Unit.KPH)
commFastRPM = OBDCommand("RPM", "Engine RPM", "01", "0C1", 2, rpm)
commFastSpeed = OBDCommand("SPEED", "Speed", "01", "0D1", 1, speed)
print '============================================='
print 'OBD Vehicle ECU Data Recording System'
print ''
print 'version 0.0.1'
print '============================================='
print 'System Initializing...'
obd.debug.console = False
dataindex = 0
for i in range(100):
if not os.path.exists('data' + str(i) + '.json'):
print 'Data File Location : data' + str(i) + '.json'
dataindex = i
break
if i is 100:
print 'Data File is FULL. Please Back up and Delete Data Files'
print 'System Halt'
sys.exit(1)
f = open('data' + str(dataindex) + '.json', 'w')
print 'Connecting to Vehicle ECU'
#connection = obd.OBD()
#ports = obd.scanSerial()
#print ports
#connection = obd.OBD('/dev/rfcomm0')
# For Async Connection
connection = obd.Async('/dev/rfcomm0')
connection.watch(commFastSpeed, force=True)
connection.watch(commFastRPM, force=True)
#connection.watch(obd.commands.RUN_TIME)
connection.start()
if connection.is_connected():
print 'Link SUCCESSED with Vehicle ECU'
else:
print 'Link FAIL with Vehicle ECU'
print 'FATAL ERROR'
print 'System Halt'
sys.exit(1)
print 'ECU Connection Initializing...'
time.sleep(1)
print ''
print '=================================================='
print 'Data from ECU'
print ''
print '- Engine -'
print 'RPM : ' + str(connection.query(obd.commands.RPM).value)
print 'Throttle Position : ' + str(connection.query(obd.commands.THROTTLE_POS).value)
print 'Uptime : ' + str(connection.query(obd.commands.RUN_TIME).value)
print 'Fuel Type : ' + str(connection.query(obd.commands.FUEL_TYPE).value)
print '- Device -'
print 'Accel Pedal Position : ' + str(connection.query(obd.commands.RELATIVE_ACCEL_POS).value)
print 'Fuel System Status : ' + str(connection.query(obd.commands.FUEL_STATUS).value)
print 'Status : ' + str(connection.query(obd.commands.STATUS).value)
print '=================================================='
print ''
print ''
print 'Recording Start in 7 Second'
print 'test'
print connection.query(commFastRPM).value
print 'test2'
print connection.query(commFastRPM).value
print 'test3'
print connection.query(commFastRPM).value
time.sleep(7)
starttime = time.time()
prevspeed = 0
prevrpm = 0
print 'Recording Start'
try:
while(True):
nowtime = time.time()
difftime = nowtime - starttime
speeddata = connection.query(commFastSpeed).value
rpmdata = connection.query(commFastRPM).value
#runtimedata = connection.query(obd.commands.RUN_TIME).value
#accelposdata = connection.query(obd.commands.RELATIVE_ACCEL_POS).value
if speeddata == prevspeed and rpmdata == prevrpm:
continue
print speeddata
f.write(str(difftime) + '=' + str(speeddata) + '=' + str(rpmdata) + '\n')
print 'time : ' + str(difftime) + '\nSpeed : ' + str(speeddata) + '\nRPM : ' + str(rpmdata) + '\n'
prevspeed = speeddata
prevrpm = rpmdata
time.sleep(0.001)
except (KeyboardInterrupt, SystemExit):
print 'System Shutdown Requested'
print 'Saving Data File'
f.close()
print 'Data File Saved'
print 'System Halt'
sys.exit(0)
except Exception, e:
print 'FATAL ERROR OCCURRED - ' + str(e)
print 'Saving Data File'
f.close()
print 'Data File Saved'
print 'System Halt'
sys.exit(0)
@taylor224
Copy link
Author

Sample Data

0.00111389160156=4=701
0.0239968299866=4=691
0.213948011398=4=670
0.311112880707=3=670
0.461457014084=3=647
0.820904970169=3=692
1.0101108551=3=695
1.32302999496=3=700
1.52545595169=3=695
1.75738382339=3=683
1.86535978317=4=683
2.00294184685=4=683
2.25562596321=4=718
2.52019286156=4=745
3.01473593712=4=753
3.17351984978=4=754
3.24012494087=5=754
3.30165982246=5=761
3.45722198486=5=757
3.59631991386=5=736
3.80833101273=5=718
4.00129890442=5=718
4.08345484734=5=738
4.28553795815=5=819
4.47024679184=5=878
4.69957780838=5=970
4.82649683952=6=970
4.93006086349=6=1139
5.00397801399=6=1139
5.11612701416=6=1223
5.23760581017=7=1223
5.36541795731=7=1276
5.44478297234=8=1276
5.52883696556=8=1292
5.67613482475=8=1249
5.82072281837=8=1154
6.0057759285=8=1154
6.02098989487=8=1012
6.06951880455=9=1012
6.17440199852=9=946
6.32029080391=9=949
6.46186590195=9=961
6.61263084412=9=982
6.73997688293=9=943
6.86023879051=9=924
7.00295090675=9=924
7.02293801308=9=951
7.0801949501=8=951
7.14667797089=8=940
7.29059195518=8=873
7.4391708374=8=807
7.59005880356=8=760
7.743475914=8=830
7.92647194862=8=872
8.00122594833=8=872
8.0444188118=7=872
8.19499897957=7=831
8.4048409462=7=812
8.63442897797=7=789
8.82945394516=7=785
9.00049591064=7=785
9.09891080856=7=788
9.2301928997=7=798
9.362210989=7=806
9.5377368927=7=809
9.82251596451=7=830
10.0000629425=7=830
10.0203437805=7=892
10.1717507839=7=907
10.2270059586=6=907
10.303691864=6=902
10.3727807999=7=902
10.4351627827=7=900
10.584348917=7=924
10.7102708817=7=963
10.8415420055=7=997
10.9749457836=7=1061
11.0025918484=7=1061
11.1299858093=7=1159
11.2523448467=7=1212
11.3213407993=8=1212
11.3945798874=8=1238
11.5223348141=8=1243
11.6532609463=8=1248
11.7822887897=8=1232
11.8523509502=9=1232
11.9002308846=9=1218
12.0018079281=9=1218
12.1074450016=9=1216
12.3569729328=9=1234
12.4744307995=10=1234
12.5752689838=10=1266
12.8219199181=10=1292
12.9363718033=11=1292
13.0044839382=11=1292
13.0877017975=11=1327
13.2265658379=12=1327
13.3600559235=12=1551
13.6017959118=12=1653
13.7301588058=13=1653
13.8025758266=13=1701
13.9625778198=14=1701
14.0052678585=14=1701
14.0898399353=14=1748
14.2102389336=15=1748
14.3375399113=15=1801
14.394687891=16=1801
14.4802389145=16=1840
14.5519039631=17=1840
14.7032887936=17=1885
15.0064198971=17=1885
15.0231289864=17=1949
15.1525108814=18=1949
15.2528488636=18=2015
15.3986849785=19=2015
15.4803500175=19=2067
15.6699860096=19=2053
15.7883880138=20=2053
15.8852548599=20=2023
16.00689888=20=2023
16.1155109406=20=1921
16.2252039909=19=1921
16.2953178883=19=1719
16.3982679844=20=1719
16.4718790054=20=1464
16.5809488297=20=1295
16.7316148281=20=1036
16.7816059589=19=1036
16.8499438763=19=950
16.9202280045=20=950
16.9755628109=20=963
17.0006129742=20=963
17.1120998859=20=975
17.2415239811=20=988
17.3726649284=20=999
17.4300889969=19=999
17.5022130013=19=1012
17.6400938034=19=1031
17.7699987888=19=1028
17.8901410103=19=1027
18.0002520084=19=1027
18.0166518688=19=1030
18.2025468349=18=1030
18.2601368427=18=1020
18.3761467934=18=998
18.5082118511=18=994
18.6514937878=18=965
18.8501238823=17=965
18.9101448059=17=1006
19.0018889904=17=1006
19.0401139259=17=1034
19.1634149551=17=976
19.2888028622=17=925
19.3532660007=16=925
19.4020678997=16=894
19.5431518555=16=902
19.6625778675=16=925
19.7861139774=16=931
19.8500208855=15=931
19.9109048843=15=914
20.0036687851=15=914
20.0600919724=15=891
20.1163299084=14=891
20.1927778721=14=853
20.3282468319=14=826
20.3961918354=13=826
20.4901618958=13=789
20.6413118839=13=757
20.7020788193=12=757
20.7709929943=12=734
20.9642128944=12=714
21.001529932=12=714
21.0477650166=11=714
21.1198608875=11=703
21.2681248188=11=696
21.4100818634=11=687
21.5022978783=10=687
21.625617981=10=724
21.9223649502=10=752
22.0062890053=10=752
22.1467998028=10=739
22.3222818375=10=728
22.4630589485=10=725
22.5861108303=10=716
22.6550137997=9=716
22.7259550095=9=708
22.7929279804=10=708
22.859336853=10=714
22.9888868332=10=733
23.0001149178=10=733
23.1048979759=10=751
23.2299909592=10=773
23.3685438633=10=847
23.4356060028=9=847
23.5021378994=9=973
23.5625259876=10=973
23.6243000031=10=1202
23.7602198124=10=1252
23.9081499577=10=1273
24.0019488335=10=1273
24.0383839607=10=1259
24.191660881=10=1189
24.3200378418=10=1154
24.4517819881=10=1134
24.561852932=10=1105
24.6859707832=10=1065
24.8185908794=10=1039
24.9403579235=10=1014
25.0024149418=10=1014
25.0624909401=10=983
25.1948778629=10=959
25.3334369659=10=939
25.4607818127=10=927
25.8849768639=10=932
26.0089588165=10=932
26.0930249691=10=976
26.3529818058=10=1033
26.4972147942=9=1033
26.6469008923=9=1015
26.9304490089=9=988
27.0021789074=9=988
27.2306988239=9=993
27.4685719013=9=1056
27.6659729481=9=1109
27.7720580101=10=1109
27.8809149265=10=1154
28.002188921=10=1154
28.078704834=10=1171
28.2651820183=10=1175
28.548170805=10=1186
28.8012919426=10=1214
29.0002880096=10=1214
29.0255548954=10=1233
29.2368178368=10=1256
29.3109829426=11=1256
29.3909988403=11=1279
29.5310258865=11=1323
29.6793589592=11=1381
29.8200719357=11=1439
29.8816518784=12=1439
29.9443018436=12=1457
30.0101850033=12=1457
30.0744538307=12=1444
30.200083971=12=1449
30.3320419788=12=1487
30.4001238346=13=1487
30.4622499943=13=1526
30.61013484=13=1584
30.715720892=14=1584
30.7902998924=14=1634
30.9326338768=14=1663
31.0029718876=15=1663
31.0724740028=15=1711
31.1982178688=15=1737
31.270113945=16=1737
31.3215308189=16=1765
31.5042128563=16=1796
31.6952149868=16=1842
31.7800807953=17=1842
31.8652999401=17=1891
32.0067358017=17=1891
32.1027469635=17=1950
32.2473568916=18=1950
32.3652808666=18=2014
32.4649348259=19=2014
32.5680818558=19=2051
32.7137749195=19=2090
32.7831068039=20=2090
33.155272007=20=2171
33.1800649166=21=2171
33.2520668507=21=2210
33.4136638641=21=2248
33.5732109547=21=2281
33.6338968277=22=2281
33.7004909515=22=2283
33.8498878479=22=2306
33.9914360046=22=2328
34.0034248829=22=2328
34.1722888947=22=2286
34.2418367863=23=2286
34.3134269714=23=2015
34.4824359417=23=1749
34.547467947=24=1749
34.625264883=24=1704
34.7791337967=24=1729
35.0152118206=24=1753
35.1045329571=25=1753
35.1830890179=25=1725
35.4149329662=25=1658
35.6438717842=25=1579
35.802230835=25=1516
35.9256269932=25=1487
35.9940137863=26=1487
36.0001108646=26=1487
36.0638678074=26=1445
36.1324849129=25=1445
36.1818859577=25=1360
36.3220739365=25=1220
36.4500749111=25=1094
36.5672287941=25=975
36.7002158165=25=860
36.8228619099=25=774
36.9645199776=25=778
37.0023958683=25=778
37.0923597813=25=943
37.2101078033=25=1047
37.340143919=25=1107
37.4002130032=24=1107
37.5078449249=24=1119
37.6682329178=24=1126
37.8211128712=23=1126
37.9214959145=23=1059
38.003428936=23=1059
38.1535179615=23=1072
38.2633419037=22=1072
38.3901348114=22=998
38.4965758324=20=998
38.6309859753=20=928
38.7501008511=19=928
38.8835129738=19=924
38.9830439091=18=924
39.0060470104=18=924
39.0815348625=18=964
39.2026269436=17=964
39.3289527893=17=952
39.4343979359=16=952
39.5333189964=16=903
39.5822939873=15=903
39.6896598339=15=856
39.7750859261=14=856
39.89544487=14=798
39.9826049805=13=798
40.0044448376=13=798
40.106623888=13=754
40.2002317905=12=754
40.307256937=12=722
40.4514098167=11=722
40.5796728134=11=684
40.6980369091=10=684
40.7959368229=10=652
41.0031318665=10=652
41.053000927=10=659
41.1493518353=9=659
41.2550017834=9=748
41.536700964=9=747
41.8132297993=9=743
42.0036969185=9=743
42.0149788857=9=813
42.1534318924=9=889
42.3126859665=9=968
42.4498238564=9=1035
42.7395768166=9=1021
42.8800599575=9=1022
43.0024189949=9=1028
43.1201958656=9=1035
43.2603859901=9=1045
43.3813648224=9=1069
43.5019040108=9=1132
43.632778883=9=1175
43.7607049942=9=1219
43.8282408714=10=1219
43.8962569237=10=1272
44.002311945=10=1272
44.0299868584=10=1281
44.1724569798=10=1244
44.3020699024=10=1183
44.4606208801=10=1059
44.6454129219=10=1033
44.9220089912=10=1018
45.0070888996=10=1018
45.1741099358=10=1016
45.3750379086=10=1031
45.6652657986=10=1006
45.8924958706=10=978
46.0063359737=10=978
46.0914609432=10=1055
46.2214868069=10=1070
46.3808429241=10=1080
46.5534968376=10=1087
46.6980068684=10=1084
46.8499889374=10=1082
47.0047109127=10=1082
47.0149359703=10=1091
47.1570849419=10=1117
47.2978749275=10=1145
47.4693968296=10=1164
47.6122419834=10=1184
47.7801508904=10=1204
47.8419659138=11=1204
47.9164450169=11=1222
48.0030069351=11=1222
48.05919981=11=1217
48.1904199123=11=1200
48.3326108456=11=1194
48.4889678955=11=1188
48.6402728558=11=1158
48.785848856=11=1139
48.9422869682=11=1089
49.0013887882=11=1089
49.0601899624=11=1059
49.1889088154=11=1014
49.3303449154=11=991
49.4667079449=11=982
49.5904729366=11=984
49.7064919472=11=978
49.8923997879=10=978
49.9634428024=10=965
50.0012989044=10=965
50.0817008018=10=963
50.2102098465=10=971
50.3419377804=10=976
50.4673099518=10=958
50.5924868584=10=939
50.6600120068=9=939
50.7229077816=9=919
50.8553948402=9=889
50.9834809303=9=857
51.0002598763=9=857
51.0500049591=8=857
51.1101658344=8=819
51.2516548634=8=810
51.3515069485=8=845
51.5047039986=8=918
51.7982778549=8=907
52.007791996=8=907
52.0744957924=8=880
52.2401349545=8=898
52.5112028122=8=955
52.753494978=8=1012
52.95697999=8=1043
53.0020778179=8=1043
53.1955118179=8=1110
53.3063268661=9=1110
53.4471018314=9=1172
53.682945013=9=1223
53.8122229576=10=1223
53.8600859642=10=1255
54.0047039986=10=1255
54.1356649399=10=1250
54.3231489658=10=1247
54.5154018402=10=1205
54.7728497982=10=1108
54.8928229809=10=1099
55.0028870106=10=1099
55.041549921=10=1078
55.180221796=10=1038
55.3134829998=10=1013
55.4521999359=10=980
55.5722939968=10=946
55.7028868198=10=941
55.8224740028=10=949
55.960231781=10=960
56.0004928112=10=960
56.0035219193=9=960
56.0703909397=9=977
56.1318359375=10=977
56.200070858=10=988
56.2628638744=9=988
56.3357439041=9=992
56.5115449429=9=958
56.6301779747=9=937
56.7527048588=9=921
56.8800017834=9=904
56.9328508377=8=904
56.9925019741=8=875
57.0007059574=8=875
57.1488058567=8=859
57.270362854=8=839
57.4359109402=8=832
57.6662168503=8=822
57.7876918316=7=822
57.8858718872=7=804
58.002959013=7=804
58.1231119633=7=879
58.2553958893=7=821
58.4662578106=7=752
58.7088329792=7=765
58.8467819691=6=765
58.9977278709=6=755
59.0067098141=6=755
59.1075789928=5=755
59.1816499233=5=728
59.2953968048=4=728
59.3955368996=4=719
59.57584095=4=729
59.662653923=3=729
59.7440638542=3=740
59.9251968861=3=710
59.990170002=2=710
60.0008499622=2=710
60.0669958591=2=678
60.1520578861=1=678
60.2143859863=1=689
60.3921129704=1=699
60.5362849236=0=699
60.6424949169=0=695
60.8556449413=0=700
61.0102648735=0=729
61.1500649452=0=762
61.2918248177=0=769
61.4363238811=0=773
61.5725209713=0=772
61.6967718601=0=783
61.8422899246=0=780
61.9600408077=0=759
62.0029518604=0=759
62.1202018261=0=719
62.2149608135=0=660
62.3946499825=0=620
62.5672228336=0=654
62.7425558567=0=719
62.8871970177=0=738
63.0031738281=0=738
63.0314548016=0=751
63.1630740166=0=759
63.2201747894=1=759
63.2930688858=1=755
63.5047187805=1=708
63.6938679218=1=675
63.8966219425=1=664
64.0009407997=1=664
64.1054987907=1=677
64.2748439312=1=699
64.4430119991=1=720
64.7240228653=1=741
64.9702579975=1=692
65.000595808=1=692
65.0992980003=1=682
65.2102890015=1=706
65.3363599777=1=744
65.4024209976=2=744
65.470042944=2=812
65.5426468849=1=812
65.6086277962=1=771
65.7138049603=2=771
65.8014118671=2=759
65.9862840176=2=729
66.0007309914=2=729
66.2940759659=2=712
66.5437169075=2=695
66.8107259274=2=651
67.0048789978=2=651
67.0503568649=2=662
67.563740015=2=674
67.6430149078=1=674
67.7043499947=1=731
67.8412408829=1=744
67.9834308624=1=739
68.0023868084=1=739
68.1425418854=1=720
68.3074510098=1=682
68.4629459381=1=658
68.6161558628=1=643
68.7700870037=1=627
68.8800098896=1=618
69.0019237995=1=618
69.0108549595=1=622
69.1506068707=1=640
69.2826538086=1=656
69.424489975=1=701
69.551571846=1=768
69.6717019081=1=793
69.8095958233=1=778
69.9445228577=1=774
70.0125977993=1=774
70.0721259117=1=761
70.2406859398=1=736
70.4853069782=1=651
70.7602319717=1=600
71.0058348179=1=600
71.0249629021=1=616
71.3053758144=1=711
71.5484058857=1=772
71.8358960152=1=751
72.003923893=1=751
72.1219727993=1=749
72.2802078724=1=754
72.5504698753=1=751
72.7804219723=1=744
73.0106759071=1=747
73.1502099037=1=751
73.2964439392=1=757
73.3745419979=0=757
73.4459838867=0=759
73.6304488182=0=779
73.8025639057=0=769
73.9579517841=0=740
74.0001578331=0=740
74.0928399563=0=768
74.2333948612=0=810
74.3400099277=0=799
74.4687550068=0=742
74.6188058853=0=726
74.7447869778=0=716
74.8961877823=0=713
74.9600548744=1=713
75.0023758411=1=713
75.0237469673=1=707
75.1603109837=1=698
75.2833340168=1=696
75.4003939629=1=699
75.542757988=1=724
75.6225528717=2=724
75.7132558823=2=773
75.9428269863=2=760
76.0005919933=2=760
76.1968820095=2=732
76.4499988556=2=751
76.5823848248=1=751
76.7237868309=1=708
76.8511288166=0=708
77.0014848709=0=708
77.0159029961=0=688
77.250620842=0=764
77.4892539978=0=712
77.7837078571=0=647
78.001958847=0=647
78.3142697811=0=683
78.4285409451=1=683
78.5795009136=1=708
78.741150856=1=704
79.0022268295=1=704
79.0417709351=1=723
79.3438878059=1=684
79.6334447861=1=670
79.8653399944=1=703
80.0035498142=1=703
80.1010479927=1=734
80.3405649662=1=722
80.4864399433=1=688
80.6566278934=1=629
80.8266699314=1=641
80.9729948044=1=676
81.0004630089=1=676
81.1031730175=1=724
81.212449789=1=751
81.3501188755=1=761
81.465515852=1=732
81.5906338692=1=695
81.7221620083=1=667
81.8490459919=1=681
81.9869318008=1=693
82.0007607937=1=693
82.1243507862=1=705
82.2580628395=1=720
82.3924968243=1=742
82.6544458866=1=695
82.9512507915=1=725
83.0005548=1=725
83.2060408592=1=714
83.430877924=1=697
83.6291029453=1=673
83.8752839565=1=629
84.0031898022=1=629
84.140734911=1=677
84.4002759457=1=817
84.6063838005=1=786
84.8568089008=1=744
85.0090069771=1=744
85.1110320091=1=753
85.387567997=1=739
85.5928897858=1=734
85.8459899426=1=746
86.0005278587=1=746
86.1108198166=1=752
86.3376538754=1=730
86.6185538769=1=763
86.7650029659=1=760
86.90254879=1=741
87.0022978783=1=741
87.0419239998=1=727
87.1700389385=1=711
87.290145874=1=706
87.8600149155=1=744
87.9421749115=1=740
88.0023608208=1=740
88.0600819588=1=744
88.2001428604=1=740
88.3233809471=1=736
88.4421298504=1=737
88.5119719505=0=737
88.5657088757=0=731
88.6819570065=0=729
88.8123099804=0=722
88.9442498684=0=717
89.0078508854=0=717
89.127040863=0=712
89.3047549725=0=711
89.5269908905=0=715
89.8319888115=0=769
90.0059378147=0=769
90.0800948143=0=727
90.3279988766=0=773
90.5235779285=0=779
90.7274589539=0=748
90.9053030014=0=729
91.00472188=0=729
91.1342089176=0=707
91.3442518711=0=724
91.5401408672=0=822
91.6454517841=1=822
91.7652978897=1=852
91.9948158264=1=812
92.0029418468=1=812
92.135751009=2=812
92.279886961=2=810
92.5343568325=2=782
92.7743577957=2=778
92.8637728691=3=778
93.0033428669=3=778
93.0207488537=3=758
93.2114858627=3=746
93.3383388519=3=760
93.4737439156=3=752
93.5402719975=4=752
93.6016738415=4=750
93.7134749889=4=730
93.8614828587=4=714
93.9900569916=4=743
94.0013098717=4=743
94.1033928394=4=793
94.2316398621=4=766
94.3680839539=4=745
94.4928348064=4=751
94.6225309372=4=780
94.7623798847=4=744
94.8802030087=4=717
94.9434499741=3=717
95.0100557804=3=711
95.1229469776=3=704
95.2415928841=3=700
95.2977468967=2=700
95.355273962=2=719
95.4885179996=2=735
95.6529839039=2=726
95.7213850021=1=726
95.7791349888=1=683
95.9177029133=1=667
96.0014438629=1=667
96.0319838524=1=687
96.0861477852=0=687
96.1500267982=0=723
96.276088953=0=747
96.5213909149=0=732
96.720241785=0=656
96.8952679634=0=631
97.0060458183=0=631
97.1383237839=0=646
97.4023549557=0=708
97.499453783=1=708
97.6002027988=1=680
97.8301827908=1=678
98.0057938099=1=678
98.0701680183=1=684
98.2863078117=1=680
98.8556728363=1=696
99.0009908676=1=696
99.0974328518=1=744
99.365986824=1=692
99.5700089931=1=694
99.711411953=1=688
99.8403828144=1=691
99.9731228352=1=715
100.001945972=1=715
100.102701902=1=725
100.242299795=1=713
100.361404896=1=709
100.470276833=1=727
100.600210905=1=719
100.730029821=1=696
100.846201897=1=677
100.97516489=1=666
101.00253582=1=666
101.101302862=1=657
101.241542816=1=648
101.380079985=1=646
101.692346811=1=647
101.820138931=1=653
101.983019829=1=658
102.001910925=1=658
102.160046816=1=685
102.312829018=1=720
102.432878971=1=777
102.614735842=1=765
102.683131933=0=765
102.844000816=0=758
103.00014782=0=758
103.048064947=0=748
103.305763006=0=712
103.872723818=0=776
104.000172853=0=776
104.065263987=0=743
104.274733782=0=737
104.516957998=0=717
104.766035795=0=695
104.977131844=0=690
105.000103951=0=690
105.202634811=0=694
105.405243874=0=701
105.641784906=0=712
105.892740965=0=718
106.000741959=0=718
106.044303894=0=717
106.119304895=1=717
106.445781946=1=713
106.510233879=0=713
106.582894802=0=707
106.710518837=0=698
106.845846891=0=697
106.970247984=0=699
107.00233984=0=699
107.103484869=0=705
107.232531786=0=703
107.342675924=0=700
107.461537838=0=695
107.581425905=0=698
107.720140934=0=699
107.838511944=0=700
108.002699852=0=700
108.226229906=0=697
108.347557783=0=694
108.473032951=0=696
108.602053881=0=694
108.852158785=0=688
108.98263979=0=682
109.002058983=0=682
109.135084867=0=678
109.340652943=0=686
109.570031881=0=705
109.829675913=0=710
110.003299952=0=710
110.023639917=0=711
110.268835783=0=709
110.55009985=0=710
110.746171951=0=705
110.988837957=0=704
111.000047922=0=704
111.223945856=0=697
111.489255905=0=696
111.695245981=0=701
111.915273905=0=703
112.01206398=0=703
112.148086786=0=692
112.361548901=0=739
112.491578817=0=687
112.614122868=0=652
112.742675781=0=636
112.992822886=0=641
113.00167799=0=641
113.110165834=0=647
113.632466793=0=644
113.763768911=0=641
113.877556801=0=643
114.001431942=0=643
114.022379875=0=639
114.154142857=0=638
114.32453084=0=637
114.485749006=0=634
114.67276597=0=632
114.83660388=0=633
114.967759848=0=632
115.003563881=0=632
115.110032797=0=635
115.262100935=0=636
115.437994957=0=638
115.614337921=0=639
115.791667938=0=644
115.930176973=0=645
116.001630783=0=645
116.477207899=0=652
116.732191801=0=682
117.000001907=0=682
117.044997931=0=701
117.237288952=0=697
117.474150896=0=685
117.720561981=0=694
117.990947008=0=731
118.003636837=0=731
118.241156816=0=694
118.448479891=0=678
118.95724082=0=680
119.003520012=0=680
119.165826797=0=677
119.337943792=0=674
119.482046843=0=672
119.63724494=0=663
119.8027668=0=652
119.937465906=0=643
120.012980938=0=643
120.069919825=0=636
120.210067987=0=652
120.331561804=0=662
120.462961912=0=706
120.592005014=0=729
120.73884201=0=745

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment