Question for firewall rule

I have a question to my firewall rules. See Screenshot, I have defined a few firewall rules but no one will hit. Only rule 20 and 10 will hit.
But this rules show likes allow all.
I found this also in the documentation under quick start

rule 20 { action accept log enable state { established enable related enable }

 name OUTSIDE-IN {
        default-action drop
        rule 10 {
            action accept
            state {
                established enable
                related enable
            }

Your default action is drop, so you drop everything except related packets for your already established connection. You need to define what should happen with new packets, right now they are dropped.