Grab the HREF for three social networks

Without using relational CSS (nth of types) how can I grab the three HREF associated with the social networks

{"_id":"a-delete-investors-wefunderdotcom","startUrl":["https://wefunder.com/70million.jobs"],"selectors":[{"id":"Scroll-Click","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.render_investors > div","multiple":true,"delay":"5000","clickElementSelector":".load_more_investors","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"Link","type":"SelectorLink","parentSelectors":["Scroll-Click"],"selector":"a.name","multiple":false,"delay":0},{"id":"First Name","type":"SelectorText","parentSelectors":["Link"],"selector":"center > h1","multiple":false,"regex":"","delay":0},{"id":"Last Name","type":"SelectorText","parentSelectors":["Link"],"selector":"center > h2","multiple":false,"regex":"","delay":0},{"id":"Linkedin","type":"SelectorElementAttribute","parentSelectors":["Link"],"selector":".networks a","multiple":false,"extractAttribute":"href","delay":0},{"id":"LOcation ","type":"SelectorText","parentSelectors":["Link"],"selector":"div.location","multiple":false,"regex":"^[^\\t ]+","delay":0},{"id":"bio","type":"SelectorText","parentSelectors":["Link"],"selector":".bio:first","multiple":false,"regex":"","delay":0},{"id":"investments","type":"SelectorGroup","parentSelectors":["Link"],"selector":"div.company","delay":0,"extractAttribute":""}]}

Figured it out.

I used Element Attribute HREF for the following selector 1 for each type
.networks a[href*="linkedin.com"].
.networks a[href*="facebook.com"]
.networks a[href*="twitter.com"]