Since we are given 4 different coordinates pairs, (x,y), we can plug them in one at a time for x and y into the equation x2 + Cy2+ Dx + Ey + F = 0.
Every time we do, we generate a new (linear) equation in the 4 variables, C, D, E, and F.
For example, plugging in the first point, (-1 , -5.473), generates the following equation:
1 + 29.954C - D - 5.473E + F = 0 or 29.954C - 1D - 5.473E + 1F = - 1
Plug in the other 3 points and then solve the resulting linear system in 4 unknowns by whatever method is desirable. Matrices will work easily, but elimination by hand is possible, especially given the zeros.