const validEconomicSectors = (subjects) => {
  for (const subject of subjects) {
    if (!validEconomicSector(subject)) {
      return false;
    }