bladePins and bladePowerPins

So currently I don’t have the accents set up my current wiring is the main blade Shtok v3 and Crystal chamber wired in series no subblades. So I was thinking if I picked either of the options it would look like this
The Shtok V3 would be a sub blade in this

BladeConfig blades[] = {
 { 0, WS281XBladePtr<144, bladePin, Color8::GRB, PowerPINS<bladePowerPin2, bladePowerPin3> >(),
    WS281XBladePtr<16, blade2Pin, Color8::GRB, PowerPINS<bladePowerPin4, bladePowerPin5> >(),
    SubBladeWithStride(0, 14, 2, WS281XBladePtr<16, blade3Pin, Color8::GRB, PowerPINS<bladePowerPin4, bladePowerPin5> >()),
    SubBladeWithStride(1, 15, 2, NULL),
    WS281XBladePtr<10 blade3Pin, Color8::GRB, PowerPINS<bladePowerPin1> >()
     WS281XBladePtr<2 blade4Pin, Color8::GRB, PowerPINS<bladePowerPin6> >() 
  , CONFIGARRAY(presets) }, 
};
#endif

And if I just added the accents as a separate blade
It should be something like this

BladeConfig blades[] = {
 { 0, WS281XBladePtr<144, bladePin, Color8::GRB, PowerPINS<bladePowerPin2, bladePowerPin3> >(),
    WS281XBladePtr<16, blade2Pin, Color8::GRB, PowerPINS<bladePowerPin4, bladePowerPin5> >(),
    WS281XBladePtr<10, blade3Pin, Color8::GRB, PowerPINS<bladePowerPin1> >()
     WS281XBladePtr<2, blade4Pin, Color8::GBR, PowerPINS<bladePowerpin6> >()
  , CONFIGARRAY(presets) },
};
#endif

Forgive me if this is a little confusing still trying to get the wiring and programming of accents down, it’s still a little confusing to me, and my first build and all, I feel slow lol but I appreciate the help!