Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
0c4ba98fbb | ||
|
d8f83ce1f2 | ||
|
2e75563025 | ||
|
99d7fabb68 | ||
|
72f787c21b |
83
dev-0/out.tsv
Normal file
83
dev-0/out.tsv
Normal file
@ -0,0 +1,83 @@
|
||||
effective_date=2014-05-20 jurisdiction=New_York party=LIQUIDMETAL_TECHNOLOGIES_Inc.
|
||||
effective_date=2012-06-21 jurisdiction=New_York
|
||||
jurisdiction=Delaware party=JDA_Software_Group_Inc.
|
||||
effective_date=2009-02-23 jurisdiction=Massachusetts party=Kenneth_M._Bate_and_NitroMed_Inc.
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Washington
|
||||
|
||||
jurisdiction=New
|
||||
effective_date=2008-03-21 jurisdiction=New_York
|
||||
effective_date=2015-12-11
|
||||
|
||||
|
||||
effective_date=2012-12-17 jurisdiction=Delaware
|
||||
effective_date=2000-05-23 party=uDate.com_Inc.
|
||||
jurisdiction=New_York party=Virgin_Mobile_USA_LLC
|
||||
effective_date=2012-01-25 jurisdiction=Massachusetts
|
||||
effective_date=2008-07-31 jurisdiction=Minnesota party=Cogent_Inc.
|
||||
jurisdiction=California party=Penumbra_Inc.
|
||||
effective_date=2020-11-25 jurisdiction=New_York party=AOL_Inc.
|
||||
effective_date=2017-07-11 jurisdiction=Delaware
|
||||
effective_date=2018-12-28 party=Flexsteel_Industries_Inc.
|
||||
effective_date=2012-03-31 jurisdiction=California
|
||||
jurisdiction=Virginia
|
||||
effective_date=2004-10-11 jurisdiction=North_Carolina
|
||||
jurisdiction=Arizona
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=New_Jersey
|
||||
effective_date=2004-02-27 jurisdiction=California
|
||||
effective_date=2018-03-30 jurisdiction=Delaware party=Jamba_Inc.
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=New_York
|
||||
effective_date=2015-06-23 jurisdiction=New_York
|
||||
jurisdiction=California
|
||||
|
||||
jurisdiction=California
|
||||
party=CafePress_Inc.
|
||||
effective_date=2017-01-13
|
||||
jurisdiction=Ohio
|
||||
|
||||
party=GigPeak_Inc.
|
||||
effective_date=2000-02-10 jurisdiction=Minnesota
|
||||
jurisdiction=California
|
||||
party=Opsware_Inc.
|
||||
|
||||
jurisdiction=Minnesota party=Flexsteel_Industries_Inc.
|
||||
effective_date=2010-06-23 jurisdiction=Texas
|
||||
jurisdiction=New_Jersey party=AlgoRx_Pharmaceuticals_Inc.
|
||||
|
||||
effective_date=2001-01-26 jurisdiction=Washington party=Corus_Pharma_Inc.
|
||||
effective_date=2005-02-16
|
||||
effective_date=2014-11-26
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Delaware
|
||||
effective_date=2012-06-11 jurisdiction=Delaware party=Lightwave_Logic_Inc.
|
||||
jurisdiction=Delaware party=Webex_Communications_Inc.
|
||||
effective_date=2007-04-30 jurisdiction=Massachusetts
|
||||
effective_date=2011-10-25
|
||||
effective_date=2012-10-15
|
||||
effective_date=2016-03-15 jurisdiction=Delaware
|
||||
effective_date=2005-09-15 jurisdiction=Illinois
|
||||
jurisdiction=Idaho
|
||||
jurisdiction=Washington
|
||||
effective_date=2016-07-15 jurisdiction=New_York party=Wizard_World_Inc.
|
||||
jurisdiction=New_York
|
||||
effective_date=2005-12-31
|
||||
effective_date=2015-03-16 jurisdiction=Utah
|
||||
jurisdiction=Delaware
|
||||
|
||||
effective_date=2004-02-29 jurisdiction=Virginia
|
||||
effective_date=2006-12-19 jurisdiction=New_York
|
||||
effective_date=2010-07-13
|
||||
effective_date=2000-12-11 jurisdiction=Illinois party=Motorola_Inc.
|
||||
effective_date=2011-12-31 party=GigOptix_LLC
|
||||
|
||||
|
||||
effective_date=2011-03-29 jurisdiction=Texas
|
||||
effective_date=2011-05-26 jurisdiction=California party=Skyworks_Solutions_Inc.
|
||||
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Washington
|
||||
effective_date=2011-01-18 jurisdiction=New_York
|
||||
jurisdiction=Washington
|
||||
jurisdiction=Illinois
|
Can't render this file because it has a wrong number of fields in line 2.
|
124
main.py
Normal file
124
main.py
Normal file
@ -0,0 +1,124 @@
|
||||
import csv
|
||||
import sys
|
||||
import lzma
|
||||
import os
|
||||
import regex as re
|
||||
|
||||
out_file_name = "out.tsv"
|
||||
out_sep = '\t'
|
||||
|
||||
months = {
|
||||
"January": "01",
|
||||
"February": "02",
|
||||
"March": "03",
|
||||
"April": "04",
|
||||
"May": "05",
|
||||
"June": "06",
|
||||
"July": "07",
|
||||
"August": "08",
|
||||
"September": "09",
|
||||
"October": "10",
|
||||
"November": "11",
|
||||
"December": "12"
|
||||
}
|
||||
|
||||
|
||||
def main(fname: str):
|
||||
dir_path = os.path.dirname(fname)
|
||||
out_path = os.path.join(dir_path, out_file_name)
|
||||
|
||||
with lzma.open(fname, mode="rt", encoding="utf-8") as tsv_file:
|
||||
with open(out_path, "w") as out_file:
|
||||
reader = csv.reader(tsv_file, delimiter='\t')
|
||||
for item in reader:
|
||||
out_file.write(process_entry(item) + '\n')
|
||||
|
||||
|
||||
def process_entry(entry: list) -> str:
|
||||
res = ""
|
||||
parameters = entry[1]
|
||||
for p in parameters.split(" "):
|
||||
t = entry[2]
|
||||
if p == "party":
|
||||
party = get_party(t)
|
||||
if party is not None:
|
||||
res += out_sep + "party=" + party
|
||||
|
||||
elif p == "jurisdiction":
|
||||
jur = get_jurisdiction(t)
|
||||
if jur is not None:
|
||||
res += out_sep + "jurisdiction=" + jur
|
||||
|
||||
elif p == "effective_date":
|
||||
ed = get_date(t)
|
||||
if ed is not None:
|
||||
t_ed = format_date(ed)
|
||||
if t_ed is not None:
|
||||
res += out_sep + "effective_date=" + t_ed
|
||||
return res
|
||||
|
||||
|
||||
def get_party(text: str):
|
||||
res = None
|
||||
m = re.search(
|
||||
r"between([\p{L}\s.,]+)(inc.|Inc.|INC.|Llc|LLC|llc)[\,\.]", text)
|
||||
if m is not None:
|
||||
res = m.group(1).strip().replace(",", "").replace(" ", "_")
|
||||
t = m.group(2).lower()
|
||||
res += ("_" + t.replace("inc.", "Inc.").replace("llc", "LLC"))
|
||||
return res
|
||||
|
||||
|
||||
def get_jurisdiction(text: str):
|
||||
res = None
|
||||
m = re.search(
|
||||
r"laws? of the (?:(?:State of)|(?:Commonwealth of)) ([A-Z][a-z]+(?: [A-Z][a-z]+)?).+(?:(?: and)|[,.])", text)
|
||||
if m is not None:
|
||||
res = m.group(1).strip().replace(" ", "_")
|
||||
return res
|
||||
|
||||
|
||||
def get_date(text: str):
|
||||
res = re.search(
|
||||
r"(1[0-2]|0[1-9])[/-](0[1-9]|[1|2][0-9]|3[0-1])[/-](0[1-9]|[1-9][0-9])", text)
|
||||
if res is not None:
|
||||
return res
|
||||
|
||||
res = re.search(
|
||||
r"(0[1-9]|1[1-2])[/-](0[1-9]|1[1-9]|2[1-9]|3[0-1])[/-](19[0-9][0-9]|20[0-9][0-9])", text)
|
||||
if res is not None:
|
||||
return res
|
||||
|
||||
res = re.search(
|
||||
r"([j|J]anuary|[f|F]ebruary|[m|M]arch|[A|a]pril|[M|m]ay|[J|j]une|[J|j]uly|[A|a]ugust|[S|s]eptember|[O|o]ctober|[n|N]ovember|[d|D]ecember),?\s*(0[1-9]|[1-2][0-9]|3[0-1]),?\s*(19[0-9][0-9]|20[0-9][0-9])", text)
|
||||
|
||||
return res
|
||||
|
||||
|
||||
def format_date(date):
|
||||
res = None
|
||||
if date is not None:
|
||||
month = date[1]
|
||||
try:
|
||||
month = months[month]
|
||||
except(KeyError):
|
||||
pass
|
||||
|
||||
day = date[2]
|
||||
|
||||
year = date[3]
|
||||
|
||||
if len(year) == 2:
|
||||
if int(year[0]) > 2:
|
||||
year = "19" + year
|
||||
else:
|
||||
year = "20" + year
|
||||
|
||||
res = f"{year}-{month}-{day}"
|
||||
return res
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
if len(sys.argv) < 2:
|
||||
raise Exception("Input file not provided")
|
||||
main(sys.argv[1])
|
203
test-A/out.tsv
Normal file
203
test-A/out.tsv
Normal file
@ -0,0 +1,203 @@
|
||||
effective_date=2014-10-22 jurisdiction=Ohio
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Indiana party=Zimmer_Inc.
|
||||
effective_date=2007-03-28 jurisdiction=New_York party=Motive_Inc.
|
||||
effective_date=2015-05-21 jurisdiction=Nevada
|
||||
effective_date=2010-07-16 jurisdiction=Colorado
|
||||
jurisdiction=Colorado party=Array_BioPharma_Inc.
|
||||
jurisdiction=California
|
||||
effective_date=2013-12-31 jurisdiction=Delaware
|
||||
effective_date=2008-06-25 jurisdiction=New_York
|
||||
effective_date=2016-04-19 jurisdiction=California
|
||||
effective_date=2011-02-28 jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
effective_date=2017-07-20 jurisdiction=New_York
|
||||
effective_date=2015-08-10 party=DAEGIS_Inc.
|
||||
effective_date=2008-03-17 jurisdiction=California
|
||||
effective_date=2012-12-19 jurisdiction=Washington
|
||||
jurisdiction=Victoria
|
||||
effective_date=2009-03-30 jurisdiction=Florida
|
||||
effective_date=2008-07-16
|
||||
jurisdiction=Florida party=Flow_Capital_Advisors_Inc.
|
||||
effective_date=2009-12-31 jurisdiction=New_York
|
||||
party=Aerohive_Networks_Inc.
|
||||
effective_date=2007-10-11 jurisdiction=Florida
|
||||
effective_date=2009-11-19 jurisdiction=New_York
|
||||
effective_date=2005-06-17
|
||||
|
||||
effective_date=2012-10-18 jurisdiction=Delaware
|
||||
jurisdiction=Georgia
|
||||
effective_date=2020-05-19 jurisdiction=Washington
|
||||
effective_date=2012-01-11 jurisdiction=Delaware party=OPNET_Technologies_Inc.
|
||||
|
||||
|
||||
jurisdiction=California
|
||||
jurisdiction=New_York party=Oramed_Pharmaceuticals_Inc.
|
||||
jurisdiction=New_York
|
||||
jurisdiction=Virginia
|
||||
effective_date=2014-01-28 jurisdiction=Delaware
|
||||
effective_date=2006-06-29 jurisdiction=Florida party=Sun_Energy_Solar_Inc.
|
||||
jurisdiction=California
|
||||
jurisdiction=Virginia
|
||||
effective_date=2010-07-23 jurisdiction=Pennsylvania
|
||||
effective_date=2010-01-25 jurisdiction=Delaware party=Protection_One_Inc._and_GTCR_Golder_Rauner_LLC
|
||||
jurisdiction=Washington
|
||||
effective_date=2012-02-24 jurisdiction=Virginia
|
||||
jurisdiction=California
|
||||
|
||||
effective_date=2000-03-28 jurisdiction=Pennsylvania party=Piercing_Pagoda_Inc.
|
||||
effective_date=2012-05-11 jurisdiction=New_Jersey
|
||||
jurisdiction=California
|
||||
|
||||
party=resTORbio_Inc.
|
||||
jurisdiction=Washington
|
||||
effective_date=2011-02-23 jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York party=Maxwell_Shoe_Company_Inc.
|
||||
effective_date=2006-04-19
|
||||
jurisdiction=California party=Autodesk_Inc.
|
||||
effective_date=2001-09-17
|
||||
jurisdiction=Delaware party=Arch_Coal_Inc.
|
||||
effective_date=2018-04-10 jurisdiction=Delaware
|
||||
effective_date=2017-10-31 jurisdiction=Massachusetts party=Sonus_Networks_Inc.
|
||||
jurisdiction=Connecticut
|
||||
effective_date=2006-05-11 jurisdiction=California
|
||||
effective_date=2007-11-26 jurisdiction=Texas
|
||||
jurisdiction=Delaware
|
||||
effective_date=2006-03-17
|
||||
effective_date=2013-11-18
|
||||
jurisdiction=Washington
|
||||
effective_date=2011-10-18
|
||||
effective_date=2020-08-27 party=QUEST_SOLUTION_Inc.
|
||||
effective_date=2002-06-21 jurisdiction=Texas party=Mannatech_Inc.
|
||||
jurisdiction=Colorado
|
||||
effective_date=2007-10-31 jurisdiction=Colorado
|
||||
effective_date=2017-05-24
|
||||
effective_date=2017-12-18 jurisdiction=New_York
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Illinois
|
||||
effective_date=2014-12-22 jurisdiction=New_York
|
||||
effective_date=2012-01-27
|
||||
effective_date=2006-07-10 jurisdiction=Florida party=Sun_Energy_Solar_Inc.
|
||||
jurisdiction=Virginia
|
||||
|
||||
effective_date=2005-09-19
|
||||
effective_date=2016-11-17
|
||||
jurisdiction=New_Jersey
|
||||
effective_date=2001-12-12 jurisdiction=North_Carolina
|
||||
|
||||
|
||||
jurisdiction=California
|
||||
party=BATS_Exchange_Inc.
|
||||
effective_date=2016-07-25 jurisdiction=Florida party=Carolco_Pictures_Inc.
|
||||
effective_date=2015-08-26
|
||||
effective_date=2001-03-21 jurisdiction=Oregon
|
||||
effective_date=2004-03-17 jurisdiction=New_York
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=Delaware party=Orbitz_LLC
|
||||
effective_date=2015-10-26 jurisdiction=New_York
|
||||
jurisdiction=Colorado
|
||||
effective_date=2016-07-26 jurisdiction=California
|
||||
effective_date=2004-09-29 party=Telco_Solutions_III_LLC
|
||||
party=Myers_Industries_Inc.
|
||||
jurisdiction=Minnesota
|
||||
effective_date=2003-08-21 jurisdiction=Delaware
|
||||
jurisdiction=California
|
||||
jurisdiction=Connecticut
|
||||
effective_date=2019-02-14
|
||||
effective_date=2016-11-17
|
||||
effective_date=2019-01-16 jurisdiction=Utah
|
||||
effective_date=2010-10-19
|
||||
effective_date=2012-02-12 jurisdiction=Utah
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=New_York
|
||||
|
||||
effective_date=2002-02-28 jurisdiction=California party=Openwave_Systems_Inc.
|
||||
effective_date=2013-07-29 jurisdiction=New_York
|
||||
effective_date=2006-04-21 jurisdiction=Virginia
|
||||
|
||||
effective_date=2007-01-31 jurisdiction=Texas
|
||||
|
||||
effective_date=2007-04-23
|
||||
effective_date=2018-04-26 jurisdiction=New_York
|
||||
jurisdiction=Michigan party=Flagstar_Bancorp_Inc.
|
||||
effective_date=2013-01-31
|
||||
effective_date=2006-09-22 jurisdiction=Japan
|
||||
|
||||
effective_date=2011-05-27 jurisdiction=New_York
|
||||
jurisdiction=Minnesota party=_ChoiceTel_Communications_Inc.
|
||||
jurisdiction=Ohio
|
||||
jurisdiction=Oregon
|
||||
effective_date=2014-07-15 jurisdiction=New_Jersey
|
||||
effective_date=1999-04-29 jurisdiction=Florida
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Massachusetts
|
||||
jurisdiction=Ohio
|
||||
effective_date=2008-02-19 jurisdiction=Minnesota
|
||||
jurisdiction=Maryland
|
||||
|
||||
effective_date=2015-10-19
|
||||
effective_date=2012-05-21 jurisdiction=Virginia
|
||||
effective_date=2017-12-31
|
||||
effective_date=2009-02-16 jurisdiction=Delaware party=Chordiant_Software_Inc.
|
||||
effective_date=2007-09-10 jurisdiction=Maryland
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Ohio party=Myers_Industries_Inc.
|
||||
effective_date=1994-07-11 jurisdiction=California
|
||||
effective_date=2006-10-31
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Indiana
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=Minnesota
|
||||
|
||||
party=Spark_Therapeutics_Inc.
|
||||
effective_date=2006-02-28 jurisdiction=New_York
|
||||
party=GigPeak_Inc.
|
||||
effective_date=2008-03-28
|
||||
effective_date=2012-04-30 jurisdiction=Louisiana
|
||||
effective_date=2007-11-30
|
||||
effective_date=1998-09-22 jurisdiction=New_York
|
||||
effective_date=2012-01-27
|
||||
effective_date=1994-08-31
|
||||
jurisdiction=Nevada
|
||||
jurisdiction=California
|
||||
effective_date=2008-06-16 jurisdiction=North_Carolina
|
||||
effective_date=2008-03-12 jurisdiction=California
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=California
|
||||
effective_date=2012-06-22 jurisdiction=New_York
|
||||
|
||||
jurisdiction=New_York
|
||||
effective_date=2017-04-24
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Minnesota party=Arctic_Cat_Inc.
|
||||
effective_date=2006-10-30
|
||||
jurisdiction=Georgia party=COMVERGE_Inc.
|
||||
jurisdiction=Kentucky
|
||||
effective_date=2019-07-19
|
||||
|
||||
effective_date=2007-06-14 jurisdiction=Colorado
|
||||
effective_date=2010-04-27 jurisdiction=Connecticut
|
||||
jurisdiction=Delaware
|
||||
effective_date=2020-11-24 party=Red_Hat_Inc.
|
||||
effective_date=2017-02-10 jurisdiction=California
|
||||
effective_date=2018-12-17 jurisdiction=Georgia
|
||||
jurisdiction=California
|
||||
effective_date=2013-05-29 jurisdiction=New_York
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=California party=SPECIALIZED_MARKETING_SERVICES_Inc.
|
||||
jurisdiction=Maryland
|
||||
jurisdiction=California party=ZipRealty_Inc.
|
||||
|
||||
jurisdiction=Pennsylvania
|
||||
effective_date=2003-07-30 jurisdiction=New_York party=Alloy_Inc.
|
||||
effective_date=2003-03-31 jurisdiction=Virginia party=USA_Deck_Inc.
|
||||
effective_date=2001-03-30
|
||||
effective_date=2018-03-19 jurisdiction=Delaware party=ARMO_Biosciences_Inc.
|
||||
jurisdiction=Nevada
|
||||
|
||||
jurisdiction=Delaware
|
||||
effective_date=2008-09-10 jurisdiction=California
|
||||
jurisdiction=Colorado
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
254
train/out.tsv
Normal file
254
train/out.tsv
Normal file
@ -0,0 +1,254 @@
|
||||
effective_date=2001-04-18 jurisdiction=Oregon
|
||||
effective_date=2017-02-10 jurisdiction=California
|
||||
|
||||
effective_date=1999-02-08 jurisdiction=Pennsylvania
|
||||
effective_date=2011-07-13
|
||||
effective_date=2004-11-19 jurisdiction=California
|
||||
effective_date=2009-09-23
|
||||
effective_date=2011-02-28 jurisdiction=Delaware
|
||||
|
||||
effective_date=2006-12-28
|
||||
effective_date=2014-12-11 jurisdiction=Delaware
|
||||
|
||||
effective_date=2009-01-15 jurisdiction=Delaware
|
||||
|
||||
effective_date=2013-02-18 jurisdiction=New_York
|
||||
party=NEON_SYSTEMS_Inc.
|
||||
jurisdiction=New_York
|
||||
effective_date=2006-01-30 jurisdiction=Michigan
|
||||
effective_date=2004-10-28
|
||||
jurisdiction=Colorado
|
||||
jurisdiction=Georgia
|
||||
jurisdiction=New_York
|
||||
effective_date=2019-10-17 jurisdiction=Oregon
|
||||
effective_date=2016-02-12 jurisdiction=Pennsylvania
|
||||
|
||||
effective_date=2008-09-10 jurisdiction=Florida
|
||||
jurisdiction=Delaware
|
||||
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=California
|
||||
effective_date=2014-03-21
|
||||
effective_date=2013-11-10 jurisdiction=Missouri
|
||||
jurisdiction=Oregon
|
||||
effective_date=2013-01-30 jurisdiction=Delaware
|
||||
effective_date=2013-12-20 jurisdiction=Delaware party=Vocus_Inc.
|
||||
effective_date=2014-11-14 jurisdiction=Connecticut
|
||||
effective_date=2015-11-28 jurisdiction=Nevada
|
||||
effective_date=2007-03-24 jurisdiction=New_York
|
||||
jurisdiction=Illinois
|
||||
jurisdiction=Idaho
|
||||
jurisdiction=Florida
|
||||
effective_date=2008-07-22 jurisdiction=Delaware
|
||||
|
||||
effective_date=2007-03-15 jurisdiction=Minnesota
|
||||
jurisdiction=Virginia
|
||||
effective_date=2009-11-19 jurisdiction=California
|
||||
|
||||
effective_date=2018-04-20 jurisdiction=Nevada
|
||||
effective_date=2015-06-23 jurisdiction=New_York
|
||||
jurisdiction=Washington
|
||||
jurisdiction=New_York party=Maxwell_Shoe_Company_Inc.
|
||||
effective_date=2008-09-29 jurisdiction=Ohio
|
||||
|
||||
jurisdiction=Georgia party=RMS_TITANIC_inc
|
||||
effective_date=2014-04-15 jurisdiction=Massachusetts party=World_Energy_Solutions_Inc.
|
||||
effective_date=2011-01-18 jurisdiction=Texas
|
||||
jurisdiction=New_York
|
||||
effective_date=2012-04-11 jurisdiction=New_York
|
||||
effective_date=2004-12-23 jurisdiction=Virginia
|
||||
|
||||
effective_date=2010-05-17 party=Victoria_Industries_Inc.
|
||||
|
||||
effective_date=2015-11-16 jurisdiction=Delaware
|
||||
jurisdiction=Ohio
|
||||
effective_date=2009-01-26 jurisdiction=Missouri
|
||||
jurisdiction=South_Dakota
|
||||
jurisdiction=New_York
|
||||
|
||||
jurisdiction=Minnesota
|
||||
jurisdiction=Maine
|
||||
|
||||
jurisdiction=Delaware
|
||||
|
||||
|
||||
|
||||
effective_date=2007-02-14 jurisdiction=Illinois
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=California party=CV_Therapeutics_Inc.
|
||||
effective_date=2009-03-25
|
||||
effective_date=2007-12-31
|
||||
jurisdiction=North_Carolina
|
||||
|
||||
jurisdiction=Georgia
|
||||
effective_date=2018-01-15 jurisdiction=Missouri
|
||||
effective_date=2010-03-17 jurisdiction=New
|
||||
jurisdiction=Georgia
|
||||
effective_date=2008-04-22 jurisdiction=New_York
|
||||
effective_date=2010-03-31
|
||||
effective_date=2007-05-17 jurisdiction=California party=INVERNESS_MEDICAL_INNOVATIONS_Inc.
|
||||
|
||||
effective_date=2012-10-15 jurisdiction=Delaware party=JLL_Partners_Inc.
|
||||
effective_date=2007-02-12 jurisdiction=Delaware
|
||||
jurisdiction=Connecticut
|
||||
effective_date=2003-03-27 jurisdiction=Utah
|
||||
|
||||
effective_date=2020-02-02
|
||||
jurisdiction=Ohio
|
||||
effective_date=2008-06-24 jurisdiction=California
|
||||
jurisdiction=California
|
||||
effective_date=2020-11-16
|
||||
effective_date=2000-12-31 jurisdiction=South_Carolina
|
||||
effective_date=2011-03-22 jurisdiction=Texas
|
||||
effective_date=2011-07-14 jurisdiction=New_York
|
||||
|
||||
effective_date=2007-02-28 jurisdiction=Georgia
|
||||
effective_date=2010-03-16
|
||||
effective_date=2011-01-12 jurisdiction=Texas
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=New_York party=Delcath_Systems_Inc.
|
||||
jurisdiction=Pennsylvania
|
||||
effective_date=2016-04-25
|
||||
|
||||
jurisdiction=Delaware
|
||||
effective_date=2014-09-18
|
||||
jurisdiction=California party=AVANIR_PHARMACEUTICALS_Inc.
|
||||
effective_date=2011-10-20 jurisdiction=New_York
|
||||
effective_date=2012-10-30 jurisdiction=Delaware
|
||||
|
||||
effective_date=2004-10-11 jurisdiction=North_Carolina
|
||||
jurisdiction=Delaware
|
||||
effective_date=2014-12-16
|
||||
party=Verso_Paper_Holdings_LLC
|
||||
party=Blackbaud_Inc.
|
||||
jurisdiction=New_York
|
||||
party=resTORbio_Inc.
|
||||
effective_date=2003-01-21
|
||||
effective_date=2007-10-12 jurisdiction=New_York
|
||||
effective_date=2005-01-25 jurisdiction=Missouri party=ENERGIZER_HOLDINGS_Inc.
|
||||
jurisdiction=Virginia
|
||||
jurisdiction=California
|
||||
effective_date=2020-11-30 jurisdiction=New_York party=Shire_Pharmaceuticals_Inc.
|
||||
effective_date=2006-11-22 jurisdiction=California
|
||||
|
||||
jurisdiction=Wisconsin
|
||||
jurisdiction=Washington
|
||||
effective_date=2006-04-13 party=Burlington_Coat_Factory_Holdings_Inc.
|
||||
effective_date=2014-07-24 jurisdiction=California
|
||||
|
||||
effective_date=2013-12-20 jurisdiction=Delaware
|
||||
jurisdiction=Massachusetts
|
||||
effective_date=2007-05-17 jurisdiction=California party=INVERNESS_MEDICAL_INNOVATIONS_Inc.
|
||||
effective_date=2014-06-10
|
||||
|
||||
effective_date=2013-02-18
|
||||
effective_date=2004-08-24 jurisdiction=New_Jersey
|
||||
effective_date=2011-04-15 jurisdiction=Delaware
|
||||
jurisdiction=Massachusetts
|
||||
|
||||
jurisdiction=Utah
|
||||
|
||||
|
||||
effective_date=2007-10-20 jurisdiction=California
|
||||
jurisdiction=California
|
||||
effective_date=2007-02-06 jurisdiction=Colorado
|
||||
effective_date=2005-10-12 jurisdiction=Delaware
|
||||
effective_date=2008-12-31 jurisdiction=Ohio party=Red_Mountain_Capital_Partners_LLC
|
||||
jurisdiction=Pennsylvania
|
||||
jurisdiction=New_Jersey
|
||||
jurisdiction=Virginia
|
||||
effective_date=2005-06-16 jurisdiction=New_York
|
||||
|
||||
jurisdiction=Nevada
|
||||
effective_date=2006-04-13 party=Burlington_Coat_Factory_Holdings_Inc.
|
||||
effective_date=2007-10-29 jurisdiction=Texas
|
||||
effective_date=2008-09-10
|
||||
effective_date=2006-02-28 jurisdiction=New_York
|
||||
effective_date=2009-03-19 jurisdiction=New_York
|
||||
|
||||
|
||||
jurisdiction=Missouri
|
||||
effective_date=2004-02-24
|
||||
effective_date=2011-07-22 jurisdiction=Texas
|
||||
party=VITAMIN_SHOPPE_INDUSTURIES_Inc.
|
||||
effective_date=2009-05-21 jurisdiction=New_York
|
||||
effective_date=2014-02-19
|
||||
jurisdiction=Missouri
|
||||
effective_date=2007-05-22 jurisdiction=Delaware
|
||||
jurisdiction=Nevada party=AGS_LLC
|
||||
jurisdiction=Florida
|
||||
effective_date=2009-11-24
|
||||
jurisdiction=Oregon
|
||||
|
||||
effective_date=2018-03-26
|
||||
effective_date=2007-04-19
|
||||
jurisdiction=Texas
|
||||
effective_date=2006-07-24
|
||||
jurisdiction=Florida party=FARO_Technologies_Inc.
|
||||
effective_date=2016-07-14 jurisdiction=New_York party=Wizard_World_Inc.
|
||||
effective_date=2007-07-23
|
||||
jurisdiction=Delaware
|
||||
effective_date=2018-03-19 jurisdiction=Delaware party=ARMO_Biosciences_Inc.
|
||||
jurisdiction=Oregon
|
||||
jurisdiction=Minnesota party=The_Travelers_Companies_Inc.
|
||||
|
||||
effective_date=2002-05-16 jurisdiction=California
|
||||
effective_date=2011-08-11 jurisdiction=Delaware party=Micromet_Inc.
|
||||
jurisdiction=California
|
||||
|
||||
jurisdiction=Delaware
|
||||
jurisdiction=Colorado party=Lightwave_Logic_Inc.
|
||||
party=Endo_Pharmaceuticals_Inc.
|
||||
effective_date=2015-05-18 jurisdiction=New_York
|
||||
|
||||
effective_date=2009-01-17 jurisdiction=Delaware
|
||||
effective_date=1999-04-15
|
||||
|
||||
|
||||
effective_date=2015-01-16 jurisdiction=New_York
|
||||
effective_date=2007-06-30 jurisdiction=Ohio
|
||||
effective_date=2018-01-15
|
||||
jurisdiction=California
|
||||
effective_date=2014-07-31 jurisdiction=California
|
||||
party=Palm_Inc.
|
||||
effective_date=2008-07-24 jurisdiction=Oregon
|
||||
effective_date=2012-10-19 jurisdiction=Texas
|
||||
effective_date=2009-06-30
|
||||
|
||||
|
||||
effective_date=2001-09-17 jurisdiction=California
|
||||
|
||||
effective_date=2002-07-08 jurisdiction=California
|
||||
jurisdiction=Ohio
|
||||
|
||||
effective_date=2020-10-26 jurisdiction=Massachusetts party=Comverse_Inc.
|
||||
jurisdiction=Delaware party=PAETEC_Communications_Inc.
|
||||
effective_date=2007-11-30 jurisdiction=Georgia
|
||||
effective_date=2015-01-12 jurisdiction=Delaware party=Pitney_Bowes_Inc.
|
||||
jurisdiction=Massachusetts
|
||||
|
||||
effective_date=2013-01-25 jurisdiction=New_York
|
||||
jurisdiction=Pennsylvania party=Globus_Medical_Inc.
|
||||
effective_date=2003-05-13
|
||||
jurisdiction=Washington
|
||||
effective_date=2011-03-17 party=Momentive_Specialty_Chemicals_Inc.
|
||||
effective_date=2007-12-10 jurisdiction=Missouri
|
||||
jurisdiction=California
|
||||
|
||||
effective_date=2006-05-11 jurisdiction=California
|
||||
|
||||
effective_date=2006-07-10
|
||||
jurisdiction=Ohio
|
||||
effective_date=2011-03-21 jurisdiction=Delaware
|
||||
jurisdiction=New_York
|
||||
effective_date=2010-04-19 jurisdiction=New_York party=Sybase_Inc.
|
||||
effective_date=2007-06-15
|
||||
|
||||
|
||||
effective_date=2006-05-19 jurisdiction=California
|
||||
jurisdiction=Florida
|
||||
effective_date=2006-04-13 party=Burlington_Coat_Factory_Holdings_Inc.
|
||||
effective_date=2010-03-19 jurisdiction=Delaware
|
||||
effective_date=2011-01-27
|
||||
effective_date=2007-01-10 jurisdiction=Delaware party=Lydall_Inc.
|
Can't render this file because it has a wrong number of fields in line 5.
|
Loading…
Reference in New Issue
Block a user