Let the alphabet be $Σ = \{0, 1\}$. For any string $w ∈ Σ^*$ of length at least 2, define the operation $C_2(w)$ to be a cyclic shift of size 2 on $w$. That is, if $w = w_1w_2 \cdots w_n$ with $n ≥ 2$ and each $w_i ∈ Σ$, then $C_2(w) = w_3 \cdots w_nw_1w_2$ if n ≥ 3, and $C_2(w) = w$ if $n = 2$. Recall that $w^R$ means $w$ written backwards.
Give a context-free grammar that generates the following language: $$ \{w \mid w \text{ has length at least 2 and } C_2(w) = w^R\}. $$
I'm having trouble constructing the context free grammar, so any tips would be much appreciated!