```json
{
	"no": [70.0, 75.0, 80.0, 85.0, 90.0],
	"yes": [150.0, 155.0, 160.0, 165.0, 170.0]
}
```
Based on my prior knowledge, the maximum heart rate achieved (MaxHR) can be used as a feature to determine the presence of heart disease. 

Typically, for individuals without heart disease, the maximum heart rate achieved is lower and falls within a certain range, such as 70-90 bpm. So, I have included typical values in this range, such as 70.0, 75.0, 80.0, 85.0, and 90.0 bpm, in the "no" list.

On the other hand, for individuals with heart disease, the maximum heart rate achieved is usually higher and falls within a different range, such as 150-170 bpm. So, I have included typical values in this range, such as 150.0, 155.0, 160.0, 165.0, and 170.0 bpm, in the "yes" list.