Xiao Wang is a librarian responsible for shelving 9 books labeled A, B, C, D, E, F, G, H, I on a shelf with positions 1 to 9.

The constraints are:
1. Book H must be adjacent to book D.
2. Book A cannot be placed in position 8.
3. Book C must be adjacent to book E.
4. Book C must be adjacent to book F.
5. Book F must be to the left of book C.
6. Book H must be to the left of book B.
7. Book E cannot be placed in position 2.
8. Book F cannot be placed in position 4.
9. Book C must be placed in position 8.
10. Book C cannot be placed in position 7.

Question:
Based on the above conditions, please arrange the 9 books from left to right on the bookshelf, i.e. positions 1 through 9. Return your answer with the format <<< a list of strings >>>, one solution is enough.for example:
<<<["A", "B", "C"]>>>
Your answer:
