Game Result


Play Time
08:52 PM K59
08:37 PM M83
08:22 PM I73
08:07 PM S51
07:52 PM A27
07:37 PM Q66
07:22 PM D31
07:07 PM Z59
06:52 PM O05
06:37 PM U42
06:22 PM W69
06:07 PM U00
05:52 PM N22
05:37 PM P11
05:22 PM P95
05:07 PM D59
04:52 PM K07
04:37 PM P15
04:22 PM V55
04:07 PM D01
03:52 PM N16
03:37 PM J17
03:22 PM F56
03:07 PM M55
02:52 PM I01
02:37 PM E96
02:22 PM B34
02:07 PM M32
01:52 PM Q06
01:37 PM R16
01:22 PM O22
01:07 PM J12
12:52 PM C01
12:37 PM S50
12:22 PM K58
12:07 PM L49
11:52 AM B56
11:37 AM H77
11:22 AM X10
11:07 AM J48
10:52 AM G09
10:37 AM O37
10:22 AM N51
10:07 AM Z90
09:52 AM F74
09:37 AM N64
09:22 AM F00
09:07 AM Q48
08:52 AM J68
08:37 AM T50
08:22 AM C32
08:07 AM E62
//$(document).ready(function(){ //get result // Check correct time format and split into components // If time format correct time = time.slice(1); // Remove full string match value time[5] = +time[0] < 12 ? "AM" : "PM"; // Set AM/PM time[0] = +time[0] % 12 || 12; // Adjust hours return time.join(""); // return adjusted time or original string