Regions-Harbert Plaza

The Regions-Harbert Plaza is a 32-story, 437-foot-tall (133 m) office building in Birmingham, Alabama. Originally known as the AmSouth-Harbert Plaza, it was renamed on July 13, 2007 after AmSouth Bancorporation - the building's largest tenant - merged with Birmingham-based Regions Financial Corporation. Today, the 200,000 square feet (19,000 m2) that Regions leases makes it the building's largest tenant.

Regions-Harbert Plaza
General information
StatusComplete
TypeClass-A Office Building
Location1901 6th Avenue North Birmingham, Alabama, USA
Construction started1987
Completed1988
Opening1989
CostUS$110 million
OwnerS.L. Regions LLC
NKP Alabama Owner LLC
ManagementHarbert Realty Services
Height
Antenna spire437 feet (133 m)
Top floor32
Technical details
Floor count32
Floor area629,635 sq ft (58,495 m2)[1]
Design and construction
ArchitectHellmuth, Obata and Kassabaum
DeveloperHarbert Corporation
Main contractorBrasfield & Gorrie

History

Designed by the architectural firm Hellmuth, Obata & Kassabaum, the Plaza was built in 1989 by general contractor Brasfield & Gorrie as a multi-tenant office building for Harbert Corporation. Harbert owned the building until 2008, when the Harbert family sold it.

The building's base has a 70,000-square-foot (6,500 m2) retail center and its foundation can accommodate a 8-story tower above the retail area. The building also connects to the adjacent Regions Center through the mezzanine level.

Tenants

Major tenants include Regions Financial Corporation; law firms Balch & Bingham, Waller Lansden Dortch & Davis, LLP and Maynard Cooper & Gale; an IT Professional Services Firm Insight Global, the accounting firm Ernst & Young and Northwestern Mutual. The 31st and 32nd floors contain the private City Club of Birmingham.

gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description='Compile a WHY program')parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```The compiler for the new `WHY` language. Made as a joke because someone on the esolangs server insisted that all compiled languages were fast.
gollark: BT being bad, who would ever guess so?
gollark: Amazing, right?
gollark: Try running potatOS on it.
gollark: Now running virtualization inside the potato farms for funlolz.

See also

References

  1. "Regions Harbert Plaza". Skyscraper Center. CTBUH. Retrieved 2017-09-05.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.