Bit of a bump, but I recently required this information for something I was working on, and since there's no built-in way of obtaining the data, I had to manually increase my level by 1 on Debug until I reached level 109.
The following data matches the /statistics "Next level: <experience>" text, level by level:
PHP Code:
this.experienceTable =
{
// 1 - 10
0, 2000, 4000, 8000, 16000, 32000, 64000, 125000, 250000, 500000,
// 11 - 20
900000, 1400000, 2000000, 2600000, 3300000, 4100000, 4900000, 5700000, 6600000, 7500000,
// 21 - 30
8400000, 9300000, 10300000, 11300000, 12300000, 13300000, 14400000, 15500000, 16600000, 17700000,
// 31 - 40
18800000, 19900000, 21100000, 22300000, 23500000, 24700000, 25900000, 27100000, 28300000, 29500000,
// 41 - 50
30800000, 32100000, 33400000, 34700000, 36000000, 37300000, 38600000, 39900000, 41200000, 42600000,
// 51 - 60
44000000, 45400000, 46800000, 48200000, 49600000, 51000000, 52400000, 53800000, 55200000, 56600000,
// 61 - 70
58000000, 59400000, 60800000, 62200000, 63700000, 65200000, 66700000, 68200000, 69700000, 71200000,
// 71 - 80
72700000, 74200000, 75700000, 77200000, 78700000, 80200000, 81700000, 83200000, 84700000, 86200000,
// 81 - 90
87700000, 89300000, 90900000, 92500000, 94100000, 95700000, 97300000, 98900000, 100500000, 102100000,
// 91 - 100
103700000, 105300000, 106900000, 108500000, 110100000, 111700000, 113300000, 114900000, 116500000, 118100000,
// 101 - 110
119750000, 121400000, 123050000, 124700000, 126350000, 128000000, 129650000, 131300000, 132950000, 134600000
};
Maybe someone will find the information useful at some point. Now it's at least available!