mermaid`graph TB
f(("Group.\nfeatures\nA"))--> c(("Ind.\nfeatures\nA"))
f(("Group.\nfeatures\nA"))--> a(("Ties AB"))
f(("Group.\nfeatures\nA"))--> a(("Ties BA"))
c(("Ind.\nfeatures\nA"))--> a(("Ties BA"))
c(("Ind.\nfeatures\nA")) --> e(("Ties AB"))
c(("Ind.\nfeatures\nA")) --> b["Pub AB"]
a(("Ties BA")) -->b["Pub AB"]
e(("Ties AB")) -->b["Pub AB"]
g(("Group.\nfeatures\nB"))--> d(("Ind.\nfeatures\nB"))
g(("Group.\nfeatures\nB"))--> a(("Ties BA"))
d(("Ind.\nfeatures\nB")) --> b(("Pub AB"))
d(("Ind.\nfeatures\nB")) --> e(("Ties AB"))
d(("Ind.\nfeatures\nB")) --> a(("Ties BA"))
g(("Group.\nfeatures\nB"))--> a(("Ties AB"))
linkStyle 7 stroke:darkred,stroke-width:4px,color:red;
linkStyle 6 stroke:darkred,stroke-width:4px,color:red;
linkStyle 10 stroke:lightblue,stroke-width:4px,color:red;
linkStyle 5 stroke:lightblue,stroke-width:4px,color:red;
`