ICity cityModel = city.getCity();
y += (int)Math.rint(positions.titleHeigth*2/3);
ITradingOffice office = city.getPlayer().findTradingOffice(cityModel);
IStorage storage = office.getStorage();
drawRow(g2d, y, positions.xNumbers, String.valueOf(office.getStored()/10));
y += positions.lineHeight;
drawRow(g2d, y, positions.xNumbers, String.valueOf(office.getCapacity()/10));
y += positions.lineHeight;
int additional = office.getStored()-office.getCapacity();
if (additional<0) additional = 0;
drawRow(g2d, y, positions.xNumbers, String.valueOf(additional/10));
y += positions.lineHeight;
drawRow(g2d, y, positions.xNumbers, String.valueOf(storage.getRentOutStorage()));
y += positions.lineHeight;
drawRow(g2d, y, positions.xNumbers, String.valueOf(storage.getCostsPerDay()));
y += positions.lineHeight;
y += positions.lineHeight;
y += positions.lineHeight;
y += positions.lineHeight;
drawRow(g2d, y, positions.xNumbers, String.valueOf(storage.getNumberGuards()));
y += positions.lineHeight;
drawRow(g2d, y, positions.xNumbers, String.valueOf(storage.getGuardCostsPerDay()));
y += positions.lineHeight;
ELevel security = storage.getSecurityLevel(); // TODO externalize
drawRow(g2d, y, positions.xNumbers, security.name());
} catch (FontFormatException e) {
e.printStackTrace();
} catch (IOException e) {