Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Base URLs:
.claude/skills/iauotpay-api/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-14 | ✗→✓ | ▲ Improved | — | — |
| case-12 | ✗→✓ | ▲ Improved | — | — |
| case-18 | ✗→✓ | ▲ Improved | — | — |
| case-05 | ✗→✓ | ▲ Improved | — | — |
| case-13 | ✗→✓ | ▲ Improved | — | — |
Base URLs:
https://apipaymcp.okart.fun (Payment API)http://ipaynapi.gpuart.cn (User Management & API Keys)0x036CbD53842c5426634e7929541eC2318f3dCF7e (USDC)0x1a85156c2943b63febeee7883bd84a7d1cf0da0c| Duration | Price (USDC) | |----------|--------------| | 1 day | 0.09 | | 7 days | 0.49 | | 30 days | 0.99 |
Get current server status, pricing, and configuration.
bashcurl "https://apipaymcp.okart.fun/info"
Response:
json{ "name": "iAutoPay Fact API", "version": "0.1.0", "environment": "dev", "network": "eip155:84532", "asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "prices": { "1day": "90000", "1dayUsdc": 0.09, "7days": "490000", "7daysUsdc": 0.49, "30days": "990000", "30daysUsdc": 0.99 }, "payee": "0x1a85156c2943b63febeee7883bd84a7d1cf0da0c", "bypassPayment": false, "paymentScheme": "exact" }
Buy an API key with specified duration. Payment is handled via EIP-3009 signed payment in the request header.
bashcurl -X POST "https://apipaymcp.okart.fun/v1/buy-apikey" \ -H "Content-Type: application/json" \ -H "PAYMENT-SIGNATURE: '{\"from\":\"0x...\",\"to\":\"0x...\",\"value\":\"90000\",\"validAfter\":\"0\",\"validBefore\":\"1738368000\",\"nonce\":\"0x...\",\"v\":27,\"r\":\"0x...\",\"s\":\"0x...\"}'" \ -d '{"duration": 7}'
Request Body:
json{ "duration": 7 }
Headers: | Header | Type | Required | Description | |--------|------|----------|-------------| | Content-Type | string | Yes | "application/json" | | PAYMENT-SIGNATURE | string | Yes | EIP-3009 signed payment payload (JSON string) |
PAYMENT-SIGNATURE Payload:
json{ "from": "0x1234567890abcdef1234567890abcdef12345678", "to": "0x1a85156c2943b63febeee7883bd84a7d1cf0da0c", "value": "490000", "validAfter": "0", "validBefore": "1738368000", "nonce": "0xabc123...", "v": 27, "r": "0x...", "s": "0x..." }
Duration Options: | Value | Duration | Price | |-------|----------|-------| | 1 | 1 day | 0.09 USDC | | 7 | 7 days | 0.49 USDC | | 30 | 30 days | 0.99 USDC |
Response:
json{ "apiKey": "sk-7ac3d7c8fed74b0a8ae8f949e017e9f5", "txHash": "0x1f62f45e5ae6e8cd637048d0f099d324f749f61d35906ffe481e36e92689769b", "payState": "paid", "durationDays": 7, "transactionId": "ed66d250-7353-473d-bc73-0bd7541f40c0" }
Response Fields: | Field | Type | Description | |-------|------|-------------| | apiKey | string | Your API key (use this for authentication) | | txHash | string | Blockchain transaction hash | | payState | string | Payment status ("paid") | | durationDays | number | API key duration in days | | transactionId | string | Unique transaction ID |
Pay USDC to any address using EIP-3009 off-chain signature.
Get your user account information, API keys, and usage statistics. Requires authentication with your API key.
bashcurl "http://ipaynapi.gpuart.cn/user/me" \ -H "Authorization: Bearer YOUR_API_KEY"
Response:
json{ "success": true, "data": { "user": { "id": "user_xxx", "walletAddress": "0x1234567890abcdef1234567890abcdef12345678", "createdAt": 1772072451317, "lastPurchasedAt": 1772072457962, "status": "active", "totalPurchases": 2 }, "activeApiKeys": 2, "totalSpent": 1480000, "apiKeys": [ { "apiKey": "sk-xxx", "durationDays": 7, "createdAt": "2026-02-26T02:01:12.904Z", "expiresAt": "2026-03-05T02:01:12.904Z", "status": "active" } ], "recentTransactions": [...] } }
Note: The first purchase automatically creates your user account. No separate registration is required!
Get all API keys for your user account. Requires authentication with your API key.
bashcurl "http://ipaynapi.gpuart.cn/user/my-keys" \ -H "Authorization: Bearer YOUR_API_KEY"
Response:
json{ "success": true, "count": 2, "data": [ { "apiKey": "sk-xxx", "durationDays": 7, "createdAt": "2026-02-26T02:01:12.904Z", "expiresAt": "2026-03-05T02:01:12.904Z", "status": "active" } ] }
Pay USDC to any address using EIP-3009 off-chain signature.
bashcurl -X POST "https://apipaymcp.okart.fun/v1/transfer" \ -H "Content-Type: application/json" \ -H "PAYMENT-SIGNATURE: '{\"from\":\"0x...\",\"to\":\"0x...\",\"value\":\"10000\",\"validAfter\":\"0\",\"validBefore\":\"1738368000\",\"nonce\":\"0x...\",\"v\":27,\"r\":\"0x...\",\"s\":\"0x...\"}'" \ -d '{"to": "0x1234567890abcdef1234567890abcdef12345678", "amount": "10000", "asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e"}'
Request Body:
json{ "to": "0x1234567890abcdef1234567890abcdef12345678", "amount": "10000", "asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e" }
Parameters: | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | to | string | Yes | Recipient wallet address | | amount | string | Yes | Amount in smallest unit (10000 = 0.01 USDC) | | asset | string | Yes | Token contract address (USDC on Base Sepolia) |
Headers: | Header | Type | Required | Description | |--------|------|----------|-------------| | Content-Type | string | Yes | "application/json" | | PAYMENT-SIGNATURE | string | Yes | EIP-3009 signed payment payload (JSON string) |
Response:
json{ "success": true, "transactionHash": "0x1234567890abcdef...", "from": "0xabcdef1234567890abcdef1234567890abcdef12", "to": "0x1234567890abcdef1234567890abcdef12345678", "amount": "0.010000", "deductedAmount": "0.010000 USDC", "currentBalance": "9.990000 USDC" }
The iAutoPay system now includes automatic user registration. When you purchase an API key for the first time, a user account is automatically created and linked to your wallet address.
/v1/buy-apikey with your signed payment/user/me to view account detailsNo separate registration step is required!
Get your user account information, API keys, and usage statistics.
bashcurl "http://ipaynapi.gpuart.cn/user/me" \ -H "Authorization: Bearer YOUR_API_KEY"
Response:
json{ "success": true, "data": { "user": { "id": "user_xxx", "walletAddress": "0x1234567890abcdef1234567890abcdef12345678", "createdAt": 1772072451317, "lastPurchasedAt": 1772072457962, "status": "active", "totalPurchases": 2 }, "activeApiKeys": 2, "totalSpent": 1480000, "apiKeys": [ { "apiKey": "sk-xxx", "durationDays": 7, "createdAt": "2026-02-26T02:01:12.904Z", "expiresAt": "2026-03-05T02:01:12.904Z", "status": "active" } ], "recentTransactions": [...] } }
Get all API keys for your user account.
bashcurl "http://ipaynapi.gpuart.cn/user/my-keys" \ -H "Authorization: Bearer YOUR_API_KEY"
Response:
json{ "success": true, "count": 2, "data": [ { "apiKey": "sk-xxx", "durationDays": 7, "createdAt": "2026-02-26T02:01:12.904Z", "expiresAt": "2026-03-05T02:01:12.904Z", "status": "active" } ] }
Refresh pricing information from server (cached).
bashcurl "https://apipaymcp.okart.fun/refresh_pricing"
Response:
json{ "success": true, "prices": { "1day": "90000", "1dayUsdc": 0.09, "7days": "490000", "7daysUsdc": 0.49, "30days": "990000", "30daysUsdc": 0.99 }, "updatedAt": "2026-02-25T12:00:00Z" }
Get your user account information, API keys, and usage statistics. Requires authentication with your API key.
bashcurl "http://ipaynapi.gpuart.cn/user/me" \ -H "Authorization: Bearer YOUR_API_KEY"
Response:
json{ "success": true, "data": { "user": { "id": "user_xxx", "walletAddress": "0x1234567890abcdef1234567890abcdef12345678", "createdAt": 1772072451317, "lastPurchasedAt": 1772072457962, "status": "active", "totalPurchases": 2 }, "activeApiKeys": 2, "totalSpent": 1480000, "apiKeys": [ { "apiKey": "sk-xxx", "durationDays": 7, "createdAt": "2026-02-26T02:01:12.904Z", "expiresAt": "2026-03-05T02:01:12.904Z", "status": "active" } ], "recentTransactions": [...] } }
Note: The first purchase automatically creates your user account. No separate registration is required!
Get all API keys for your user account. Requires authentication with your API key.
bashcurl "http://ipaynapi.gpuart.cn/user/my-keys" \ -H "Authorization: Bearer YOUR_API_KEY"
Response:
json{ "success": true, "count": 2, "data": [ { "apiKey": "sk-xxx", "durationDays": 7, "createdAt": "2026-02-26T02:01:12.904Z", "expiresAt": "2026-03-05T02:01:12.904Z", "status": "active" } ] }
The Fact API uses EIP-3009 (Transfer With Authorization) for off-chain payment signing. This means you don't need to send an on-chain transaction first - you sign a payment authorization and include it in the API request.
Steps:
/info to get the payee address and USDC contract address/v1/buy-apikey with signed payment in the PAYMENT-SIGNATURE header/user/me endpoint with your API key to check account detailsImportant: Auto-Registration
User Management Endpoints (napi-ser):
GET /user/me - Get user information, API keys, and statisticsGET /user/my-keys - List all API keys for your accountEIP-3009 Signature Requirements:
USDC Contract: 0x036CbD53842c5426634e7929541eC2318f3dCF7e (Base Sepolia) Payee: 0x1a85156c2943b63febeee7883bd84a7d1cf0da0c
This skill includes ready-to-use CLI scripts for all endpoints.
Dependencies:
bash# TypeScript/Bun bun add viem dotenv # Python pip install web3 requests python-dotenv
bash# Python python scripts/info.py # TypeScript/Bun bun run scripts/info.ts
bash# Python python scripts/get_address.py # TypeScript/Bun bun run scripts/get_address.ts
bash# Python python scripts/buy_apikey.py --duration 7 # TypeScript/Bun bun run scripts/buy_apikey.ts --duration 7
bash# Python python scripts/refresh_pricing.py # TypeScript/Bun bun run scripts/refresh_pricing.ts
pythonimport requests def get_info(): response = requests.get("https://apipaymcp.okart.fun/info") return response.json() if __name__ == "__main__": info = get_info() print(f"Environment: {info['environment']}") print(f"Network: {info['network']}") print(f"Payee: {info['payee']}") print(f"Asset: {info['asset']}") print(f"Pricing:") for key, value in info['prices'].items(): print(f" {key}: {value}")
pythonfrom web3 import Web3 import os def get_address(private_key: str = None): if private_key is None: private_key = os.environ.get('AUTOPAY_PKEY') if not private_key: raise ValueError("AUTOPAY_PKEY environment variable not set") w3 = Web3() account = w3.eth.account.from_key(private_key) return account.address if __name__ == "__main__": address = get_address() print(f"Your Wallet Address: {address}")
pythonimport requests from web3 import Web3 import json import time import os def buy_apikey(duration: int, private_key: str = None): if private_key is None: private_key = os.environ.get('AUTOPAY_PKEY') if not private_key: raise ValueError("AUTOPAY_PKEY environment variable not set") w3 = Web3(Web3.HTTPProvider("https://sepolia.base.org")) account = w3.eth.account.from_key(private_key) # Step 1: Get payment quote info_response = requests.get("https://apipaymcp.okart.fun/info") info = info_response.json() payee_address = info['payee'] usdc_address = info['asset'] price_in_usdc = info['prices'][f'{duration}daysUsdc'] # USDC uses 6 decimals amount = int(price_in_usdc * 10 ** 6) # Step 2: Create EIP-3009 signature # For Base Sepolia USDC: name="USDC", version="2" domain = { "name": "USDC", "version": "2", "chainId": 84532, "verifyingContract": usdc_address } message_types = { "TransferWithAuthorization": [ {"name": "from", "type": "address"}, {"name": "to", "type": "address"}, {"name": "value", "type": "uint256"}, {"name": "validAfter", "type": "uint256"}, {"name": "validBefore", "type": "uint256"}, {"name": "nonce", "type": "bytes32"} ] } nonce = os.urandom(32).hex() now = int(time.time()) valid_after = 0 valid_before = now + 28800 # 8 hours message = { "from": account.address, "to": payee_address, "value": amount, "validAfter": valid_after, "validBefore": valid_before, "nonce": f"0x{nonce}" } # Sign typed data signed_message = w3.eth.account.sign_typed_data( private_key=private_key, domain=domain, message_types=message_types, message=message ) signature_payload = { "from": account.address, "to": payee_address, "value": str(amount), "validAfter": str(valid_after), "validBefore": str(valid_before), "nonce": f"0x{nonce}", "v": signed_message.v, "r": signed_message.r.hex(), "s": signed_message.s.hex() } # Step 3: Call buy-apikey with EIP-3009 signature buy_response = requests.post( "https://apipaymcp.okart.fun/v1/buy-apikey", headers={ "Content-Type": "application/json", "PAYMENT-SIGNATURE": json.dumps(signature_payload) }, json={"duration": duration} ) if buy_response.status_code != 200: raise Exception(f"Buy API key failed: {buy_response.text}") return { "apiKey": buy_response.json()['apiKey'], "txHash": buy_response.json()['txHash'], "payState": buy_response.json()['payState'], "durationDays": buy_response.json()['durationDays'], "transactionId": buy_response.json()['transactionId'] } if __name__ == "__main__": import argparse parser = argparse.ArgumentParser() parser.add_argument("--duration", type=int, choices=[1, 7, 30], required=True) args = parser.parse_args() result = buy_apikey(args.duration) print(json.dumps(result, indent=2))
pythonimport requests def refresh_pricing(): response = requests.get("https://apipaymcp.okart.fun/refresh_pricing") return response.json() if __name__ == "__main__": pricing = refresh_pricing() print(f"Pricing updated at: {pricing.get('updatedAt', 'N/A')}") if 'prices' in pricing: print(f"1 day: ${pricing['prices']['1dayUsdc']} USDC") print(f"7 days: ${pricing['prices']['7daysUsdc']} USDC") print(f"30 days: ${pricing['prices']['30daysUsdc']} USDC")
typescriptasync function getInfo() { const response = await fetch("https://apipaymcp.okart.fun/info"); return response.json(); } const info = await getInfo(); console.log(`Environment: ${info.environment}`); console.log(`Network: ${info.network}`); console.log(`Payee: ${info.payee}`); console.log(`Asset: ${info.asset}`); console.log("Pricing:"); Object.entries(info.prices).forEach(([key, value]) => { console.log(` ${key}: ${value}`); });
typescriptimport { privateKeyToAccount } from "viem/accounts"; function getAddress(privateKey?: `0x${string}`): string { const key = privateKey || (process.env.AUTOPAY_PKEY as `0x${string}`); if (!key) { throw new Error("AUTOPAY_PKEY environment variable not set"); } const account = privateKeyToAccount(key); return account.address; } const address = getAddress(); console.log(`Your Wallet Address: ${address}`);
typescriptimport { createWalletClient, http, parseUnits } from "viem"; import { baseSepolia } from "viem/chains"; import { privateKeyToAccount } from "viem/accounts"; import crypto from "crypto"; const transferWithAuthorizationTypes = { TransferWithAuthorization: [ { name: "from", type: "address" }, { name: "to", type: "address" }, { name: "value", type: "uint256" }, { name: "validAfter", type: "uint256" }, { name: "validBefore", type: "uint256" }, { name: "nonce", type: "bytes32" }, ], } as const; async function buyApikey(duration: number, privateKey: `0x${string}` | undefined = undefined) { const key = privateKey || (process.env.AUTOPAY_PKEY as `0x${string}`) if (!key) { throw new Error("AUTOPAY_PKEY environment variable not set") } const account = privateKeyToAccount(key); const client = createWalletClient({ account, chain: baseSepolia, transport: http() }); // Step 1: Get payment quote const infoResponse = await fetch("https://apipaymcp.okart.fun/info"); const info = await infoResponse.json(); const payeeAddress = info.payee as `0x${string}`; const usdcAddress = info.asset as `0x${string}`; const priceInUsdc = info.prices[`${duration}daysUsdc`]; // USDC uses 6 decimals const amount = parseUnits(priceInUsdc.toString(), 6); // Step 2: Create EIP-3009 signature // For Base Sepolia USDC: name="USDC", version="2" const nonce = `0x${crypto.randomBytes(32).toString("hex")}` as `0x${string}`; const now = Math.floor(Date.now() / 1000); const validAfter = BigInt(0); const validBefore = BigInt(now + 28800); // 8 hours const signature = await client.signTypedData({ domain: { name: "USDC", version: "2", chainId: 84532, verifyingContract: usdcAddress, }, types: transferWithAuthorizationTypes, primaryType: "TransferWithAuthorization", message: { from: account.address, to: payeeAddress, value: amount, validAfter, validBefore, nonce, }, }); const signaturePayload = { from: account.address, to: payeeAddress, value: amount.toString(), validAfter: validAfter.toString(), validBefore: validBefore.toString(), nonce, v: Number((signature.slice(-2) as `0x${string}`)), r: signature.slice(0, 66) as `0x${string}`, s: `0x${signature.slice(66, 130)}` as `0x${string}` }; // Step 3: Call buy-apikey with EIP-3009 signature const buyResponse = await fetch("https://apipaymcp.okart.fun/v1/buy-apikey", { method: "POST", headers: { "Content-Type": "application/json", "PAYMENT-SIGNATURE": JSON.stringify(signaturePayload) }, body: JSON.stringify({ duration }) }); if (buyResponse.status !== 200) { throw new Error(`Buy API key failed: ${await buyResponse.text()}`); } const buyData = await buyResponse.json(); return { apiKey: buyData.apiKey, txHash: buyData.txHash, payState: buyData.payState, durationDays: buyData.durationDays, transactionId: buyData.transactionId }; }
typescriptasync function refreshPricing() { const response = await fetch("https://apipaymcp.okart.fun/refresh_pricing"); return response.json(); } const pricing = await refreshPricing(); console.log(`Updated: ${pricing.updatedAt}`); if (pricing.prices) { console.log(`1 day: $${pricing.prices['1dayUsdc']} USDC`); console.log(`7 days: $${pricing.prices['7daysUsdc']} USDC`); console.log(`30 days: $${pricing.prices['30daysUsdc']} USDC`); }
typescript// 1. Check server info and pricing const info = await fetch("https://apipaymcp.okart.fun/info").then(r => r.json()); console.log(`Current pricing: ${JSON.stringify(info.prices)}`); console.log(`Payee address: ${info.payee}`); console.log(`USDC contract: ${info.asset}`); // 2. Create EIP-3009 signature const privateKey = process.env.AUTOPAY_PKEY as `0x${string}` const account = privateKeyToAccount(privateKey); const client = createWalletClient({ account, chain: baseSepolia, transport: http() }); const nonce = `0x${crypto.randomBytes(32).toString("hex")}`; const now = Math.floor(Date.now() / 1000); const validAfter = BigInt(0); const validBefore = BigInt(now + 28800); // 8 hours const amount = parseUnits("0.49", 6); // for 7-day key const signature = await client.signTypedData({ domain: { name: "USDC", version: "2", chainId: 84532, verifyingContract: info.asset, }, types: transferWithAuthorizationTypes, primaryType: "TransferWithAuthorization", message: { from: account.address, to: info.payee, value: amount, validAfter, validBefore, nonce, }, }); const signaturePayload = { from: account.address, to: info.payee, value: amount.toString(), validAfter: validAfter.toString(), validBefore: validBefore.toString(), nonce, v: Number((signature.slice(-2) as `0x${string}`)), r: signature.slice(0, 66) as `0x${string}`, s: `0x${signature.slice(66, 130)}` as `0x${string}` }; // 3. Buy API key with EIP-3009 signature const purchase = await fetch("https://apipaymcp.okart.fun/v1/buy-apikey", { method: "POST", headers: { "Content-Type": "application/json", "PAYMENT-SIGNATURE": JSON.stringify(signaturePayload) }, body: JSON.stringify({ duration: 7 }) }).then(r => r.json()); console.log(` API Key: ${result.apiKey}`); console.log(` TX Hash: ${result.txHash}`); console.log(` Pay State: ${result.payState}`); console.log(` Duration: ${result.durationDays} days`); console.log(` Transaction ID: ${result.transactionId}`);
All endpoints return errors as:
json{ "code": "PAYMENT_FAILED", "message": "Insufficient USDC balance", "details": { "required": "0.49", "available": "0.25" } }
Common error codes:
INVALID_DURATION (400) - Duration must be 1, 7, or 30PAYMENT_FAILED (402) - Payment transaction failedINSUFFICIENT_BALANCE (402) - Not enough USDC in walletRATE_LIMITED (429) - Too many requestsINTERNAL_ERROR (500) - Server errorNever commit private keys to version control!
Auto-Registration Security:
/user/me endpoint with your API keyRecommended approaches:
bash # Set in shell export AUTOPAY_PKEY="0x..."
# Or in .env file echo "AUTOPAY_PKEY=0x..." > .env
bash # Use AUTOPAY_PKEY environment variable export AUTOPAY_PKEY="0x..." python scripts/buy_apikey.py --duration 7 bun run scripts/buy_apikey.ts --duration 7
dotenv to load from .env fileBest Practices:
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-14 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-03 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-12 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-18 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-05 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-13 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-09 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-10 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-02 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-20 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-19 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-15 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-01 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-17 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-07 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-08 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-11 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-04 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-06 | pass→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-16 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-21 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-22 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 20 counted toward the lift figure. The other 2 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +68 percentage points is the difference between those two pass rates over the 20 comparable cases.
The per-case answers from this run were removed by the retention sweep, so the case table below shows the verdicts without the text either arm produced. The counts above were recorded at the time and are unaffected. Answers are now kept for 180 days.
Other measured skills in the registry, with their headline benchmark lift.