class Estado {
ArrayList<Entry> entries;
ArrayList<Integer> nCs;//new cases
ArrayList<Integer> tCs;//total cases
ArrayList<Integer> nDs;//num Deaths
ArrayList<String> tSs;//timestamps
This is confusing because each Entry has a value for new cases, total cases and new deaths so what is the purpose of the last four arraylists?