Viewing .vtk files for each mesh domain in a time series - IS IT POSSIBLE?

If you look at the vtk.series format, it’s simply a json with the name of the file and the timestep it corresponds to.

{
  "file-series-version" : "1.0",
  "files" : [
    { "name" : "foo1.vtk", "time" : 0 },
    { "name" : "foo2.vtk", "time" : 5.5 },
    { "name" : "foo3.vtk", "time" : 11.2 }
  ]
}

That how ParaView will know which file to load for a particular time.

You should be able to put together such a file manually too, but doing it 93 times can be tedious :), hence my suggestion to automate it using some scripting language of your choice.