catch (IOException e)
{}
// Creating a new choreography instance and filling it with data
Choreography choreography = new Choreography(name);
// Removing header and footer
byte[] choreographyData = new byte[dataLength];
for (int i = 0; i < dataLength; i++)
choreographyData[i] = fileData[i + 4];
choreography.setData(choreographyData);
return choreography;
}