function log10(d) {
	return Math.log(Math.pow(d, Math.LOG10E));
}
