sec_query 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,72 +0,0 @@
1
- # encoding: UTF-8
2
-
3
- module SecQuery
4
- # => SecQuery::Relationship
5
- # Relationships are Owner / Issuer Relationships between Entities,
6
- # forged by Transactions.
7
- class Relationship
8
- COLUMNS = :name, :position, :cik
9
- attr_accessor(*COLUMNS, :date)
10
-
11
- def initialize(relationship)
12
- COLUMNS.each do |column|
13
- instance_variable_set("@#{ column }", relationship[column])
14
- end
15
- date = relationship[:date].split('-')
16
- @date = Time.utc(date[0], date[1], date[2].to_i)
17
- end
18
-
19
- def self.find(entity)
20
- @relationships = []
21
-
22
- if entity[:doc]
23
- doc = entity[:doc]
24
- elsif entity[:cik]
25
- doc = Entity.document(entity[:cik])[0]
26
- end
27
-
28
- type = 'Ownership Reports for Issuers:'
29
- lines = doc.search('//table').search('//td').search("b[text()*='"+type+"']")
30
- if lines.empty?
31
- type = 'Ownership Reports from:'
32
- lines = doc.search('//table').search('//td').search("b[text()*='"+type+"']")
33
- end
34
-
35
- return false if lines.empty?
36
-
37
- relationship = {}
38
- lines = lines[0].parent.search('//table')[0].search('//tr')
39
- lines.each do |line|
40
- link = line.search('//a')[0]
41
- if link.innerHTML != 'Owner' && link.innerHTML != 'Issuer'
42
- relationship[:name] = link.innerHTML
43
- relationship[:cik] = line.search('//td')[1].search('//a').innerHTML
44
- relationship[:date] = line.search('//td')[2].innerHTML
45
- relationship[:position] = line.search('//td')[3].innerHTML
46
- @relationships << Relationship.new(relationship)
47
- end
48
- end
49
- @relationships
50
- end
51
-
52
- def self.print(relationships)
53
- if relationships
54
- puts "\n\t#{ relationships[1] }\n"
55
- printf("\t%-30s %-10s %-40s %-10s\n\n",
56
- 'Entity',
57
- 'CIK',
58
- 'Position',
59
- 'Date')
60
- issuer[:relationships].each do |relationship|
61
- printf("\t%-30s %-10s %-40s %-10s\n",
62
- relationship.name,
63
- relationship.cik,
64
- relationship.position,
65
- relationship.date)
66
- end
67
- else
68
- puts 'No relationships'
69
- end
70
- end
71
- end
72
- end
@@ -1,106 +0,0 @@
1
- # encoding: UTF-8
2
-
3
- module SecQuery
4
- # => SecQuery::Transactions
5
- # SecQuery filings for any given SecQuery::Entity instance.
6
- class Transaction
7
- STR_COLUMNS = :code, :form, :type, :modes, :owner_cik, :security_name,
8
- :deemed, :exercise, :nature, :derivative, :exercised,
9
- :reporting_owner
10
-
11
- FLOAT_COLUMNS = :shares, :owned, :underlying_1, :underlying_2,
12
- :underlying_3
13
-
14
- attr_accessor(*STR_COLUMNS, *FLOAT_COLUMNS, :filing_number, :date, :price,
15
- :owned, :number, :expires)
16
-
17
- def initialize(transaction)
18
- @number = transaction[:number].to_i
19
- @price = transaction[:price].gsub('$', '').to_f
20
- @filing_number = transaction[:form].split('/')[-2][0..19]
21
- setup_columns(transaction)
22
- setup_date(transaction)
23
- setup_expires(transaction)
24
- end
25
-
26
- def setup_columns(transaction)
27
- STR_COLUMNS.each do |column|
28
- instance_variable_set("@#{ column }", transaction[column])
29
- end
30
- FLOAT_COLUMNS.each do |column|
31
- instance_variable_set("@#{ column }", transaction[column].to_f)
32
- end
33
- end
34
-
35
- def setup_date(transaction)
36
- if transaction[:date] && transaction[:date] != '-'
37
- date = transaction[:date].split('-')
38
- @date = Time.utc(date[0], date[1], date[2])
39
- end
40
- end
41
-
42
- def setup_expires(transaction)
43
- if transaction[:expires]
44
- expires = transaction[:expires].split('-')
45
- @expires = Time.utc(expires[0], expires[1], expires[2].to_i)
46
- end
47
- end
48
-
49
- def self.find(entity, start, count, limit)
50
- start ||= 0
51
- count ||= 80
52
- url = SecURI.ownership_display_uri({
53
- action: "get#{entity[:type]}",
54
- CIK: entity[:cik],
55
- start: start,
56
- count: count
57
- })
58
- response = Entity.query(url)
59
- doc = Hpricot(response)
60
- trans = doc.search("//td[@width='40%']")[0].parent.parent.search('//tr')
61
- i = start
62
- query_more = false
63
- trans.each do |tran|
64
- td = tran.search('//td')
65
- if td[2] && td[1].innerHTML != 'Exercise'
66
- query_more = true
67
- unless td[0].empty?
68
- transaction = {}
69
- transaction[:code] = td[0].innerHTML
70
- transaction[:date] = td[1].innerHTML
71
- transaction[:reporting_owner] = td[2].innerHTML
72
- transaction[:form] = td[3].innerHTML
73
- transaction[:type] = td[4].innerHTML
74
- transaction[:modes] = td[5].innerHTML
75
- transaction[:shares] = td[6].innerHTML
76
- transaction[:price] = td[7].innerHTML
77
- transaction[:owned] = td[8].innerHTML
78
- transaction[:number] = td[9].innerHTML
79
- transaction[:owner_cik] = td[10].innerHTML
80
- transaction[:security_name] = td[11].innerHTML
81
- transaction[:deemed] = td[12].innerHTML
82
- n_td = trans[i + 1].search('//td') if trans[i + 1]
83
- if n_td && n_td.count == 7 && n_td[0].innerHTML.empty?
84
- transaction[:exercise] = n_td[1].innerHTML
85
- transaction[:nature] = n_td[2].innerHTML
86
- transaction[:derivative] = n_td[3].innerHTML
87
- transaction[:underlying_1] = n_td[4].innerHTML
88
- transaction[:exercised] = n_td[5].innerHTML
89
- transaction[:underlying_2] = n_td[6].innerHTML
90
- transaction[:expires] = n_td[7].innerHTML
91
- transaction[:underlying_3] = n_td[8].innerHTML
92
- end
93
- entity[:transactions] << Transaction.new(transaction)
94
- end
95
- end
96
- i += 1
97
- end
98
-
99
- if (query_more && limit.nil?) || (query_more && !limit)
100
- Transaction.find(entity, start + count, count, limit)
101
- else
102
- return entity
103
- end
104
- end
105
- end
106
- end
@@ -1,39 +0,0 @@
1
- include SecQuery
2
- require 'spec_helper'
3
-
4
- describe SecQuery::Filing do
5
- context "Owner" do
6
- describe "Transactions", vcr: { cassette_name: "Steve Jobs"} do
7
- let(:query){{
8
- name: "JOBS STEVEN P", :cik => "0001007844",
9
- transactions:[
10
- {filing_number: "0001181431-07-052839", reporting_owner: "APPLE INC", shares:120000.0},
11
- {filing_number: "0001181431-07-052839", reporting_owner: "APPLE INC", shares: 40000.0},
12
- {filing_number: "0001181431-07-052839", reporting_owner: "APPLE INC", shares: 40000.0},
13
- {filing_number: "0001181431-07-052839", reporting_owner: "APPLE INC", shares: 40000.0},
14
- {filing_number: "0001181431-06-028746", reporting_owner: "WALT DISNEY CO/", shares: 138000004.0},
15
- {filing_number: "0001356184-06-000008", reporting_owner: "PIXAR \\CA\\", shares: 60000002.0},
16
- {filing_number: "0001181431-06-019230", reporting_owner: "APPLE COMPUTER INC", shares: 4573553.0},
17
- {filing_number: "0001181431-06-028747", reporting_owner: "WALT DISNEY CO/", shares: 0.0}
18
- ]
19
- }}
20
-
21
- let(:entity) {SecQuery::Entity.find(query[:cik])}
22
-
23
- # it "should respond to transactions" do
24
- # entity.should respond_to(:transactions)
25
- # entity.filings.should be_kind_of(Array)
26
- # end
27
-
28
- # it "should be valid transaction" do
29
- # entity.transactions.first.inspect
30
- # #is_valid_filing?(entity.filings.first)
31
- # end
32
- #
33
- # it "should respond to content" do
34
- # entity.filings.first.should respond_to(:content)
35
- # puts entity.filings.first.content
36
- # end
37
- end
38
- end
39
- end
@@ -1,257 +0,0 @@
1
- <SEC-DOCUMENT>0001140361-14-019536.txt : 20140508
2
- <SEC-HEADER>0001140361-14-019536.hdr.sgml : 20140508
3
- <ACCEPTANCE-DATETIME>20140508143341
4
- ACCESSION NUMBER: 0001140361-14-019536
5
- CONFORMED SUBMISSION TYPE: 4
6
- PUBLIC DOCUMENT COUNT: 2
7
- CONFORMED PERIOD OF REPORT: 20140507
8
- FILED AS OF DATE: 20140508
9
- DATE AS OF CHANGE: 20140508
10
-
11
- ISSUER:
12
-
13
- COMPANY DATA:
14
- COMPANY CONFORMED NAME: InfuSystem Holdings, Inc
15
- CENTRAL INDEX KEY: 0001337013
16
- STANDARD INDUSTRIAL CLASSIFICATION: SURGICAL & MEDICAL INSTRUMENTS & APPARATUS [3841]
17
- IRS NUMBER: 203341405
18
- STATE OF INCORPORATION: DE
19
- FISCAL YEAR END: 1231
20
-
21
- BUSINESS ADDRESS:
22
- STREET 1: 31700 RESEARCH PARK DRIVE
23
- CITY: MADISON HEIGHTS
24
- STATE: MI
25
- ZIP: 48071
26
- BUSINESS PHONE: (248) 291-1210
27
-
28
- MAIL ADDRESS:
29
- STREET 1: 31700 RESEARCH PARK DRIVE
30
- CITY: MADISON HEIGHTS
31
- STATE: MI
32
- ZIP: 48071
33
-
34
- FORMER COMPANY:
35
- FORMER CONFORMED NAME: HAPC, Inc.
36
- DATE OF NAME CHANGE: 20060425
37
-
38
- FORMER COMPANY:
39
- FORMER CONFORMED NAME: Healthcare Acquisition Partners Corp.
40
- DATE OF NAME CHANGE: 20050824
41
-
42
- REPORTING-OWNER:
43
-
44
- OWNER DATA:
45
- COMPANY CONFORMED NAME: Steen Eric K
46
- CENTRAL INDEX KEY: 0001572871
47
-
48
- FILING VALUES:
49
- FORM TYPE: 4
50
- SEC ACT: 1934 Act
51
- SEC FILE NUMBER: 001-35020
52
- FILM NUMBER: 14824358
53
-
54
- MAIL ADDRESS:
55
- STREET 1: C/O INFUSYSTEM HOLDINGS, INC.
56
- STREET 2: 31700 RESEARCH PARK DRIVE
57
- CITY: MADISON HEIGHTS
58
- STATE: MI
59
- ZIP: 48071
60
- </SEC-HEADER>
61
- <DOCUMENT>
62
- <TYPE>4
63
- <SEQUENCE>1
64
- <FILENAME>doc1.xml
65
- <DESCRIPTION>FORM 4
66
- <TEXT>
67
- <XML>
68
- <?xml version="1.0"?>
69
- <ownershipDocument>
70
-
71
- <schemaVersion>X0306</schemaVersion>
72
-
73
- <documentType>4</documentType>
74
-
75
- <periodOfReport>2014-05-07</periodOfReport>
76
-
77
- <notSubjectToSection16>0</notSubjectToSection16>
78
-
79
- <issuer>
80
- <issuerCik>0001337013</issuerCik>
81
- <issuerName>InfuSystem Holdings, Inc</issuerName>
82
- <issuerTradingSymbol>INFU</issuerTradingSymbol>
83
- </issuer>
84
-
85
- <reportingOwner>
86
- <reportingOwnerId>
87
- <rptOwnerCik>0001572871</rptOwnerCik>
88
- <rptOwnerName>Steen Eric K</rptOwnerName>
89
- </reportingOwnerId>
90
- <reportingOwnerAddress>
91
- <rptOwnerStreet1>C/O INFUSYSTEM HOLDINGS, INC.</rptOwnerStreet1>
92
- <rptOwnerStreet2>31700 RESEARCH PARK DRIVE</rptOwnerStreet2>
93
- <rptOwnerCity>MADISON HEIGHTS</rptOwnerCity>
94
- <rptOwnerState>MI</rptOwnerState>
95
- <rptOwnerZipCode>48071</rptOwnerZipCode>
96
- <rptOwnerStateDescription></rptOwnerStateDescription>
97
- </reportingOwnerAddress>
98
- <reportingOwnerRelationship>
99
- <isDirector>1</isDirector>
100
- <isOfficer>1</isOfficer>
101
- <isTenPercentOwner>0</isTenPercentOwner>
102
- <isOther>0</isOther>
103
- <officerTitle>Chief Executive Officer</officerTitle>
104
- <otherText></otherText>
105
- </reportingOwnerRelationship>
106
- </reportingOwner>
107
-
108
- <nonDerivativeTable>
109
- <nonDerivativeTransaction>
110
- <securityTitle>
111
- <value>Common Stock</value>
112
- </securityTitle>
113
- <transactionDate>
114
- <value>2014-05-07</value>
115
- </transactionDate>
116
- <deemedExecutionDate></deemedExecutionDate>
117
- <transactionCoding>
118
- <transactionFormType>4</transactionFormType>
119
- <transactionCode>P</transactionCode>
120
- <equitySwapInvolved>0</equitySwapInvolved>
121
- </transactionCoding>
122
- <transactionAmounts>
123
- <transactionShares>
124
- <value>10000</value>
125
- </transactionShares>
126
- <transactionPricePerShare>
127
- <value>2.80</value>
128
- </transactionPricePerShare>
129
- <transactionAcquiredDisposedCode>
130
- <value>A</value>
131
- </transactionAcquiredDisposedCode>
132
- </transactionAmounts>
133
- <postTransactionAmounts>
134
- <sharesOwnedFollowingTransaction>
135
- <value>25000</value>
136
- </sharesOwnedFollowingTransaction>
137
- </postTransactionAmounts>
138
- <ownershipNature>
139
- <directOrIndirectOwnership>
140
- <value>D</value>
141
- </directOrIndirectOwnership>
142
- </ownershipNature>
143
- </nonDerivativeTransaction>
144
- </nonDerivativeTable>
145
-
146
- <derivativeTable></derivativeTable>
147
-
148
- <footnotes></footnotes>
149
-
150
- <remarks>Exhibit 24.1- Limited Power of Attorney for Eric K. Steen</remarks>
151
-
152
- <ownerSignature>
153
- <signatureName>/s/ Erik K. Steen</signatureName>
154
- <signatureDate>2014-05-08</signatureDate>
155
- </ownerSignature>
156
- </ownershipDocument>
157
- </XML>
158
- </TEXT>
159
- </DOCUMENT>
160
- <DOCUMENT>
161
- <TYPE>EX-24.1
162
- <SEQUENCE>2
163
- <FILENAME>poa1.htm
164
- <DESCRIPTION>POWER OF ATTORNEY
165
- <TEXT>
166
- <html>
167
- <head>
168
- <title>Unassociated Document</title>
169
- <!--Licensed to: HB-->
170
- <!--Document Created using EDGARizer 2020 5.4.6.0-->
171
- <!--Copyright 1995 - 2014 Thomson Reuters. All rights reserved.-->
172
- </head>
173
- <body bgcolor="#ffffff" style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">
174
- <div style="TEXT-ALIGN: right; TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt"><font style="DISPLAY: inline; FONT-FAMILY: times new roman; FONT-SIZE: 10pt; FONT-WEIGHT: bold; TEXT-DECORATION: underline">&#160;</font></div>
175
-
176
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="center"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">&#160;</font></div>
177
-
178
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="center"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">LIMITED POWER OF ATTORNEY FOR</font></div>
179
-
180
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="center"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">SECTION 16 REPORTING OBLIGATIONS</font></div>
181
-
182
- <div style="TEXT-INDENT: 0pt; DISPLAY: block"><br>
183
- </div>
184
-
185
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
186
-
187
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">KNOW ALL BY THESE PRESENTS, that the undersigned hereby makes, constitutes and appoints each of Trent Smith and Jonathan Foster, signing singly, as the undersigned's true and lawful attorney-in-fact, with full power and authority as hereinafter described on behalf of and in the name, place and stead of the undersigned to:</font></div>
188
-
189
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
190
-
191
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">(1) seek, obtain or maintain filing codes with the United States Securities and Exchange Commission, including submission of Form ID;</font></div>
192
-
193
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
194
-
195
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">(2) prepare, execute, acknowledge, deliver and file Forms 3, 4, and 5 (including any amendments thereto) with respect to the securities of InfuSystem Holdings, Inc., a Delaware corporation (the "Company"), with the United States Securities and Exchange Commission, any national securities exchanges and the Company, as considered necessary or advisable under Section 16(a) of the Securities Exchange Act of 1934 and the rules and regulations promulgated thereunder, as amended from time to time (the "Exchange Act");</font></div>
196
-
197
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
198
-
199
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">(3) seek or obtain, as the undersigned's representative and on the undersigned's behalf, information on transactions in the Company's securities from any third party, including brokers, employee benefit plan administrators and trustees, and the undersigned hereby authorizes any such person to release any such information to the undersigned and approves and ratifies any such release of information; and</font></div>
200
-
201
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
202
-
203
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">(4) perform any and all other acts which in the discretion of such attorney-in-fact are necessary or desirable for and on behalf of the undersigned in connection with the foregoing.</font></div>
204
-
205
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
206
-
207
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">The undersigned acknowledges that:</font></div>
208
-
209
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
210
-
211
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">(1) this Limited Power of Attorney authorizes, but does not require, such attorney-in-fact to act in their discretion on information provided to such attorney-in-fact without independent verification of such information;</font></div>
212
-
213
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
214
-
215
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">(2) any documents prepared and/or executed by such attorney-in-fact on behalf of the undersigned pursuant to this Limited Power of Attorney will be in such form and will contain such information and disclosure as such attorney-in-fact, in his or her discretion, deems necessary or desirable;</font></div>
216
-
217
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
218
-
219
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">(3) neither the Company nor such attorney-in-fact assumes (i) any liability for the undersigned's responsibility to comply with the requirement of the Exchange Act, (ii) any liability of the undersigned for any failure to comply with such requirements, or (iii) any obligation or liability of the undersigned for profit disgorgement under Section 16(b) of the Exchange Act; and</font></div>
220
-
221
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
222
-
223
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">(4) this Limited Power of Attorney does not relieve the undersigned from responsibility for compliance with the undersigned's obligations under the Exchange Act, including without limitation the reporting requirements under Section 16 of the Exchange Act.</font></div>
224
-
225
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
226
-
227
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">The undersigned hereby gives and grants the foregoing attorney-in-fact full power and authority to do and perform all and every act and thing whatsoever requisite, necessary or appropriate to be done in and about the foregoing matters as fully to all intents and purposes as the undersigned might or could do if present, hereby ratifying all that such attorney-in-fact of, for and on behalf of the undersigned, shall lawfully do or cause to be done by virtue of this Limited Power of Attorney.</font></div>
228
-
229
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
230
-
231
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">This Limited Power of Attorney shall remain in full force and effect until revoked by the undersigned in a signed writing delivered to such attorney-in-fact.&#160;&#160;This Limited Power of Attorney shall be governed by, and construed in accordance with, the laws of the state of Delaware, excluding its conflicts of laws principles.</font></div>
232
-
233
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
234
-
235
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
236
-
237
- <div style="TEXT-INDENT: 36pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="left"><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">IN WITNESS WHEREOF, the undersigned has caused this Limited Power of Attorney to be executed as of this 8th day of May, 2014.</font></div>
238
-
239
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
240
-
241
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
242
-
243
- <div style="TEXT-INDENT: 0pt; DISPLAY: block"><br>
244
- </div>
245
-
246
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
247
-
248
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify"><font id="TAB2" style="LETTER-SPACING: 9pt">&#160;&#160;&#160;</font><font id="TAB2" style="LETTER-SPACING: 9pt">&#160;&#160;&#160;</font><font id="TAB2" style="LETTER-SPACING: 9pt">&#160;&#160;&#160;</font><font id="TAB2" style="LETTER-SPACING: 9pt">&#160;&#160;&#160;</font><font id="TAB2" style="LETTER-SPACING: 9pt">&#160;&#160;&#160;</font><font style="TEXT-DECORATION: underline">/s/ Erik K. Steen</font>___________________</div>
249
-
250
- <div style="TEXT-ALIGN: left; TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt">&#160;<font id="TAB2" style="LETTER-SPACING: 9pt">&#160;&#160;&#160;</font><font id="TAB2" style="LETTER-SPACING: 9pt">&#160;&#160;&#160;</font><font id="TAB2" style="LETTER-SPACING: 9pt">&#160;&#160;&#160;</font><font id="TAB2" style="LETTER-SPACING: 9pt">&#160;&#160;&#160;</font><font id="TAB2" style="LETTER-SPACING: 9pt">&#160;&#160;&#160;</font><font style="DISPLAY: inline; FONT-FAMILY: Times New Roman; FONT-SIZE: 10pt">Eric K. Steen</font></div>
251
-
252
- <div style="TEXT-INDENT: 0pt; DISPLAY: block; MARGIN-LEFT: 0pt; MARGIN-RIGHT: 0pt" align="justify">&#160;</div>
253
- </body>
254
- </html>
255
- </TEXT>
256
- </DOCUMENT>
257
- </SEC-DOCUMENT>