@Override
 public PCMSTeamInfo getParticipantByHashTag(String hashTag) {
   for (PCMSTeamInfo teamInfo : standings) {
     if (hashTag != null && hashTag.equalsIgnoreCase(teamInfo.getHashTag())) {
       return teamInfo;
     }
   }
   return null;
 }