python
from dataclasses import dataclass

@dataclass
class Contact:
    name:str = "Zebadiah Long";
    age:int = 1210233888;	# In seconds
    pronouns:str = "he/him";
    face = ; 
    links = [
	"noblewhale.com",  	# Business site 
	"AnsonKindred",    	# Github 
	"Noble Whale",     	# Business Github 
	"zeblong",         	# LinkedIn 
	"AnsonKindred",    	# Steam 
	"Resume"          	# Resume 
    ];
    emails = [
        "thegreatzebadiah@gmail.com",
        "zeb@noblewhale.com"
    ];
    location:str = "Athens, GA. USA";
    phone:int = 7062014294;