stateDiagram-v2
    direction LR
    [*] --> Active

    state Active {
      direction BT
        [*] --> Inner
        Inner --> NumLockOn : EvNumLockPressed
    }
    %% Outer --> Inner
      
      stateDiagram-v2
      [*] --> First
      state First {
          [*] --> second
          second --> [*]
      }


    
      flowchart LR
        A[Start] --Some text--> B(Continue)
        B --> C{Evaluate}
        C -- One --> D[Option 1]
        C -- Two --> E[Option 2]
        C -- Three --> F[fa:fa-car Option 3]