forked from jakubmalusevic/network_owner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
965 lines (798 loc) · 80.9 KB
/
terms.html
File metadata and controls
965 lines (798 loc) · 80.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
<!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7" lang="en-US">
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8" lang="en-US">
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html lang="en-US">
<!--<![endif]-->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width">
<title>InstallMetrix</title>
<link rel='stylesheet' href='style.css' type='text/css' media='all' />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<!--[if lt IE 9]>
<link rel='stylesheet' href='css/ie.css?ver=20121010' type='text/css' media='all' />
<![endif]-->
<script type='text/javascript' src='js/jquery-1.10.2.js'></script>
<script type='text/javascript' src='js/parallax.js'></script>
</head>
<body>
<script type="text/javascript">
</script>
<div class="background" id="terms" style="display: block;background-color: white;">
<!--<div class="cross" style="background: url(images/cross.png) no-repeat center, rgba(0,0,0,0.2);" onclick="window.open('','_self').close(); "></div>-->
<div class="cross" style="background: url(images/cross.png) no-repeat center, rgba(0,0,0,0.2);" onclick="window.open('index.html','_self'); "></div>
<div id="animation-form3">
<div class="box-wrap">
<p align="center"><strong>INSTALLMETRIX SOFTWARE DISTRIBUTION TERMS AND CONDITIONS</strong> <br />
<strong>Effective as of December 5, 2013</strong> <br />
</p>
<p align="center"> </p>
<p align="center"><br />
THESE INSTALLMETRIX SOFTWARE DISTRIBUTION TERMS AND CONDITIONS (THE “TERMS AND CONDITIONS”) ARE ENTERED INTO BY THE ENTITY OR SOLE PROPRIETOR OR AGENT THEREOF THAT ACCEPTS THESE TERMS AND CONDITIONS ELECTRONICALLY (“PUBLISHER” OR “YOU”) AND INSTALLMETRIX, LLC, A CALIFORNIA CORPORATION (DOING BUSINESS AS INSTALLMETRIX) (“INSTALLMETRIX”). PLEASE READ THESE TERMS AND CONDITIONS CAREFULLY. THESE TERMS AND CONDITIONS ARE A LEGALLY BINDING AGREEMENT BETWEEN YOU AND INSTALLMETRIX TO PARTICIPATE IN THE INSTALLMETRIX PUBLISHER PROGRAM. IF THESE TERMS AND CONDITIONS ARE UNACCEPTABLE TO YOU, OR IF ANY AMENDMENT TO THESE TERMS AND CONDITIONS IS UNACCEPTABLE TO YOU, YOU MUST NOT PARTICIPATE IN THE INSTALLMETRIX PUBLISHER PROGRAM. </p>
<p align="center"> </p>
<p align="center"> </p>
<ol start="1" type="1">
<li><strong>Definitions.</strong></li>
<li></li>
<li></li>
<li></li>
</ol>
<p>(a) “Confidential Information” means (i) any statistics or other data relating to the InstallMetrix Software; and (ii) any information provided by InstallMetrix that is identified as confidential or proprietary or should reasonably be regarded as confidential.<br />
(b) “End User” means a human individual who receives an offer to install the Publisher Application and/or that has downloaded and installed the Publisher Application on his or her computer.<br />
(c) “Installation” is each instance of a valid, successful installation of a Third Party Application by an End User on the computer of an End User resulting from the Software Bundle.<br />
(d) “InstallMetrix Publisher Program” is the program by which InstallMetrix provides the InstallMetrix Software to enable the installation of publisher software from websites owned and operated by publishers in combination with or alongside third party software applications as part of a software bundle.<br />
(e) “InstallMetrix Software” means the InstallMetrix-developed and owned proprietary installer software application and all related components, updates, versions and related intellectual property.<br />
(f) “PII” means any information (i) that identifies or is used to identify, contact, or locate the person to whom such information pertains or (ii) from which identification or contact information of an individual person is derived. PII includes, but is not limited to: name, address, phone number, fax number, email address, financial profiles, medical profile, social security number, and credit card information. Additionally, to the extent unique information (which by itself is not PII) such as, but not necessarily limited to, a personal profile, unique identifier, biometric information, and/or IP address is associated with PII, then such unique information also will be considered PII.<br />
(g) “Publisher Application” means those software applications designated by Publisher and approved in writing by InstallMetrix.<br />
(h) “Publisher Websites” means those websites owned and operated by Publisher as agreed to in writing by the parties.<br />
(i) “Software Bundle” means the Publisher Applications and Third Party Applications offered to End Users from the Publisher Websites for download and installation by way of the InstallMetrix Software.<br />
(j) “Third Party Application” means a third party software application, other than a Publisher Application, provided by InstallMetrix to be offered and distributed to End Users as a bundled software application during the offering and install routine of the Publisher Applications by way of the InstallMetrix Software.<br />
(k) “Thank You Page Impression” means a display ad impression delivered on a web page after the Installation completes.</p>
<p> </p>
<p> </p>
<ol start="2" type="1">
<li><strong>Services.</strong></li>
<li></li>
<li></li>
<li></li>
</ol>
<p>(a) <u>InstallMetrix Publisher Program</u>. InstallMetrix reserves the right to improve, modify, remove, suspend, or discontinue, temporarily or permanently, in whole or in part, the InstallMetrix Publisher Program and/or the InstallMetrix Software and any data, information, content, software, technology, or features appearing on and/or offered through the InstallMetrix Software at any time at its sole discretion without notice and without liability.<br />
(b) <u>Publisher Information</u>. Publisher acknowledges and agrees that information obtained or collected by InstallMetrix relating to Publisher’s participation in the InstallMetrix Publisher Program is subject to the InstallMetrix B2B Privacy Policy located at <a href="http://installmetrix.com/privacy.html">http://installmetrix.com/privacy.html</a> (or successor URL thereto).</p>
<p> </p>
<p> </p>
<ol start="3" type="1">
<li><strong>License.</strong></li>
<li></li>
</ol>
<p>(a) <u>Grant of Limited License</u>. Subject to the terms and conditions of these Terms and Conditions, InstallMetrix grants Publisher a limited, non-exclusive, fully-paid, royalty-free, non-assignable, non-transferable, non-sublicensable, revocable license to implement the InstallMetrix Software on the Publisher Websites, in exactly the form and format approved in advance by InstallMetrix, to enable the offering and installation of the Software Bundle.<br />
(b) <u>License Limitations</u>.<br />
(i) InstallMetrix owns and retains all right, title and interest in the InstallMetrix Software. These Terms and Conditions do not transfer ownership rights of any nature in the InstallMetrix Software to Publisher or any third party. Publisher agrees to retain all copyright and trademark notices on the InstallMetrix Software.<br />
(ii) Publisher acknowledges that the InstallMetrix Software is the exclusive proprietary property of InstallMetrix and Publisher shall have no right to use the InstallMetrix Software for any purpose without the express written authority of InstallMetrix, and then only in accordance with instructions provided by InstallMetrix.<br />
(iii) Publisher agrees not to copy, modify, duplicate, decompile, disassemble, reverse engineer, reduce to a human perceivable form or otherwise alter the InstallMetrix Software or any part thereof or to create derivative work(s) based on it.<br />
(c) <u>Publisher Obligations</u>.<br />
(i) At the request of InstallMetrix, Publisher shall submit to InstallMetrix a test build identifying the installation routine applicable the Software Bundle prior to offering the Software Bundle to End Users.<br />
(ii) Publisher shall follow all requirements reasonably made by InstallMetrix to protect InstallMetrix’s intellectual property including, but not limited to, the InstallMetrix Software, all trade names and designs whether covered by trademark, domain name registration or otherwise, all copyrights, trade secrets, patents, patents pending, Confidential Information, and all other intellectual property owned, licensed or hereinafter acquired by InstallMetrix.<br />
(iii) Publisher shall not (1) distribute the InstallMetrix Software as a separate stand-alone software program, product or plug-in; (2) implement or distribute the InstallMetrix Software with a Publisher Application that interferes with or substantially duplicates the capabilities of the InstallMetrix Software, or, in the reasonable opinion of InstallMetrix, competes with the InstallMetrix Software; (3) use or distribute InstallMetrix’s name, logo, or trademarks to market the Publisher Applications or Software Bundle without the prior written approval of InstallMetrix; and (4) provide or perform additional versions, installations, upgrades, bundles, pushes or similar modifications of any Publisher Application or third party software that competes or interferes with the functioning of the InstallMetrix Software, or that blocks, or otherwise limits or interferes with the InstallMetrix Software. Nothing in this clause is intended to prevent Publisher from distributing any other software in bundles that do not include InstallMetrix, or to users who have not downloaded the Publisher Application under the terms of the InstallMetrix Publisher Program.<br />
(iv) Publisher shall (1) ensure that each Publisher Application conforms to, and is distributed pursuant to, an end user license agreement (“EULA”) and privacy policy (“Privacy Policy”) clearly presented and affirmatively consented to by each End User prior to the End User downloading and installing a Publisher Application, and (2) provide a copy of each EULA and Privacy Policy to InstallMetrix prior to Publisher’s distribution of the InstallMetrix Software, and any amendments to the EULA and the Privacy Policy. Publisher agrees that the Privacy Policy shall (a) comply with all applicable laws, rules, and regulations (including, without limitation, industry self-regulation and standards), and (b) clearly and accurately disclose (i) the use of advertising technology relating to data collection, reporting, and targeting activities, (ii) the collection and use of information and data collected in relation to activity by End Users, and (iii) the extent to which data is shared with third parties. In addition, Publisher agrees that InstallMetrix may link to the EULA and Privacy Policy from the InstallMetrix Software.<br />
(v) Publisher shall at all times comply with any distribution guidelines provided by InstallMetrix to Publisher from time to time with respect to Publisher’s distribution of the Software Bundle including, without limitation, the Compliance Requirements Schedule (or successor domain thereto), which are fully integrated and incorporated herein, as may be amended from time to time by InstallMetrix.<br />
(vi) Publisher shall not directly or indirectly, export or transmit (1) the InstallMetrix Software or (2) any Publisher Application that is integrated with the InstallMetrix Software to any country to which such export or transmission is restricted by any applicable U.S. regulation or statute, without the prior written consent, if required, of the U.S. Government, or such other governmental entity as may have jurisdiction over such export or transmission.<br />
(vii) At the request of InstallMetrix, Publisher shall cease the use of a Publisher Website in the InstallMetrix Publisher Program. In addition, Publisher acknowledges and agrees that InstallMetrix may remove the InstallMetrix Software .exe from a Publisher Website.</p>
<p> </p>
<p><br />
<strong>4. Payment.</strong> </p>
<p><br />
(a) InstallMetrix shall pay Publisher a payment based on the number of Installations in each calendar month during the term of these Terms and Conditions (“Payment”). Payments will be determined by InstallMetrix in its sole discretion based on a number of factors including, but not limited to, the quantity, quality, and validity of installations, Thank You Page Impressions, and End User demographics such as the country of origin of an End User’s IP address. InstallMetrix shall pay Publisher the Payment within approximately thirty (30) days after the end of the calendar month in which the Installations occurred. Publisher is responsible for maintaining accurate and current contact information with InstallMetrix including, but not limited to, payment account information. Any banking fees, wire fees, and/or other charges for services incurred in connection with the Payments shall be the sole responsibility of Publisher. Notwithstanding the foregoing, (i) Payment earnings of less than one hundred dollars ($100.00) will be held by InstallMetrix until amounts due equal or exceed one hundred dollars ($100.00), and (ii) InstallMetrix shall not be responsible for any delays in Payments caused by incorrect banking information or other information supplied by Publisher. Publisher shall be solely responsible for the payment of, and shall pay when due and indemnify, defend, and hold harmless InstallMetrix from and against, all applicable taxes including, but not limited to, any sales, use, excise or transfer taxes and other taxes associated with Payments to Publisher under this Agreement (except for taxes assessed on InstallMetrix’s net income).<br />
(b) InstallMetrix shall provide Publisher with access to information about its aggregate payment earnings. Publisher understands and agrees that (i) the reported information will a reasonable estimate by InstallMetrix and subject to change, (ii) InstallMetrix shall have sole and exclusive control over the calculation of the number of Installations for purposes of determining the payment due hereunder, and (iii) InstallMetrix’s reports shall be the only and definitive measure of payments owed under these Terms and Conditions.<br />
(c) Notwithstanding anything else to the contrary set forth in this Agreement, InstallMetrix shall have no obligation to pay Publisher any Payments with respect to (i) amounts generated based on Publisher’s breach of this Agreement, (ii) payments in respect of which InstallMetrix has not itself received payments from relevant third parties including, but not limited to, payments from advertisers of Third Party Applications, (iii) payments which represent net adjustments downwards for whatever reason to payments made by advertisers of Third Party Applications, or legitimately withheld from payments due from advertisers of Third Party Applications, and (iv) any fraudulent or invalid installations, as determined by InstallMetrix in its sole discretion including, without limitation, any installations (A) by Publisher on its own behalf, or by persons or entities affiliated with or controlled by Publisher, (B) solicited by payment of money, or any illegal or otherwise invalid request for End Users to complete Installations, or (C) pursuant to which End Users were directly or indirectly misled or falsely encouraged to complete installations. InstallMetrix<em> </em>may<em> </em>withhold<em> </em>a relevant portion of any Payment from Publisher to offset any portion of any Payment previously received by Publisher in respect of any matter under this Section 4(c). Publisher understands that this may reduce the Payment owed to Publisher. Publisher understands and agrees that InstallMetrix may offset from any Payment any amount owed by Publisher, or any parent, subsidiary, or affiliate of Publisher, to InstallMetrix or any parent, sibling or subsidiary company of InstallMetrix. Publisher must notify InstallMetrix in writing within thirty (30) days after receipt of a Payment if Publisher has any dispute relating to such Payment (“Payment Dispute Period”). Failure to notify InstallMetrix of a dispute relating to a Payment before the end of the Payment Dispute Period shall result in a waiver by Publisher of any claim relating to such Payment.<br />
(d) As a result of administrative and other costs that InstallMetrix incurs in providing its services under this Agreement, in the event that the total Payment amount owed to Publisher upon termination or expiration of this Agreement is less than fifty dollars ($50.00), notwithstanding anything else set forth in this Agreement to the contrary, Publisher understands and agrees that InstallMetrix is not obligated to send Publisher such Payment and that InstallMetrix may retain such amount as if the same had never been the subject of any obligation to be paid by InstallMetrix. InstallMetrix’s sole obligation shall be to mail one check to the last known address of Publisher for any greater amount.</p>
<p> </p>
<p> </p>
<ol start="5" type="1">
<li><strong>Representations and Warranties.</strong></li>
<li></li>
<li></li>
</ol>
<p>Publisher represents and warrants that (a) it has power and authority to enter into these Terms and Conditions and to otherwise perform its obligations hereunder, (b) it is the owner of the Publisher Applications, (c) it is not party to any agreement which may restrict or impair Publisher from satisfying its obligations hereunder, (d) the Publisher Applications do not infringe or misappropriate any copyright, trademark, trade secret, patent, or any other proprietary or other right of any third party, (e) it and the Publisher Applications will comply with all applicable laws, rules, regulations, or codes including, but not limited to, FTC regulations, state and federal consumer protection laws, laws governing consumer privacy, and export control restrictions, (f) it shall not permit installation of Publisher Applications by individuals under thirteen years of age, and (g) the Publisher Applications do not contain any material or content that is patently obscene, libelous, defamatory, fraudulent, illegal, gambling-related, misleading, deceptive, an infringement upon the rights of any third party, or encourages conduct that would violate any law or infringe upon the rights of any third party, and (j) the Publisher Applications do not contain any viruses, worms, Trojan horses, or any other contaminating or destructive feature.</p>
<p> </p>
<p> </p>
<ol start="6" type="1">
<li><strong>Indemnification.</strong></li>
<li></li>
<li></li>
</ol>
<p>Publisher shall defend, indemnify, and hold InstallMetrix, its parents, subsidiaries, and their respective officers, directors, shareholders, members, employees, agents, and representatives harmless from and against any judgment, loss, damage, claim or expense (including, but not limited to, reasonable attorneys fees) arising out of or related to Publisher’s (a) breach of these Terms and Conditions, or (b) a Publisher Application.</p>
<p> </p>
<p> </p>
<ol start="7" type="1">
<li><strong>Disclaimer of Warranties.</strong></li>
<li></li>
<li></li>
</ol>
<p>THE INSTALLMETRIX SOFTWARE AND THIRD PARTY APPLICATIONS ARE PROVIDED "AS-IS" WITHOUT ANY WARRANTY WHATSOEVER. INSTALLMETRIX MAKES NO WARRANTY THAT THE INSTALLMETRIX SOFTWARE OR THE THIRD PARTY APPLICATIONS WILL BE ERROR-FREE OR FREE FROM INTERRUPTION OR FAILURE, OR THAT THE INSTALLMETRIX SOFTWARE OR THIRD PARTY APPLICATIONS ARE COMPATIBLE WITH ANY PARTICULAR HARDWARE OR SOFTWARE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, INSTALLMETRIX DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT WITH RESPECT TO THE INSTALLMETRIX SOFTWARE AND THE THIRD PARTY APPLICATIONS, AND ANY ACCOMPANYING MATERIALS. PUBLISHER HEREBY ACKNOWLEDGES THAT THE INSTALLMETRIX SOFTWARE AND THE THIRD PARTY APPLICATIONS MAY NOT BE AVAILABLE OR MAY BECOME UNAVAILABLE DUE TO ANY NUMBER OF FACTORS, INCLUDING WITHOUT LIMITATION, PERIODIC SYSTEM MAINTENANCE, SCHEDULED OR UNSCHEDULED; ACTS OF GOD; TECHNICAL FAILURE OF THE CODE OR THE TELECOMMUNICATIONS INFRASTRUCTURE; DELAY OR DISRUPTION ATTRIBUTABLE TO VIRUSES, DENIAL OF SERVICE ATTACKS, INCREASED OR FLUCTUATING DEMAND, OR ACTIONS OR OMMISSIONS OF THIRD PARTIES. THEREFORE, INSTALLMETRIX EXPRESSLY DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY REGARDING SYSTEM AND/OR SOFTWARE AVAILABILITY, ACCESSIBILITY, OR PERFORMANCE.</p>
<p> </p>
<p> </p>
<ol start="8" type="1">
<li><strong>Limitation of Liability.</strong></li>
<li></li>
<li></li>
</ol>
<p>UNDER NO CIRCUMSTANCES WILL INSTALLMETRIX BE LIABLE TO PUBLISHER UNDER ANY CONTRACT, STRICT LIABILITY, NEGLIGENCE OR OTHER THEORY IN LAW OR EQUITY, FOR ANY INCIDENTAL, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES OR DAMAGES FOR LOST PROFITS, REVENUE OR DATA IN CONNECTION WITH THE SUBJECT MATTER OF THIS AGREEMENT, EVEN IF INSTALLMETRIX HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND EVEN IF SUCH DAMAGES ARE FORESEEABLE. TO THE FULLEST EXTENT PERMITTED BY LAW AND NOTWITHSTANDING ANYTHING TO THE CONTRARY HEREIN, THE TOTAL AGGREGATE LIABILITY FOR INSTALLMETRIX ARISING UNDER THESE TERMS AND CONDITIONS WILL NOT EXCEED THE AMOUNTS PAID BY INSTALLMETRIX TO PUBLISHER DURING THE THREE MONTHS PRIOR TO THE DATE THE CAUSE OF ACTION AROSE. EACH PARTY ACKNOWLEDGES THAT THE OTHER PARTY HAS ENTERED INTO THESE TERMS AND CONDITIONS RELYING ON THE LIMITATIONS OF LIABILITY STATED HEREIN AND THAT THOSE LIMITATIONS ARE AN ESSENTIAL BASIS OF THE BARGAIN BETWEEN THE PARTIES.</p>
<p> </p>
<p> </p>
<ol start="9" type="1">
<li><strong>Confidentiality</strong>.</li>
<li></li>
<li></li>
<li></li>
</ol>
<p>Publisher will not use or disclose any Confidential Information except as specifically authorized herein. Publisher shall maintain the confidentiality of the Confidential Information and shall take precautions to prevent the unauthorized disclosure or use of Confidential Information. The obligations of this clause shall not apply (a) to any disclosure required by law, (b) to information that is now or subsequently becomes generally available through no act of omission of Publisher, (c) to information that is known to Publisher at the time of disclosure without obligation to maintain its confidentiality, as evidenced by written documents or records, (d) to information provided to Publisher by a third party without breach of such third party’s obligation of confidentiality, or (e) to information independently developed by Publisher without use of or reference to Confidential Information, as evidenced by written documents or records. Publisher agrees and acknowledges that Confidential Information includes, but is not limited to, Payments, reports provided by InstallMetrix, and information, software, technology, documentation, and specifications relating to the InstallMetrix Software.</p>
<p> </p>
<p> </p>
<ol start="10" type="1">
<li><strong>Termination.</strong></li>
<li></li>
</ol>
<p>(a) InstallMetrix may terminate, cancel, or suspend these Terms and Conditions at any time, for any or no reason, with or without notice to Publisher. Publisher may terminate this Agreement at any time, for any or no reason, upon 48 hours notice to InstallMetrix.<br />
(b) In the event that no Installations occur for more than six (6) months, such may result in a termination of this Agreement at InstallMetrix’s option, which if exercised constitutes termination of these Terms and Conditions by InstallMetrix, with no obligation to provide notice. Sections 1, 3(b), 4(c), 4(d), 6, 7, 8, 9, 10(b), and 11 shall survive termination or expiration of these Terms and Conditions.</p>
<p> </p>
<p> </p>
<ol start="11" type="1">
<li><strong>General Provisions.</strong></li>
<li></li>
</ol>
<p>(a) <u>Force Majeure</u>. Neither party will be liable to the other for any delay or default in performance if such delay or default is caused by unforeseen conditions beyond the reasonable control of the delaying or defaulting party including, without limitation, acts of God, restrictions by a government authority, wars, revolutions, strikes, fires, floods, earthquakes, embargoes, or degradation of telephone or other communications services, including but not limited to, degradation of all or part of an Internet backbone.<br />
(b) <u>Relationship of the Parties</u>. InstallMetrix and Publisher enter into this Agreement as independent contractors. Nothing in this Agreement shall constitute or create a joint venture, partnership or any other similar arrangement between InstallMetrix and Publisher.<br />
(c) <u>Successors and Assigns</u>. This Agreement shall be binding upon the successors and permitted assigns of the parties. Publisher may not assign this Agreement without the prior written consent of InstallMetrix. Any assignment or attempted assignment in contravention of this provision shall be null and void.<br />
(d) <u>Jurisdiction and Venue; Enforcement</u>. These Terms and Conditions shall be interpreted and enforced in all respects under the laws of the State of Missouri, U.S.A., as applied to agreements performed wholly within the State of Missouri, U.S.A. Any litigation arising out of this Agreement will be brought solely and exclusively in the state or federal courts located in San Francisco, California, U.S.A. and the parties agree that jurisdiction and venue properly lie in such courts. InstallMetrix shall be entitled to all reasonable attorneys’ fees and costs in connection with enforcing these Terms and Conditions. The United Nations Convention on Contracts for the International Sale of Goods shall not apply to these Terms and Conditions.<br />
(e) <u>No Waiver; Amendment</u>. A failure or delay in exercising any right hereunder will not be considered a waiver thereof unless expressly waived in writing and signed by the waiving party. No single waiver will be considered a continuing or subsequent waiver. This Agreement may not be amended by Publisher except by a written instrument specifically referencing this Agreement which has been executed by an authorized InstallMetrix signatory. InstallMetrix may amend this Agreement including, but not limited to the Compliance Requirements Schedule, upon notice to Publisher, including through posting on the InstallMetrix website or email notification to Publisher. Publisher’s continued distribution of the InstallMetrix Software after such notice will constitute Publisher’s acceptance of such amendment.<br />
(f) <u>Severability</u>. In the event any provision of this Agreement is declared to be invalid, illegal, or unenforceable in whole or part, the other provisions of this Agreement and the remainder of the affected provisions shall continue to be valid; <em>provided</em>, <em>however</em>, that a court having jurisdiction may revise such provision to the extent necessary to make such provision valid and enforceable consistent with the intention of the parties.<br />
(g) <u>Entire Agreement; Notices</u>. This Agreement supersedes and excludes any prior agreements, Insertion Orders, representations, warranties or contracts between the parties relating to the subject matter hereof and contains all of the agreements of the parties with respect to the subject matter hereof. Any and all prior agreements, representations, statements, warranties or contracts relating to such subject matter shall be deemed conclusively to have been merged herein. In case of any conflict between these Terms and Conditions, the Compliance Requirements Schedule, and any policies provided by InstallMetrix relating to Publisher’s use of the InstallMetrix Software, these Terms and Conditions shall govern and control to the extent of the conflict. Notices to InstallMetrix under these Terms and Conditions shall be transmitted via overnight courier to InstallMetrix, Attention: Legal Department, 660 4th Sreet, San Francisco, CA 94107 U.S.A.<br />
(h) <u>Gender and Number</u>. Whenever herein the singular number is used, the same shall include the plural and vice versa, and the neuter gender includes the feminine and masculine genders.<br />
(i) <u>Section Headings</u>. Section headings are purely for ease of reference and do not form part of or affect the interpretation of this Agreement.<br />
<br clear="all" />
<br />
<u>Compliance Requirements Schedule</u> </p>
<p><br />
Neither Publisher not any Publisher Application shall:<br />
(a) Take control of an End User’s computer by deceptively:<br />
(i) using the computer to send unsolicited information or material from the computer to others;<br />
(ii) accessing, hijacking or otherwise using the computer’s modem or Internet connection or service and thereby causing damage to the computer or causing the owner or authorized End User, or a third party defrauded by such conduct, to incur charges or other costs that is not authorized by the owner or End User;<br />
(iii) using the computer as part of an activity performed by a group of computers that causes damage to another computer;<br />
(iv) delivering advertisements that an End User cannot close without turning off the computer or closing all other sessions of the Internet browser for the computer; or<br />
(v) using rootkits or other software that are typically used to hack into a computer and gain administrative-level access for unauthorized use of a computer.<br />
(b) Modify security or other settings of the computer that protect information about an End User for the purposes of causing damage or harm to the computer or the End User.<br />
(c) Collect PII through the use of a keystroke logging function or other deceptive means without authority of the owner of the computer.<br />
(d) Induce an End User to provide PII to another person by intentionally misrepresenting the identity of the person seeking the information. This includes inducing the disclosure of information by means of a web page or software application that:<br />
(i) is substantially similar to a web page or software application established or provided by another person; and<br />
(ii) misleads the End User that such web page or software application is provided by such other person.<br />
(e) Induce an End User to install the InstallMetrix Software or Publisher Application onto the computer, or prevent reasonable efforts to block the installation or execution of, or to disable the InstallMetrix Software or Publisher Application, by:<br />
(i) presenting the End User with an option to decline installation but, when the option is selected by the End User or when the End User reasonably attempts to decline the installation, nevertheless proceeding with the installation;<br />
(ii) misrepresenting that the InstallMetrix Software or Publisher Application will be uninstalled or disabled by an End User’s action, with actual or constructive knowledge that the InstallMetrix Software or Publisher Application will not be so uninstalled or disabled;<br />
(iii) causing software that the End User has properly removed or disabled to automatically reinstall or reactivate on the computer;<br />
(iv) changing or concealing the name, location or other designation information of software for the purpose of preventing an End User from locating the software to remove it;<br />
(v) using randomized or intentionally deceptive file names, directory folders, formats or registry entries for the purpose of avoiding detection and removal by an End User;<br />
(vi) causing the installation of software in an inappropriate computer directory or computer memory location for the purpose of evading an End User’s attempt to remove the software;<br />
(vii) requiring completion of a survey, or disclosure of PII, to uninstall software;<br />
(viii) requiring, without the authority of the owner of the computer, that an End User obtain a special code or download a third-party program to uninstall the software; or<br />
(ix) intentionally causing damage to or removing any vital component of the operating system when uninstallation is attempted.<br />
(f) Misrepresent that installing software or providing log-in and password information is necessary for security or privacy reasons unrelated to the software itself, or that installing software is necessary to open, view or play a particular type of content online or offline (<em>e.g.</em>, can not falsely state software is necessary for accessing web site).<br />
(g) Induce an End User to install, download or execute software by misrepresenting the identity or authority of the person or entity providing the software to the End User. This includes, but is not limited to use of domains with misspelling of frequently visited web sites (<em>i.e.</em>, 404 squatting) and the use of deceptive or misleading inducements or text or other creative elements to lure a consumer to a website.<br />
(h) Remove, disable, or render inoperative by deceptive means a security, anti-spyware or anti-virus technology installed on the computer without obtaining prior consent from the End User.<br />
(i) Install or execute the the InstallMetrix Software or Publisher Application on the computer with the intent of causing a person to use the software in a way that violates any other provision of this section.<br />
(j) Allow the InstallMetrix Software or Publisher Application to be bundled with any software unit engaging in any of the prohibited activities listed in this Compliance Requirements Schedule;<br />
(k) Engage in any activity that attempts to defraud consumers, affiliates, merchants, advertisers, or other software publishers. Activities that are specifically prohibited include, but are not limited to:<br />
(i) Shopping cart hijacking; or failing to prevent affiliates or advertisers from using Participant Software to facilitate this activity;<br />
(ii) Failing to prevent the InstallMetrix Software or Publisher Application from facilitating the placement of advertisements, such pop-overs or pop-unders, to gain commission (for the Publisher and/or its advertiser and/or affiliate) for traffic that was not originated by the affiliate or the Publisher;<br />
(iii) Using forced clicks, redirects, or other deceptive means to generate traffic, downloads, page views or other user activity;<br />
(iv) Cookie stuffing: the practice of inserting cookies or similar tracking assets on an End User's computer for the purpose of gaining unauthorized commissions for End User actions.<br />
(l) Otherwise engage in activities related to this Compliance Requirements Schedule that are fraudulent, misleading, unlawful, or violative of the rights of third parties.</p>
</div>
</div>
<!-- END #animation-form -->
</div>
<div id="wrapper">
<div id="footer">
<div id="footer-bottom-panel">
<div class="middle-container-footer">
<img src="images/logo.png" alt="">
<div class="footer-links">
<ul>
<li>
<a href="#">
Home
</a>
</li>
<li>
<a class="go-sum" href="#">
How it works
</a>
</li>
<li>
<a class="go-pub" href="#">
Publishers
</a>
</li>
<li>
<a class="go-advert" href="#">
Advertisers
</a>
</li>
<li>
<a class="go-about" href="#">
About
</a>
</li>
<li>
<a class="go-contact" href="#">
Contact
</a>
</li>
</ul>
</div>
<!--END .footer-social-links -->
<ul class="footer-social">
<li class="facebook"><a href="#"></a></li>
<li class="gplus"><a href="#"></a></li>
<li class="twitter"><a href="#"></a></li>
<li class="vimeo"><a href="#"></a></li>
</ul>
<div class="footer-contact">
<h3>Contact Us</h3>
<p>San Francisco, California</p>
<p>(415) 675 8894</p>
<p>contact@installmetrix.com</p>
</div>
<div class="disclaimer">
<ul>
<li>
<a href="term.html">Terms and Conditions</a>
</li>
<li>
<a href="privacy.html">Privacy</a>
</li>
<li>
<a href="uninstall.html">Uninstall</a>
</li>
</ul>
<hr>
2013 © All right reserved.
</div>
<!--END .disclaimer -->
<div class="newsletter">
<h3>Join Our Newsletter</h3>
<form action="action" class="newsletter-form" id="newsForm" method="post">
<input id="news-email" name="news-email" value="Email adress"><br>
<input type="submit" id="submitinput4" name="submit" class="button" value="Send"/>
<input type="hidden" id="receiver4" name="receiver" value="your@email.com"/>
</form>
</div>
<div class="clear-float"></div>
</div>
<!--END .middle-container-footer -->
</div>
<!--END #footer-bottom-panel -->
</div>
<!--END #footer -->
<div id="parallax-footer">
<div id="footer-panel">
<div class="middle-container-footer">
<table class="responsive-table-2">
<tbody>
<tr>
<td>
<div class="footer-call">
<h1>Want to make money with us? Take a look inside.</h1>
</div>
<!-- END .footer-call -->
</td>
<td>
<div class="footer-button white-btn">Sign Up</div>
<div class="clear-float"></div>
</td>
</tr>
</tbody>
</table>
<!--END .responsive-table-2 -->
</div>
<!--END .middle-container-footer -->
</div>
<!--END #footer-panel -->
</div>
<!--END #parallax-footer -->
<div id="parallax-panel-content">
<div id="summary">
<div class="middle-container">
<h1>How It Works</h1>
<h2 class="subheading">Install<span>Metrix</span> process:</h2>
<div class="panel-container">
<table class="responsive-table">
<tbody>
<tr>
<td>
<div class="panel-icon">
<p><span class="icon1"></span></p>
<h3>1. User Downloads and Installs Software</h3>
</div>
</td>
<td>
<div class="panel-icon">
<p><span class="icon2"></span></p>
<h3>2. User is Displayed Relevant Software Offers</h3>
</div>
</td>
<td>
<div class="panel-icon">
<p><span class="icon3"></span></p>
<h3>3. User Can Accept or Decline Offers</h3>
</div>
</td>
<td>
<div class="panel-icon">
<p><span class="icon4"></span></p>
<h3>4. Upon Accepting Offers, Revenue is Generated</h3>
</div>
</td>
</tr>
</tbody>
</table>
<!-- END .responsive-table -->
</div>
<!-- END .panel-container -->
<div class="sub-title">
<p>Whether you are a Publisher, Advertiser, Developer, Affiliate, Media Buyer, Site Owner or Company Conglomerate; we can help achieve your monetary goals.</p>
</div>
<!-- END .sub-title -->
<div class="table-browser">
<div class="browser-container">
<div class="browser-top">
<div class="browser-buttons"></div>
<div class="browser-buttons"></div>
<div class="browser-buttons"></div>
<div class="clear-float"></div>
</div>
<!-- END .browser-top -->
<img class="browser-image" src="images/browser-02.jpg" alt="Browser Image">
</div>
<!-- END .browser-container -->
</div>
<div class="table-tick">
<table class="table-tick-2">
<tbody>
<tr>
<td class="table-tick-right">
<img class="tick-i" src="images/tick.png" alt="Tick"/>
</td>
<!-- END .table-tick-right -->
<td>
<h2>Customized Installer</h2>
<p>Our custom installer designed primarily for Windows systems is at the forefront of technology, allowing us to monetize any Windows-based software in the world. It has the ability to create 100% customizable designs to fit your needs and drive more installs.</p>
</td>
</tr>
<tr>
<td class="table-tick-right">
<img class="tick-i" src="images/tick.png" alt="Tick"/>
</td>
<!-- END .table-tick-right -->
<td>
<h2>Real Time Reporting</h2>
<p>Our user friendly reporting displays your stats as it happens in real time. No longer do you need to experience any delays in tracking your campaigns. Plus, we provide you with the most advanced tracking system to perform in-depth analysis of all your campaigns.</p>
</td>
</tr>
<tr>
<td class="table-tick-right">
<img class="tick-i" src="images/tick.png" alt="Tick"/>
</td>
<!-- END .table-tick-right -->
<td>
<h2>Optimization Technology</h2>
<p>We take the grunt off the work involved in looking at statistical data. Our proprietary analysis protocol in looking at metrics is automated in optimizing the fastest quality distribution and highest revenue earnings per installation.</p>
</td>
</tr>
</tbody>
</table>
<!-- END .table-tick-2 -->
</div>
<!-- END .table-tick -->
<div class="clear-float"></div>
</div>
<!-- END .middle-container -->
</div>
<!-- END #summary -->
<div id="advert">
<div class="middle-container">
<h1>Advertisers</h1>
<p><span class="icon_ad"></span></p>
<div class="panel-container">
<table class="responsive-table">
<tbody>
<tr>
<td>
<div class="panel">
<p><span class="icon5"></span></p>
<div class="black-btn">Sign Up as a Advertiser</div>
</div>
<!-- END .panel -->
</td>
<td>
<div class="panel">
<p><span class="icon6"></span></p>
<p>We bundle your offer with our publishers software.<br>Our publishers distribute their software to the masses.</p>
</div>
<!-- END .panel -->
</td>
<td>
<div class="panel">
<p><span class="icon7"></span></p>
<p>Watch your installs start rolling in.<br>Over 100,000+ installs daily.</p>
</div>
<!-- END .panel -->
</td>
</tr>
</tbody>
</table>
</div>
<!-- END .panel-container -->
<div class="border-text">
<h2>Install Quality Meets Quantity</h2>
<p>InstallMetrix strives to bring its advertisers only quality installs while meeting their high volume demands. Our publishers go through a strict review process before being accepted into our network to ensure that we are delivering installs that satisfy your needs. With a zero tolerance policy towards fraud, our dedicated compliance team and anti-fraud technology allows our advertisers to sit back and watch the installs come in. While delivering high quality installs is our number one priority, we also have the ability to deliver a high volume of installs. Whether you have a small or large budget, let InstallMetrix help you reach your goals.</p>
</div>
<div class="black-btn">Sign Up as a Advertiser</div>
</div>
<!-- END .middle-container -->
</div>
<!-- END #screenshots -->
<div id="about">
<div class="middle-container">
<h1>About</h1>
<div class="sub-title">
<p>Based out of San Francisco, InstallMetrix is a Pay Per Install network that focuses on driving quality installs at a high volume. We help publishers monetize their software and give advertisers another channel for distribution. Our mission is to provide publishers and advertisers first class service that is currently lacking from the pay per install industry. Not only will we provide you with the tools to succeed, but we will also do whatever it takes to help our partners grow.</p>
</div>
<div class="panel-container">
<table class="responsive-table">
<tbody>
<tr>
<td>
<div class="panel-plan-container">
<h2>Innovators</h2>
<p>InstallMetrix is the leading Pay Per Install network that prides itself as innovators of the industry. Where copy cats are common, we continue to create new ideas and are always pushing towards the next frontier. Throughout the years of our online adventures, our team has consistently developed strategies and products that have impacted the industry for years to come. InstallMetrix was built to solve the rudimentary tracking and optimization capabilities that other pay per install networks currently provide. After 1 full year of dedicated coding and countless tests, we have developed the most advanced pay per install network in the world.</p>
</div>
</td>
<td>
<div class="panel-plan-container">
<h2>Our Passion</h2>
<p>Not only are we passionate about the service we provide, but we are also heavily invested into the relationships we make with our publishers and advertisers. We believe that in order to grow, we must help everybody around us to grow as well. With dedicated account managers for both our publishers and advertisers, we are able to satisfy all requests with lightning fast results. Whether you want to chat on the phone or message us online, we make ourselves available anytime you need us. This is our life and we know you'll enjoy working with our extremely personable and down-to-earth team.</p>
</div>
<!-- END .panel-plan-container -->
</td>
</tr>
</tbody>
</table>
<!-- END .responsive-table -->
</div>
<!-- END .panel-container -->
</div>
<!-- END .middle-container -->
</div>
<!-- END #iphones -->
<div id="questions">
<div class="middle-container">
<h1>Questions and answers.</h1>
<div class="panel-container">
<table class="responsive-table">
<tbody>
<tr>
<td>
<div class="panel-questions">
<div class="panel-questions-container">
<h2>What is a bundled offer?</h2>
<p>A bundled offer is an optional 3rd party offer that is shown during the installation process of your main software application. Offers include toolbars, utility programs, software apps, etc.</p>
</div>
<!-- END .panel-questions-container -->
</div>
<!-- END .panel-questions -->
</td>
<td>
<div class="panel-questions">
<div class="panel-questions-container">
<h2>What countries can I promote my bundled software app?</h2>
<p>Our monetization solution allows you to promote your bundled software app to any country in the world. However, certain countries will yield higher revenues than others.</p>
</div>
<!-- END .panel-questions-container -->
</div>
<!-- END .panel-questions -->
</td>
<td>
<div class="panel-questions">
<div class="panel-questions-container">
<h2>What are your payment terms?</h2>
<p>We pay our publishers on net 30 payment terms.</p>
</div>
<!-- END .panel-questions-container -->
</div>
<!-- END .panel-questions -->
</td>
</tr>
</tbody>
</table>
</div>
<!-- END .panel-container -->
</div>
<!-- END .middle-container -->
</div>
<!-- END #team -->
</div>
<!-- END #parallax-panel-content -->
<div id="parallax-panels">
<div class="white-background" id="bg-1"></div>
<div class="white-background" id="bg-2"></div>
<div class="white-background" id="bg-3"></div>
<div class="white-background" id="bg-4"></div>
</div>
<!-- END #parallax-panels -->
<div id="parallax-iphone-banner">
<div class="iphone-banner-container">
<div class="iphone-banner iphone-light">
<div class="iphone-speaker iphone-speaker-light"></div>
<img class="iphone-screen" src="images/iphone-left.jpg" alt="iPhone Screen"/>
<div class="iphone-button iphone-button-light"></div>
</div>
<!-- END .iphone-banner #iphone-banner-white -->
</div>
<!-- END .iphone-banner-container -->
</div>
<!-- END #parallax-iphone-banner -->
<div id="parallax-under-content">
<div id="publishers">
<div class="middle-container">
<div class="dark">
<h1>Publishers and Developers</h1>
<p><span class="icon_pub"></span></p>
<p>We provide you with the highest revenue rates in the industry to ensure your bottom line is always met. Relevant top offers are shown and optimized throughout the installation process to ensure proper conversion metrics.
Work with only the best in the field. Sign up is quick and easy. Just distribute to get downloads and reap the benefits of monetization. Watch your earnings in our custom analytics and reporting interface. Our auto optimizer takes tailor implemented algorithms to increase your earnings all in one easy place.</p>
</div>
<!-- END .dark -->
<div class="panel-container">
<table class="responsive-table">
<tbody>
<tr>
<td>
<div class="panel">
<p><span class="icon5"></span></p>
<div class="white-btn">Sign Up as a Publisher</div>
</div>
<!-- END .panel -->
</td>
<td>
<div class="panel">
<p><span class="icon6"></span></p>
<p>We bundle optional offers to your software.<br>You distribute a custom built download link to your users.</p>
</div>
<!-- END .panel -->
</td>
<td>
<div class="panel">
<p><span class="icon7"></span></p>
<p>Watch your money start rolling in.<br>Earn up to $2.00 per install.</p>
</div>
<!-- END .panel -->
</td>
</tr>
</tbody>
</table>
</div>
<!-- END .panel-container -->
<div class="border-text">
<h2>Who can be a Publisher?</h2>
<p>Anyone who can get people to download software can be a publisher. This includes affiliates, online marketers, media buyers, software developers, site owners, bloggers, etc. For example, if you host a site with software downloads, we can help you earn money everytime someone downloads software from your site. If you are a software developer who wants to monetize your software while still offering it for free, we can help you. If you are an affiliate looking to promote something other than an oversaturated CPA offer, we can help you. The opportunities and possibilities are endless as an InstallMetrix publisher.</p>
</div>
<div class="white-btn">Sign Up as a Publisher</div>
</div>
<!-- END .middle-container -->
</div>
<!-- END #features -->
<div id="testimon">
<div class="middle-container">
<div class="dark">
<h1>Why Publishers and Advertisers Choose Us</h1>
</div>
<!-- END .dark -->
<div class="panel-container">
<table class="responsive-table">
<tbody>
<tr>
<td>
<div class="panel">
<div class="speech-container">
<div class="speech-container-inside">
<p>I have tested several PPI Networks and InstallMetrix generates the highest revenue for my installs by a longshot!</p>
</div>
<!-- END .speech-container-inside -->
</div>
<!-- END .speech-container -->
<div class="speech-arrow"></div>
<img width="400" height="400" src="images/client1.jpg" class="profile-image" alt="test_1" /> <div class="profile-name">Wayne</div>
<div class="profile-name-2">Publisher</div>
</div>
<!-- END .panel -->
</td>
<td>
<div class="panel">
<div class="speech-container">
<div class="speech-container-inside">
<p>The team at InstallMetrix is a pleasure to work with. They definitely drive a high volume of quality installs to our toolbar offer.</p>
</div>
<!-- END .speech-container-inside -->
</div>
<!-- END .speech-container -->
<div class="speech-arrow"></div>
<img width="650" height="650" src="images/client2.jpg" class="profile-image" alt="test_3" /> <div class="profile-name">Israel</div>
<div class="profile-name-2">Advertiser</div>
</div>
<!-- END .panel -->
</td>
<td>
<div class="panel">
<div class="speech-container">
<div class="speech-container-inside">
<p>InstallMetrix has taken my earnings from $250/day to over $5,000/day within a month. A big thanks goes out to my account manager!</p>
</div>
<!-- END .speech-container-inside -->
</div>
<!-- END .speech-container -->
<div class="speech-arrow"></div>
<img width="400" height="400" src="images/client3.jpg" class="profile-image" alt="test_2" /> <div class="profile-name">Colin</div>
<div class="profile-name-2">Advertiser</div>
</div>
<!-- END .panel -->
</td>
</tr>
</tbody>
</table>
</div>
<!-- END .panel-container -->
</div>
<!-- END .middle-container -->
</div>
<!-- END #ipad -->
<div id="lorem">
<div class="middle-container">
<div class="dark">
<h1>Careers and Partnerships</h1>
</div>
<!-- END .dark -->
<div class="panel-container">
<table class="responsive-table">
<tbody>
<tr>
<td>
<div class="panel-plan panel-border">
<div class="panel-plan-container">
<h2>Team</h2>
<p>Our core is our team dynamics in how we operate. As programmers, engineers, developers, marketing executives, distribution directors, and business managers, we all have a passion in our jobs to work like a well oil machine.</p>
</div>
<!-- END .panel-plan-container -->
<div class="button button-green">Learn More</div>
</div>
</td>
<td>
<div class="panel-plan panel-border">
<div class="panel-plan-container">
<h2>Careers</h2>
<p>We are always looking for hard working and talented people to join our team. Please feel free to contact us on our contact page.</p>
</div>
<!-- END .panel-plan-container -->
<div class="button button-green">Apply Now</div>
</div>
</td>
<td>
<div class="panel-plan panel-border">
<div class="panel-plan-container">
<h2>Investors</h2>
<p>Let us help you, by helping us. We are a privately owned debt free software company looking to take it to the next level. Please feel free to contact us on our contact page.</p>
</div>
<!-- END .panel-plan-container -->
<div class="button button-green">Contact Us</div>
</div>
</td>
</tr>
</tbody>
</table>
<!-- END .responsive-table -->
</div>
<!-- END .panel-container -->
</div>
<!-- END .middle-container -->
</div>
<!-- END #testimonials -->
<div id="contact-us" class="contact-us">
<div class="middle-container">
<div class="dark">
<h1>Want to say hello? Want to know more? </h1>
</div>
<!-- END .dark -->
<div class="sub-title">
<p>Drop us an email and we will get back to you as soon as we can.</p>
</div>
<div class="panel-container">
<form id="contact2" action="action" method="post">
<table class="responsive-table">
<tbody>
<tr>
<td>
<div class="">
<div class="panel-plan-container">
<label for="nameinput2">Name: *</label><br>
<input type="text" id="nameinput2" name="name" value=""/><br>
<label for="emailinput2">E-mail: *</label><br>
<input type="text" id="emailinput2" name="email" value=""/><br>
<label for="phoneinput2">Phone: </label><br>
<input type="text" id="phoneinput2" name="phone" value=""/><br>
</div>
<!-- END .panel-plan-container -->
</div>
</td>
<td>
<div class="">
<div class="panel-plan-container">
<label for="commentinput2">Message: *</label><br>
<textarea cols="10" rows="7" id="commentinput2" name="comment"></textarea><br>
<input type="submit" id="submitinput2" name="submit" class="button" value="Send"/>
<input type="hidden" id="receiver2" name="receiver" value="<?php echo (get_option('bones_contact_mail')); ?>"/>
</div>
<!-- END .panel-plan-container -->
</div>
</td>
</tr>
</tbody>
</table>
<!-- END .responsive-table -->
</form>
</div>
<!-- END .panel-container -->
</div>
<!-- END .middle-container -->
</div>
<!-- END #price-plans -->
</div>
<!-- END #parallax-under-content -->
<div id="parallax-macbook">
<div class="macbook-container">
<div class="macbook">
<div class="macbook-camera"></div>
<div class="macbook-screen-container">
<img class="macbook-screen" src="images/img-top.jpg" alt="browser-screen">
</div>
<!-- END .macbook-screen-2 -->
<div class="macbook_base">
<div class="macbook_base-hole"></div>
</div>
<!-- END .macbook_base -->
</div>
<!-- END .macbook -->
<div class="clear-float"></div>
</div>
<!-- END .macbook-container -->
</div>
<!-- END #parallax-macbook -->
<div id="parallax-banner-text">
<div class="image-box-text">
<h1>The Most Advanced Pay Per Install Network.</h1>
<h2>We monetize software installs for publishers and allow advertisers to distribute their software with the most technologically advanced system.</h2>
<div class="notify-button button-green">Join Us!</div>
</div>
<!-- END .image-box-text -->
</div>
<!-- END #parallax-banner-text -->
<div id="parallax-background">
<div class="background-greyscale"></div>
<img class="background-image" src="images/bg-2.jpg" alt="Background Image">
</div>
<!-- END #parallax-background -->
</div>
</body>
</html>