Behavior startupBehavior = new Startup();
Behavior contactBehavior = new Contact();
Behavior searchBehavior = new Search();
Behavior[] behaviorArray = {startupBehavior, contactBehavior, searchBehavior};
SumoProperties sp = SumoProperties.getInstance();
SensorInitializer.initializeSensors();
LCD.clear();
de.setDrive(Drive.getInstance(sp.getLeftMotorPort(), sp.getRightMotorPort(),
sp.getCenterMotorPort(), sp.getMaxRotationSpeed()));
(new Arbitrator(behaviorArray)).start();
}