Given an 14*14 grid, cells marked with 1 have a queen placed, and cells marked with 0 are empty. A total of 14 queens need to be placed such that no two queens can attack each other, meaning no two queens can be in the same row, column, or diagonal. Additionally, positions marked with X are not allowed for placing queens. Please help me complete the placement of the remaining queens on the partially filled board.

00000000000000
00000000000000
00000000000000
00000000000000
00000000000001
00000000000000
00000000000000
00X00000000000
00000000000000
00000000000000
000000000X0000
00000000000000
00100000000000
00000000100000

Return your answer with the format <<<list of queen positions>>>, where each position is given as row column (0-based indices). For example, <<<0 3, 1 0, 2 4>>> means queens are placed at positions (0,3), (1,0), and (2,4).