Uniloc USA, Inc. and Uniloc Singapore Private Limited (collectively, “Uniloc”) appeal from the decision of the United States District Court for the District of Rhode Island granting Microsoft Corporation’s (“Microsoft”) motion for judgment as a matter of law (“JMOL”) of non-infringement and no willful infringement of asserted claims of Uniloc’s U.S. Patent No. 5,490,216 (“'216 patent”), and, in the alternative, granting a new trial on infringement and willfulness.
Uniloc USA, Inc. v. Microsoft Corp.,
Because the jury’s verdict on infringement was supported by substantial evidence, this court reverses the district court’s grant of JMOL of non-infringement; this court also reverses the district court’s alternative grant of a new trial on infringement as an abuse of discretion. Because the jury’s verdict on willfulness was not supported by substantial evidence, this court affirms the district court’s grant of JMOL of no willfulness; the district court’s alternative grant of a new trial for willfulness is thus rendered moot. Because the jury’s damages award was fundamentally tainted by the use of a legally inadequate methodology, this court affirms the grant of a new trial on damages. Finally, because the district court did not abuse its discretion in determining that the jury verdict of no invalidity of the '216 *1296 patent was supported by substantial evidence, we affirm the district court’s denial of Microsoft’s motion for JMOL of invalidity-
I. Background
Commercial software manufacturers like Microsoft lose significant sales as a result of the “casual copying” of software, where users install copies of a software program on multiple computers in violation of applicable software license conditions. Uniloc’s '216 patent was an early attempt to combat such software piracy. There is no dispute as to the actual functioning of Uniloc’s patented invention and Microsoft’s accused products. The following background information is taken from the district court’s opinion.
Uniloc II,
A. The '216 Patent
Uniloc’s '216 patent is directed to a software registration system to deter copying of software. The system allows the software to run without restrictions (in “use mode”) only if the system determines that the software installation is legitimate. A representative embodiment functions as follows. First, a user intending to use the software in “use mode” enters certain user information when prompted, which may include a software serial number and/or name and address information. An algorithm on the user’s computer (a “local licensee unique ID generating means”) combines the inputted information into “a registration number unique to an intending licensee” (a “local licensee unique ID”). '216 patent, Abstract. The user information is also sent to the vendor’s system, which performs the identical algorithm (a “remote licensee unique ID generating means”) to create a “remote licensee unique ID” for the user. When the application boots again, a “mode switching means” compares the local and remote licensee unique IDs. If they match, the program enters into “use mode.” If they do not match, the program enters into “demo mode,” wherein certain features are disabled. Figure 8 from the '216 patent shows the fifth preferred embodiment:
*1297 [[Image here]]
'216 patent, Fig. 8.
Uniloc asserts only independent claim 19:
19. A remote registration station incorporating remote licensee unique ID generating means, said station forming part of a registration system for licensing execution of digital data in a use mode, said digital data executable on a platform, said system including local licensee unique ID generating means, said system further including mode switching means operable on said platform which permits use of said digital data in said use mode on said platform only if a licensee unique ID generated by said local licensee unique ID generating means has matched a licensee unique ID generated by said remote licensee unique ID generating means; and wherein said remote licensee unique ID generating means comprises software executed on a platform which includes the algorithm utilized by said local licensee unique ID generating means to produce said licensee unique ID.
'216 patent, col. 15 1.21 — col. 16 1.9 (emphasis added).
B. The Accused Product
The accused product is Microsoft’s Product Activation feature that acts as a gatekeeper to Microsoft’s Word XP, Word 2003, and Windows XP software programs. Upon receipt of Microsoft’s retail software program, the user must enter a 25-character alphanumeric product key contained within the packaging of Microsoft’s retail products. If the Key is valid, the user is asked to agree to the End User License Agreement (“EULA”), by which the licensor-licensee relationship is initiated.
*1298 At about this time, the software creates a Product ID (“PID”) and a Hardware ID (“HWID”) on the user’s computer. The PID is formed from the combination of the Product Key, information from the software CD, and a random number from the user’s computer. The HWID is generated from information about the user’s computer. The user may use the software without initiating Product Activation, but such use is temporally limited (50 start-ups of Office and 30 days use of Windows until basic functions like saving and printing are deactivated) and functionally limited (no updates can be downloaded and installed). If the user elects to initiate Product Activation, the software sends a digital license request to Microsoft over the internet, which includes: the PID, the HWID, and additional activation information. At Microsoft’s remote location, this information is entered into one of two software algorithms: the MD5 message digest algorithm (“MD5”) for Office products and the SHA-1 secure hash algorithm (“SHA-1”) for Windows products. 1
The functionality of the MD5 and SHA-1 algorithms is at the heart of this case. As the district court noted, Microsoft’s expert, Dr. Wallach, provided a demonstrative animation, which gives a clear, detailed, and uncontested explanation of the functionality of these algorithms. The animation and the explanation of it given by Dr. Wallach at the trial (Trial Tr. 157:21-166:3, Mar. 31, 2009) may be downloaded at http://oralarguments. cafc.uscourts.gov/ animation/ Uniloc.2010-1035.Animation. pdf. The first frame is explained below.
[[Image here]]
First, A, B, C, and D are 32-bit numbers and F, G, H, and I are logical opera *1299 tions into which the numbers B, C, and D are entered. For example, F(x, y, z) = (x AND y) OR ((NOT x) AND z). Thus, if B, C, and D are 0,1, 1, respectively, F(0, 1,1) = 1. The result is that three 32-bit numbers are compressed into a single 32-bit number.
Second, the resulting number is added to A using modular addition. Modular addition is a way of adding that resets the count of a sum after a certain threshold number is reached. The most familiar example is the American A.M./P.M. clock system. If a three hour movie begins at 11:00 A.M., it will end at 2:00 P.M. This is an example of modl2 addition: one first adds 11+3=14 then subtracts 12 to get 2. Modular addition, or modulo-addition, is used throughout the MD5 algorithm.
Third, Ml, the first component of the source message being hashed, is modulo-added to the result from step 2.
Fourth, additive constant K¡ is modulo-added to the result from step 3.
Fifth, the resulting number is “circular shifted” (according to Microsoft) or “left shifted” (according to Uniloc); the shift is depicted by the green box with the three arrows in the diagram. Because the actual functionality is not disputed, we will refer to it as “circular shifting” for the purposes of this opinion. Inserting into the shifter the binary number 0100 1011 2 (which is the binary equivalent of 75), and shifting it by 1 place would yield 1007 0110 (which is the binary equivalent of 150). The result of this operation is a multiplication by two for each single unit shift. If the number is again shifted (or if the original shift was by 2 places), the output becomes 0010 1101 (which is the binary equivalent of 45). Because a single 8-bit string cannot represent numbers larger than 255 (1111 1111), such numbers are represented in mod255; thus the 300 expected from multiplying 150 by 2, becomes 45 in mod255 (300-255).
Sixth, the resulting number is then modulo-added to initial value B, which final number becomes the new value B’. Initial value C becomes new value D’, D becomes A’, and A becomes B’. The hashing algorithm is then run again using these new values (A’, B’, C’, D’) in place of the old (A, B, C, D) and the second component of the message (M2) in place of the first (Ml). After sixteen rounds of this, a different logical function, G(x, y, z) is used, and the same message string is input in a different order. The function G is used for sixteen rounds, followed by sixteen rounds of function H and sixteen rounds of function I. The end result is a “license digest,” i.e. “a shortened fixed-bit output,”
Uniloc II,
Microsoft encrypts this digest, and sends it along with the original data back to the user’s computer. The software on the user’s computer decrypts the message and recovers the “license digest.” It then inputs the original data (i.e. the PID, HWID, and additional activation information) and enters it into the same MD5 or SHA-1 algorithm used by Microsoft’s computers, resulting in a local “license digest.” Microsoft’s Product Activation software compares the local license digest and the remote license digest; if they match, the software product is activated. If they do not, the software returns to pre-Product Activation mode.
C. Procedural History
In the first iteration of this case, the district court issued a claim construction
*1300
ruling, construing several terms that are relevant to the instant appeal.
Uniloc USA, Inc. v. Microsoft Corp.,
“Licensee unique ID” “A unique identifier associated with a licensee.” Id. at 183.
“Local licensee unique ID generating means” and “Remote licensee unique ID generating means” Means plus function. “Function: to generate a local or remote licensee unique ID” and “Structure: a summation algorithm or a summer and equivalents thereof.” Id. at 190.
“Use mode” “A mode that allows full use of the digital data or software in accordance with the license.” Id. at 196.
“Mode switching means” Means plus function. “Function: to permit the digital data or software to run in a use mode if the locally generated licensee unique ID matches with the remotely generated licensee unique ID.” and “Structure: program code which performs a comparison of two numbers or a comparator and equivalents thereof.” Id. at 198 (synonyms in the claim construction not relevant to the claim at issue are removed for simplicity).
“Registration system” “A system that allows digital data or software to ran in a use mode on a platform if and only if an appropriate licensing procedure has been followed.” Id. at 202.
The district court granted summary judgment of non-infringement, Uniloc USA, Inc. v. Microsoft Corp., No. 03-440 (D.R.I. Oct. 19, 2007), concluding that the algorithm used at Microsoft’s remote station to generate a licensee unique ID was not identical to the algorithm used on the user’s local station as required by the last limitation in the claim. Id. at 24.
On appeal, this court reversed and remanded the finding of non-infringement, holding that Uniloc had put forth “extensive and by no means eonelusory” evidence that Microsoft’s Product Activation used the same algorithm at the local and remote sites (respectively, the “local licensee unique ID generating means” and “remote licensee unique ID generating means”), and that the issue of whether the accused products met this limitation should have gone to the jury.
Uniloc USA, Inc. v. Microsoft Corp.,
On remand, the district court first rejected several
in limine
motions, including a motion by Microsoft to exclude any testimony by Uniloc’s damages expert, Dr. Gemini, under
Daubert v. Merrell Dow Pharmaceuticals, Inc.,
The district court, in a comprehensive and well-reasoned opinion, denied JMOL of invalidity, granted JMOL of non-infringement on the basis of both contested claim limitations, granted JMOL of no willfulness, granted a new trial on damages on the improper use of the entire market value rule, rejected Microsoft’s arguments regarding the 25 percent rule of thumb as having been previously decided,
Uniloc II,
Uniloc appeals all but the denial of JMOL of invalidity, which Microsoft cross-appeals. We have jurisdiction under 28 U.S.C. § 1295(a)(1).
II. Discussion
A. Infringement
To prove infringement, the plaintiff bears the burden of proof to show the presence of every element or its equivalent in the accused device.
Lemelson v. United States,
This court’s review of a district court’s grant of JMOL is governed by regional circuit law.
Union Carbide Chems. & Plastics Tech. Corp. v. Shell Oil Co.,
Microsoft argues that because there is no dispute about how the accused products work, infringement should be reviewed de novo. Br. of Microsoft Corp. at 18, 22-23 (citing
Athletic Alts., Inc. v. Prince Mfg., Inc.,
*1302
(Fed.Cir.2010);
Connell v. Sears, Roebuck & Co.,
This case presents three primary infringement issues: 1) whether the accused products contain “licensee unique ID generating means”; 2) whether the accused products contain a “registration system” with a “mode switching means” that precludes full use of the software unless the outputs of the local and remote algorithms match; and 3) whether Microsoft can be liable for direct infringement when it has no control over the user’s computer.
1. “Licensee Unique ID Generating Means”
The '216 patent specification describes the licensee unique ID generating means as an algorithm that functions by “combining] by addition the serial number 50 with the software product name 64 and customer information 65 and previous user identification 22 to provide registration number 66.”
Id.
col. 11 ll.53-56. The district court’s construction of “licensee unique ID generating means” is undisputed on appeal: it is a means plus function claim, with the function being “to generate a local or remote licensee unique ID” and the structure being “a summation algorithm or a summer and equivalents thereof.”
Uniloc I Claim Construction,
The district court determined that no reasonable jury could find that the accused products were summation algorithms, and granted JMOL of non-infringement. The district court gave seven reasons for its decision: (1) the “circular shifting and mixing functions fundamentally create a more secure result compared to an algorithm based in summation as the specification discloses,”
Uniloc II,
Uniloc argues that a reasonable jury could have concluded that MD5 and SHA1 were summation algorithms within the meaning of the '216 patent, and that the district court erred in granting JMOL of non-infringement. The jury heard two sets of evidence in favor of Uniloc’s contention that MD5 and SHA1 were summation algorithms. First, Dr. Klausner, Uniloc’s expert, testified that MD5 makes a digest of the message it receives
by doing addition and multiplication in a series of rounds over and over again. It takes a piece of the input, adds and shifts it, takes another piece of the input, adds and shifts it. It does a number of other operations, what are called logical operations in mathematics. But the essence is it eventually adds each of the results of these piece-wise operations into a bucket or a hash, and that hash becomes the output of the algorithm.
He also testified that MD5 uses “two primary kinds of operations to do its work. One is addition, summing; and the other is what we call left shifting ... [which is] actually nothing more than multiplication ... [which] is nothing more than addition done over and over again.” Klausner then identified the source code that was the basis of his understanding that MD5 performed addition, noting that “I’m not saying that that’s all that MD5 does, but that’s a significant portion of the MD5 algorithm.” Second, the jury saw documentary evidence identifying MD5 as, or equating it to, a summation algorithm. For example, in Microsoft’s Windows Protocols Master Glossary, one entry reads “checksum: A value that is the summation of a byte stream. By comparing the checksums computed from a data item at two different times, one can quickly assess whether the data items are identical.” That same document equates “hashes” and “checksums,” and notes that “[w]ell-known hash algorithms for computer hashes include MD4, MD5, and SHA1.” Other Microsoft documents also refer to the outcome of the MD5 algorithm as a “check-sum.” See Kenneth Pfeil, Data Security and Data Availability in the Administrative Authority, Microsoft TechNet, available at http://technet.microsoft.com/en-us/ library/cc722918.aspx (“Hashing. Hashing is also referred to as MD5 check-sum.”). See also Windows Driver Kit: Network Devices and Protocols: NDIS-TASKNPSEC, MSDN, updated document available at http://msdn. microsoft.com/en-us/library/ff558990.aspx (“MD5 Set by a miniport driver to indicate that its NIC can use the keyed MD5 algorithm for computing and/or validating a cryptographic checksum for an AH payload and/or ESP payload.”). In addition, Uniloc relied on U.S. Patent No. 6,263,432 (“'432 patent”), which, in describing the procedure for generating a secure e-ticket, includes the following step:
In this example, each of the four fields in the ‘eticket’ framework 302 and user extension 304 include data represented by the number 1’ in step S1. The message Digest/Hash is represented by a summation (Σ) algorithm (equated to, or exemplary of, the MD5 protocol or other hashing algorithm). Hence, to calculate the Message Digest/Hash, a summation *1304 algorithm is implemented using all eight fields of data in step 2.
'432 patent col. 9 ll.50-57.
Uniloc also argues that the district court improperly narrowed the claim construction on JMOL from “summation algorithm” to a “simple combination of inputs by addition,”
Uniloc,
Microsoft counters with three arguments. First, Uniloc’s interpretation of “summation algorithm” would be so broad as to cover any algorithm with a plus sign, and would be akin to adopting the rejected claim construction of licensee unique ID generating means as simply “an algorithm.” Microsoft argues that such a broad reading is inconsistent with the patent, which disclosed only the specific structure where “the algorithm, in this embodiment, combines by addition,” '216 patent, col. 11 11.53-56. Second, Microsoft notes that its expert, Dr. Wallach, established that the algorithms as a whole are not “summation algorithm[s]” because neither circular shifting nor the logical operations of MD5 and SHA1 are addition-based, and that his testimony was unrebutted, because the district court prevented Uniloc’s expert, Dr. Klausner, from opining that MD5 and SHA1 were summation algorithms within the scope of claim 19 of the '216 patent. Finally, Microsoft contrasts the purpose of MD5 and SHA1 — to irreversibly scramble the data so that the inputs cannot be derived — with the purpose of the summation algorithms in the '216 patent, to put data together by addition.
As this court held in
Uniloc I,
First, the breadth of claim 19 is not as narrow as Microsoft argues and the district court concluded. “The literal scope of a properly construed means-plus-function limitation does not extend to all means for performing a certain function. Rather, the scope of such claim language is sharply limited to the structure disclosed in the specification and its equivalents.”
J & M Corp. v. Harley-Davidson, Inc.,
Second, a jury could reasonably determine that MD5 and SHA1 were not as radically different from the summation algorithm disclosed in the '216 as Microsoft and the district court determined them to be. Klausner testified that the “essence” of MD5 is that it “adds each of the results of [the logical operations and shifts] into a bucket or hash,” and that addition is one of the “two primary kinds of operations [that MD5 performs],” and the second is left shifting, which he equated to multiplication, which he testified “is nothing more than addition done over and over again.” To be sure, Microsoft’s Dr. Wallach disagreed with Klausner’s testimony, choosing to focus on the logical functions, which he called the “heart and soul that makes MD5 what it is,” and the circular shifter, both of which he opined were not “summation.” However, Microsoft has not explained why all the steps of an algorithm must be summation steps in order for the algorithm to qualify as a summation algorithm. The jury could reasonably have believed that MD5 is a summation algorithm. As this court noted in
IMS Tech.,
“though two structures arguably would not be considered equivalent structures in other contexts, e.g., if performing functions other than the claimed function,” they may nevertheless be equivalent under § 112 ¶ 6 when performing the same function.
Third, the district court improperly rejected Klausner’s testimony as “incomplete, oversimplified and frankly inappropriate,” justifying its rejection by Klausner’s failure to discuss hashing, summation, or left-shifting in his expert report, and his analogizing of an MD5 digest to a Reader’s Digest book.
Uniloc II,
Klausner’s testimony was certainly a simplification of the functioning of MD5, but neither the district court nor Microsoft demonstrate why it was “oversimplified,”
Uniloc II,
Finally, Microsoft’s attacks on the documentary evidence presented by Uniloc are unwarranted. In particular, the contemporaneous Microsoft documents that define the output of MD5 as a “checksum,” or “cryptographic checksum,” or indicate that MD5 is indicative of a summation algorithm, '432 patent col. 9 ll.50-57, help to associate the MD5 procedure within the reasonable bounds of the word “summation.” It is reasonable to consider MD5 a summation algorithm where those skilled in the art refer to its output as a “hash- sum ” or an “MD5 sum.” Dr. Wallach had the opportunity to respond at trial. For example, in discussing Microsoft’s Tech-Net document, which included an entry, “Hashing. Hashing is also referred to as MD5 checksum,” Dr. Wallach and Uniloc’s attorney engaged in the following colloquy:
Q. Thank you. And so, then, apparently, you disagree that it would be fair to say that a — that an MD5 is a check-sum?
A. MD5 is a cryptographic checksum. It’s a specialized kind of checksum.
Q. No, no, I didn’t ask that question.
A. Yes, you did.
Q. I said would you agree that it would be fair to refer to the MD5 as just a checksum, as specifically done in Microsoft’s document here?
A. Computer scientists would call MD5 a cryptographic checksum to distinguish it from other kinds of checksums.
Microsoft has failed to show why a reasonable jury could not have rejected this distinction. Moreover, the district court’s response to these documents is puzzling. The district court acknowledged that “[s]ome of these documents no doubt say that MD5 and SHA-1 are a type of hash, or checksum,” but noted that the documents did not show what “the complex hashes in
this case
actually do,”
Uniloc II,
For the above reasons, this court concludes that a reasonable jury could rely on Klausner’s testimony and the documentary evidence to conclude that MD5 and SHA1 *1307 were “summation algorithm[s]” as that phrase is used in the context of the '216 patent.
2. “Registration System” and “Mode Switching Means”
In the alternative, the district court granted JMOL of non-infringement because of Product Activation’s failure to incorporate a “registration system” or “mode switching means” using the following constructions:__
“Mode switching means” Means plus function. “Function: to permit the digital data or software to run in a use mode if the locally generated licensee unique ID matches with the remotely generated licensee unique ID.” and “Structure: program code which performs a comparison of two numbers or a comparator and equivalents thereof.” Uniloc I Claim Construction,447 F.Supp.2d at 198 (synonyms in the claim construction not relevant to the claim at issue are removed for simplicity).
“Registration system” “A system that allows digital data or software to run in a use mode on a platform if and only if an appropriate licensing procedure has been followed.” Id. at 202.
“Use mode” “A mode that allows full use of the digital data or software in accordance with the license.” Id. at 196.
These constructions are undisputed on appeal. It is also undisputed that the relevant “license” in the definition of “use mode” is the EULA, to which the user agrees prior to initiation of Product Activation in the accused product. The crux of the question is whether the use of the accused products before Product Activation constitutes full use in accordance with the EULA.
Microsoft argues that the legal licensing occurred at the time the EULA was accepted by the user, and that whatever use this permitted was full use in accordance with the license. In other words, because the terms of the EULA only give the user the right to use the accused products with certain temporal and functional restrictions, such restricted use is “full use” under the terms of the EULA, and “fulfills] the seller’s/licensor’s obligations in relation to the sale or license of the right to execute the digital data or software in the use mode.” '216 patent col. 2 ll.42-44. Microsoft contrasts its system with that disclosed in the '216 patent, which it says is limited to systems in which legal licensing and registration occur concurrently.
The district court agreed with Microsoft, holding that once the user agrees to the EULA, “the user becomes a licensee, and can use the software in accordance with the terms of the license, and with the provided functionality.... Activation itself simply opens additional doors which were previously locked to the licensee.”
Uniloc II,
Microsoft’s argument ultimately fails because it rests on the false factual premise that the functionality during the “grace period” between the EULA and Product Activation satisfies Microsoft’s obligations under the EULA. This factual premise is false for three reasons. First, the EULA accompanying Microsoft Office states: “Mandatory Activation. You may not be able to exercise Your rights to the Software Product under this EULA after a finite number of product launches unless You activate Your copy of the Software Product in the manner described during the launch sequence.” This sentence indicates that “rights ... under this EULA” are restricted unless the product is activated, and do not encompass some abstract right to full functionality. Consistently, the Windows EULA, in a clause discussing “Mandatory Activation” notes that “[t]he license rights granted under this EULA are limited to the first thirty (30) days after you first install the Product unless you supply information required to acti *1308 vate your licensed copy.” These “license rights granted under this EULA” are rights that had already been defined by the EULA without temporal or functional restrictions: “You may install, use, access, display and run one copy of the Product on a single computer,” subject only to limitations on the number of processors and computers that may use the program. Second, both the Windows license (“Microsoft grants you the following rights provided that you comply with all terms and conditions of this EULA”) and the Office license (“The license rights described in this Section are subject to all other terms and conditions of this EULA”) are conditional. Both also note that Product Activation is “[mjandatory.” Thus, unless the user activates the product, she is not entitled to the rights granted by the EULA. Finally, Klausner testified that unless the accused products are activated, they cannot receive product updates or upgrades. However, the Windows EULA allows a user to install “updates, supplements, add-on components, or Internet-based services components, of the Product that Microsoft may provide to you or make available to you after the date you obtain your initial copy of the Product.” Thus, in order to have “full use ... in accordance with the license,” the user must have access to these upgrades. This only occurs upon activation.
This court thus concludes that use during the “grace period” after agreement to the EULA and before Product Activation in the accused product does not constitute full use in accordance with the EULA. It is undisputed that Product Activation lifts all the grace period restrictions if and only if the information entered indicates a legitimate copy of Office or Windows.
Moreover, the '216 patent is not limited to the situation where activation and licensing are concurrent. In the preferred embodiment shown in Figures 2a-c, the registration system requires the user to view the license and to “continue” with the registration, far upstream of the activation. Until the user inputs confirmed payment details and plugs in a valid registration number, only the “demo version” of the software will run. Once the user performs these steps, the registration system switches the software into the “full version.” '216 patent, Figs. 2a-c.
For the above reasons, the jury had substantial evidence to find that Microsoft’s Product Activation included a “registration system” and “mode switching means,” and thus the district court erred in granting JMOL of non-infringement on the basis of this limitation.
3. Alternative Ground for Affirmance: Licensee Unique ID
Microsoft also argues as an alternative ground for affirmance of JMOL that the output of its MD5 and SHA1 algorithms was not a licensee unique ID as required by claim 19 of the '216 patent because it was not “associated with a licensee.” This argument was sufficiently addressed and decided against Microsoft by this court in the prior appeal, and is thus law of the case here.
Uniloc I,
4. Alternative Ground for Affirmance: Direct Infringement
Microsoft presents an alternative ground for affirmance of JMOL of non-infringement, on the basis that Uniloc failed to prove direct infringement because Microsoft did not supply or use the end-users’ computers that implemented the local licensee unique ID generating means and mode switching means. Microsoft re
*1309
lies primarily on
Cross Medical Products, Inc. v. Medtronic Sofamor Danek, Inc.,
Microsoft’s argument is severely hampered by the language of claim 19. Claim 19 is directed to “A remote registration station incorporating remote licensee unique ID generating means, said station forming part of a registration system ... including local licensee unique ID generating means.... ” '216 patent col.15 11.21— 26. As we noted in
BMC,
“[a] patentee can usually structure a claim to capture infringement by a single party,” by “focus[ing] on one entity.”
The claim here is thus distinguishable from those at issue in
Muniauction
and
BMC,
because here, only one party, Microsoft, makes or uses the remote registration station.
See Muniauction,
5. New Trial on Infringement Issues
Citing the closeness of the questions presented on JMOL in this case, the district court also granted in the alternative Microsoft’s motion for a new trial on infringement.
This court’s standard of review over a district court’s grant of a motion for new trial is governed by regional circuit law.
WMS Gaming, Inc. v. Int’l Game Tech.,
“[A] district judge cannot displace a jury’s verdict merely because he disagrees with it or because a contrary verdict may have been equally supportable. As we have repeatedly observed, trial judges do not sit as thirteenth jurors, empowered to reject any verdict with which they disagree.”
Id.
(internal citation omitted). Nevertheless, the district court is entitled to deference in granting a new trial motion, and the First Circuit only overturns the grant of a new trial if the district court has abused its discretion.
Id.
at 435 (citing
Gasperini v. Ctr. For Humanities, Inc.,
The district court granted Microsoft’s motion for a new trial on the infringement issues in the alternative to its JMOL motion, and did not present any analysis apart from its analysis of the JMOL infringement issues discussed above. This court is convinced that the district court’s grant of a new trial on infringement has no more merit than the district court’s grant of JMOL on infringement. Though it is a close issue, this is not a situation where the evidence falls within the zone where substantial evidence supports the verdict and the district court’s discretion in granting a new trial trumps such evidence. This court thus reverses the district court’s grant of a new trial on infringement for the same reasons as it reverses the grant of JMOL of non-infringement.
B. JMOL and New Trial for Willfulness
“[T]o establish willful infringement, a patentee must show by clear and convincing evidence that the infringer acted despite an objectively high likelihood that its actions constituted infringement of a valid patent.”
In re Seagate Tech., LLC,
The district court concluded that no reasonable jury could have found that Microsoft’s conduct fell under either
Seagate
prong.
Uniloc II,
Uniloc has failed to meet the threshold objective prong of
Seagate.
Uniloc has not presented
any
evidence at trial or on appeal showing why Microsoft, at the time it began infringement, could not have reasonably determined that MD5 and SHA1 did not meet the “licensee unique ID generating means,” “licensee unique ID,” or “registration system”/“mode switching means” limitations. Specifically, infringement of the “licensee unique ID generating means” limitation is a complicated issue, made more so because “equivalence requires an intensely factual
*1311
inquiry,”
DePuy Spine, Inc. v. Medtronic Sofamor Danek, Inc.,
Given this court’s conclusion that Uniloc failed to show that a reasonable jury could find Microsoft’s conduct objectively reckless on the evidence presented, this court need not address the subjective prong of Seagate. This court thus affirms the district court’s grant of JMOL of no willfulness, and need not address the district court’s alternative grant of a new trial on willfulness.
C. New Trial on Damages
The jury here awarded Uniloc $388 million, based on the testimony of Uniloc’s expert, Dr. Gemini. Dr. Gemini opined that damages should be $564,946,803. This was based on a hypothetical negotiation between Uniloc and Microsoft and the
Georgia-Pacific
factors.
See Georgia-Pacific Corp. v. U.S. Plywood Corp.,
Product Keys are valuable for two major reasons. First, since Product Keys can be used to install a product and create a valid Product ID, you can associate a monetary value to them. An appraisal process found that a Product Key is worth anywhere between $10 and $10,000 depending on usage. Secondly, Product Keys contain short digital signature technology that Microsoft Research created. For these reasons, it is crucial that Product Keys are handled with maximum security.
In Limine,
Microsoft had challenged the 25% rule
in limine
and attempted to exclude Mr. Gemini’s testimony. The district court noted that “the concept of a ‘rule of thumb’ is perplexing in an area of the law where reliability and precision are deemed paramount,” but rejected Microsoft’s position because the rule has been widely accepted. The district court thus considered the use of the rule of thumb to be reasonable.
In Limine,
On appeal, the parties present the court with three damages issues: 1) the propriety of using the 25 percent rule; 2) application of the entire market value rule as a “check”; and 3) excessiveness of damages. Because this court affirms the district court’s conditional grant of a new trial on damages, this court need not reach the last issue.
1. 25 Percent Rule
Section 284 of Title 35 of the United States Code provides that on finding infringement of a valid patent, damages shall “in no event [be] less than a reasonable royalty for the use made of the invention by the infringer, together with interest and costs as fixed by the court.” In litigation, a reasonable royalty is often determined on the basis of a hypothetical negotiation, occurring between the parties at the time that infringement began.
Wang Labs. Inc. v. Toshiba Corp.,
The 25 percent rule of thumb is a tool that has been used to approximate the reasonable royalty rate that the manufacturer of a patented product would be willing to offer to pay to the patentee during a hypothetical negotiation. Robert Goldscheider, John Jarosz and Carla Mulhern, Use Of The 25 Per Cent Rule in Valuing IP, 37 les Nouvelles 123, 123 (Dec. 2002) (“Valuing IP ”). “The Rule suggests that the licensee pay a royalty rate equivalent to 25 per cent of its expected profits for the product that incorporates the IP at issue.” Id. As explained by its leading proponent, Robert Goldscheider, the rule takes the following form:
An estimate is made of the licensee’s expected profits for the product that embodies the IP at issue. Those profits are divided by the expected net sales over that same period to arrive at a profit rate. That resulting profit rate, say 16 per cent, is then multiplied by 25 per cent to arrive at a running royalty rate. In this example, the resulting royalty rate would be 4 per cent. Going forward (or calculating backwards, in the ease of litigation), the 4 per cent *1313 royalty rate is applied to net sales to arrive at royalty payments due to the IP owner.
Id. at 124. The underlying “assumption is that the licensee should retain a majority (i.e. 75 percent) of the profits, because it has undertaken substantial development, operational and commercialization risks, contributed other technology/IP and/or brought to bear its own development, operational and commercialization contributions.” Id.
The rule was originally based on Goldscheider’s observations of commercial licenses entered into by a “Swiss subsidiary of a large American company, with 18 licensees around the world, each having an exclusive territory.” Id. The rights transferred were a portfolio of patents and other intellectual property apparently related to the patented products. Id. The term of each of these licenses was for three years, with the expectation that the licenses would be renewed. Id. at 123. The licensees “faced strong competition,” and “were either first or second in sales volume, and probably profitability, in their respective market.” Id.
According to its proponents, the veracity of the 25 percent rule has been “confirmed by a careful examination of years of licensing and profit data, across companies and industries.” John C. Jarosz, Carla S. Mulhern and Michael Wagner, The 25% Rule Lives On, IP Law360, Sept. 8, 2010. Goldscheider published a further empirical study in 2002, concluding that across all industries, the median royalty rate was 22.6 percent, and that the data supported the use of the 25 percent rule “as a tool of analysis.” Valuing IP, 37 les Nouvelles at 132-33. Additionally, in a 1997 study of licensing organizations, 25 percent of the organizations indicated that they use the 25 percent rule as a starting point in negotiations. Stephen A. Degnan & Corwin Horton, A Survey of Licensed Royalties, 32 les Nouvelles 91, 95 (June 1997).
The 25 percent rule has, however, met its share of criticism that can be broadly separated into three categories. First, it fails to account for the unique relationship between the patent and the accused product. See Gregory K. Leonard and Lauren J. Stiroh, Economic Approaches to Intellectual Property Policy, Litigation, and Management, 949 PLI/Pat 425, 45A-55 (Sept.-Nov. 2008) (“[The 25 percent rule] takes no account of the importance of the patent to the profits of the product sold, the potential availability of close substitutes or equally noninfringing alternatives, or any of the other idiosyncrasies of the patent at issue that would have affected a real-world negotiation.”); Richard S. Toikka, Patent Licensing Under Competitive and Non-Competitive Conditions, 82 J. Pat. & Trademark Off. Soc’y 279, 292-93 (Apr. 2000) (arguing that it fails to “distinguish between monopoly and normal profit.... Thus for narrow patents, the rule may be overly generous to the patentee, and for broad patents it may be overly stingy”). Second, it fails to account for the unique relationship between the parties. See Ted Hagelin, Valuation of Patent Licenses, Tex. Intell. Prop. L.J. 423, 425-26 (Spring 2004) (noting that the rule should not be used in isolation because it fails to “account[ ] for the different levels of risk assumed by a licensor and licensee”); Hypothetical Negotiations at 702 (“[T]he rule is unlikely to have any basis in the accused infringer’s industry, in the technology involved in either the patent or the accused product or service, or in the claimed invention’s contribution to the infringing product or service.”). Finally, the rule is essentially arbitrary and does not fit within the model of the hypothetical negotiation within which it is based. See Roy J. Epstein and Alan J. Marcus, Economic Analysis of the Reasonable Royal *1314 ty: Simplification and Extension of the Georgian-Pacific Factors, 85 J. Pat. & Trademark Off. Soc’y 55, 574 (July 2003) (“[The 25% and the 5%] rules of thumb are best understood as special cases [] that may be appropriate to a given situation only by chance.”); Roy J. Epstein, Modeling Patent Damages: Rigorous and Defensible Calculations (2003) (paper presented at the AIPLA 2003 Annual Meeting) at 22 available at http://www. royepstein.com/epstein_aipla_2003_article_ website.pdf (last accessed Nov. 19, 2010) (arguing that the 25% rule “shortcut” “is essentially arbitrary. Because it is based on ex post results, it does not necessarily relate to the results of a negotiation that took place prior to the infringement”).
The admissibility of the bare 25 percent rule has never been squarely presented to this court. Nevertheless, this court has passively tolerated its use where its acceptability has not been the focus of the case,
see e.g., i4i Ltd,.,
In
Daubert, 509
U.S. at 589,
This court now holds as a matter of Federal Circuit law that the 25 percent rule of thumb is a fundamentally flawed tool for determining a baseline royalty rate in a hypothetical negotiation. Evidence relying on the 25 percent rule of thumb is thus inadmissible under Daubert and the Federal Rules of Evidence, because it fails to tie a reasonable royalty base to the facts of the case at issue.
The patentee bears the burden of proving damages.
Lucent Techs., Inc. v. Gateway, Inc.,
The bottom line of
Kumho Tire
and
Joiner
is that one major determinant of whether an expert should be excluded under
Daubert
is whether he has justified the application of a general theory to the facts of the case. Consistent with this conclusion, this court has held that “[a]ny evidence unrelated to the claimed invention does not support compensation for infringement but punishes beyond the reach of the statute.”
ResQNet.com, Inc. v. Lansa, Inc.,
In
ResQNet, Lucent Technologies,
Similarly, in
Wordtech,
the patentee “introduced thirteen patent licenses that it previously granted to third parties for rights to some or all of the patents-in-suit” to argue to support the jury’s damages determination.
The meaning of these cases is clear: there must be a basis in fact to associate the royalty rates used in prior licenses to the particular hypothetical negotiation at issue in the case. The 25 percent rule of thumb as an abstract and largely theoretical construct fails to satisfy this fundamental requirement. The rule does not say anything about a particular hypothetical negotiation or reasonable royalty involving any particular technology, industry, or party. Relying on the 25 percent rule of thumb in a reasonable royalty calculation is far more unreliable and irrelevant than reliance on parties’ unrelated licenses, which we rejected in ResQNet and Lucent Technologies. There, the prior licenses at least involved the same general industry and at least some of the same parties as the hypothetical negotiations at issue, and in Wordtech even involved licenses to the patents in suit entered into by the patentee-plaintiff. Lacking even these minimal connections, the 25 percent rule of thumb would predict that the same 25%/75% royalty split would begin royalty discussions between, for example, (a) TinyCo and IBM over a strong patent portfolio of twelve patents covering various aspects of a pioneering hard drive, and (b) Kodak and Fuji over a single patent to a tiny improvement in a specialty film emulsion.
It is of no moment that the 25 percent rule of thumb is offered merely as a starting point to which the Georgia-Pacific factors are then applied to bring the rate up or down. Beginning from a fundamentally flawed premise and adjusting it based on legitimate considerations specific to the facts of the case nevertheless results in a fundamentally flawed conclusion. This is reflected in Lucent Technologies, in which unrelated licenses were considered under Georgia-Pacific factor 1, but this court held that the entire royalty calculation was unsupported by substantial evidence.
To be admissible, expert testimony opining on a reasonable royalty rate must “carefully tie proof of damages to the claimed invention’s footprint in the market place.”
ResQNet,
In this case, it is clear that Gemini’s testimony was based on the use of the 25% rule of thumb as an arbitrary, general rule, unrelated to the facts of this case. When asked the basis of his opinion that the rule of thumb would apply here, Gemini testified: “[fit’s generally accepted. I’ve used it. I’ve seen others use it. It’s a widely accepted rule.” Upon further questioning, Dr. Gemini revealed that he had been involved in only four or five non-litigation related negotiations, and had recommended the 25% rule only once in a case involving a power tool. He did not testify that the parties here had a practice of beginning negotiations with a 25%/75% split, or that the contribution of Product Activation to Office and Word justified such a split. He did not base his 25 percent baseline on other licenses involving the patent at issue or comparable licenses. In short, Gemini’s starting point of a 25 percent royalty had no relation to the facts of the case, and as such, was arbitrary, unreliable, and irrelevant. The use of such a rule fails to pass muster under Daubert and taints the jury’s damages calculation.
This court thus holds that Microsoft is entitled to a new trial on damages.
2. Entire Market Value Rule
As discussed above, Gemini performed “a check to determine whether” his $564,946,803 royalty figure was reasonable by comparing it to his calculation of Microsoft’s approximate total revenue for Office and Windows of $19.28 billion. During trial, Gemini testified that his calculated royalty accounted for only 2.9% of Microsoft’s revenue, and accented his point by reference to a prepared pie chart, showing Microsoft’s $19.28 billion in revenue with a 2.9% sliver representing his calculated royalty rate. He concluded that 2.9% was a reasonable royalty based on his experience that royalty rates for software are “generally above — on average, above 10% or 10, 11%.”
The entire market value rule allows a patentee to assess damages based on the entire market value of the accused product only where the patented feature creates the “basis for customer demand” or “substantially ereate[s] the value of the component parts.”
Lucent Techs.,
Microsoft argues that Uniloc employed the entire market value of Office and Windows by virtue of Gemini’s pie chart, his comparison of his calculated royalty to the total revenue Microsoft earns through the accused products, and Uniloe’s attorneys’ belittlement of Microsoft’s expert’s royalty figure as representing only .0003% of total revenue. Microsoft argues that Uniloc’s *1319 use of the entire market value rule was not proper because it is undisputed that Product Activation did not create the basis for customer demand or substantially create the value of the component parts. Microsoft continues that Gemini’s testimony tainted the jury’s damages deliberations, regardless of its categorization as a “check.”
Uniloc responds that: (1) Microsoft did not object at trial and so waived any evidentiary argument to Gemini’s testimony and demonstratives; (2) the entire market value of the product can be used if the royalty rate is low enough; and (3) the $19 billion figure was used only as a “check,” and the jury was instructed not to base its damages determination on the entire market value, an instruction it should be presumed to have followed.
The district court agreed with Microsoft, and ordered a conditional new trial on damages. It noted that “Uniloc conceded customers do not buy Office or Windows because of [Product Activation] and said it would not base a royalty calculation on the entire market value of the products.”
Uniloc II,
This court agrees with Microsoft and the district court that Uniloc’s use of the $19 billion “check” was improper under the entire market value rule. First, regarding Uniloc’s assertion that Microsoft has waived the issue, this court will not second-guess the district court’s explicit recognition of Microsoft’s objections to Gemini’s testimony. FRE 103(a) notes that “Error may not be predicated upon a ruling which admits or excludes evidence unless ... (1) Objection. — In case the ruling is one admitting evidence, a timely objection or motion to strike appears of record.... Once the court makes a definitive ruling on the record admitting or excluding evidence, either at or before trial, a party need not renew an objection or offer of proof to preserve a claim of error for appeal.” The district court here explicitly noted that Microsoft’s objection fell into the exception at the last line of FRE 103(a): “Although Microsoft did not continue to repeat an objection, it made its position on this evidence sufficiently clear to preserve the instant challenge” to Gemini’s use of the entire market value rule.
Uniloc II,
Uniloc argues that the entire market value of the products may appropriately be admitted if the royalty rate is low enough, relying on the following statement in Lu-cent Technologies:
Simply put, the base used in a running royalty calculation can always be the value of the entire commercial embodiment, as long as the magnitude of the rate is within an acceptable range (as determined by the evidence).... Microsoft surely would have little reason to complain about the supposed application of the entire market value rule had the jury applied a royalty rate of .1% (instead of 8%) to the market price of the infringing programs.”
*1320
This case provides a good example of the danger of admitting consideration of the entire market value of the accused where the patented component does not create the basis for customer demand. As the district court aptly noted, “[t]he $19 billion cat was never put back into the bag even by Microsoft’s cross-examination of Mr. Gemini and re-direct of Mr. Napper, and in spite of a final instruction that the jury may not award damages based on Microsoft’s entire revenue from all the accused products in the case.”
Uniloc II,
Q [Uniloc], You understand that there are approximately $20 billion in sales of infringing product, correct?
A [Napper]. That’s the calculation by Mr. Gemini, yes, the entire market value of those products.
Q. And you understand your lump-sum max theory is $7 million?
A. Yes.
Q. And that would be an effective royalty of approximately .000035%?
A. If one were inappropriately putting the entire market value of the products, that’s what it would result in.
Q. Uniloc invents it, correct?
A. They have a patent, yes.
Q. And under your theory, Microsoft goes out and infringes a valid patent, right?
A. That’s my assumption.
Q. Under your theory, Microsoft brings in billions in revenue and sales from the sales of the infringing product, to wit, approximately 20, correct?
A. The entire market value of those products, that’s correct.
Q. And at the end of the day, the infringer, Microsoft, who violated the patent law, they get to keep 99.9999% of the box and the inventor, whose patent *1321 they infringed, he gets the privilege of keeping .00003%?
A. When expressed as the entire market value of the products, that’s correct.
Q. And that’s reasonable to you?
A. Yes.
This is in clear derogation of the entire market value rule, because the entire market value of the accused products has not been shown to be derived from the patented contribution.
Uniloc’s final argument is that the use of the $19 billion figure was only as a check, and the jury must be presumed to have followed the jury instruction and not based its damages calculation on the entire market value rule. This argument attempts to gloss over the purpose of the check as lending legitimacy to the reasonableness of Gemini’s $565 million damages calculation. Even if the jury’s damages calculation was not based wholly on the entire market value check, the award was supported in part by the faulty foundation of the entire market value. Moreover, Uniloc’s derision of Microsoft’s damages expert by virtue of the .00003% of the entire market value that his damages calculation represented may have inappropriately contributed to the jury’s rejection of his calculations. Thus, the fact that the entire market value was brought in as only a “check” is of no moment.
For the foregoing reasons, this court concludes that the district court did not abuse its discretion in granting a conditional new trial on damages for Uniloc’s violation of the entire market value rule.
3. Excessiveness of Damages
As an alternative ground for affirmance of the district court’s alternative grant of a new trial on damages, Microsoft argues that the damages here were excessive. Because this court is affirming the district court’s grant of new trial on damages, and because the two bases on which Uniloc’s damages case was built have both been rejected, it would be premature to consider the excessiveness of damages that could arise on remand. This court thus expresses no opinion on the excessiveness or reasonableness of the damages awarded by the jury.
D. Cross-Appeal
Microsoft also cross-appeals the district court’s denial of its motion for JMOL of invalidity. Microsoft argues that under Uniloc’s interpretation of the claim construction in its infringement case, claim 19 is invalid as anticipated or obvious over U.S. Patent No. 4,658,093 (“'093 reference”) titled, “Software Distribution System.”
Before this court addresses the merits, two procedural issues must be addressed. First, Microsoft argues that its burden for both the new trial and JMOL motions was to show invalidity simply by a preponderance of the evidence, because the '093 reference was not before the PTO. This argument is based on a statement in
KSR Int’l Co. v. Teleflex Inc.,
*1322
Second, Microsoft argues that the district court’s grant of a new trial extended to validity even though the district court did not mention validity in the new trial section of its opinion.
See Uniloc II,
Turning then to the merits. Microsoft frames its validity arguments as follows: if claim 19 reaches far enough to read on Microsoft’s Product Activation, then it necessarily extends far enough to read on the prior art '093 reference. Thus, Microsoft uses Product Activation as a proxy for the scope of claim 19 (under the assumption that the jury verdict of infringement is upheld and Product Activation infringes), and compares it to the '093 reference. According to Microsoft, the prior art '093 reference discloses a software authorization process and system, which generates an authorization code from the following inputs: “a secret key identifier of the computer embodied in the hardware (SK), a random or nonrepeating number (R), the serial number, the software package name (H), the number of uses (N), and user billing information.”
Uniloc II,
In the prior appeal, this court held that the licensee unique ID must be “a unique identifier associated with a licensee,” but one “that cannot be based solely on platform-related user information.”
Uniloc I,
Uniloc argues that R is “platform-related” because it is generated by the user’s computer. Microsoft argues that “platform-related” must be narrower than “generated by a computer,” otherwise it could not infringe because the output of Product Activation (the PID) is also generated by a computer.
It is undisputed that R and SK, the only inputs that Microsoft argues are associated with the user, are generated by the computer. 3 In the prior appeal, this court noted that the licensee unique ID “cannot be based solely on platform related user information.” Id. at 343. This was based in part on Uniloc’s distinction made during prosecution of the '216 patent between its invention and a prior art reference that “relie[d] for its security on a machine identification code unique to the machine.” Id. at 343-44. The number R in the '093 reference does just what the distinguished prior art does: whatever association it creates does not identify the user, but rather it identifies the machine. In other words, the R in the '093 reference is platform-related, and thus cannot form the basis of the association between the output of the cryptographic hash function and the licensee. The same is true for SK, which is based on a computer-generated serial number.
Microsoft’s argument that R is not platform-related though it is generated by a computer (without user input) is unconvincing for two reasons. First, the proper
*1323
framework for challenging the validity of a patent is not for the accused to show that it is practicing the prior art, but to show that every element of the patent claims reads on a single prior art reference.
See Zenith Elecs. Corp. v. PDI Comm. Sys., Inc.,
Though obviousness is a question of law, this court gives the jury its usual deference on the underlying factual questions. What the prior art shows is a question of fact.
Graham v. John Deere Co.,
Conclusion
For the foregoing reasons, this court reverses the district court’s grant of JMOL of non-infringement, affirms the district court’s grant of JMOL of no willfulness, affirms the district court’s grant of a new trial on damages, vacates the district court’s grant of an alternative motion for new trial on infringement, and affirms the district court’s denial of JMOL of invalidity of claim 19 of the '216. The case is remanded for proceedings consistent with this opinion.
AFFIRMED-IN-PART, REVERSED-IN-PART, VACATED-IN-PART, and REMANDED
Costs
Each party shall bear its own costs.
Notes
. As discussed in the animation referred to, infra, the only differences between MD5 and SHA-1 are the added logical operation group and shifting step in SHA-1. Throughout this litigation, the two algorithms have been treated as functionally identical for infringement purposes. For ease of presentation, this opinion discusses only the MD5 algorithm, but it is uncontested that the same analysis applies to both.
. For demonstration purposes, we use an 8-bit number, though the MD5 algorithm uses a 32-bit number. Four of the characters are italicized to demonstrate the effect of the circular shifter.
. The "user billing information" in the '093 reference is not an input into the hash function and is thus irrelevant in determining whether the '093 reference discloses the "licensee unique ID" and “licensee unique ID generating means” elements of die '216 patent.
