diff --git a/appointment-import/src/main/java/smash/appointment/parse/RedcapParser.java b/appointment-import/src/main/java/smash/appointment/parse/RedcapParser.java
index 59e8eaf9cf7e9c07a289e19a01196c3c91e8a820..77daba4800f5cb51d19bd23ef250805d335e67d0 100644
--- a/appointment-import/src/main/java/smash/appointment/parse/RedcapParser.java
+++ b/appointment-import/src/main/java/smash/appointment/parse/RedcapParser.java
@@ -47,35 +47,32 @@ public class RedcapParser {
 							subject.setBirthDate(tmp[2]);
 						}
 
-						// for now only PRC and flying team subjects
-						if (subject.getToBeSeenAt() == null || subject.getToBeSeenAt().startsWith("P") || subject.getToBeSeenAt().startsWith("F")) {
-							List<AppointmentEntry> subjectAppointments = new ArrayList<>();
-							if (!tmp[9].isEmpty()) {
-								subjectAppointments.add(createEntryLevelA(tmp[9], tmp[10], subject));
-							}
-
-							if (!tmp[13].isEmpty()) {
-								subjectAppointments.add(createEntryLevelB(tmp[13], tmp[14], subject));
-							}
-
-							if (!tmp[17].isEmpty()) {
-								subjectAppointments.add(createEntryLevelBG(tmp[17], tmp[18], subject));
-							}
-
-							if (!tmp[21].isEmpty()) {
-								subjectAppointments.add(createEntryLevelBV(tmp[21], tmp[22], subject));
-							}
-
-							if (!tmp[41].isEmpty()) {
-								subjectAppointments.add(createEntryLevelSB(tmp[41], subject));
-							}
-
-							if (!tmp[45].isEmpty()) {
-								subjectAppointments.add(createEntryLevelMPower(tmp[45], subject));
-							}
-
-							result.addAll(subjectAppointments);
+						List<AppointmentEntry> subjectAppointments = new ArrayList<>();
+						if (!tmp[9].isEmpty()) {
+							subjectAppointments.add(createEntryLevelA(tmp[9], tmp[10], subject));
 						}
+
+						if (!tmp[13].isEmpty()) {
+							subjectAppointments.add(createEntryLevelB(tmp[13], tmp[14], subject));
+						}
+
+						if (!tmp[17].isEmpty()) {
+							subjectAppointments.add(createEntryLevelBG(tmp[17], tmp[18], subject));
+						}
+
+						if (!tmp[21].isEmpty()) {
+							subjectAppointments.add(createEntryLevelBV(tmp[21], tmp[22], subject));
+						}
+
+						if (!tmp[41].isEmpty()) {
+							subjectAppointments.add(createEntryLevelSB(tmp[41], subject));
+						}
+
+						if (!tmp[45].isEmpty()) {
+							subjectAppointments.add(createEntryLevelMPower(tmp[45], subject));
+						}
+
+						result.addAll(subjectAppointments);
 					}
 				}