new-site/scripts/formation/states/nm/config.py
justin f8cd37ac8c Initial commit — Performance West telecom compliance platform
Includes: API (Express/TypeScript), Astro site, Python workers,
document generators, FCC compliance tools, Canada CRTC formation,
Ansible infrastructure, and deployment scripts.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-27 06:54:22 -05:00

32 lines
907 B
Python

"""New Mexico Secretary of State — portal configuration."""
CONFIG = {
"state": "New Mexico",
"abbreviation": "NM",
"agency": "Secretary of State",
"portal_name": "SOS",
"portal_url": "https://sos.nm.gov",
"name_search_url": "https://portal.sos.state.nm.us/BFS/online/CorporationBusinessSearch",
"portal_login_required": False,
"registered_agent": {
"name": "Northwest Registered Agent",
"street": "1303 San Pedro Dr NE Ste 200",
"city": "Albuquerque",
"state": "NM",
"zip": "87110",
},
"nwra_address": "1303 San Pedro Dr NE Ste 200",
"nwra_city": "Albuquerque",
"nwra_state": "NM",
"nwra_zip": "87110",
"fees": {
"llc": 50,
"corporation": 125,
},
"selectors": {
"search_input": "",
"search_button": "",
"results_table": "",
"no_results": "",
},
}