Sepolia Testnet

Contract

0x8b1e759e962E5835B3f4C1429C876603313cE1b4
Source Code Source Code

Overview

ETH Balance

0 ETH

More Info

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Amount

There are no matching entries

Please try again later

Advanced mode:
Parent Transaction Hash Method Block
From
To
Amount
View All Internal Transactions
Loading...
Loading

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Lock

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.28;

import "./EllipticCurve.sol";
import "./FastEcMul.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract Lock {
    // use OpenZeppelin's library
    using ECDSA for bytes32;
    using MessageHashUtils for bytes32;

    // roundId -> i -> j -> share (t, w)
    mapping(string => mapping(uint => mapping(uint => uint[2]))) public shares;

    // roundId -> i -> j -> commitment (x, y)
    mapping(string => mapping(uint => mapping(uint => uint[2])))
        public commitments;

    // roundId -> j -> signature
    mapping(string => mapping(uint => bytes)) public signatures;

    // roundId -> address[]
    mapping(string => address payable[]) public IPs;
    mapping(string => address payable[]) public CPs;
    mapping(string => address payable[]) public OPs;

    // roundId -> address -> index
    mapping(string => mapping(address => uint)) public index;

    mapping(address => uint) public balance;

    // CR01: 新規マッピング
    uint256 public nextRoundId;
    mapping(string => RoundConfig) public roundConfigs;
    mapping(string => mapping(address => Endpoint)) public endpoints;
    mapping(string => mapping(address => uint)) public opRewardPaid;
    mapping(string => uint) public confirmedRewardPerOP;

    // roundId -> state
    uint public constant TIME_SPAN = 1 hours;
    mapping(string => State) public state;
    enum State {
        Preparing,
        Invoked,
        CommitmentsSubmitted,
        SignaturesSubmitted,
        SharesSubmitted,
        Terminated,
        Payout,
        Penalty
    }

    // time limit
    uint public timeLimit = 0;

    // CR01: 新規構造体
    struct PartyRequirement {
        uint minCount;
        uint maxCount;      // 0 = 無制限
        uint recruitStart;
        uint recruitEnd;
    }

    struct RoundConfig {
        string purpose;
        string dslHash;
        string dslUri;
        address payable pop;
        PartyRequirement opReq;
        PartyRequirement cpReq;
        PartyRequirement ipReq;
        uint cpRewardPerUnit;
        uint ipRewardPerUnit;
    }

    struct Endpoint {
        string spdz;
        string restApi;
    }

    struct PaymentPolicy {
        uint participationFee;
        uint resultAccessFee;  // [非推奨] 互換性のため残す
        uint ipRatio;          // [非推奨]
        uint cpRatio;          // [非推奨]
    }
    PaymentPolicy public policy;

    // CR01: イベント定義
    event RoundInitialized(
        string indexed roundId,
        address indexed pop,
        uint opMax,
        uint cpMax,
        uint ipMax
    );

    event PartyRegistered(
        string indexed roundId,
        address indexed party,
        string partyType,
        uint depositAmount
    );

    event RequirementsChecked(
        string indexed roundId,
        bool sufficient,
        uint ipCount,
        uint cpCount,
        uint opCount
    );

    event RoundStarted(
        string indexed roundId,
        uint actualRewardTotal,
        uint rewardPerOP
    );

    event RefundRecorded(
        string indexed roundId,
        address indexed op,
        uint refundAmount
    );

    event Withdrawn(address indexed party, uint amount);

    constructor() {
        policy = PaymentPolicy({
            participationFee: 0.0015 ether,
            resultAccessFee: 6 ether,  // [非推奨] 互換性のため残すが使用しない
            ipRatio: 1,                // [非推奨] 互換性のため残すが使用しない
            cpRatio: 1                 // [非推奨] 互換性のため残すが使用しない
        });
        nextRoundId = 0;
    }

    // CR01: 必須modifier
    modifier onlyPreparing(string memory roundId) {
        require(state[roundId] == State.Preparing, "Must be Preparing");
        _;
    }

    modifier onlyDeposited() {
        require(
            msg.value == policy.participationFee,
            "You need to deposit participation fee"
        );
        _;
    }
    modifier onlyPayed() {
        require(
            msg.value == policy.participationFee + policy.resultAccessFee,
            "You need to deposit participation fee and result access fee"
        );
        _;
    }

    // CR01: initializeRound
    function initializeRound(
        string memory purpose,
        string memory dslHash,
        string memory dslUri,
        uint opMin,
        uint opMax,
        uint opRecruitStart,
        uint opRecruitEnd,
        uint cpMin,
        uint cpMax,
        uint cpRewardPerUnit,
        uint cpRecruitStart,
        uint cpRecruitEnd,
        uint ipMin,
        uint ipMax,
        uint ipRewardPerUnit,
        uint ipRecruitStart,
        uint ipRecruitEnd,
        string memory spdzEndpoint,
        string memory restApiEndpoint
    ) external payable returns (string memory roundId) {
        // 検証: 最少人数
        require(opMin >= 1, "OP min count must be >= 1");
        require(cpMin >= 2, "CP min count must be >= 2");
        require(ipMin >= 2, "IP min count must be >= 2");

        // 検証: 最大人数
        require(opMax == 0 || opMax >= opMin, "OP max must be >= min or 0");
        require(cpMax >= cpMin, "CP max must be >= min");
        require(ipMax >= ipMin, "IP max must be >= min");

        // 検証: 報酬単価
        require(cpRewardPerUnit > 0, "CP reward must be > 0");
        require(ipRewardPerUnit > 0, "IP reward must be > 0");

        // 検証: 募集期間
        require(opRecruitStart < opRecruitEnd, "OP recruit period invalid");
        require(cpRecruitStart < cpRecruitEnd, "CP recruit period invalid");
        require(ipRecruitStart < ipRecruitEnd, "IP recruit period invalid");

        // 検証: msg.value
        uint rewardTotal = cpMax * cpRewardPerUnit + ipMax * ipRewardPerUnit;
        require(
            msg.value == policy.participationFee + rewardTotal,
            "Invalid deposit amount"
        );

        // roundId生成
        roundId = string(
            abi.encodePacked("round_", Strings.toString(nextRoundId++))
        );

        // RoundConfig保存
        roundConfigs[roundId] = RoundConfig({
            purpose: purpose,
            dslHash: dslHash,
            dslUri: dslUri,
            pop: payable(msg.sender),
            opReq: PartyRequirement({
                minCount: opMin,
                maxCount: opMax,
                recruitStart: opRecruitStart,
                recruitEnd: opRecruitEnd
            }),
            cpReq: PartyRequirement({
                minCount: cpMin,
                maxCount: cpMax,
                recruitStart: cpRecruitStart,
                recruitEnd: cpRecruitEnd
            }),
            ipReq: PartyRequirement({
                minCount: ipMin,
                maxCount: ipMax,
                recruitStart: ipRecruitStart,
                recruitEnd: ipRecruitEnd
            }),
            cpRewardPerUnit: cpRewardPerUnit,
            ipRewardPerUnit: ipRewardPerUnit
        });

        // POPをOPリストに追加
        OPs[roundId].push(payable(msg.sender));
        index[roundId][msg.sender] = 0;

        // エンドポイント登録
        endpoints[roundId][msg.sender] = Endpoint({
            spdz: spdzEndpoint,
            restApi: restApiEndpoint
        });

        // 報酬支払額記録
        opRewardPaid[roundId][msg.sender] = rewardTotal;

        // STATE.Preparingに遷移
        state[roundId] = State.Preparing;

        emit RoundInitialized(roundId, msg.sender, opMax, cpMax, ipMax);

        return roundId;
    }

    // CR01: registerIP (変更版)
    function registerIP(
        string memory roundId,
        string memory restApiEndpoint
    ) external payable onlyPreparing(roundId) {
        RoundConfig memory config = roundConfigs[roundId];
        require(config.pop != address(0), "Round not found");

        // 募集期間チェック
        require(
            block.timestamp >= config.ipReq.recruitStart &&
                block.timestamp <= config.ipReq.recruitEnd,
            "Outside IP recruitment period"
        );

        // 最大人数チェック
        require(
            IPs[roundId].length < config.ipReq.maxCount,
            "IP max count reached"
        );

        // msg.valueチェック
        require(
            msg.value == policy.participationFee,
            "Invalid participation fee"
        );

        IPs[roundId].push(payable(msg.sender));
        index[roundId][msg.sender] = IPs[roundId].length - 1;

        endpoints[roundId][msg.sender] = Endpoint({
            spdz: "",
            restApi: restApiEndpoint
        });

        emit PartyRegistered(
            roundId,
            msg.sender,
            "IP",
            policy.participationFee
        );
    }

    // CR01: registerCP (変更版)
    function registerCP(
        string memory roundId,
        string memory spdzEndpoint,
        string memory restApiEndpoint
    ) external payable onlyPreparing(roundId) {
        RoundConfig memory config = roundConfigs[roundId];
        require(config.pop != address(0), "Round not found");

        // 募集期間チェック
        require(
            block.timestamp >= config.cpReq.recruitStart &&
                block.timestamp <= config.cpReq.recruitEnd,
            "Outside CP recruitment period"
        );

        // 最大人数チェック
        require(
            CPs[roundId].length < config.cpReq.maxCount,
            "CP max count reached"
        );

        // msg.valueチェック
        require(
            msg.value == policy.participationFee,
            "Invalid participation fee"
        );

        CPs[roundId].push(payable(msg.sender));
        index[roundId][msg.sender] = CPs[roundId].length - 1;

        endpoints[roundId][msg.sender] = Endpoint({
            spdz: spdzEndpoint,
            restApi: restApiEndpoint
        });

        emit PartyRegistered(
            roundId,
            msg.sender,
            "CP",
            policy.participationFee
        );
    }

    // CR01: registerOP (変更版)
    function registerOP(
        string memory roundId,
        string memory spdzEndpoint,
        string memory restApiEndpoint
    ) external payable onlyPreparing(roundId) {
        RoundConfig memory config = roundConfigs[roundId];
        require(config.pop != address(0), "Round not found");

        // 募集期間チェック
        require(
            block.timestamp >= config.opReq.recruitStart &&
                block.timestamp <= config.opReq.recruitEnd,
            "Outside OP recruitment period"
        );

        // 最大人数チェック (0は無制限)
        if (config.opReq.maxCount > 0) {
            require(
                OPs[roundId].length < config.opReq.maxCount,
                "OP max count reached"
            );
        }

        // msg.valueチェック
        uint rewardTotal = config.cpReq.maxCount *
            config.cpRewardPerUnit +
            config.ipReq.maxCount *
            config.ipRewardPerUnit;
        uint requiredAmount = policy.participationFee + rewardTotal / 2;
        require(msg.value == requiredAmount, "Invalid deposit amount");

        OPs[roundId].push(payable(msg.sender));
        index[roundId][msg.sender] = OPs[roundId].length - 1;

        endpoints[roundId][msg.sender] = Endpoint({
            spdz: spdzEndpoint,
            restApi: restApiEndpoint
        });

        opRewardPaid[roundId][msg.sender] = rewardTotal / 2;

        emit PartyRegistered(roundId, msg.sender, "OP", msg.value);
    }

    // CR01: checkRequirementsAndStart
    function checkRequirementsAndStart(string memory roundId) external {
        require(state[roundId] == State.Preparing, "Must be Preparing");
        RoundConfig memory config = roundConfigs[roundId];
        require(config.pop != address(0), "Round not found");

        uint ipCount = IPs[roundId].length;
        uint cpCount = CPs[roundId].length;
        uint opCount = OPs[roundId].length;

        // 最少人数チェック
        bool sufficient = ipCount >= config.ipReq.minCount &&
            cpCount >= config.cpReq.minCount &&
            opCount >= config.opReq.minCount;

        emit RequirementsChecked(roundId, sufficient, ipCount, cpCount, opCount);

        if (!sufficient) {
            // 不足: Terminatedに遷移し、全額返金
            state[roundId] = State.Terminated;

            for (uint i = 0; i < ipCount; i++) {
                balance[IPs[roundId][i]] += policy.participationFee;
            }
            for (uint i = 0; i < cpCount; i++) {
                balance[CPs[roundId][i]] += policy.participationFee;
            }
            for (uint i = 0; i < opCount; i++) {
                address op = OPs[roundId][i];
                balance[op] += policy.participationFee + opRewardPaid[roundId][op];
            }
        } else {
            // 充足: 報酬計算とInvokedへ遷移
            uint actualRewardTotal = ipCount *
                config.ipRewardPerUnit +
                cpCount *
                config.cpRewardPerUnit;
            uint rewardPerOP = actualRewardTotal / opCount;

            confirmedRewardPerOP[roundId] = rewardPerOP;

            // OPの過剰支払い分を返却
            for (uint i = 0; i < opCount; i++) {
                address op = OPs[roundId][i];
                uint refund = opRewardPaid[roundId][op] - rewardPerOP;
                balance[op] += refund;
                emit RefundRecorded(roundId, op, refund);
            }

            state[roundId] = State.Invoked;

            emit RoundStarted(roundId, actualRewardTotal, rewardPerOP);
        }
    }

    // CR01: withdraw
    function withdraw() external {
        uint amount = balance[msg.sender];
        require(amount > 0, "No balance to withdraw");

        // Checks-Effects-Interactions
        balance[msg.sender] = 0;
        payable(msg.sender).transfer(amount);

        emit Withdrawn(msg.sender, amount);
    }

    function invoke(string memory roundId) external {
        revert("Use checkRequirementsAndStart instead");
    }

    modifier onlyInvoked(string memory roundId) {
        require(state[roundId] == State.Invoked, "State must be Invoked");
        _;
    }

    modifier postCommitmentCheck(string memory roundId) {
        _;
        for (uint i = 0; i < OPs[roundId].length; i++) {
            for (
                uint j = 0;
                j < CPs[roundId].length + OPs[roundId].length;
                j++
            ) {
                if (
                    commitments[roundId][i][j][0] == 0 &&
                    commitments[roundId][i][j][1] == 0
                ) {
                    return;
                }
            }
        }
        state[roundId] = State.CommitmentsSubmitted;
        timeLimit = block.timestamp + TIME_SPAN;
    }

    // コミットメントはそれ単体で正しさを検証する手段がないため、事前登録する形式の妥当性は要検討
    function registerCommitment(
        string memory roundId,
        uint i,
        uint j,
        uint x,
        uint y
    ) external onlyInvoked(roundId) postCommitmentCheck(roundId) {
        commitments[roundId][i][j] = [x, y];
    }

    function registerCommitments(
        string memory roundId,
        uint[] memory xs,
        uint[] memory ys
    ) external onlyInvoked(roundId) postCommitmentCheck(roundId) {
        require(xs.length == ys.length, "xs and ys must have the same length");

        uint n = CPs[roundId].length;
        uint b = OPs[roundId].length;

        for (uint i = 0; i < b; i++) {
            for (uint j = 0; j < n + b; j++) {
                // skip if the commitment is already set
                if (
                    commitments[roundId][i][j][0] != 0 ||
                    commitments[roundId][i][j][1] != 0
                ) continue;

                commitments[roundId][i][j] = [
                    xs[i * (n + b) + j],
                    ys[i * (n + b) + j]
                ];
            }
        }
    }

    modifier onlyCommitmentsSubmitted(string memory roundId) {
        require(
            state[roundId] == State.CommitmentsSubmitted,
            "State must be CommitmentsSubmitted"
        );
        _;
    }

    modifier postSignatureCheck(string memory roundId) {
        _;
        for (uint j = 0; j < CPs[roundId].length + OPs[roundId].length; j++) {
            if (signatures[roundId][j].length == 0) {
                timeLimit = block.timestamp + TIME_SPAN;
                return;
            }
        }
        state[roundId] = State.SignaturesSubmitted;
        timeLimit = block.timestamp + TIME_SPAN;
    }

    function registerSignature(
        string memory roundId,
        uint j,
        bytes memory signature
    ) external onlyCommitmentsSubmitted(roundId) postSignatureCheck(roundId) {
        // convert to EIP-191 hash
        bytes32 ethSignedMessageHash = MessageHashUtils.toEthSignedMessageHash(
            createMessageHash(roundId)
        );

        uint n = CPs[roundId].length;
        require(
            ECDSA.recover(ethSignedMessageHash, signature) ==
                (j < n ? CPs[roundId][j] : OPs[roundId][j - n]),
            "Invalid signature"
        );

        signatures[roundId][j] = signature;
    }

    function registerSignatures(
        string memory roundId,
        bytes[] memory _signatures
    ) external onlyCommitmentsSubmitted(roundId) postSignatureCheck(roundId) {
        uint n = CPs[roundId].length;
        uint b = OPs[roundId].length;
        require(_signatures.length == n + b, "Invalid number of signatures");

        for (uint j = 0; j < n + b; j++) {
            // skip if the signature is already set
            if (signatures[roundId][j].length != 0) continue;

            bytes32 ethSignedMessageHash = MessageHashUtils
                .toEthSignedMessageHash(createMessageHash(roundId));

            address target = j < n ? CPs[roundId][j] : OPs[roundId][j - n];

            if (ECDSA.recover(ethSignedMessageHash, _signatures[j]) == target) {
                signatures[roundId][j] = _signatures[j];
            } else if (msg.sender == target) {
                revert("Invalid signature");
            }
        }
    }

    modifier onlySignaturesSubmitted(string memory roundId) {
        require(
            state[roundId] == State.SignaturesSubmitted,
            "State must be SignaturesSubmitted"
        );
        _;
    }

    modifier postShareCheck(string memory roundId) {
        _;
        for (uint i = 0; i < OPs[roundId].length; i++) {
            for (
                uint j = 0;
                j < CPs[roundId].length + OPs[roundId].length;
                j++
            ) {
                if (
                    shares[roundId][i][j][0] == 0 &&
                    shares[roundId][i][j][1] == 0
                ) {
                    timeLimit = block.timestamp + TIME_SPAN;
                    return;
                }
            }
        }
        state[roundId] = State.SharesSubmitted;
    }

    function registerShare(
        string memory roundId,
        uint j,
        uint[] memory ts,
        uint[] memory ws
    ) external onlySignaturesSubmitted(roundId) postShareCheck(roundId) {
        uint b = OPs[roundId].length;
        for (uint i = 0; i < b; i++) {
            (uint x, uint y) = LockLib.createPedersenCommitment(ts[i], ws[i]);

            require(
                x == commitments[roundId][i][j][0] &&
                    y == commitments[roundId][i][j][1],
                "Invalid share"
            );

            shares[roundId][i][j] = [ts[i], ws[i]];
        }
    }

    function registerShares(
        string memory roundId,
        uint[] memory ts,
        uint[] memory ws
    ) external onlySignaturesSubmitted(roundId) postShareCheck(roundId) {
        require(ts.length == ws.length, "ts and ws must have the same length");

        uint n = CPs[roundId].length;
        uint b = OPs[roundId].length;

        for (uint i = 0; i < b; i++) {
            for (uint j = 0; j < n + b; j++) {
                // skip if the share is already set
                if (
                    shares[roundId][i][j][0] != 0 &&
                    shares[roundId][i][j][1] != 0
                ) continue;

                (uint x, uint y) = LockLib.createPedersenCommitment(
                    ts[i * (n + b) + j],
                    ws[i * (n + b) + j]
                );

                address target = j < n ? CPs[roundId][j] : OPs[roundId][j - n];

                if (
                    x == commitments[roundId][i][j][0] &&
                    y == commitments[roundId][i][j][1]
                ) {
                    shares[roundId][i][j] = [
                        ts[i * (n + b) + j],
                        ws[i * (n + b) + j]
                    ];
                } else if (msg.sender == target) {
                    revert("Invalid share");
                }
            }
        }
    }

    function exit(string memory roundId) external {
        State s = state[roundId];

        require(
            s != State.Payout && s != State.Penalty && s != State.Terminated,
            "State must not be Ready, Payout, Penalty, or Terminated"
        );

        if (s == State.Preparing || s == State.Invoked) {
            state[roundId] = State.Terminated;
            returnDeposit(roundId);
        } else if (
            s == State.CommitmentsSubmitted && block.timestamp > timeLimit
        ) {
            state[roundId] = State.Penalty;
            signaturePenalty(roundId);
        } else if (
            s == State.SignaturesSubmitted && block.timestamp > timeLimit
        ) {
            state[roundId] = State.Penalty;
            sharePenalty(roundId);
        } else if (s == State.SharesSubmitted) {
            state[roundId] = State.Payout;
            payout(roundId);
        } else {
            revert("Time limit has not passed");
        }
    }

    // CR01: returnDeposit (変更版)
    function returnDeposit(string memory roundId) private {
        for (uint i = 0; i < IPs[roundId].length; i++) {
            balance[IPs[roundId][i]] += policy.participationFee;
        }
        for (uint i = 0; i < CPs[roundId].length; i++) {
            balance[CPs[roundId][i]] += policy.participationFee;
        }
        for (uint i = 0; i < OPs[roundId].length; i++) {
            address op = OPs[roundId][i];
            // STATE.Preparing時: opRewardPaidを使用(checkRequirementsAndStart未実行)
            // STATE.Invoked時: confirmedRewardPerOPを使用(過剰分は既に返却済み)
            uint opReward = state[roundId] == State.Preparing
                ? opRewardPaid[roundId][op]
                : confirmedRewardPerOP[roundId];
            balance[op] += policy.participationFee + opReward;
        }
    }

    // CR01: signaturePenalty (変更版)
    function signaturePenalty(string memory roundId) private {
        uint a = IPs[roundId].length;
        uint n = CPs[roundId].length;
        uint b = OPs[roundId].length;

        uint m = 0;
        for (uint j = 0; j < n + b; j++) {
            if (signatures[roundId][j].length != 0) {
                address target = j < n ? CPs[roundId][j] : OPs[roundId][j - n];
                balance[target] += policy.participationFee;
            } else {
                m++;
                if (j >= n)
                    balance[OPs[roundId][j - n]] += confirmedRewardPerOP[
                        roundId
                    ];
            }
        }

        uint payback = (policy.participationFee * m) / (a + n + b - m);
        for (uint i = 0; i < a; i++) balance[IPs[roundId][i]] += payback;
        for (uint j = 0; j < n + b; j++) {
            if (signatures[roundId][j].length != 0) {
                address target = j < n ? CPs[roundId][j] : OPs[roundId][j - n];
                balance[target] += payback;
            }
        }
    }

    // CR01: sharePenalty (変更版)
    function sharePenalty(string memory roundId) private {
        uint a = IPs[roundId].length;
        uint n = CPs[roundId].length;
        uint b = OPs[roundId].length;

        uint m = 0;
        for (uint i = 0; i < b; i++) {
            for (uint j = 0; j < n + b; j++) {
                if (
                    shares[roundId][i][j][0] != 0 &&
                    shares[roundId][i][j][1] != 0
                ) {
                    address target = j < n
                        ? CPs[roundId][j]
                        : OPs[roundId][j - n];
                    balance[target] += policy.participationFee;
                } else {
                    m++;
                    if (j >= n)
                        balance[OPs[roundId][j - n]] += confirmedRewardPerOP[
                            roundId
                        ];
                }
            }
        }

        uint payback = (policy.participationFee * m) / (a + n + b - m);
        for (uint i = 0; i < a; i++) balance[IPs[roundId][i]] += payback;
        for (uint i = 0; i < b; i++) {
            for (uint j = 0; j < n + b; j++) {
                if (
                    shares[roundId][i][j][0] != 0 &&
                    shares[roundId][i][j][1] != 0
                ) {
                    address target = j < n
                        ? CPs[roundId][j]
                        : OPs[roundId][j - n];
                    balance[target] += payback;
                }
            }
        }
    }

    // CR01: payout (変更版)
    function payout(string memory roundId) private {
        RoundConfig memory config = roundConfigs[roundId];

        uint ipCount = IPs[roundId].length;
        uint cpCount = CPs[roundId].length;
        uint opCount = OPs[roundId].length;

        uint cpRewardPerUnit = config.cpRewardPerUnit;
        uint ipRewardPerUnit = config.ipRewardPerUnit;

        // IP報酬支払い
        for (uint i = 0; i < ipCount; i++) {
            balance[IPs[roundId][i]] +=
                policy.participationFee +
                ipRewardPerUnit;
        }

        // CP報酬支払い
        for (uint i = 0; i < cpCount; i++) {
            balance[CPs[roundId][i]] +=
                policy.participationFee +
                cpRewardPerUnit;
        }

        // OP参加費返却
        for (uint i = 0; i < opCount; i++) {
            balance[OPs[roundId][i]] += policy.participationFee;
        }
    }

    function createMessageHash(
        string memory roundId
    ) public view onlyCommitmentsSubmitted(roundId) returns (bytes32) {
        uint n = CPs[roundId].length;
        uint b = OPs[roundId].length;

        uint[] memory flattened = new uint[](b * (n + b) * 2);
        for (uint i = 0; i < b; i++) {
            for (uint j = 0; j < n + b; j++) {
                for (uint k = 0; k < 2; k++) {
                    flattened[i * (n + b) * 2 + j * 2 + k] = commitments[
                        roundId
                    ][i][j][k];
                }
            }
        }
        bytes32 messageHash = keccak256(abi.encode(flattened));
        return messageHash;
    }
}

library LockLib {
    // define parameters of elliptic curve as constants
    uint private constant N =
        115792089237316195423570985008687907852837564279074904382605163141518161494337;
    uint private constant P =
        115792089237316195423570985008687907853269984665640564039457584007908834671663;
    uint private constant Gx =
        55066263022277343669578718895168534326250603453777594175500187360389116729240;
    uint private constant Gy =
        32670510020758816978083085130507043184471273380659243275938904335757337482424;
    uint private constant Hx =
        19678015404333929029128013708488027270870144796102827091528430274610966132548;
    uint private constant Hy =
        7750785029508853713910290324108018932599102225606536719127495477978726181969;

    function createPedersenCommitment(
        uint u,
        uint r
    ) external pure returns (uint, uint) {
        (uint uGx, uint uGy) = EllipticCurve.ecMul(u, Gx, Gy, 0, P);
        (uint rHx, uint rHy) = EllipticCurve.ecMul(r, Hx, Hy, 0, P);
        (uint cx, uint cy) = EllipticCurve.ecAdd(uGx, uGy, rHx, rHy, 0, P);

        return (cx, cy);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.20;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS
    }

    /**
     * @dev The signature derives the `address(0)`.
     */
    error ECDSAInvalidSignature();

    /**
     * @dev The signature has an invalid length.
     */
    error ECDSAInvalidSignatureLength(uint256 length);

    /**
     * @dev The signature has an S value that is in the upper half order.
     */
    error ECDSAInvalidSignatureS(bytes32 s);

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
     * return address(0) without also returning an error description. Errors are documented using an enum (error type)
     * and a bytes32 providing additional information about the error.
     *
     * If no error is returned, then the address can be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function tryRecover(
        bytes32 hash,
        bytes memory signature
    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly ("memory-safe") {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures]
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {
        unchecked {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            // We do not check for an overflow here since the shift operation results in 0 or 1.
            uint8 v = uint8((uint256(vs) >> 255) + 27);
            return tryRecover(hash, v, r, s);
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS, s);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature, bytes32(0));
        }

        return (signer, RecoverError.NoError, bytes32(0));
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
     */
    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (utils/cryptography/MessageHashUtils.sol)

pragma solidity ^0.8.20;

import {Strings} from "../Strings.sol";

/**
 * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.
 *
 * The library provides methods for generating a hash of a message that conforms to the
 * https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]
 * specifications.
 */
library MessageHashUtils {
    /**
     * @dev Returns the keccak256 digest of an ERC-191 signed data with version
     * `0x45` (`personal_sign` messages).
     *
     * The digest is calculated by prefixing a bytes32 `messageHash` with
     * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the
     * hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.
     *
     * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with
     * keccak256, although any bytes32 value can be safely used because the final digest will
     * be re-hashed.
     *
     * See {ECDSA-recover}.
     */
    function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {
        assembly ("memory-safe") {
            mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash
            mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix
            digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)
        }
    }

    /**
     * @dev Returns the keccak256 digest of an ERC-191 signed data with version
     * `0x45` (`personal_sign` messages).
     *
     * The digest is calculated by prefixing an arbitrary `message` with
     * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the
     * hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.
     *
     * See {ECDSA-recover}.
     */
    function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {
        return
            keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message));
    }

    /**
     * @dev Returns the keccak256 digest of an ERC-191 signed data with version
     * `0x00` (data with intended validator).
     *
     * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended
     * `validator` address. Then hashing the result.
     *
     * See {ECDSA-recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(hex"19_00", validator, data));
    }

    /**
     * @dev Variant of {toDataWithIntendedValidatorHash-address-bytes} optimized for cases where `data` is a bytes32.
     */
    function toDataWithIntendedValidatorHash(
        address validator,
        bytes32 messageHash
    ) internal pure returns (bytes32 digest) {
        assembly ("memory-safe") {
            mstore(0x00, hex"19_00")
            mstore(0x02, shl(96, validator))
            mstore(0x16, messageHash)
            digest := keccak256(0x00, 0x36)
        }
    }

    /**
     * @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).
     *
     * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with
     * `\x19\x01` and hashing the result. It corresponds to the hash signed by the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.
     *
     * See {ECDSA-recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {
        assembly ("memory-safe") {
            let ptr := mload(0x40)
            mstore(ptr, hex"19_01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            digest := keccak256(ptr, 0x42)
        }
    }
}

File 4 of 10 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

import {Panic} from "../Panic.sol";
import {SafeCast} from "./SafeCast.sol";

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Return the 512-bit addition of two uint256.
     *
     * The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low.
     */
    function add512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {
        assembly ("memory-safe") {
            low := add(a, b)
            high := lt(low, a)
        }
    }

    /**
     * @dev Return the 512-bit multiplication of two uint256.
     *
     * The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low.
     */
    function mul512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {
        // 512-bit multiply [high low] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use
        // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
        // variables such that product = high * 2²⁵⁶ + low.
        assembly ("memory-safe") {
            let mm := mulmod(a, b, not(0))
            low := mul(a, b)
            high := sub(sub(mm, low), lt(mm, low))
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, with a success flag (no overflow).
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            uint256 c = a + b;
            success = c >= a;
            result = c * SafeCast.toUint(success);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow).
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            uint256 c = a - b;
            success = c <= a;
            result = c * SafeCast.toUint(success);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow).
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            uint256 c = a * b;
            assembly ("memory-safe") {
                // Only true when the multiplication doesn't overflow
                // (c / a == b) || (a == 0)
                success := or(eq(div(c, a), b), iszero(a))
            }
            // equivalent to: success ? c : 0
            result = c * SafeCast.toUint(success);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a success flag (no division by zero).
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            success = b > 0;
            assembly ("memory-safe") {
                // The `DIV` opcode returns zero when the denominator is 0.
                result := div(a, b)
            }
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            success = b > 0;
            assembly ("memory-safe") {
                // The `MOD` opcode returns zero when the denominator is 0.
                result := mod(a, b)
            }
        }
    }

    /**
     * @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing.
     */
    function saturatingAdd(uint256 a, uint256 b) internal pure returns (uint256) {
        (bool success, uint256 result) = tryAdd(a, b);
        return ternary(success, result, type(uint256).max);
    }

    /**
     * @dev Unsigned saturating subtraction, bounds to zero instead of overflowing.
     */
    function saturatingSub(uint256 a, uint256 b) internal pure returns (uint256) {
        (, uint256 result) = trySub(a, b);
        return result;
    }

    /**
     * @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing.
     */
    function saturatingMul(uint256 a, uint256 b) internal pure returns (uint256) {
        (bool success, uint256 result) = tryMul(a, b);
        return ternary(success, result, type(uint256).max);
    }

    /**
     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
     *
     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
     * one branch when needed, making this function more expensive.
     */
    function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {
        unchecked {
            // branchless ternary works because:
            // b ^ (a ^ b) == a
            // b ^ 0 == b
            return b ^ ((a ^ b) * SafeCast.toUint(condition));
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return ternary(a > b, a, b);
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return ternary(a < b, a, b);
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }

        // The following calculation ensures accurate ceiling division without overflow.
        // Since a is non-zero, (a - 1) / b will not overflow.
        // The largest possible result occurs when (a - 1) / b is type(uint256).max,
        // but the largest value we can obtain is type(uint256).max - 1, which happens
        // when a = type(uint256).max and b = 1.
        unchecked {
            return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);
        }
    }

    /**
     * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     *
     * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            (uint256 high, uint256 low) = mul512(x, y);

            // Handle non-overflow cases, 256 by 256 division.
            if (high == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return low / denominator;
            }

            // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.
            if (denominator <= high) {
                Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [high low].
            uint256 remainder;
            assembly ("memory-safe") {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                high := sub(high, gt(remainder, low))
                low := sub(low, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly ("memory-safe") {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [high low] by twos.
                low := div(low, twos)

                // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from high into low.
            low |= high * twos;

            // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such
            // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv ≡ 1 mod 2⁴.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2⁸
            inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶
            inverse *= 2 - denominator * inverse; // inverse mod 2³²
            inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴
            inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸
            inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is
            // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and high
            // is no longer required.
            result = low * inverse;
            return result;
        }
    }

    /**
     * @dev Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);
    }

    /**
     * @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256.
     */
    function mulShr(uint256 x, uint256 y, uint8 n) internal pure returns (uint256 result) {
        unchecked {
            (uint256 high, uint256 low) = mul512(x, y);
            if (high >= 1 << n) {
                Panic.panic(Panic.UNDER_OVERFLOW);
            }
            return (high << (256 - n)) | (low >> n);
        }
    }

    /**
     * @dev Calculates x * y >> n with full precision, following the selected rounding direction.
     */
    function mulShr(uint256 x, uint256 y, uint8 n, Rounding rounding) internal pure returns (uint256) {
        return mulShr(x, y, n) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, 1 << n) > 0);
    }

    /**
     * @dev Calculate the modular multiplicative inverse of a number in Z/nZ.
     *
     * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.
     * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.
     *
     * If the input value is not inversible, 0 is returned.
     *
     * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the
     * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.
     */
    function invMod(uint256 a, uint256 n) internal pure returns (uint256) {
        unchecked {
            if (n == 0) return 0;

            // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)
            // Used to compute integers x and y such that: ax + ny = gcd(a, n).
            // When the gcd is 1, then the inverse of a modulo n exists and it's x.
            // ax + ny = 1
            // ax = 1 + (-y)n
            // ax ≡ 1 (mod n) # x is the inverse of a modulo n

            // If the remainder is 0 the gcd is n right away.
            uint256 remainder = a % n;
            uint256 gcd = n;

            // Therefore the initial coefficients are:
            // ax + ny = gcd(a, n) = n
            // 0a + 1n = n
            int256 x = 0;
            int256 y = 1;

            while (remainder != 0) {
                uint256 quotient = gcd / remainder;

                (gcd, remainder) = (
                    // The old remainder is the next gcd to try.
                    remainder,
                    // Compute the next remainder.
                    // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd
                    // where gcd is at most n (capped to type(uint256).max)
                    gcd - remainder * quotient
                );

                (x, y) = (
                    // Increment the coefficient of a.
                    y,
                    // Decrement the coefficient of n.
                    // Can overflow, but the result is casted to uint256 so that the
                    // next value of y is "wrapped around" to a value between 0 and n - 1.
                    x - y * int256(quotient)
                );
            }

            if (gcd != 1) return 0; // No inverse exists.
            return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.
        }
    }

    /**
     * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.
     *
     * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is
     * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that
     * `a**(p-2)` is the modular multiplicative inverse of a in Fp.
     *
     * NOTE: this function does NOT check that `p` is a prime greater than `2`.
     */
    function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {
        unchecked {
            return Math.modExp(a, p - 2, p);
        }
    }

    /**
     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)
     *
     * Requirements:
     * - modulus can't be zero
     * - underlying staticcall to precompile must succeed
     *
     * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make
     * sure the chain you're using it on supports the precompiled contract for modular exponentiation
     * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,
     * the underlying function will succeed given the lack of a revert, but the result may be incorrectly
     * interpreted as 0.
     */
    function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {
        (bool success, uint256 result) = tryModExp(b, e, m);
        if (!success) {
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }
        return result;
    }

    /**
     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).
     * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying
     * to operate modulo 0 or if the underlying precompile reverted.
     *
     * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain
     * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in
     * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack
     * of a revert, but the result may be incorrectly interpreted as 0.
     */
    function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {
        if (m == 0) return (false, 0);
        assembly ("memory-safe") {
            let ptr := mload(0x40)
            // | Offset    | Content    | Content (Hex)                                                      |
            // |-----------|------------|--------------------------------------------------------------------|
            // | 0x00:0x1f | size of b  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x20:0x3f | size of e  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x40:0x5f | size of m  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x60:0x7f | value of b | 0x<.............................................................b> |
            // | 0x80:0x9f | value of e | 0x<.............................................................e> |
            // | 0xa0:0xbf | value of m | 0x<.............................................................m> |
            mstore(ptr, 0x20)
            mstore(add(ptr, 0x20), 0x20)
            mstore(add(ptr, 0x40), 0x20)
            mstore(add(ptr, 0x60), b)
            mstore(add(ptr, 0x80), e)
            mstore(add(ptr, 0xa0), m)

            // Given the result < m, it's guaranteed to fit in 32 bytes,
            // so we can use the memory scratch space located at offset 0.
            success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)
            result := mload(0x00)
        }
    }

    /**
     * @dev Variant of {modExp} that supports inputs of arbitrary length.
     */
    function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {
        (bool success, bytes memory result) = tryModExp(b, e, m);
        if (!success) {
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }
        return result;
    }

    /**
     * @dev Variant of {tryModExp} that supports inputs of arbitrary length.
     */
    function tryModExp(
        bytes memory b,
        bytes memory e,
        bytes memory m
    ) internal view returns (bool success, bytes memory result) {
        if (_zeroBytes(m)) return (false, new bytes(0));

        uint256 mLen = m.length;

        // Encode call args in result and move the free memory pointer
        result = abi.encodePacked(b.length, e.length, mLen, b, e, m);

        assembly ("memory-safe") {
            let dataPtr := add(result, 0x20)
            // Write result on top of args to avoid allocating extra memory.
            success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)
            // Overwrite the length.
            // result.length > returndatasize() is guaranteed because returndatasize() == m.length
            mstore(result, mLen)
            // Set the memory pointer after the returned data.
            mstore(0x40, add(dataPtr, mLen))
        }
    }

    /**
     * @dev Returns whether the provided byte array is zero.
     */
    function _zeroBytes(bytes memory byteArray) private pure returns (bool) {
        for (uint256 i = 0; i < byteArray.length; ++i) {
            if (byteArray[i] != 0) {
                return false;
            }
        }
        return true;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * This method is based on Newton's method for computing square roots; the algorithm is restricted to only
     * using integer operations.
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        unchecked {
            // Take care of easy edge cases when a == 0 or a == 1
            if (a <= 1) {
                return a;
            }

            // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a
            // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between
            // the current value as `ε_n = | x_n - sqrt(a) |`.
            //
            // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root
            // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is
            // bigger than any uint256.
            //
            // By noticing that
            // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`
            // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar
            // to the msb function.
            uint256 aa = a;
            uint256 xn = 1;

            if (aa >= (1 << 128)) {
                aa >>= 128;
                xn <<= 64;
            }
            if (aa >= (1 << 64)) {
                aa >>= 64;
                xn <<= 32;
            }
            if (aa >= (1 << 32)) {
                aa >>= 32;
                xn <<= 16;
            }
            if (aa >= (1 << 16)) {
                aa >>= 16;
                xn <<= 8;
            }
            if (aa >= (1 << 8)) {
                aa >>= 8;
                xn <<= 4;
            }
            if (aa >= (1 << 4)) {
                aa >>= 4;
                xn <<= 2;
            }
            if (aa >= (1 << 2)) {
                xn <<= 1;
            }

            // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).
            //
            // We can refine our estimation by noticing that the middle of that interval minimizes the error.
            // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).
            // This is going to be our x_0 (and ε_0)
            xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)

            // From here, Newton's method give us:
            // x_{n+1} = (x_n + a / x_n) / 2
            //
            // One should note that:
            // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a
            //              = ((x_n² + a) / (2 * x_n))² - a
            //              = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a
            //              = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)
            //              = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)
            //              = (x_n² - a)² / (2 * x_n)²
            //              = ((x_n² - a) / (2 * x_n))²
            //              ≥ 0
            // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n
            //
            // This gives us the proof of quadratic convergence of the sequence:
            // ε_{n+1} = | x_{n+1} - sqrt(a) |
            //         = | (x_n + a / x_n) / 2 - sqrt(a) |
            //         = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |
            //         = | (x_n - sqrt(a))² / (2 * x_n) |
            //         = | ε_n² / (2 * x_n) |
            //         = ε_n² / | (2 * x_n) |
            //
            // For the first iteration, we have a special case where x_0 is known:
            // ε_1 = ε_0² / | (2 * x_0) |
            //     ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))
            //     ≤ 2**(2*e-4) / (3 * 2**(e-1))
            //     ≤ 2**(e-3) / 3
            //     ≤ 2**(e-3-log2(3))
            //     ≤ 2**(e-4.5)
            //
            // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:
            // ε_{n+1} = ε_n² / | (2 * x_n) |
            //         ≤ (2**(e-k))² / (2 * 2**(e-1))
            //         ≤ 2**(2*e-2*k) / 2**e
            //         ≤ 2**(e-2*k)
            xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5)  -- special case, see above
            xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9)    -- general case with k = 4.5
            xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18)   -- general case with k = 9
            xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36)   -- general case with k = 18
            xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72)   -- general case with k = 36
            xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144)  -- general case with k = 72

            // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision
            // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either
            // sqrt(a) or sqrt(a) + 1.
            return xn - SafeCast.toUint(xn > a / xn);
        }
    }

    /**
     * @dev Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 x) internal pure returns (uint256 r) {
        // If value has upper 128 bits set, log2 result is at least 128
        r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;
        // If upper 64 bits of 128-bit half set, add 64 to result
        r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;
        // If upper 32 bits of 64-bit half set, add 32 to result
        r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;
        // If upper 16 bits of 32-bit half set, add 16 to result
        r |= SafeCast.toUint((x >> r) > 0xffff) << 4;
        // If upper 8 bits of 16-bit half set, add 8 to result
        r |= SafeCast.toUint((x >> r) > 0xff) << 3;
        // If upper 4 bits of 8-bit half set, add 4 to result
        r |= SafeCast.toUint((x >> r) > 0xf) << 2;

        // Shifts value right by the current result and use it as an index into this lookup table:
        //
        // | x (4 bits) |  index  | table[index] = MSB position |
        // |------------|---------|-----------------------------|
        // |    0000    |    0    |        table[0] = 0         |
        // |    0001    |    1    |        table[1] = 0         |
        // |    0010    |    2    |        table[2] = 1         |
        // |    0011    |    3    |        table[3] = 1         |
        // |    0100    |    4    |        table[4] = 2         |
        // |    0101    |    5    |        table[5] = 2         |
        // |    0110    |    6    |        table[6] = 2         |
        // |    0111    |    7    |        table[7] = 2         |
        // |    1000    |    8    |        table[8] = 3         |
        // |    1001    |    9    |        table[9] = 3         |
        // |    1010    |   10    |        table[10] = 3        |
        // |    1011    |   11    |        table[11] = 3        |
        // |    1100    |   12    |        table[12] = 3        |
        // |    1101    |   13    |        table[13] = 3        |
        // |    1110    |   14    |        table[14] = 3        |
        // |    1111    |   15    |        table[15] = 3        |
        //
        // The lookup table is represented as a 32-byte value with the MSB positions for 0-15 in the last 16 bytes.
        assembly ("memory-safe") {
            r := or(r, byte(shr(r, x), 0x0000010102020202030303030303030300000000000000000000000000000000))
        }
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 x) internal pure returns (uint256 r) {
        // If value has upper 128 bits set, log2 result is at least 128
        r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;
        // If upper 64 bits of 128-bit half set, add 64 to result
        r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;
        // If upper 32 bits of 64-bit half set, add 32 to result
        r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;
        // If upper 16 bits of 32-bit half set, add 16 to result
        r |= SafeCast.toUint((x >> r) > 0xffff) << 4;
        // Add 1 if upper 8 bits of 16-bit half set, and divide accumulated result by 8
        return (r >> 3) | SafeCast.toUint((x >> r) > 0xff);
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 5 of 10 : SafeCast.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.

pragma solidity ^0.8.20;

/**
 * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeCast {
    /**
     * @dev Value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);

    /**
     * @dev An int value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedIntToUint(int256 value);

    /**
     * @dev Value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);

    /**
     * @dev An uint value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedUintToInt(uint256 value);

    /**
     * @dev Returns the downcasted uint248 from uint256, reverting on
     * overflow (when the input is greater than largest uint248).
     *
     * Counterpart to Solidity's `uint248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toUint248(uint256 value) internal pure returns (uint248) {
        if (value > type(uint248).max) {
            revert SafeCastOverflowedUintDowncast(248, value);
        }
        return uint248(value);
    }

    /**
     * @dev Returns the downcasted uint240 from uint256, reverting on
     * overflow (when the input is greater than largest uint240).
     *
     * Counterpart to Solidity's `uint240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toUint240(uint256 value) internal pure returns (uint240) {
        if (value > type(uint240).max) {
            revert SafeCastOverflowedUintDowncast(240, value);
        }
        return uint240(value);
    }

    /**
     * @dev Returns the downcasted uint232 from uint256, reverting on
     * overflow (when the input is greater than largest uint232).
     *
     * Counterpart to Solidity's `uint232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toUint232(uint256 value) internal pure returns (uint232) {
        if (value > type(uint232).max) {
            revert SafeCastOverflowedUintDowncast(232, value);
        }
        return uint232(value);
    }

    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        if (value > type(uint224).max) {
            revert SafeCastOverflowedUintDowncast(224, value);
        }
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint216 from uint256, reverting on
     * overflow (when the input is greater than largest uint216).
     *
     * Counterpart to Solidity's `uint216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toUint216(uint256 value) internal pure returns (uint216) {
        if (value > type(uint216).max) {
            revert SafeCastOverflowedUintDowncast(216, value);
        }
        return uint216(value);
    }

    /**
     * @dev Returns the downcasted uint208 from uint256, reverting on
     * overflow (when the input is greater than largest uint208).
     *
     * Counterpart to Solidity's `uint208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toUint208(uint256 value) internal pure returns (uint208) {
        if (value > type(uint208).max) {
            revert SafeCastOverflowedUintDowncast(208, value);
        }
        return uint208(value);
    }

    /**
     * @dev Returns the downcasted uint200 from uint256, reverting on
     * overflow (when the input is greater than largest uint200).
     *
     * Counterpart to Solidity's `uint200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toUint200(uint256 value) internal pure returns (uint200) {
        if (value > type(uint200).max) {
            revert SafeCastOverflowedUintDowncast(200, value);
        }
        return uint200(value);
    }

    /**
     * @dev Returns the downcasted uint192 from uint256, reverting on
     * overflow (when the input is greater than largest uint192).
     *
     * Counterpart to Solidity's `uint192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toUint192(uint256 value) internal pure returns (uint192) {
        if (value > type(uint192).max) {
            revert SafeCastOverflowedUintDowncast(192, value);
        }
        return uint192(value);
    }

    /**
     * @dev Returns the downcasted uint184 from uint256, reverting on
     * overflow (when the input is greater than largest uint184).
     *
     * Counterpart to Solidity's `uint184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toUint184(uint256 value) internal pure returns (uint184) {
        if (value > type(uint184).max) {
            revert SafeCastOverflowedUintDowncast(184, value);
        }
        return uint184(value);
    }

    /**
     * @dev Returns the downcasted uint176 from uint256, reverting on
     * overflow (when the input is greater than largest uint176).
     *
     * Counterpart to Solidity's `uint176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toUint176(uint256 value) internal pure returns (uint176) {
        if (value > type(uint176).max) {
            revert SafeCastOverflowedUintDowncast(176, value);
        }
        return uint176(value);
    }

    /**
     * @dev Returns the downcasted uint168 from uint256, reverting on
     * overflow (when the input is greater than largest uint168).
     *
     * Counterpart to Solidity's `uint168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toUint168(uint256 value) internal pure returns (uint168) {
        if (value > type(uint168).max) {
            revert SafeCastOverflowedUintDowncast(168, value);
        }
        return uint168(value);
    }

    /**
     * @dev Returns the downcasted uint160 from uint256, reverting on
     * overflow (when the input is greater than largest uint160).
     *
     * Counterpart to Solidity's `uint160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toUint160(uint256 value) internal pure returns (uint160) {
        if (value > type(uint160).max) {
            revert SafeCastOverflowedUintDowncast(160, value);
        }
        return uint160(value);
    }

    /**
     * @dev Returns the downcasted uint152 from uint256, reverting on
     * overflow (when the input is greater than largest uint152).
     *
     * Counterpart to Solidity's `uint152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toUint152(uint256 value) internal pure returns (uint152) {
        if (value > type(uint152).max) {
            revert SafeCastOverflowedUintDowncast(152, value);
        }
        return uint152(value);
    }

    /**
     * @dev Returns the downcasted uint144 from uint256, reverting on
     * overflow (when the input is greater than largest uint144).
     *
     * Counterpart to Solidity's `uint144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toUint144(uint256 value) internal pure returns (uint144) {
        if (value > type(uint144).max) {
            revert SafeCastOverflowedUintDowncast(144, value);
        }
        return uint144(value);
    }

    /**
     * @dev Returns the downcasted uint136 from uint256, reverting on
     * overflow (when the input is greater than largest uint136).
     *
     * Counterpart to Solidity's `uint136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toUint136(uint256 value) internal pure returns (uint136) {
        if (value > type(uint136).max) {
            revert SafeCastOverflowedUintDowncast(136, value);
        }
        return uint136(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        if (value > type(uint128).max) {
            revert SafeCastOverflowedUintDowncast(128, value);
        }
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint120 from uint256, reverting on
     * overflow (when the input is greater than largest uint120).
     *
     * Counterpart to Solidity's `uint120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toUint120(uint256 value) internal pure returns (uint120) {
        if (value > type(uint120).max) {
            revert SafeCastOverflowedUintDowncast(120, value);
        }
        return uint120(value);
    }

    /**
     * @dev Returns the downcasted uint112 from uint256, reverting on
     * overflow (when the input is greater than largest uint112).
     *
     * Counterpart to Solidity's `uint112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toUint112(uint256 value) internal pure returns (uint112) {
        if (value > type(uint112).max) {
            revert SafeCastOverflowedUintDowncast(112, value);
        }
        return uint112(value);
    }

    /**
     * @dev Returns the downcasted uint104 from uint256, reverting on
     * overflow (when the input is greater than largest uint104).
     *
     * Counterpart to Solidity's `uint104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toUint104(uint256 value) internal pure returns (uint104) {
        if (value > type(uint104).max) {
            revert SafeCastOverflowedUintDowncast(104, value);
        }
        return uint104(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        if (value > type(uint96).max) {
            revert SafeCastOverflowedUintDowncast(96, value);
        }
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint88 from uint256, reverting on
     * overflow (when the input is greater than largest uint88).
     *
     * Counterpart to Solidity's `uint88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toUint88(uint256 value) internal pure returns (uint88) {
        if (value > type(uint88).max) {
            revert SafeCastOverflowedUintDowncast(88, value);
        }
        return uint88(value);
    }

    /**
     * @dev Returns the downcasted uint80 from uint256, reverting on
     * overflow (when the input is greater than largest uint80).
     *
     * Counterpart to Solidity's `uint80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toUint80(uint256 value) internal pure returns (uint80) {
        if (value > type(uint80).max) {
            revert SafeCastOverflowedUintDowncast(80, value);
        }
        return uint80(value);
    }

    /**
     * @dev Returns the downcasted uint72 from uint256, reverting on
     * overflow (when the input is greater than largest uint72).
     *
     * Counterpart to Solidity's `uint72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toUint72(uint256 value) internal pure returns (uint72) {
        if (value > type(uint72).max) {
            revert SafeCastOverflowedUintDowncast(72, value);
        }
        return uint72(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        if (value > type(uint64).max) {
            revert SafeCastOverflowedUintDowncast(64, value);
        }
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint56 from uint256, reverting on
     * overflow (when the input is greater than largest uint56).
     *
     * Counterpart to Solidity's `uint56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toUint56(uint256 value) internal pure returns (uint56) {
        if (value > type(uint56).max) {
            revert SafeCastOverflowedUintDowncast(56, value);
        }
        return uint56(value);
    }

    /**
     * @dev Returns the downcasted uint48 from uint256, reverting on
     * overflow (when the input is greater than largest uint48).
     *
     * Counterpart to Solidity's `uint48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toUint48(uint256 value) internal pure returns (uint48) {
        if (value > type(uint48).max) {
            revert SafeCastOverflowedUintDowncast(48, value);
        }
        return uint48(value);
    }

    /**
     * @dev Returns the downcasted uint40 from uint256, reverting on
     * overflow (when the input is greater than largest uint40).
     *
     * Counterpart to Solidity's `uint40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toUint40(uint256 value) internal pure returns (uint40) {
        if (value > type(uint40).max) {
            revert SafeCastOverflowedUintDowncast(40, value);
        }
        return uint40(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        if (value > type(uint32).max) {
            revert SafeCastOverflowedUintDowncast(32, value);
        }
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint24 from uint256, reverting on
     * overflow (when the input is greater than largest uint24).
     *
     * Counterpart to Solidity's `uint24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toUint24(uint256 value) internal pure returns (uint24) {
        if (value > type(uint24).max) {
            revert SafeCastOverflowedUintDowncast(24, value);
        }
        return uint24(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        if (value > type(uint16).max) {
            revert SafeCastOverflowedUintDowncast(16, value);
        }
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        if (value > type(uint8).max) {
            revert SafeCastOverflowedUintDowncast(8, value);
        }
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        if (value < 0) {
            revert SafeCastOverflowedIntToUint(value);
        }
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int248 from int256, reverting on
     * overflow (when the input is less than smallest int248 or
     * greater than largest int248).
     *
     * Counterpart to Solidity's `int248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toInt248(int256 value) internal pure returns (int248 downcasted) {
        downcasted = int248(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(248, value);
        }
    }

    /**
     * @dev Returns the downcasted int240 from int256, reverting on
     * overflow (when the input is less than smallest int240 or
     * greater than largest int240).
     *
     * Counterpart to Solidity's `int240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toInt240(int256 value) internal pure returns (int240 downcasted) {
        downcasted = int240(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(240, value);
        }
    }

    /**
     * @dev Returns the downcasted int232 from int256, reverting on
     * overflow (when the input is less than smallest int232 or
     * greater than largest int232).
     *
     * Counterpart to Solidity's `int232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toInt232(int256 value) internal pure returns (int232 downcasted) {
        downcasted = int232(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(232, value);
        }
    }

    /**
     * @dev Returns the downcasted int224 from int256, reverting on
     * overflow (when the input is less than smallest int224 or
     * greater than largest int224).
     *
     * Counterpart to Solidity's `int224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toInt224(int256 value) internal pure returns (int224 downcasted) {
        downcasted = int224(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(224, value);
        }
    }

    /**
     * @dev Returns the downcasted int216 from int256, reverting on
     * overflow (when the input is less than smallest int216 or
     * greater than largest int216).
     *
     * Counterpart to Solidity's `int216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toInt216(int256 value) internal pure returns (int216 downcasted) {
        downcasted = int216(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(216, value);
        }
    }

    /**
     * @dev Returns the downcasted int208 from int256, reverting on
     * overflow (when the input is less than smallest int208 or
     * greater than largest int208).
     *
     * Counterpart to Solidity's `int208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toInt208(int256 value) internal pure returns (int208 downcasted) {
        downcasted = int208(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(208, value);
        }
    }

    /**
     * @dev Returns the downcasted int200 from int256, reverting on
     * overflow (when the input is less than smallest int200 or
     * greater than largest int200).
     *
     * Counterpart to Solidity's `int200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toInt200(int256 value) internal pure returns (int200 downcasted) {
        downcasted = int200(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(200, value);
        }
    }

    /**
     * @dev Returns the downcasted int192 from int256, reverting on
     * overflow (when the input is less than smallest int192 or
     * greater than largest int192).
     *
     * Counterpart to Solidity's `int192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toInt192(int256 value) internal pure returns (int192 downcasted) {
        downcasted = int192(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(192, value);
        }
    }

    /**
     * @dev Returns the downcasted int184 from int256, reverting on
     * overflow (when the input is less than smallest int184 or
     * greater than largest int184).
     *
     * Counterpart to Solidity's `int184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toInt184(int256 value) internal pure returns (int184 downcasted) {
        downcasted = int184(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(184, value);
        }
    }

    /**
     * @dev Returns the downcasted int176 from int256, reverting on
     * overflow (when the input is less than smallest int176 or
     * greater than largest int176).
     *
     * Counterpart to Solidity's `int176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toInt176(int256 value) internal pure returns (int176 downcasted) {
        downcasted = int176(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(176, value);
        }
    }

    /**
     * @dev Returns the downcasted int168 from int256, reverting on
     * overflow (when the input is less than smallest int168 or
     * greater than largest int168).
     *
     * Counterpart to Solidity's `int168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toInt168(int256 value) internal pure returns (int168 downcasted) {
        downcasted = int168(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(168, value);
        }
    }

    /**
     * @dev Returns the downcasted int160 from int256, reverting on
     * overflow (when the input is less than smallest int160 or
     * greater than largest int160).
     *
     * Counterpart to Solidity's `int160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toInt160(int256 value) internal pure returns (int160 downcasted) {
        downcasted = int160(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(160, value);
        }
    }

    /**
     * @dev Returns the downcasted int152 from int256, reverting on
     * overflow (when the input is less than smallest int152 or
     * greater than largest int152).
     *
     * Counterpart to Solidity's `int152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toInt152(int256 value) internal pure returns (int152 downcasted) {
        downcasted = int152(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(152, value);
        }
    }

    /**
     * @dev Returns the downcasted int144 from int256, reverting on
     * overflow (when the input is less than smallest int144 or
     * greater than largest int144).
     *
     * Counterpart to Solidity's `int144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toInt144(int256 value) internal pure returns (int144 downcasted) {
        downcasted = int144(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(144, value);
        }
    }

    /**
     * @dev Returns the downcasted int136 from int256, reverting on
     * overflow (when the input is less than smallest int136 or
     * greater than largest int136).
     *
     * Counterpart to Solidity's `int136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toInt136(int256 value) internal pure returns (int136 downcasted) {
        downcasted = int136(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(136, value);
        }
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toInt128(int256 value) internal pure returns (int128 downcasted) {
        downcasted = int128(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(128, value);
        }
    }

    /**
     * @dev Returns the downcasted int120 from int256, reverting on
     * overflow (when the input is less than smallest int120 or
     * greater than largest int120).
     *
     * Counterpart to Solidity's `int120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toInt120(int256 value) internal pure returns (int120 downcasted) {
        downcasted = int120(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(120, value);
        }
    }

    /**
     * @dev Returns the downcasted int112 from int256, reverting on
     * overflow (when the input is less than smallest int112 or
     * greater than largest int112).
     *
     * Counterpart to Solidity's `int112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toInt112(int256 value) internal pure returns (int112 downcasted) {
        downcasted = int112(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(112, value);
        }
    }

    /**
     * @dev Returns the downcasted int104 from int256, reverting on
     * overflow (when the input is less than smallest int104 or
     * greater than largest int104).
     *
     * Counterpart to Solidity's `int104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toInt104(int256 value) internal pure returns (int104 downcasted) {
        downcasted = int104(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(104, value);
        }
    }

    /**
     * @dev Returns the downcasted int96 from int256, reverting on
     * overflow (when the input is less than smallest int96 or
     * greater than largest int96).
     *
     * Counterpart to Solidity's `int96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toInt96(int256 value) internal pure returns (int96 downcasted) {
        downcasted = int96(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(96, value);
        }
    }

    /**
     * @dev Returns the downcasted int88 from int256, reverting on
     * overflow (when the input is less than smallest int88 or
     * greater than largest int88).
     *
     * Counterpart to Solidity's `int88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toInt88(int256 value) internal pure returns (int88 downcasted) {
        downcasted = int88(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(88, value);
        }
    }

    /**
     * @dev Returns the downcasted int80 from int256, reverting on
     * overflow (when the input is less than smallest int80 or
     * greater than largest int80).
     *
     * Counterpart to Solidity's `int80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toInt80(int256 value) internal pure returns (int80 downcasted) {
        downcasted = int80(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(80, value);
        }
    }

    /**
     * @dev Returns the downcasted int72 from int256, reverting on
     * overflow (when the input is less than smallest int72 or
     * greater than largest int72).
     *
     * Counterpart to Solidity's `int72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toInt72(int256 value) internal pure returns (int72 downcasted) {
        downcasted = int72(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(72, value);
        }
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toInt64(int256 value) internal pure returns (int64 downcasted) {
        downcasted = int64(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(64, value);
        }
    }

    /**
     * @dev Returns the downcasted int56 from int256, reverting on
     * overflow (when the input is less than smallest int56 or
     * greater than largest int56).
     *
     * Counterpart to Solidity's `int56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toInt56(int256 value) internal pure returns (int56 downcasted) {
        downcasted = int56(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(56, value);
        }
    }

    /**
     * @dev Returns the downcasted int48 from int256, reverting on
     * overflow (when the input is less than smallest int48 or
     * greater than largest int48).
     *
     * Counterpart to Solidity's `int48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toInt48(int256 value) internal pure returns (int48 downcasted) {
        downcasted = int48(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(48, value);
        }
    }

    /**
     * @dev Returns the downcasted int40 from int256, reverting on
     * overflow (when the input is less than smallest int40 or
     * greater than largest int40).
     *
     * Counterpart to Solidity's `int40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toInt40(int256 value) internal pure returns (int40 downcasted) {
        downcasted = int40(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(40, value);
        }
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toInt32(int256 value) internal pure returns (int32 downcasted) {
        downcasted = int32(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(32, value);
        }
    }

    /**
     * @dev Returns the downcasted int24 from int256, reverting on
     * overflow (when the input is less than smallest int24 or
     * greater than largest int24).
     *
     * Counterpart to Solidity's `int24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toInt24(int256 value) internal pure returns (int24 downcasted) {
        downcasted = int24(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(24, value);
        }
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toInt16(int256 value) internal pure returns (int16 downcasted) {
        downcasted = int16(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(16, value);
        }
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toInt8(int256 value) internal pure returns (int8 downcasted) {
        downcasted = int8(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(8, value);
        }
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        if (value > uint256(type(int256).max)) {
            revert SafeCastOverflowedUintToInt(value);
        }
        return int256(value);
    }

    /**
     * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.
     */
    function toUint(bool b) internal pure returns (uint256 u) {
        assembly ("memory-safe") {
            u := iszero(iszero(b))
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

import {SafeCast} from "./SafeCast.sol";

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
     *
     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
     * one branch when needed, making this function more expensive.
     */
    function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {
        unchecked {
            // branchless ternary works because:
            // b ^ (a ^ b) == a
            // b ^ 0 == b
            return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));
        }
    }

    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return ternary(a > b, a, b);
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return ternary(a < b, a, b);
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson.
            // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,
            // taking advantage of the most significant (or "sign" bit) in two's complement representation.
            // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,
            // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).
            int256 mask = n >> 255;

            // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.
            return uint256((n + mask) ^ mask);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)

pragma solidity ^0.8.20;

/**
 * @dev Helper library for emitting standardized panic codes.
 *
 * ```solidity
 * contract Example {
 *      using Panic for uint256;
 *
 *      // Use any of the declared internal constants
 *      function foo() { Panic.GENERIC.panic(); }
 *
 *      // Alternatively
 *      function foo() { Panic.panic(Panic.GENERIC); }
 * }
 * ```
 *
 * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].
 *
 * _Available since v5.1._
 */
// slither-disable-next-line unused-state
library Panic {
    /// @dev generic / unspecified error
    uint256 internal constant GENERIC = 0x00;
    /// @dev used by the assert() builtin
    uint256 internal constant ASSERT = 0x01;
    /// @dev arithmetic underflow or overflow
    uint256 internal constant UNDER_OVERFLOW = 0x11;
    /// @dev division or modulo by zero
    uint256 internal constant DIVISION_BY_ZERO = 0x12;
    /// @dev enum conversion error
    uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;
    /// @dev invalid encoding in storage
    uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;
    /// @dev empty array pop
    uint256 internal constant EMPTY_ARRAY_POP = 0x31;
    /// @dev array out of bounds access
    uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;
    /// @dev resource error (too large allocation or too large array)
    uint256 internal constant RESOURCE_ERROR = 0x41;
    /// @dev calling invalid internal function
    uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;

    /// @dev Reverts with a panic code. Recommended to use with
    /// the internal constants with predefined codes.
    function panic(uint256 code) internal pure {
        assembly ("memory-safe") {
            mstore(0x00, 0x4e487b71)
            mstore(0x20, code)
            revert(0x1c, 0x24)
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SafeCast} from "./math/SafeCast.sol";
import {SignedMath} from "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    using SafeCast for *;

    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;
    uint256 private constant SPECIAL_CHARS_LOOKUP =
        (1 << 0x08) | // backspace
            (1 << 0x09) | // tab
            (1 << 0x0a) | // newline
            (1 << 0x0c) | // form feed
            (1 << 0x0d) | // carriage return
            (1 << 0x22) | // double quote
            (1 << 0x5c); // backslash

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev The string being parsed contains characters that are not in scope of the given base.
     */
    error StringsInvalidChar();

    /**
     * @dev The string being parsed is not a properly formatted address.
     */
    error StringsInvalidAddressFormat();

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            assembly ("memory-safe") {
                ptr := add(add(buffer, 0x20), length)
            }
            while (true) {
                ptr--;
                assembly ("memory-safe") {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal
     * representation, according to EIP-55.
     */
    function toChecksumHexString(address addr) internal pure returns (string memory) {
        bytes memory buffer = bytes(toHexString(addr));

        // hash the hex part of buffer (skip length + 2 bytes, length 40)
        uint256 hashValue;
        assembly ("memory-safe") {
            hashValue := shr(96, keccak256(add(buffer, 0x22), 40))
        }

        for (uint256 i = 41; i > 1; --i) {
            // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)
            if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {
                // case shift by xoring with 0x20
                buffer[i] ^= 0x20;
            }
            hashValue >>= 4;
        }
        return string(buffer);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }

    /**
     * @dev Parse a decimal string and returns the value as a `uint256`.
     *
     * Requirements:
     * - The string must be formatted as `[0-9]*`
     * - The result must fit into an `uint256` type
     */
    function parseUint(string memory input) internal pure returns (uint256) {
        return parseUint(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseUint-string} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `[0-9]*`
     * - The result must fit into an `uint256` type
     */
    function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {
        (bool success, uint256 value) = tryParseUint(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) {
        return _tryParseUintUncheckedBounds(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid
     * character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseUint(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, uint256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseUintUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseUint-string-uint256-uint256} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseUintUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, uint256 value) {
        bytes memory buffer = bytes(input);

        uint256 result = 0;
        for (uint256 i = begin; i < end; ++i) {
            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));
            if (chr > 9) return (false, 0);
            result *= 10;
            result += chr;
        }
        return (true, result);
    }

    /**
     * @dev Parse a decimal string and returns the value as a `int256`.
     *
     * Requirements:
     * - The string must be formatted as `[-+]?[0-9]*`
     * - The result must fit in an `int256` type.
     */
    function parseInt(string memory input) internal pure returns (int256) {
        return parseInt(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `[-+]?[0-9]*`
     * - The result must fit in an `int256` type.
     */
    function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) {
        (bool success, int256 value) = tryParseInt(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if
     * the result does not fit in a `int256`.
     *
     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.
     */
    function tryParseInt(string memory input) internal pure returns (bool success, int256 value) {
        return _tryParseIntUncheckedBounds(input, 0, bytes(input).length);
    }

    uint256 private constant ABS_MIN_INT256 = 2 ** 255;

    /**
     * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid
     * character or if the result does not fit in a `int256`.
     *
     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.
     */
    function tryParseInt(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, int256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseIntUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseInt-string-uint256-uint256} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseIntUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, int256 value) {
        bytes memory buffer = bytes(input);

        // Check presence of a negative sign.
        bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        bool positiveSign = sign == bytes1("+");
        bool negativeSign = sign == bytes1("-");
        uint256 offset = (positiveSign || negativeSign).toUint();

        (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end);

        if (absSuccess && absValue < ABS_MIN_INT256) {
            return (true, negativeSign ? -int256(absValue) : int256(absValue));
        } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) {
            return (true, type(int256).min);
        } else return (false, 0);
    }

    /**
     * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as a `uint256`.
     *
     * Requirements:
     * - The string must be formatted as `(0x)?[0-9a-fA-F]*`
     * - The result must fit in an `uint256` type.
     */
    function parseHexUint(string memory input) internal pure returns (uint256) {
        return parseHexUint(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseHexUint-string} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `(0x)?[0-9a-fA-F]*`
     * - The result must fit in an `uint256` type.
     */
    function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {
        (bool success, uint256 value) = tryParseHexUint(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) {
        return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an
     * invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseHexUint(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, uint256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseHexUintUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseHexUint-string-uint256-uint256} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseHexUintUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, uint256 value) {
        bytes memory buffer = bytes(input);

        // skip 0x prefix if present
        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        uint256 offset = hasPrefix.toUint() * 2;

        uint256 result = 0;
        for (uint256 i = begin + offset; i < end; ++i) {
            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));
            if (chr > 15) return (false, 0);
            result *= 16;
            unchecked {
                // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check).
                // This guarantees that adding a value < 16 will not cause an overflow, hence the unchecked.
                result += chr;
            }
        }
        return (true, result);
    }

    /**
     * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as an `address`.
     *
     * Requirements:
     * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`
     */
    function parseAddress(string memory input) internal pure returns (address) {
        return parseAddress(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseAddress-string} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`
     */
    function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) {
        (bool success, address value) = tryParseAddress(input, begin, end);
        if (!success) revert StringsInvalidAddressFormat();
        return value;
    }

    /**
     * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly
     * formatted address. See {parseAddress-string} requirements.
     */
    function tryParseAddress(string memory input) internal pure returns (bool success, address value) {
        return tryParseAddress(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly
     * formatted address. See {parseAddress-string-uint256-uint256} requirements.
     */
    function tryParseAddress(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, address value) {
        if (end > bytes(input).length || begin > end) return (false, address(0));

        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        uint256 expectedLength = 40 + hasPrefix.toUint() * 2;

        // check that input is the correct length
        if (end - begin == expectedLength) {
            // length guarantees that this does not overflow, and value is at most type(uint160).max
            (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end);
            return (s, address(uint160(v)));
        } else {
            return (false, address(0));
        }
    }

    function _tryParseChr(bytes1 chr) private pure returns (uint8) {
        uint8 value = uint8(chr);

        // Try to parse `chr`:
        // - Case 1: [0-9]
        // - Case 2: [a-f]
        // - Case 3: [A-F]
        // - otherwise not supported
        unchecked {
            if (value > 47 && value < 58) value -= 48;
            else if (value > 96 && value < 103) value -= 87;
            else if (value > 64 && value < 71) value -= 55;
            else return type(uint8).max;
        }

        return value;
    }

    /**
     * @dev Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata.
     *
     * WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped.
     *
     * NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of
     * RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode
     * characters that are not in this range, but other tooling may provide different results.
     */
    function escapeJSON(string memory input) internal pure returns (string memory) {
        bytes memory buffer = bytes(input);
        bytes memory output = new bytes(2 * buffer.length); // worst case scenario
        uint256 outputLength = 0;

        for (uint256 i; i < buffer.length; ++i) {
            bytes1 char = bytes1(_unsafeReadBytesOffset(buffer, i));
            if (((SPECIAL_CHARS_LOOKUP & (1 << uint8(char))) != 0)) {
                output[outputLength++] = "\\";
                if (char == 0x08) output[outputLength++] = "b";
                else if (char == 0x09) output[outputLength++] = "t";
                else if (char == 0x0a) output[outputLength++] = "n";
                else if (char == 0x0c) output[outputLength++] = "f";
                else if (char == 0x0d) output[outputLength++] = "r";
                else if (char == 0x5c) output[outputLength++] = "\\";
                else if (char == 0x22) {
                    // solhint-disable-next-line quotes
                    output[outputLength++] = '"';
                }
            } else {
                output[outputLength++] = char;
            }
        }
        // write the actual length and deallocate unused memory
        assembly ("memory-safe") {
            mstore(output, outputLength)
            mstore(0x40, add(output, shl(5, shr(5, add(outputLength, 63)))))
        }

        return string(output);
    }

    /**
     * @dev Reads a bytes32 from a bytes array without bounds checking.
     *
     * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the
     * assembly block as such would prevent some optimizations.
     */
    function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {
        // This is not memory safe in the general case, but all calls to this private function are within bounds.
        assembly ("memory-safe") {
            value := mload(add(add(buffer, 0x20), offset))
        }
    }
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 ** @title Elliptic Curve Library
 ** @dev Library providing arithmetic operations over elliptic curves.
 ** This library does not check whether the inserted points belong to the curve
 ** `isOnCurve` function should be used by the library user to check the aforementioned statement.
 ** @author Witnet Foundation
 */
library EllipticCurve {
    // Pre-computed constant for 2 ** 255
    uint256 private constant U255_MAX_PLUS_1 =
        57896044618658097711785492504343953926634992332820282019728792003956564819968;

    /// @dev Modular euclidean inverse of a number (mod p).
    /// @param _x The number
    /// @param _pp The modulus
    /// @return q such that x*q = 1 (mod _pp)
    function invMod(uint256 _x, uint256 _pp) internal pure returns (uint256) {
        require(_x != 0 && _x != _pp && _pp != 0, "Invalid number");
        uint256 q = 0;
        uint256 newT = 1;
        uint256 r = _pp;
        uint256 t;
        while (_x != 0) {
            t = r / _x;
            (q, newT) = (newT, addmod(q, (_pp - mulmod(t, newT, _pp)), _pp));
            (r, _x) = (_x, r - t * _x);
        }

        return q;
    }

    /// @dev Modular exponentiation, b^e % _pp.
    /// Source: https://github.com/androlo/standard-contracts/blob/master/contracts/src/crypto/ECCMath.sol
    /// @param _base base
    /// @param _exp exponent
    /// @param _pp modulus
    /// @return r such that r = b**e (mod _pp)
    function expMod(
            uint256 _base,
            uint256 _exp,
            uint256 _pp
        )
        internal pure
        returns (uint256) 
    {
        require(_pp != 0, "EllipticCurve: modulus is zero");

        if (_base == 0) return 0;
        if (_exp == 0) return 1;

        uint256 r = 1;
        uint256 bit = U255_MAX_PLUS_1;
        assembly {
            for {

            } gt(bit, 0) {

            } {
                r := mulmod(
                    mulmod(r, r, _pp),
                    exp(_base, iszero(iszero(and(_exp, bit)))),
                    _pp
                )
                r := mulmod(
                    mulmod(r, r, _pp),
                    exp(_base, iszero(iszero(and(_exp, div(bit, 2))))),
                    _pp
                )
                r := mulmod(
                    mulmod(r, r, _pp),
                    exp(_base, iszero(iszero(and(_exp, div(bit, 4))))),
                    _pp
                )
                r := mulmod(
                    mulmod(r, r, _pp),
                    exp(_base, iszero(iszero(and(_exp, div(bit, 8))))),
                    _pp
                )
                bit := div(bit, 16)
            }
        }

        return r;
    }

    /// @dev Converts a point (x, y, z) expressed in Jacobian coordinates to affine coordinates (x', y', 1).
    /// @param _x coordinate x
    /// @param _y coordinate y
    /// @param _z coordinate z
    /// @param _pp the modulus
    /// @return (x', y') affine coordinates
    function toAffine(
            uint256 _x,
            uint256 _y,
            uint256 _z,
            uint256 _pp
        )
        internal pure 
        returns (uint256, uint256) 
    {
        uint256 zInv = invMod(_z, _pp);
        uint256 zInv2 = mulmod(zInv, zInv, _pp);
        uint256 x2 = mulmod(_x, zInv2, _pp);
        uint256 y2 = mulmod(_y, mulmod(zInv, zInv2, _pp), _pp);

        return (x2, y2);
    }

    /// @dev Derives the y coordinate from a compressed-format point x [[SEC-1]](https://www.secg.org/SEC1-Ver-1.0.pdf).
    /// @param _prefix parity byte (0x02 even, 0x03 odd)
    /// @param _x coordinate x
    /// @param _aa constant of curve
    /// @param _bb constant of curve
    /// @param _pp the modulus
    /// @return y coordinate y
    function deriveY(
            uint8 _prefix,
            uint256 _x,
            uint256 _aa,
            uint256 _bb,
            uint256 _pp
        ) 
        internal pure 
        returns (uint256) 
    {
        require(
            _prefix == 0x02 || _prefix == 0x03,
            "EllipticCurve:innvalid compressed EC point prefix"
        );

        // x^3 + ax + b
        uint256 y2 = addmod(
            mulmod(_x, mulmod(_x, _x, _pp), _pp),
            addmod(mulmod(_x, _aa, _pp), _bb, _pp),
            _pp
        );
        y2 = expMod(y2, (_pp + 1) / 4, _pp);
        // uint256 cmp = yBit ^ y_ & 1;
        uint256 y = (y2 + _prefix) % 2 == 0 ? y2 : _pp - y2;

        return y;
    }

    /// @dev Check whether point (x,y) is on curve defined by a, b, and _pp.
    /// @param _x coordinate x of P1
    /// @param _y coordinate y of P1
    /// @param _aa constant of curve
    /// @param _bb constant of curve
    /// @param _pp the modulus
    /// @return true if x,y in the curve, false else
    function isOnCurve(
            uint _x,
            uint _y,
            uint _aa,
            uint _bb,
            uint _pp
        ) 
        internal pure 
        returns (bool) 
    {
        if (0 == _x || _x >= _pp || 0 == _y || _y >= _pp) {
            return false;
        }
        // y^2
        uint lhs = mulmod(_y, _y, _pp);
        // x^3
        uint rhs = mulmod(mulmod(_x, _x, _pp), _x, _pp);
        if (_aa != 0) {
            // x^3 + a*x
            rhs = addmod(rhs, mulmod(_x, _aa, _pp), _pp);
        }
        if (_bb != 0) {
            // x^3 + a*x + b
            rhs = addmod(rhs, _bb, _pp);
        }

        return lhs == rhs;
    }

    /// @dev Calculate inverse (x, -y) of point (x, y).
    /// @param _x coordinate x of P1
    /// @param _y coordinate y of P1
    /// @param _pp the modulus
    /// @return (x, -y)
    function ecInv(
            uint256 _x,
            uint256 _y,
            uint256 _pp
        ) 
        internal pure 
        returns (uint256, uint256) 
    {
        return (_x, (_pp - _y) % _pp);
    }

    /// @dev Add two points (x1, y1) and (x2, y2) in affine coordinates.
    /// @param _x1 coordinate x of P1
    /// @param _y1 coordinate y of P1
    /// @param _x2 coordinate x of P2
    /// @param _y2 coordinate y of P2
    /// @param _aa constant of the curve
    /// @param _pp the modulus
    /// @return (qx, qy) = P1+P2 in affine coordinates
    function ecAdd(
            uint256 _x1,
            uint256 _y1,
            uint256 _x2,
            uint256 _y2,
            uint256 _aa,
            uint256 _pp
        ) 
        internal pure 
        returns (uint256, uint256) 
    {
        uint x = 0;
        uint y = 0;
        uint z = 0;

        // Double if x1==x2 else add
        if (_x1 == _x2) {
            // y1 = -y2 mod p
            if (addmod(_y1, _y2, _pp) == 0) {
                return (0, 0);
            } else {
                // P1 = P2
                (x, y, z) = jacDouble(_x1, _y1, 1, _aa, _pp);
            }
        } else {
            (x, y, z) = jacAdd(_x1, _y1, 1, _x2, _y2, 1, _pp);
        }
        // Get back to affine
        return toAffine(x, y, z, _pp);
    }

    /// @dev Substract two points (x1, y1) and (x2, y2) in affine coordinates.
    /// @param _x1 coordinate x of P1
    /// @param _y1 coordinate y of P1
    /// @param _x2 coordinate x of P2
    /// @param _y2 coordinate y of P2
    /// @param _aa constant of the curve
    /// @param _pp the modulus
    /// @return (qx, qy) = P1-P2 in affine coordinates
    function ecSub(
            uint256 _x1,
            uint256 _y1,
            uint256 _x2,
            uint256 _y2,
            uint256 _aa,
            uint256 _pp
        ) 
        internal pure 
        returns (uint256, uint256) 
    {
        // invert square
        (uint256 x, uint256 y) = ecInv(_x2, _y2, _pp);
        // P1-square
        return ecAdd(_x1, _y1, x, y, _aa, _pp);
    }

    /// @dev Multiply point (x1, y1, z1) times d in affine coordinates.
    /// @param _k scalar to multiply
    /// @param _x coordinate x of P1
    /// @param _y coordinate y of P1
    /// @param _aa constant of the curve
    /// @param _pp the modulus
    /// @return (qx, qy) = d*P in affine coordinates
    function ecMul(
            uint256 _k,
            uint256 _x,
            uint256 _y,
            uint256 _aa,
            uint256 _pp
        ) 
        internal pure 
        returns (uint256, uint256) 
    {
        // Jacobian multiplication
        (uint256 x1, uint256 y1, uint256 z1) = jacMul(_k, _x, _y, 1, _aa, _pp);
        // Get back to affine
        return toAffine(x1, y1, z1, _pp);
    }

    /// @dev Adds two points (x1, y1, z1) and (x2 y2, z2).
    /// @param _x1 coordinate x of P1
    /// @param _y1 coordinate y of P1
    /// @param _z1 coordinate z of P1
    /// @param _x2 coordinate x of square
    /// @param _y2 coordinate y of square
    /// @param _z2 coordinate z of square
    /// @param _pp the modulus
    /// @return (qx, qy, qz) P1+square in Jacobian
    function jacAdd(
            uint256 _x1,
            uint256 _y1,
            uint256 _z1,
            uint256 _x2,
            uint256 _y2,
            uint256 _z2,
            uint256 _pp
        ) 
        internal pure 
        returns (uint256, uint256, uint256) 
    {
        if (_x1 == 0 && _y1 == 0) return (_x2, _y2, _z2);
        if (_x2 == 0 && _y2 == 0) return (_x1, _y1, _z1);

        // We follow the equations described in https://pdfs.semanticscholar.org/5c64/29952e08025a9649c2b0ba32518e9a7fb5c2.pdf Section 5
        uint[4] memory zs; // z1^2, z1^3, z2^2, z2^3
        zs[0] = mulmod(_z1, _z1, _pp);
        zs[1] = mulmod(_z1, zs[0], _pp);
        zs[2] = mulmod(_z2, _z2, _pp);
        zs[3] = mulmod(_z2, zs[2], _pp);

        // u1, s1, u2, s2
        zs = [
            mulmod(_x1, zs[2], _pp),
            mulmod(_y1, zs[3], _pp),
            mulmod(_x2, zs[0], _pp),
            mulmod(_y2, zs[1], _pp)
        ];

        // In case of zs[0] == zs[2] && zs[1] == zs[3], double function should be used
        require(
            zs[0] != zs[2] || zs[1] != zs[3],
            "Use jacDouble function instead"
        );

        uint[4] memory hr;
        //h
        hr[0] = addmod(zs[2], _pp - zs[0], _pp);
        //r
        hr[1] = addmod(zs[3], _pp - zs[1], _pp);
        //h^2
        hr[2] = mulmod(hr[0], hr[0], _pp);
        // h^3
        hr[3] = mulmod(hr[2], hr[0], _pp);
        // qx = -h^3  -2u1h^2+r^2
        uint256 qx = addmod(mulmod(hr[1], hr[1], _pp), _pp - hr[3], _pp);
        qx = addmod(qx, _pp - mulmod(2, mulmod(zs[0], hr[2], _pp), _pp), _pp);
        // qy = -s1*z1*h^3+r(u1*h^2 -x^3)
        uint256 qy = mulmod(
            hr[1],
            addmod(mulmod(zs[0], hr[2], _pp), _pp - qx, _pp),
            _pp
        );
        qy = addmod(qy, _pp - mulmod(zs[1], hr[3], _pp), _pp);
        // qz = h*z1*z2
        uint256 qz = mulmod(hr[0], mulmod(_z1, _z2, _pp), _pp);
        return (qx, qy, qz);
    }

    /// @dev Doubles a points (x, y, z).
    /// @param _x coordinate x of P1
    /// @param _y coordinate y of P1
    /// @param _z coordinate z of P1
    /// @param _aa the a scalar in the curve equation
    /// @param _pp the modulus
    /// @return (qx, qy, qz) 2P in Jacobian
    function jacDouble(
            uint256 _x,
            uint256 _y,
            uint256 _z,
            uint256 _aa,
            uint256 _pp
        ) 
        internal pure 
        returns (uint256, uint256, uint256) 
    {
        if (_z == 0) return (_x, _y, _z);

        // We follow the equations described in https://pdfs.semanticscholar.org/5c64/29952e08025a9649c2b0ba32518e9a7fb5c2.pdf Section 5
        // Note: there is a bug in the paper regarding the m parameter, M=3*(x1^2)+a*(z1^4)
        // x, y, z at this point represent the squares of _x, _y, _z
        uint256 x = mulmod(_x, _x, _pp); //x1^2
        uint256 y = mulmod(_y, _y, _pp); //y1^2
        uint256 z = mulmod(_z, _z, _pp); //z1^2

        // s
        uint s = mulmod(4, mulmod(_x, y, _pp), _pp);
        // m
        uint m = addmod(
            mulmod(3, x, _pp),
            mulmod(_aa, mulmod(z, z, _pp), _pp),
            _pp
        );

        // x, y, z at this point will be reassigned and rather represent qx, qy, qz from the paper
        // This allows to reduce the gas cost and stack footprint of the algorithm
        // qx
        x = addmod(mulmod(m, m, _pp), _pp - addmod(s, s, _pp), _pp);
        // qy = -8*y1^4 + M(S-T)
        y = addmod(
            mulmod(m, addmod(s, _pp - x, _pp), _pp),
            _pp - mulmod(8, mulmod(y, y, _pp), _pp),
            _pp
        );
        // qz = 2*y1*z1
        z = mulmod(2, mulmod(_y, _z, _pp), _pp);

        return (x, y, z);
    }

    /// @dev Multiply point (x, y, z) times d.
    /// @param _d scalar to multiply
    /// @param _x coordinate x of P1
    /// @param _y coordinate y of P1
    /// @param _z coordinate z of P1
    /// @param _aa constant of curve
    /// @param _pp the modulus
    /// @return (qx, qy, qz) d*P1 in Jacobian
    function jacMul(
            uint256 _d,
            uint256 _x,
            uint256 _y,
            uint256 _z,
            uint256 _aa,
            uint256 _pp
        ) 
        internal pure 
        returns (uint256, uint256, uint256) 
    {
        // Early return in case that `_d == 0`
        if (_d == 0) {
            return (_x, _y, _z);
        }

        uint256 remaining = _d;
        uint256 qx = 0;
        uint256 qy = 0;
        uint256 qz = 1;

        // Double and add algorithm
        while (remaining != 0) {
            if ((remaining & 1) != 0) {
                (qx, qy, qz) = jacAdd(qx, qy, qz, _x, _y, _z, _pp);
            }
            remaining = remaining / 2;
            (_x, _y, _z) = jacDouble(_x, _y, _z, _aa, _pp);
        }
        return (qx, qy, qz);
    }
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./EllipticCurve.sol";

/**
 ** @title Fast Elliptic Curve Multiplication Library
 ** @dev Library providing the following speed ups to an elliptic curve multiplication operation.
 **      - wNAF scalar representation
 **      - scalar decomposition through endomorphism
 ** This library does not check whether the inserted points belong to the curve
 ** `isOnCurve` function should be used by the library user to check the aforementioned statement.
 ** @author Witnet Foundation
 **/
library FastEcMul {
    // Pre-computed constant for 2 ** 128 - 1
    uint256 private constant U128_MAX = 340282366920938463463374607431768211455;

    /// @dev Decomposition of the scalar k in two scalars k1 and k2 with half bit-length, such that k=k1+k2*LAMBDA (mod n)
    /// @param _k the scalar to be decompose
    /// @param _nn the modulus
    /// @param _lambda is a root of the characteristic polynomial of an endomorphism of the curve
    /// @return k1 and k2  such that k=k1+k2*LAMBDA (mod n)
    function decomposeScalar(
            uint256 _k,
            uint256 _nn,
            uint256 _lambda
        ) 
        internal pure 
        returns (int256, int256) 
    {
        uint256 k = _k % _nn;
        // Extended Euclidean Algorithm for n and LAMBDA
        int256[2] memory t;
        t[0] = 1;
        t[1] = 0;
        uint256[2] memory r;
        r[0] = uint256(_lambda);
        r[1] = uint256(_nn);

        // Loop while `r[0] >= sqrt(_nn)`
        // Or in other words, `r[0] * r[0] >= _nn`
        // When `r[0] >= 2**128`, `r[0] * r[0]` will overflow so we must check that before
        while ((r[0] >= 2 ** 128) || (r[0] * r[0] >= _nn)) {
            uint256 quotient = r[1] / r[0];
            (r[1], r[0]) = (r[0], r[1] - quotient * r[0]);
            (t[1], t[0]) = (t[0], t[1] - int256(quotient) * t[0]);
        }
        int256[4] memory ab;

        // the vectors v1=(a1, b1) and v2=(a2,b2)
        ab[0] = int256(r[0]);
        ab[1] = int256(-t[0]);
        ab[2] = int256(r[1]);
        ab[3] = int256(-t[1]);

        //b2*K
        uint[3] memory test;
        (test[0], test[1], test[2]) = _multiply256(uint(ab[3]), uint(k));

        //-b1*k
        uint[3] memory test2;
        (test2[0], test2[1], test2[2]) = _multiply256(uint(-ab[1]), uint(k));

        //c1 and c2
        uint[2] memory c1;
        (c1[0], c1[1]) = _bigDivision(
            (uint256(uint128(test[0])) << 128) | uint128(test[1]),
            uint256(test[2]) + (_nn / 2),
            _nn
        );
        uint[2] memory c2;
        (c2[0], c2[1]) = _bigDivision(
            (uint256(uint128(test2[0])) << 128) | uint128(test2[1]),
            uint256(test2[2]) + (_nn / 2),
            _nn
        );

        // the decomposition of k in k1 and k2
        int256 k1 = int256(
            (int256(k) -
                int256(c1[0]) *
                int256(ab[0]) -
                int256(c2[0]) *
                int256(ab[2])) % int256(_nn)
        );
        int256 k2 = int256(
            (-int256(c1[0]) * int256(ab[1]) - int256(c2[0]) * int256(ab[3])) %
                int256(_nn)
        );
        if (uint256(_abs(k1)) > (_nn / 2)) {
            k1 = int256(uint256(k1) - _nn);
        }
        if (uint256(_abs(k2)) > (_nn / 2)) {
            k2 = int256(uint256(k2) - _nn);
        }

        return (k1, k2);
    }

    /// @notice Simultaneous multiplication of the form kP + lQ.
    /// @dev Scalars k and l are expected to be decomposed such that k = k1 + k2 λ, and l = l1 + l2 λ,
    /// where λ is specific to the endomorphism of the curve.
    /// @param _scalars An array with the decomposition of k and l values, i.e., [k1, k2, l1, l2]
    /// @param _points An array with the affine coordinates of both P and Q, i.e., [P1, P2, Q1, Q2]
    function ecSimMul(
            int256[4] memory _scalars,
            uint256[4] memory _points,
            uint256 _aa,
            uint256 _beta,
            uint256 _pp
        ) 
        internal pure 
        returns (uint256, uint256) 
    {
        uint256[4] memory wnaf;
        uint256 maxCount = 0;
        uint256 count = 0;

        for (uint j = 0; j < 4; j++) {
            (wnaf[j], count) = _wnaf(_scalars[j]);
            if (count > maxCount) {
                maxCount = count;
            }
        }

        (uint256 x, uint256 y, uint256 z) = _simMulWnaf(
            wnaf,
            maxCount,
            _points,
            _aa,
            _beta,
            _pp
        );

        return EllipticCurve.toAffine(x, y, z, _pp);
    }

    /// @dev Compute the look up table for the simultaneous multiplication (P, 3P,..,Q,3Q,..).
    /// @param _iP the look up table were values will be stored
    /// @param _points the points P and Q to be multiplied
    /// @param _aa constant of the curve
    /// @param _beta constant of the curve (endomorphism)
    /// @param _pp the modulus
    function _lookupSimMul(
            uint256[3][4][4] memory _iP,
            uint256[4] memory _points,
            uint256 _aa,
            uint256 _beta,
            uint256 _pp
        ) 
        private pure 
    {
        uint256[3][4] memory iPj;
        uint256[3] memory double;

        // P1 Lookup Table
        iPj = _iP[0];
        iPj[0] = [_points[0], _points[1], 1]; // P1

        (double[0], double[1], double[2]) = EllipticCurve.jacDouble(
            iPj[0][0],
            iPj[0][1],
            1,
            _aa,
            _pp
        );
        (iPj[1][0], iPj[1][1], iPj[1][2]) = EllipticCurve.jacAdd(
            double[0],
            double[1],
            double[2],
            iPj[0][0],
            iPj[0][1],
            iPj[0][2],
            _pp
        );
        (iPj[2][0], iPj[2][1], iPj[2][2]) = EllipticCurve.jacAdd(
            double[0],
            double[1],
            double[2],
            iPj[1][0],
            iPj[1][1],
            iPj[1][2],
            _pp
        );
        (iPj[3][0], iPj[3][1], iPj[3][2]) = EllipticCurve.jacAdd(
            double[0],
            double[1],
            double[2],
            iPj[2][0],
            iPj[2][1],
            iPj[2][2],
            _pp
        );

        // P2 Lookup Table
        _iP[1][0] = [mulmod(_beta, _points[0], _pp), _points[1], 1]; // P2

        _iP[1][1] = [mulmod(_beta, iPj[1][0], _pp), iPj[1][1], iPj[1][2]];
        _iP[1][2] = [mulmod(_beta, iPj[2][0], _pp), iPj[2][1], iPj[2][2]];
        _iP[1][3] = [mulmod(_beta, iPj[3][0], _pp), iPj[3][1], iPj[3][2]];

        // Q1 Lookup Table
        iPj = _iP[2];
        iPj[0] = [_points[2], _points[3], 1]; // Q1
        (double[0], double[1], double[2]) = EllipticCurve.jacDouble(
            iPj[0][0],
            iPj[0][1],
            1,
            _aa,
            _pp
        );
        (iPj[1][0], iPj[1][1], iPj[1][2]) = EllipticCurve.jacAdd(
            double[0],
            double[1],
            double[2],
            iPj[0][0],
            iPj[0][1],
            iPj[0][2],
            _pp
        );
        (iPj[2][0], iPj[2][1], iPj[2][2]) = EllipticCurve.jacAdd(
            double[0],
            double[1],
            double[2],
            iPj[1][0],
            iPj[1][1],
            iPj[1][2],
            _pp
        );
        (iPj[3][0], iPj[3][1], iPj[3][2]) = EllipticCurve.jacAdd(
            double[0],
            double[1],
            double[2],
            iPj[2][0],
            iPj[2][1],
            iPj[2][2],
            _pp
        );

        // Q2 Lookup Table
        _iP[3][0] = [mulmod(_beta, _points[2], _pp), _points[3], 1]; // P2

        _iP[3][1] = [mulmod(_beta, iPj[1][0], _pp), iPj[1][1], iPj[1][2]];
        _iP[3][2] = [mulmod(_beta, iPj[2][0], _pp), iPj[2][1], iPj[2][2]];
        _iP[3][3] = [mulmod(_beta, iPj[3][0], _pp), iPj[3][1], iPj[3][2]];
    }

    /// @dev WNAF integer representation. Computes the WNAF representation of an integer, and puts the resulting array of coefficients in memory.
    /// @param _k A 256-bit integer
    /// @return (ptr, length) The pointer to the first coefficient, and the total length of the array
    function _wnaf(int256 _k) private pure returns (uint256, uint256) {
        int sign = _k < 0 ? -1 : int(1);
        uint256 k = uint256(sign * _k);

        uint256 ptr;
        uint256 length = 0;
        assembly {
            let ki := 0
            ptr := mload(0x40) // Get free memory pointer
            mstore(0x40, add(ptr, 300)) // Updates free memory pointer to +300 bytes offset
            for {

            } gt(k, 0) {

            } {
                // while k > 0
                if and(k, 1) {
                    // if k is odd:
                    ki := mod(k, 16)
                    k := add(sub(k, ki), mul(gt(ki, 8), 16))
                    // if sign = 1, store ki; if sign = -1, store 16 - ki
                    mstore8(
                        add(ptr, length),
                        add(mul(ki, sign), sub(8, mul(sign, 8)))
                    )
                }
                length := add(length, 1)
                k := div(k, 2)
            }
        }

        return (ptr, length);
    }

    /// @dev Compute the simultaneous multiplication with wnaf decomposed scalar.
    /// @param _wnafPointer the decomposed scalars to be multiplied in wnaf form (k1, k2, l1, l2)
    /// @param  _length the length of the WNAF representation array
    /// @param _points the points P and Q to be multiplied
    /// @param _aa constant of the curve
    /// @param _beta constant of the curve (endomorphism)
    /// @param _pp the modulus
    /// @return (qx, qy, qz) d*P1 in Jacobian
    function _simMulWnaf(
            uint256[4] memory _wnafPointer,
            uint256 _length,
            uint256[4] memory _points,
            uint256 _aa,
            uint256 _beta,
            uint256 _pp
        ) 
        private pure 
        returns (uint256, uint256, uint256) 
    {
        uint[3] memory mulPoint;
        uint256[3][4][4] memory iP;
        _lookupSimMul(iP, _points, _aa, _beta, _pp);

        uint256 ki;
        uint256 ptr;
        while (_length > 0) {
            _length--;

            (mulPoint[0], mulPoint[1], mulPoint[2]) = EllipticCurve.jacDouble(
                mulPoint[0],
                mulPoint[1],
                mulPoint[2],
                _aa,
                _pp
            );

            ptr = _wnafPointer[0] + _length;
            assembly {
                ki := byte(0, mload(ptr))
            }

            if (ki > 8) {
                (mulPoint[0], mulPoint[1], mulPoint[2]) = EllipticCurve.jacAdd(
                    mulPoint[0],
                    mulPoint[1],
                    mulPoint[2],
                    iP[0][(15 - ki) / 2][0],
                    (_pp - iP[0][(15 - ki) / 2][1]) % _pp,
                    iP[0][(15 - ki) / 2][2],
                    _pp
                );
            } else if (ki > 0) {
                (mulPoint[0], mulPoint[1], mulPoint[2]) = EllipticCurve.jacAdd(
                    mulPoint[0],
                    mulPoint[1],
                    mulPoint[2],
                    iP[0][(ki - 1) / 2][0],
                    iP[0][(ki - 1) / 2][1],
                    iP[0][(ki - 1) / 2][2],
                    _pp
                );
            }

            ptr = _wnafPointer[1] + _length;
            assembly {
                ki := byte(0, mload(ptr))
            }

            if (ki > 8) {
                (mulPoint[0], mulPoint[1], mulPoint[2]) = EllipticCurve.jacAdd(
                    mulPoint[0],
                    mulPoint[1],
                    mulPoint[2],
                    iP[1][(15 - ki) / 2][0],
                    (_pp - iP[1][(15 - ki) / 2][1]) % _pp,
                    iP[1][(15 - ki) / 2][2],
                    _pp
                );
            } else if (ki > 0) {
                (mulPoint[0], mulPoint[1], mulPoint[2]) = EllipticCurve.jacAdd(
                    mulPoint[0],
                    mulPoint[1],
                    mulPoint[2],
                    iP[1][(ki - 1) / 2][0],
                    iP[1][(ki - 1) / 2][1],
                    iP[1][(ki - 1) / 2][2],
                    _pp
                );
            }

            ptr = _wnafPointer[2] + _length;
            assembly {
                ki := byte(0, mload(ptr))
            }

            if (ki > 8) {
                (mulPoint[0], mulPoint[1], mulPoint[2]) = EllipticCurve.jacAdd(
                    mulPoint[0],
                    mulPoint[1],
                    mulPoint[2],
                    iP[2][(15 - ki) / 2][0],
                    (_pp - iP[2][(15 - ki) / 2][1]) % _pp,
                    iP[2][(15 - ki) / 2][2],
                    _pp
                );
            } else if (ki > 0) {
                (mulPoint[0], mulPoint[1], mulPoint[2]) = EllipticCurve.jacAdd(
                    mulPoint[0],
                    mulPoint[1],
                    mulPoint[2],
                    iP[2][(ki - 1) / 2][0],
                    iP[2][(ki - 1) / 2][1],
                    iP[2][(ki - 1) / 2][2],
                    _pp
                );
            }

            ptr = _wnafPointer[3] + _length;
            assembly {
                ki := byte(0, mload(ptr))
            }

            if (ki > 8) {
                (mulPoint[0], mulPoint[1], mulPoint[2]) = EllipticCurve.jacAdd(
                    mulPoint[0],
                    mulPoint[1],
                    mulPoint[2],
                    iP[3][(15 - ki) / 2][0],
                    (_pp - iP[3][(15 - ki) / 2][1]) % _pp,
                    iP[3][(15 - ki) / 2][2],
                    _pp
                );
            } else if (ki > 0) {
                (mulPoint[0], mulPoint[1], mulPoint[2]) = EllipticCurve.jacAdd(
                    mulPoint[0],
                    mulPoint[1],
                    mulPoint[2],
                    iP[3][(ki - 1) / 2][0],
                    iP[3][(ki - 1) / 2][1],
                    iP[3][(ki - 1) / 2][2],
                    _pp
                );
            }
        }

        return (mulPoint[0], mulPoint[1], mulPoint[2]);
    }

    /// @dev Multiplication of a uint256 a and uint256 b. Because in Solidity each variable can not be greater than 256 bits,
    /// this function separates the result of the multiplication in three parts, so the result would be the concatenation of those three.
    /// @param _a uint256
    /// @param _b uint256
    /// @return (ab2, ab1, ab0)
    function _multiply256(
            uint256 _a,
            uint256 _b
        ) 
        private pure 
        returns (uint256, uint256, uint256) 
    {
        uint256 aM = _a >> 128;
        uint256 am = _a & U128_MAX;
        uint256 bM = _b >> 128;
        uint256 bm = _b & U128_MAX;
        uint256 ab0 = am * bm;
        uint256 ab1 = (ab0 >> 128) +
            ((aM * bm) & U128_MAX) +
            ((am * bM) & U128_MAX);
        uint256 ab2 = (ab1 >> 128) +
            aM *
            bM +
            ((aM * bm) >> 128) +
            ((am * bM) >> 128);
        ab1 &= U128_MAX;
        ab0 &= U128_MAX;

        return (ab2, ab1, ab0);
    }

    /// @dev Division of an integer of 312 bits by a 256-bit integer.
    /// @param _aM the higher 256 bits of the numarator
    /// @param _am the lower 128 bits of the numarator
    /// @param _b the 256-bit denominator
    /// @return q the result of the division and the rest r
    function _bigDivision(
            uint256 _aM,
            uint256 _am,
            uint256 _b
        ) 
        private pure 
        returns (uint256, uint256) 
    {
        uint256 aM = _aM % _b;

        uint256 shift = 0;
        while (_b >> shift > 0) {
            shift++;
        }
        shift = 256 - shift;
        aM =
            (_aM << shift) +
            (shift > 128 ? _am << (shift - 128) : _am >> (128 - shift));
        uint256 a0 = (_am << shift) & U128_MAX;

        (uint256 b1, uint256 b0) = (
            (_b << shift) >> 128,
            (_b << shift) & U128_MAX
        );

        uint256 rM;
        uint256 q = aM / b1;
        rM = aM % b1;

        uint256 rsub0 = (q & U128_MAX) * b0;
        uint256 rsub21 = (q >> 128) * b0 + (rsub0 >> 128);
        rsub0 &= U128_MAX;

        while (rsub21 > rM || (rsub21 == rM && rsub0 > a0)) {
            q--;
            a0 += b0;
            rM += b1 + (a0 >> 128);
            a0 &= U128_MAX;
        }

        uint256 r = (((rM - rsub21) << 128) + _am - rsub0) >> shift;

        //  `_aM / _b` is qM from the original algorithm, inlined here to reduce stack usage
        return (q + _aM / _b, r);
    }

    /// @dev Absolute value of a 25-bit integer.
    /// @param _x the integer
    /// @return _x if _x>=0 or -_x if not
    function _abs(int256 _x) private pure returns (int256) {
        if (_x >= 0) {
            return _x;
        }
        return -_x;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "viaIR": true,
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {
    "contracts/Lock.sol": {
      "LockLib": "0xa8738ae018c03e69d8479aedfafbd32c4290669b"
    }
  }
}

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"roundId","type":"string"},{"indexed":true,"internalType":"address","name":"party","type":"address"},{"indexed":false,"internalType":"string","name":"partyType","type":"string"},{"indexed":false,"internalType":"uint256","name":"depositAmount","type":"uint256"}],"name":"PartyRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"roundId","type":"string"},{"indexed":true,"internalType":"address","name":"op","type":"address"},{"indexed":false,"internalType":"uint256","name":"refundAmount","type":"uint256"}],"name":"RefundRecorded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"roundId","type":"string"},{"indexed":false,"internalType":"bool","name":"sufficient","type":"bool"},{"indexed":false,"internalType":"uint256","name":"ipCount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cpCount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"opCount","type":"uint256"}],"name":"RequirementsChecked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"roundId","type":"string"},{"indexed":true,"internalType":"address","name":"pop","type":"address"},{"indexed":false,"internalType":"uint256","name":"opMax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cpMax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ipMax","type":"uint256"}],"name":"RoundInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"roundId","type":"string"},{"indexed":false,"internalType":"uint256","name":"actualRewardTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rewardPerOP","type":"uint256"}],"name":"RoundStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"party","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"CPs","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"IPs","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"OPs","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIME_SPAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"}],"name":"checkRequirementsAndStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"commitments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"confirmedRewardPerOP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"}],"name":"createMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"address","name":"","type":"address"}],"name":"endpoints","outputs":[{"internalType":"string","name":"spdz","type":"string"},{"internalType":"string","name":"restApi","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"}],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"address","name":"","type":"address"}],"name":"index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"purpose","type":"string"},{"internalType":"string","name":"dslHash","type":"string"},{"internalType":"string","name":"dslUri","type":"string"},{"internalType":"uint256","name":"opMin","type":"uint256"},{"internalType":"uint256","name":"opMax","type":"uint256"},{"internalType":"uint256","name":"opRecruitStart","type":"uint256"},{"internalType":"uint256","name":"opRecruitEnd","type":"uint256"},{"internalType":"uint256","name":"cpMin","type":"uint256"},{"internalType":"uint256","name":"cpMax","type":"uint256"},{"internalType":"uint256","name":"cpRewardPerUnit","type":"uint256"},{"internalType":"uint256","name":"cpRecruitStart","type":"uint256"},{"internalType":"uint256","name":"cpRecruitEnd","type":"uint256"},{"internalType":"uint256","name":"ipMin","type":"uint256"},{"internalType":"uint256","name":"ipMax","type":"uint256"},{"internalType":"uint256","name":"ipRewardPerUnit","type":"uint256"},{"internalType":"uint256","name":"ipRecruitStart","type":"uint256"},{"internalType":"uint256","name":"ipRecruitEnd","type":"uint256"},{"internalType":"string","name":"spdzEndpoint","type":"string"},{"internalType":"string","name":"restApiEndpoint","type":"string"}],"name":"initializeRound","outputs":[{"internalType":"string","name":"roundId","type":"string"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"}],"name":"invoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nextRoundId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"address","name":"","type":"address"}],"name":"opRewardPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policy","outputs":[{"internalType":"uint256","name":"participationFee","type":"uint256"},{"internalType":"uint256","name":"resultAccessFee","type":"uint256"},{"internalType":"uint256","name":"ipRatio","type":"uint256"},{"internalType":"uint256","name":"cpRatio","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"},{"internalType":"string","name":"spdzEndpoint","type":"string"},{"internalType":"string","name":"restApiEndpoint","type":"string"}],"name":"registerCP","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"},{"internalType":"uint256","name":"i","type":"uint256"},{"internalType":"uint256","name":"j","type":"uint256"},{"internalType":"uint256","name":"x","type":"uint256"},{"internalType":"uint256","name":"y","type":"uint256"}],"name":"registerCommitment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"},{"internalType":"uint256[]","name":"xs","type":"uint256[]"},{"internalType":"uint256[]","name":"ys","type":"uint256[]"}],"name":"registerCommitments","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"},{"internalType":"string","name":"restApiEndpoint","type":"string"}],"name":"registerIP","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"},{"internalType":"string","name":"spdzEndpoint","type":"string"},{"internalType":"string","name":"restApiEndpoint","type":"string"}],"name":"registerOP","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"},{"internalType":"uint256","name":"j","type":"uint256"},{"internalType":"uint256[]","name":"ts","type":"uint256[]"},{"internalType":"uint256[]","name":"ws","type":"uint256[]"}],"name":"registerShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"},{"internalType":"uint256[]","name":"ts","type":"uint256[]"},{"internalType":"uint256[]","name":"ws","type":"uint256[]"}],"name":"registerShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"},{"internalType":"uint256","name":"j","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"registerSignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"roundId","type":"string"},{"internalType":"bytes[]","name":"_signatures","type":"bytes[]"}],"name":"registerSignatures","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"roundConfigs","outputs":[{"internalType":"string","name":"purpose","type":"string"},{"internalType":"string","name":"dslHash","type":"string"},{"internalType":"string","name":"dslUri","type":"string"},{"internalType":"address payable","name":"pop","type":"address"},{"components":[{"internalType":"uint256","name":"minCount","type":"uint256"},{"internalType":"uint256","name":"maxCount","type":"uint256"},{"internalType":"uint256","name":"recruitStart","type":"uint256"},{"internalType":"uint256","name":"recruitEnd","type":"uint256"}],"internalType":"struct Lock.PartyRequirement","name":"opReq","type":"tuple"},{"components":[{"internalType":"uint256","name":"minCount","type":"uint256"},{"internalType":"uint256","name":"maxCount","type":"uint256"},{"internalType":"uint256","name":"recruitStart","type":"uint256"},{"internalType":"uint256","name":"recruitEnd","type":"uint256"}],"internalType":"struct Lock.PartyRequirement","name":"cpReq","type":"tuple"},{"components":[{"internalType":"uint256","name":"minCount","type":"uint256"},{"internalType":"uint256","name":"maxCount","type":"uint256"},{"internalType":"uint256","name":"recruitStart","type":"uint256"},{"internalType":"uint256","name":"recruitEnd","type":"uint256"}],"internalType":"struct Lock.PartyRequirement","name":"ipReq","type":"tuple"},{"internalType":"uint256","name":"cpRewardPerUnit","type":"uint256"},{"internalType":"uint256","name":"ipRewardPerUnit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"signatures","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"state","outputs":[{"internalType":"enum Lock.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080346093576000600e55608081016001600160401b03811182821017607d576001916060916040526605543df729c00081526753444835ec580000602082015282604082015201526605543df729c000600f556753444835ec58000060105560016011556001601255600060085560405161597e90816100998239f35b634e487b7160e01b600052604160045260246000fd5b600080fdfe6080604052600436101561001257600080fd5b60003560e01c806293ba3914613b665780630505c8c914613b2f5780630958efab14613a7b5780631ea6132714613a49578063245db5bc14613a17578063257734901461399657806329ccb493146134a557806337c7b708146127c05780633ccfd60b146127045780634002eda6146126e657806354bce10f1461269c5780635ecd334014612660578063652f453b146125d95780637f2c0c6f146125835780638257736c146120d057806388af864c1461208e578063a058c89614612071578063a0c3db3914612021578063aa757e7014611f22578063b1694f3114611ecc578063b183fbb51461194d578063bdfaed49146118b9578063c08d1fe51461189b578063db52d6e2146116f9578063e2538f4d14611687578063e3d670d714611649578063e60eedb0146115c5578063e7fb5388146107f7578063eaf0152d146107a5578063ec5b90aa14610749578063f3f7d742146101e05763f5fd2d7c1461017b57600080fd5b346101db5760206101a361018e36613d4d565b92908160405193828580945193849201613cb6565b8101600381520301902080548210156101db576020916101c291613d7e565b905460405160039290921b1c6001600160a01b03168152f35b600080fd5b346101db5760203660031901126101db576004356001600160401b0381116101db57610210903690600401613c30565b60405160ff8251916020818186019461022a818388613cb6565b8101600d815203019020541660088110156107335761024990156145b8565b604051602081845161025c818387613cb6565b81016009815203019020906040519161027483613ba2565b60405161028c816102858185613e54565b0382613bf4565b83526040516102a2816102858160018601613e54565b60208401526040516102bb816102858160028601613e54565b604084015260038101546001600160a01b031660608401908152926102e260048301613faa565b91608082019283526102f660088201613faa565b9160a0810192835261034161030d600c8401613faa565b60c08301908152601084015460e0840190815260119094015461010090930192835296516001600160a01b031615156145f8565b604051602081895161035481838b613cb6565b8101600381520301902054926040516020818a5161037381838c613cb6565b8101600481520301902054946040516020818b5161039281838d613cb6565b81016005815203019020549751518510159182610726575b5081610719575b506103bb88614727565b7f80eba1cd492349e920baefa43c1bdfdbe192d932faaa377a890809e1f5fd81d76080604051931593841581528760208201528860408201528a6060820152a21561059b5750506040516020818751610415818389613cb6565b8101600d815203019020600560ff1982541617905560005b81811061053c57505060005b8181106104e257505060005b82811061044e57005b80610477600192604051602081895161046881838b613cb6565b81016005815203019020613d7e565b838060a01b0391549060031b1c166104c1600f54604080516020818b5161049f81838d613cb6565b8101600b815203019020600090878060a01b0386168252602052205490614032565b9060005260076020526104da6040600020918254614032565b905501610445565b600190600f5461050e826040516020818b516104ff81838d613cb6565b81016004815203019020613d7e565b848060a01b0391549060031b1c1660005260076020526105346040600020918254614032565b905501610439565b600190600f5461056d8261055e6020898c604051938492839251928391613cb6565b81016003815203019020613d7e565b848060a01b0391549060031b1c1660005260076020526105936040600020918254614032565b90550161042d565b926105b36105bb92936105c1959896979851906143cc565b9251906143cc565b90614032565b916105cc848461510d565b938460405160208186516105e1818389613cb6565b8101600c8152030190205560005b81811061065e5750509161065060409261063660207f4ffab350691aa5126b23f1851fcc0c9f14e8638028da934e9d2fd0807d0dcbf7968651809381928651928391613cb6565b8101600d815203019020600160ff19825416179055614727565b9382519182526020820152a2005b80610678600192604051602081895161046881838c613cb6565b838060a01b0391549060031b1c166106c48860406106a36020898b8451938492839251928391613cb6565b8101600b815203019020600090878060a01b038616825260205220546146c8565b81600052600760205260406000206106dd828254614032565b90557fa44638c1db6b4628ba529e00e5ac331c92a1b96fab88467daff8d8931e4b3ea5602061070b89614727565b92604051908152a3016105ef565b90505151861015886103b1565b51518610159150896103aa565b634e487b7160e01b600052602160045260246000fd5b346101db5760203660031901126101db576004356001600160401b0381116101db57610792602061077f81933690600401613c30565b8160405193828580945193849201613cb6565b8101600c81520301902054604051908152f35b346101db576107b336613f42565b9060ff60405160208186516107cb8183858b01613cb6565b8101600d8152030190205416926008841015610733576107f060036107f59514613fdc565b615367565b005b346101db5760203660031901126101db576004356001600160401b0381116101db57610827903690600401613c30565b6040519060ff81519260208181850195610842818389613cb6565b8101600d8152030190205416600881101580610733576006821415806115b7575b81816115a6575b501561153b5780610733578115801561152e575b15610a9a575050906040516020818451610899818387613cb6565b8101600d815203019020600560ff1982541617905560005b60405160208185516108c4818388613cb6565b810160038152030190205481101561092157600190600f546108f382604051602081895161055e81838c613cb6565b848060a01b0391549060031b1c1660005260076020526109196040600020918254614032565b9055016108b1565b5060005b6040516020818551610938818388613cb6565b810160048152030190205481101561099557600190600f546109678260405160208189516104ff81838c613cb6565b848060a01b0391549060031b1c16600052600760205261098d6040600020918254614032565b905501610925565b5060005b60405160208185516109ac818388613cb6565b81016005815203019020548110156107f5576109d581604051602081875161046881838a613cb6565b60018060a01b0391549060031b1c169060ff60405160208187516109fa81838a613cb6565b8101600d815203019020541691600883101561073357600192610a7457610a53604080516020818951610a2e81838c613cb6565b8101600b815203019020600090868060a01b038516825260205220545b600f54614032565b906000526007602052610a6c6040600020918254614032565b905501610999565b610a536040516020818851610a8a81838b613cb6565b8101600c81520301902054610a4b565b610733576002811480611523575b15610e285750906040516020818451610ac2818387613cb6565b8101600d815203019020600760ff198254161790556040516020818451610aea818387613cb6565b8101600381520301902054906040516020818551610b09818387613cb6565b81016004815203019020546040516020818651610b27818388613cb6565b810160058152030190205460009060005b610b428285614032565b811015610cb2576040516020818951610b5c81838b613cb6565b8101600281520301902081600052602052610b7b604060002054613e1a565b15610c245760019084811015610be1576040518851610ba691839160209082906104ff81838e613cb6565b838060a01b0391549060031b1c165b600f5490838060a01b03166000526007602052610bd86040600020918254614032565b90555b01610b38565b610c116040516020818b51610bf781838d613cb6565b81016005815203019020610c0b87846146c8565b90613d7e565b838060a01b0391549060031b1c16610bb5565b91610c3060019161478c565b92848110610bdb576040516020818a51610c4b81838c613cb6565b8101600c81520301902054610c85610c716020898c604051938492839251928391613cb6565b81016005815203019020610c0b88856146c8565b848060a01b0391549060031b1c166000526007602052610cab6040600020918254614032565b9055610bdb565b5093929190610ce990610ce3610cca82600f546143cc565b91610cde88610cd9878a614032565b614032565b6146c8565b9061510d565b9260005b818110610de057505060005b610d038583614032565b8110156107f5576001610d03916040516020818a51610d2381838b613cb6565b8101600281520301902081600052602052610d42604060002054613e1a565b610d4f575b019050610cf9565b83811015610da357610d6e816040516020818c516104ff81838d613cb6565b838060a01b0391549060031b1c165b828060a01b031660005260076020526040600020610d9c878254614032565b9055610d47565b610dcd6040516020818b51610db981838c613cb6565b81016005815203019020610c0b86846146c8565b838060a01b0391549060031b1c16610d7d565b80610dfa6001926040516020818c5161055e81838d613cb6565b838060a01b0391549060031b1c1660005260076020526040600020610e20878254614032565b905501610ced565b6000906003811480611518575b1561124f5750506040516020818351610e4f818388613cb6565b8101600d815203019020600760ff198254161790556040516020818351610e77818388613cb6565b81016003815203019020546040516020818451610e95818389613cb6565b8101600481520301902054926040516020818551610eb4818387613cb6565b8101600581520301902054926000805b858110611083575080610ce3610edf610eee93600f546143cc565b91610cde88610cd98b8a614032565b9260005b81811061103b5750506000945b848610610f0857005b6000955b610f168683614032565b87101561103157610f16600180986040516020818851610f3781838d613cb6565b8101600081520301902084600052602052604060002081600052602052604060002054151580610ff1575b610f70575b01975050610f0c565b84811015610fc657610f9181604051602081806104ff8d8d51928391613cb6565b838060a01b0391549060031b1c165b828060a01b031660005260076020526040600020610fbf898254614032565b9055610f67565b610fde60405160208180610bf78c8c51928391613cb6565b838060a01b0391549060031b1c16610fa0565b50604051602081885161100581838d613cb6565b810160008152030190208460005260205260406000208160005260205281604060002001541515610f62565b6001019550610eff565b80611055600192604051602081885161055e81838d613cb6565b838060a01b0391549060031b1c166000526007602052604060002061107b878254614032565b905501610ef2565b949360005b6110928689614032565b8110156112445760405160208186516110ac81838b613cb6565b8101600081520301902087600052602052604060002081600052602052604060002054151580611203575b15611178576001908881101561113b5761110081604051602081806104ff8c8c51928391613cb6565b838060a01b0391549060031b1c165b600f5490838060a01b031660005260076020526111326040600020918254614032565b90555b01611088565b611165604051602081885161115181838d613cb6565b81016005815203019020610c0b8b846146c8565b838060a01b0391549060031b1c1661110f565b9161118460019161478c565b9288811061113557604051602081875161119f81838c613cb6565b8101600c815203019020546111d6604051602081806111c28c8c51928391613cb6565b81016005815203019020610c0b8c856146c8565b848060a01b0391549060031b1c1660005260076020526111fc6040600020918254614032565b9055611135565b50604051602081865161121781838b613cb6565b810160008152030190208760005260205260406000208160005260205260016040600020015415156110d7565b509394600101610ec4565b6004141590506114d357604051602081835161126c818388613cb6565b8101600d815203019020600660ff198254161790556040516020818351611294818388613cb6565b81016009815203019020906040516112ab81613ba2565b6040516112bc816102858187613e54565b81526040516112d2816102858160018801613e54565b60208201526040516112eb816102858160028801613e54565b604082015260038301546001600160a01b0316606082015261130f60048401613faa565b608082015261132060088401613faa565b60a0820152611331600c8401613faa565b60c0820152610100601160108501549460e0840195865201549101908152604051602081845161136281838a613cb6565b810160038152030190205490604051602081855161138181838b613cb6565b81016004815203019020549160405160208186516113a081838c613cb6565b81016005815203019020549451915160005b82811061147a5750505060005b8281106114225750505060005b8281106113d557005b600190600f546113f482604051602081806104688c8b51928391613cb6565b848060a01b0391549060031b1c16600052600760205261141a6040600020918254614032565b9055016113cc565b60019061143183600f54614032565b61144c826104ff60208b604051809381928d51928391613cb6565b848060a01b0391549060031b1c1660005260076020526114726040600020918254614032565b9055016113bf565b60019061148983600f54614032565b6114a58261055e60208d8c604051938492839251928391613cb6565b848060a01b0391549060031b1c1660005260076020526114cb6040600020918254614032565b9055016113b2565b60405162461bcd60e51b815260206004820152601960248201527f54696d65206c696d697420686173206e6f7420706173736564000000000000006044820152606490fd5b50600e544211610e35565b50600e544211610aa8565b505060006001821461087e565b60405162461bcd60e51b815260206004820152603760248201527f5374617465206d757374206e6f742062652052656164792c205061796f75742c60448201527f2050656e616c74792c206f72205465726d696e617465640000000000000000006064820152608490fd5b90506107335760058214158161086a565b505060006007821415610863565b346101db5760203660031901126101db576004356001600160401b0381116101db576115f5903690600401613c30565b5060405162461bcd60e51b815260206004820152602560248201527f55736520636865636b526571756972656d656e7473416e64537461727420696e6044820152641cdd19585960da1b6064820152608490fd5b346101db5760203660031901126101db576004356001600160a01b038116908190036101db5760005260076020526020604060002054604051908152f35b346101db576116b3602061169a36613dd1565b9491928460409592955193828580945193849201613cb6565b8101600181520301902090600052602052604060002090600052602052604060002060028210156101db576020916116ea91613e0a565b90549060031b1c604051908152f35b346101db5760203660031901126101db576004356001600160401b0381116101db57602061077f61172e923690600401613c30565b810160098152030190206117ed604051916117548361174d8184613e54565b0384613bf4565b60405192611770846117698160018601613e54565b0385613bf4565b604051916117858361174d8160028501613e54565b60038101546001600160a01b03169261188b906118616117a760048501613faa565b6118376117b660088701613faa565b916118096117c6600c8901613faa565b956117fb601160108b01549a01549a6040519e8f9e8f926102408452610240840190613dac565b916020818403910152613dac565b8c810360408e015290613dac565b9860608b015260808a0190606080918051845260208101516020850152604081015160408501520151910152565b80516101008901526020810151610120890152604081015161014089015260600151610160880152565b805161018087015260208101516101a087015260408101516101c0870152606001516101e0860152565b6102008401526102208301520390f35b346101db5760003660031901126101db576020600e54604051908152f35b346101db5760603660031901126101db576004356001600160401b0381116101db576118e9903690600401613c30565b6044356001600160401b0381116101db57611908903690600401613c30565b60ff604051602081855161191f8183858a01613cb6565b8101600d81520301902054169160088310156107335761194460026107f5941461479b565b6024359061512d565b61195636613ed7565b91906040519260ff8351946020818187019761197381838b613cb6565b8101600d815203019020541660088110156107335761199290156145b8565b60405160208185516119a581838a613cb6565b810160098152030190206040516119bb81613ba2565b6040516119cc816102858186613e54565b81526040516119e2816102858160018701613e54565b60208201526040516119fb816102858160028701613e54565b604082015260038201546001600160a01b03166060820190815290611a2260048401613faa565b60808201908152611a3560088501613faa565b9060a08301918252611a80611a4c600c8701613faa565b60c08501908152601087015460e0860190815260119097015461010090950194855294516001600160a01b031615156145f8565b805160408101514210159081611ebd575b5015611e7857602081510151611e04575b50906020611abd611ac995826105bb955101519051906143cc565b935101519051906143cc565b91611ae5611ade600f549460011c8095614032565b3414614747565b611b0c6040516020818751611afb81838c613cb6565b810160058152030190203390614682565b6040516020818651611b1f81838b613cb6565b81016005815203019020546000198101908111611dee576040516020818751611b4981838c613cb6565b8101600681520301902060018060a01b03331660005260205260406000205560405190611b7582613bbe565b815260208101918252604080516020818751611b9281838c613cb6565b600a908201908152030190203360009081526020919091522090518051906001600160401b038211611d6357611bd282611bcc8554613e1a565b856146d5565b602090601f8311600114611d84579180611c079260019594600092611d79575b50508160011b916000199060031b1c19161790565b81555b0190518051906001600160401b038211611d6357611c2c82611bcc8554613e1a565b602090601f8311600114611cf25792611c6783602094611c9f9994611c7b97600092611ce75750508160011b916000199060031b1c19161790565b90555b604051809381928751928391613cb6565b8101600b81520301902060018060a01b033316600052602052604060002055614727565b6040519060408252600260408301526104f560f41b60608301523460208301527f1af46271af54d57fe55a991b9f8ed2ede0043b12ff8a8bd580d9e2b9d384403d60803393a3005b015190508a80611bf2565b90601f1983169184600052816000209260005b818110611d4b575093611c9f9893611c7b96936001938360209810611d32575b505050811b019055611c6a565b015160001960f88460031b161c19169055898080611d25565b92936020600181928786015181550195019301611d05565b634e487b7160e01b600052604160045260246000fd5b015190508980611bf2565b90601f1983169184600052816000209260005b818110611dd65750916001959492918387959310611dbd575b505050811b018155611c0a565b015160001960f88460031b161c19169055888080611db0565b92936020600181928786015181550195019301611d97565b634e487b7160e01b600052601160045260246000fd5b6020611e20818b8b604097969751938492839251928391613cb6565b8101600581520301902054915101511115611e3c579088611aa2565b60405162461bcd60e51b815260206004820152601460248201527313d4081b585e0818dbdd5b9d081c995858da195960621b6044820152606490fd5b60405162461bcd60e51b815260206004820152601d60248201527f4f757473696465204f5020726563727569746d656e7420706572696f640000006044820152606490fd5b6060915001514211158a611a91565b346101db5760203660031901126101db576004356001600160401b0381116101db57611f03602061077f60ff933690600401613c30565b8101600d81520301902054166040516008821015610733576020918152f35b346101db5760403660031901126101db576004356001600160401b0381116101db57611f52903690600401613c30565b6024356001600160401b0381116101db57366023820112156101db578060040135611f7c81613cd9565b91611f8a6040519384613bf4565b8183526024602084019260051b820101903682116101db5760248101925b828410611ff257858560ff6040516020818551611fc88183858a01613cb6565b8101600d815203019020541691600883101561073357611fed60026107f5941461479b565b614d03565b83356001600160401b0381116101db57602091612016839260243691870101613c30565b815201930192611fa8565b346101db5761202f36613f42565b9060ff60405160208186516120478183858b01613cb6565b8101600d81520301902054169260088410156107335761206c60016107f595146143df565b614a13565b346101db5760003660031901126101db576020604051610e108152f35b346101db5760203660031901126101db576004356001600160401b0381116101db576120c86120c36020923690600401613c30565b6147f2565b604051908152f35b6120d936613ed7565b909160405160ff825191602081818601946120f5818388613cb6565b8101600d815203019020541660088110156107335761211490156145b8565b6040516020818451612127818387613cb6565b810160098152030190206121f660405161214081613ba2565b604051612151816102858187613e54565b8152604051612167816102858160018801613e54565b6020820152604051612180816102858160028801613e54565b604082015260038301546001600160a01b031660608201908152906121a760048501613faa565b608082015261010060116121bd60088701613faa565b9560a084019687526121d1600c8201613faa565b60c0850152601081015460e08501520154910152516001600160a01b031615156145f8565b805160408101514210159081612574575b501561252f57602060405181818651612221818389613cb6565b81016004815203019020549151015111156124f357612243600f543414614636565b61226a6040516020818551612259818388613cb6565b810160048152030190203390614682565b604051602081845161227d818387613cb6565b8101600481520301902054906000198201918211611dee5760206122ec916040938451838188516122af818388613cb6565b600690820190815203019020336000908152908452859020558351966122d488613bbe565b87528187019586528351809381928751928391613cb6565b8101600a81520301902060009060018060a01b03331682526020522092519283516001600160401b038111611d635761232f816123298454613e1a565b846146d5565b6020601f821160011461248a57908061236392600195969760009261247f5750508160011b916000199060031b1c19161790565b81555b0191519182516001600160401b038111611d6357612388816123298454613e1a565b6020601f821160011461241a5781906123b993949560009261240f5750508160011b916000199060031b1c19161790565b90555b6123c8600f5491614727565b60405191604083526002604084015261043560f41b606084015260208301527f1af46271af54d57fe55a991b9f8ed2ede0043b12ff8a8bd580d9e2b9d384403d60803393a3005b015190508580611bf2565b601f1982169083600052806000209160005b8181106124675750958360019596971061244e575b505050811b0190556123bc565b015160001960f88460031b161c19169055848080612441565b9192602060018192868b01518155019401920161242c565b015190508780611bf2565b601f1982169583600052816000209660005b8181106124db57509160019596979184879594106124c2575b505050811b018155612366565b015160001960f88460031b161c191690558680806124b5565b8383015189556001909801976020938401930161249c565b60405162461bcd60e51b815260206004820152601460248201527310d4081b585e0818dbdd5b9d081c995858da195960621b6044820152606490fd5b60405162461bcd60e51b815260206004820152601d60248201527f4f75747369646520435020726563727569746d656e7420706572696f640000006044820152606490fd5b60609150015142111586612207565b346101db57602061259661018e36613d4d565b81016002815203019020906000526020526125d56102856125c1604060002060405192838092613e54565b604051918291602083526020830190613dac565b0390f35b346101db5760206125ec61018e36613c75565b8101600a8152030190209060018060a01b031660005260205261265260406000206125d5600161263e6040519361262e856126278184613e54565b0386613bf4565b6102856040518094819301613e54565b604051938493604085526040850190613dac565b908382036020850152613dac565b346101db57602061267361018e36613c75565b8101600b8152030190209060018060a01b03166000526020526020604060002054604051908152f35b346101db576126af602061169a36613dd1565b8101600081520301902090600052602052604060002090600052602052604060002060028210156101db576020916116ea91613e0a565b346101db5760003660031901126101db576020600854604051908152f35b346101db5760003660031901126101db57336000526007602052604060002054801561278257336000526007602052600060408120556000808080843382f115612776576040519081527f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d560203392a2005b6040513d6000823e3d90fd5b60405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b6044820152606490fd5b6102603660031901126101db576004356001600160401b0381116101db576127ec903690600401613c30565b6024356001600160401b0381116101db5761280b903690600401613c30565b6044356001600160401b0381116101db5761282a903690600401613c30565b90610224356001600160401b0381116101db5761284b903690600401613c30565b610244356001600160401b0381116101db5761286b903690600401613c30565b9360016064351061346057600260e4351061341b57600261018435106133d6576084351580156133c8575b156133835760e435610104351061334657610184356101a435106133095761012435156132cc576101c4351561328f5760c43560a435101561324a576101643561014435101561320557610204356101e43510156131c05761291161290161012435610104356143cc565b6105bb6101c4356101a4356143cc565b92612921611ade85600f54614032565b6008549461292e8661478c565b600855858660009772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b81101561319a575b50806d04ee2d6d415b85acef8100000000600a92101561317f575b662386f26fc1000081101561316b575b6305f5e10081101561315a575b61271081101561314b575b606481101561313d575b1015613132575b600a60216129b960018a01613c15565b986129c76040519a8b613bf4565b60018101808b526129d790613c15565b601f19013660208c01378901015b60001901916f181899199a1a9b1b9c1cb0b131b232b360811b8282061a8353048015612a1457600a90916129e5565b5050612a536026604051809865726f756e645f60d01b6020830152612a428151809260208686019101613cb6565b81010301601f198101885287613bf4565b604051612a5f81613bd9565b6064358152608435602082015260a435604082015260c4356060820152604051612a8881613bd9565b60e435815261010435602082015261014435604082015261016435606082015260405191612ab583613bd9565b6101843583526101a43560208401526101e435604084015261020435606084015260405195612ae387613ba2565b86526020860194855260408601938452606086013381526080870191825260a0870192835260c0870193845260e08701946101243586526101008801966101c4358852612b3f60208d8160405193828580945193849201613cb6565b8101600981520301902098518051906001600160401b038211611d6357612b7082612b6a8d54613e1a565b8d6146d5565b602090601f83116001146130cb57612ba0929160009183612fe45750508160011b916000199060031b1c19161790565b89555b51805160018a01916001600160401b038211611d6357612bc782611bcc8554613e1a565b602090601f831160011461306457612bf7929160009183612fe45750508160011b916000199060031b1c19161790565b90555b51805160028901916001600160401b038211611d6357612c1e82611bcc8554613e1a565b602090601f8311600114612fef579360609693612c5d8489979560119d9c9b99958997600092612fe45750508160011b916000199060031b1c19161790565b90555b60038b019060018060a01b039051166bffffffffffffffffffffffff60a01b82541617905551805160048b0155602081015160058b0155604081015160068b0155015160078901555180516008890155602081015160098901556040810151600a8901550151600b870155518051600c8701556020810151600d8701556040810151600e8701550151600f85015551601084015551910155612d236040518451612d0e818360208901613cb6565b81019060058252602081339303019020614682565b6040516020818551612d388183858a01613cb6565b8101600681520301902060018060a01b0333166000526020526000604081205560405190612d6582613bbe565b815260208101938452604080516020818651612d848183858b01613cb6565b600a908201908152030190203360009081526020919091522090518051906001600160401b038211611d6357612dbe82611bcc8554613e1a565b602090601f8311600114612f7a579180612df29260019594600092612f6f5750508160011b916000199060031b1c19161790565b81555b0192519283516001600160401b038111611d6357612e17816123298454613e1a565b6020601f8211600114612f06579080612e4a926125d59760009261247f5750508160011b916000199060031b1c19161790565b90555b6040516020818451612e628183858901613cb6565b8101600b81520301902060018060a01b0333166000526020526040600020556040516020818351612e968183858801613cb6565b8101600d81520301902060ff198154169055612eb181614727565b6040519060843582526101043560208301526101a43560408301527ffebc2122a990b8103bf8a11c9bd5290ae6333f8efa8afdf1f1e1cd941422a7f760603393a3604051918291602083526020830190613dac565b601f1982169583600052816000209660005b818110612f575750916125d59791846001959410612f3e575b505050811b019055612e4d565b015160001960f88460031b161c19169055868080612f31565b83830151895560019098019760209384019301612f18565b015190508880611bf2565b90601f1983169184600052816000209260005b818110612fcc5750916001959492918387959310612fb3575b505050811b018155612df5565b015160001960f88460031b161c19169055878080612fa6565b92936020600181928786015181550195019301612f8d565b015190503880611bf2565b90601f1983169184600052816000209260005b81811061304c57508460119c9b9a989460609a9793948b99958a9860019510613033575b505050811b019055612c60565b015160001960f88460031b161c19169055388080613026565b92936020600181928786015181550195019301613002565b90601f1983169184600052816000209260005b8181106130b3575090846001959493921061309a575b505050811b019055612bfa565b015160001960f88460031b161c191690558f808061308d565b92936020600181928786015181550195019301613077565b90601f198316918c600052816000209260005b81811061311a5750908460019594939210613101575b505050811b018955612ba3565b015160001960f88460031b161c191690558f80806130f4565b929360206001819287860151815501950193016130de565b6001909601956129a9565b6064600291049801976129a2565b61271060049104980197612998565b6305f5e1006008910498019761298d565b662386f26fc1000060109104980197612980565b6d04ee2d6d415b85acef810000000060209104980197612970565b6040985072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b90049050600a612955565b60405162461bcd60e51b815260206004820152601960248201527f4950207265637275697420706572696f6420696e76616c6964000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601960248201527f4350207265637275697420706572696f6420696e76616c6964000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601960248201527f4f50207265637275697420706572696f6420696e76616c6964000000000000006044820152606490fd5b60405162461bcd60e51b81526020600482015260156024820152740495020726577617264206d757374206265203e203605c1b6044820152606490fd5b60405162461bcd60e51b81526020600482015260156024820152740435020726577617264206d757374206265203e203605c1b6044820152606490fd5b60405162461bcd60e51b815260206004820152601560248201527424a81036b0bc1036bab9ba103132901f1e9036b4b760591b6044820152606490fd5b60405162461bcd60e51b815260206004820152601560248201527421a81036b0bc1036bab9ba103132901f1e9036b4b760591b6044820152606490fd5b60405162461bcd60e51b815260206004820152601a60248201527f4f50206d6178206d757374206265203e3d206d696e206f7220300000000000006044820152606490fd5b506064356084351015612896565b60405162461bcd60e51b815260206004820152601960248201527f4950206d696e20636f756e74206d757374206265203e3d2032000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601960248201527f4350206d696e20636f756e74206d757374206265203e3d2032000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601960248201527f4f50206d696e20636f756e74206d757374206265203e3d2031000000000000006044820152606490fd5b60403660031901126101db576004356001600160401b0381116101db576134d0903690600401613c30565b6024356001600160401b0381116101db576134ef903690600401613c30565b6040519160ff8151936020818185019661350a81838a613cb6565b8101600d815203019020541660088110156107335761352990156145b8565b604051602081835161353c818389613cb6565b8101600981520301902061360b60405161355581613ba2565b604051613566816102858187613e54565b815260405161357c816102858160018801613e54565b6020820152604051613595816102858160028801613e54565b604082015260038301546001600160a01b031660608201908152906135bc60048501613faa565b60808201526135cd60088501613faa565b60a082015261010060116135e3600c8701613faa565b60c08401908152601087015460e0850152950154910152516001600160a01b031615156145f8565b805160408101514210159081613987575b50156139425760206040518181855161363681838b613cb6565b810160038152030190205491510151111561390657613658600f543414614636565b61367f604051602081845161366e81838a613cb6565b810160038152030190203390614682565b6040516020818351613692818389613cb6565b81016003815203019020546000198101908111611dee5760405160208184516136bc81838a613cb6565b8101600681520301902060018060a01b0333166000526020526040600020556040516136e781613bbe565b60406137186020809683516136fc8382613bf4565b6000815285528185019687528351809381928851928391613cb6565b600a908201908152030190203360009081529086522090518051906001600160401b038211611d635761374f82611bcc8554613e1a565b8590601f831160011461389c5791806137829260019594600092612f6f5750508160011b916000199060031b1c19161790565b81555b0191519182516001600160401b038111611d63576137a7816123298454613e1a565b8493601f8211600114613838576137d8929394829160009261382d5750508160011b916000199060031b1c19161790565b90555b6137e7600f5491614727565b9060405192604084526002604085015261049560f41b60608501528301527f1af46271af54d57fe55a991b9f8ed2ede0043b12ff8a8bd580d9e2b9d384403d60803393a3005b015190508680611bf2565b601f1982169483600052866000209160005b888882106138865750508360019596971061386d575b505050811b0190556137db565b015160001960f88460031b161c19169055858080613860565b600184958293958501518155019401920161384a565b90601f1983169184600052876000209260005b898282106138f05750509160019594929183879593106138d7575b505050811b018155613785565b015160001960f88460031b161c191690558780806138ca565b60018596829396860151815501950193016138af565b60405162461bcd60e51b81526020600482015260146024820152731254081b585e0818dbdd5b9d081c995858da195960621b6044820152606490fd5b60405162461bcd60e51b815260206004820152601d60248201527f4f75747369646520495020726563727569746d656e7420706572696f640000006044820152606490fd5b6060915001514211158561361c565b346101db5760a03660031901126101db576004356001600160401b0381116101db576139c6903690600401613c30565b60ff60405160208184516139dd8183858901613cb6565b8101600d815203019020541690600882101561073357613a0260016107f593146143df565b60843590606435906044359060243590614423565b346101db576020613a2a61018e36613d4d565b8101600581520301902080548210156101db576020916101c291613d7e565b346101db576020613a5c61018e36613d4d565b8101600481520301902080548210156101db576020916101c291613d7e565b346101db5760803660031901126101db576004356001600160401b0381116101db57613aab903690600401613c30565b6044356001600160401b0381116101db57613aca903690600401613cf0565b6064356001600160401b0381116101db57613ae9903690600401613cf0565b9060ff6040516020818651613b018183858b01613cb6565b8101600d815203019020541692600884101561073357613b2660036107f59514613fdc565b6024359061403f565b346101db5760003660031901126101db576080600f5460105460115460125491604051938452602084015260408301526060820152f35b346101db576020613b7961018e36613c75565b810160068152030190209060018060a01b03166000526020526020604060002054604051908152f35b61012081019081106001600160401b03821117611d6357604052565b604081019081106001600160401b03821117611d6357604052565b608081019081106001600160401b03821117611d6357604052565b90601f801991011681019081106001600160401b03821117611d6357604052565b6001600160401b038111611d6357601f01601f191660200190565b81601f820112156101db57602081359101613c4a82613c15565b92613c586040519485613bf4565b828452828201116101db5781600092602092838601378301015290565b60406003198201126101db57600435906001600160401b0382116101db57613c9f91600401613c30565b906024356001600160a01b03811681036101db5790565b60005b838110613cc95750506000910152565b8181015183820152602001613cb9565b6001600160401b038111611d635760051b60200190565b9080601f830112156101db578135613d0781613cd9565b92613d156040519485613bf4565b81845260208085019260051b8201019283116101db57602001905b828210613d3d5750505090565b8135815260209182019101613d30565b60406003198201126101db57600435906001600160401b0382116101db57613d7791600401613c30565b9060243590565b8054821015613d965760005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b90602091613dc581518092818552858086019101613cb6565b601f01601f1916010190565b60806003198201126101db57600435906001600160401b0382116101db57613dfb91600401613c30565b90602435906044359060643590565b6002821015613d96570190600090565b90600182811c92168015613e4a575b6020831014613e3457565b634e487b7160e01b600052602260045260246000fd5b91607f1691613e29565b60009291815491613e6483613e1a565b8083529260018116908115613eba5750600114613e8057505050565b60009081526020812093945091925b838310613ea0575060209250010190565b600181602092949394548385870101520191019190613e8f565b915050602093945060ff929192191683830152151560051b010190565b60606003198201126101db576004356001600160401b0381116101db5781613f0191600401613c30565b916024356001600160401b0381116101db5782613f2091600401613c30565b91604435906001600160401b0382116101db57613f3f91600401613c30565b90565b60606003198201126101db576004356001600160401b0381116101db5781613f6c91600401613c30565b916024356001600160401b0381116101db5782613f8b91600401613cf0565b91604435906001600160401b0382116101db57613f3f91600401613cf0565b90604051613fb781613bd9565b6060600382948054845260018101546020850152600281015460408501520154910152565b15613fe357565b60405162461bcd60e51b815260206004820152602160248201527f5374617465206d757374206265205369676e6174757265735375626d697474656044820152601960fa1b6064820152608490fd5b91908201809211611dee57565b919092604051938351946020818187019761405b81838b613cb6565b810160058152030190205491600073a8738ae018c03e69d8479aedfafbd32c4290669b905b8481106141db5750505050505060005b60405160208184516140a3818389613cb6565b81016005815203019020548110156141ab5760005b6140fd60405160208186516140ce81838b613cb6565b810160048152030190205460405160208187516140ec81838c613cb6565b810160058152030190205490614032565b8110156141a257604051602081855161411781838a613cb6565b81016000815203019020826000526020526040600020816000526020526040600020541580614162575b61414d576001016140b8565b50505050610e104201804211611dee57600e55565b50604051602081855161417681838a613cb6565b810160008152030190208260005260205260406000208160005260205260016040600020015415614141565b50600101614090565b506141c491602091604051938492839251928391613cb6565b8101600d815203019020600460ff19825416179055565b6141e581876143a2565b516141f082856143a2565b5160405191633681229b60e21b835260048301526024820152604081604481865af4908115612776576000908192614371575b5061423c60208b8b604051938492839251928391613cb6565b810160018152030190208360005260205260406000208660005260205260406000205414908161432d575b50156142f85760405161427981613bbe565b61428382886143a2565b51815261429082856143a2565b516020820152604051602081806142ab8d8d51928391613cb6565b810160008152030190208260005260205260406000208560005260205260406000209060005b600281106142e457505050600101614080565b6001906020835193019281850155016142d1565b60405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420736861726560981b6044820152606490fd5b9050604051602081806143448d8d51928391613cb6565b81016001815203019020826000526020526040600020856000526020526001604060002001541438614267565b9050614394915060403d811161439b575b61438c8183613bf4565b8101906143b6565b9038614223565b503d614382565b8051821015613d965760209160051b010190565b91908260409103126101db576020825192015190565b81810292918115918404141715611dee57565b156143e657565b60405162461bcd60e51b815260206004820152601560248201527414dd185d19481b5d5cdd08189948125b9d9bdad959605a1b6044820152606490fd5b929190936040519261443484613bbe565b83526020830152604051938351946020818187019761445481838b613cb6565b810160018152030190209060005260205260406000209060005260205260406000209060005b600281106145a45750505060005b604051602081845161449b818389613cb6565b81016005815203019020548110156145655760005b6144c660405160208186516140ce81838b613cb6565b81101561455c5760405160208185516144e081838a613cb6565b8101600181520301902082600052602052604060002081600052602052604060002054158061451c575b614516576001016144b0565b50505050565b50604051602081855161453081838a613cb6565b81016001815203019020826000526020526040600020816000526020526001604060002001541561450a565b50600101614488565b5061457e91602091604051938492839251928391613cb6565b8101600d815203019020600260ff19825416179055610e104201804211611dee57600e55565b60019060208351930192818501550161447a565b156145bf57565b60405162461bcd60e51b81526020600482015260116024820152704d75737420626520507265706172696e6760781b6044820152606490fd5b156145ff57565b60405162461bcd60e51b815260206004820152600f60248201526e149bdd5b99081b9bdd08199bdd5b99608a1b6044820152606490fd5b1561463d57565b60405162461bcd60e51b815260206004820152601960248201527f496e76616c69642070617274696369706174696f6e20666565000000000000006044820152606490fd5b805468010000000000000000811015611d63576146a491600182018155613d7e565b81546001600160a01b0393841660039290921b91821b9390911b1916919091179055565b91908203918211611dee57565b601f82116146e257505050565b6000526020600020906020601f840160051c8301931061471d575b601f0160051c01905b818110614711575050565b60008155600101614706565b90915081906146fd565b61473f90602060405192828480945193849201613cb6565b810103902090565b1561474e57565b60405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590819195c1bdcda5d08185b5bdd5b9d60521b6044820152606490fd5b6000198114611dee5760010190565b156147a257565b60405162461bcd60e51b815260206004820152602260248201527f5374617465206d75737420626520436f6d6d69746d656e74735375626d697474604482015261195960f21b6064820152608490fd5b6040519060ff8151926020818185019561480d818389613cb6565b8101600d8152030190205416600881101561073357600261482e911461479b565b6040516020818351614841818388613cb6565b8101600481520301902054916040516020818451614860818387613cb6565b81016005815203019020549161487f6148798486614032565b846143cc565b938460011b9480860460021490151715611dee576148b76148a1869596613cd9565b946148af6040519687613bf4565b808652613cd9565b602085019590601f19013687376000905b80821061492f575050505050604051908160208101936040820192602086525180935260608201909260005b818110614916575050614910925003601f198101835282613bf4565b51902090565b84518352602094850194869450909201916001016148f4565b9193959092949660005b6149438487614032565b8110156149ff5760005b6002811061495e5750600101614939565b604051602081806149738d8d51928391613cb6565b810160018152030190208660005260205260406000208260005260205261499e816040600020613e0a565b90549060031b1c906149b96149b3878a614032565b886143cc565b918260011b9280840460021490151715611dee578360011b84810460021485151715611dee576149f283610cd96149f893600197614032565b8d6143a2565b520161494d565b5096959391909492600101909594956148c8565b908051835103614cb2576040519282519360208181860196614a3681838a613cb6565b81016004815203019020546040516020818651614a5481838b613cb6565b8101600581520301902054916000915b838310614b4a57505050505060005b6040516020818451614a86818389613cb6565b81016005815203019020548110156145655760005b614ab160405160208186516140ce81838b613cb6565b811015614b41576040516020818551614acb81838a613cb6565b81016001815203019020826000526020526040600020816000526020526040600020541580614b01575b61451657600101614a9b565b506040516020818551614b1581838a613cb6565b810160018152030190208260005260205260406000208160005260205260016040600020015415614af5565b50600101614a73565b9091949295939660005b614b5e8884614032565b811015614ca2576040516020818751614b7881838c613cb6565b810160018152030190208760005260205260406000208160005260205260406000205415801590614c61575b614c5957604051614bb481613bbe565b614bd4614bce83610cd9614bc88d89614032565b8c6143cc565b8b6143a2565b518152614bf1614beb83610cd9614bc88d89614032565b866143a2565b5160208201526040516020818851614c0a81838d613cb6565b810160018152030190208860005260205260406000208260005260205260406000209060005b60028110614c45575050506001905b01614b54565b600190602083519301928185015501614c30565b600190614c3f565b506040516020818751614c7581838c613cb6565b81016001815203019020876000526020526040600020816000526020526001604060002001541515614ba4565b5096939592946001019190614a64565b60405162461bcd60e51b815260206004820152602360248201527f787320616e64207973206d7573742068617665207468652073616d65206c656e6044820152620cee8d60eb1b6064820152608490fd5b91906040519083519160208181870194614d1e818388613cb6565b81016004815203019020546040516020818751614d3c818389613cb6565b8101600581520301902054938251614d548684614032565b036150c85760005b614d668684614032565b811015614ff2576040516020818951614d8081838b613cb6565b8101600281520301902081600052602052614d9f604060002054613e1a565b614fe757614dac876147f2565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600052601c52614e36603c600020868984878110600014614f9d576104ff6020614e3f94614e0694604051938492839251928391613cb6565b905460039190911b1c6001600160a01b03165b6001600160a01b0316928392614e2f868a6143a2565b5190615811565b9092919261584d565b6001600160a01b031603614f535750614e5881856143a2565b516040516020818a51614e6c81838c613cb6565b81016002815203019020826000526020526040600020908051906001600160401b038211611d6357614ea282611bcc8554613e1a565b602090601f8311600114614ee55782614d66959360019593614eda93600092612fe45750508160011b916000199060031b1c19161790565b90555b019050614d5c565b90601f1983169184600052816000209260005b818110614f3b57509260019593928592614d669896889510614f22575b505050811b019055614edd565b015160001960f88460031b161c19169055388080614f15565b92936020600181928786015181550195019301614ef8565b3314614f64576001614d6691614edd565b60405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606490fd5b50614fbc6020614e3f93614fd093604051938492839251928391613cb6565b81016005815203019020610c0b88876146c8565b905460039190911b1c6001600160a01b0316614e19565b6001614d6691614edd565b50949350505060005b61502f6040516020818651615011818389613cb6565b810160048152030190205460405160208187516140ec81838a613cb6565b811015615089576040516020818551615049818388613cb6565b8101600281520301902081600052602052615068604060002054613e1a565b1561507557600101614ffb565b505050610e104201804211611dee57600e55565b506020906150a292604051938492839251928391613cb6565b8101600d815203019020600360ff19825416179055610e104201804211611dee57600e55565b60405162461bcd60e51b815260206004820152601c60248201527f496e76616c6964206e756d626572206f66207369676e617475726573000000006044820152606490fd5b8115615117570490565b634e487b7160e01b600052601260045260246000fd5b91615137836147f2565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600052601c52603c6000209161519e6040519361519584875196602081818b019961518481838d613cb6565b810160048152030190205492615811565b9093919361584d565b8083101561532557506151be8260405160208189516104ff81838c613cb6565b905460039190911b1c6001600160a01b03165b6001600160a01b03908116911603614f645760405160208186516151f6818389613cb6565b81016002815203019020906000526020526040600020908051906001600160401b038211611d635761522c82611bcc8554613e1a565b602090601f83116001146152be5761525c929160009183612fe45750508160011b916000199060031b1c19161790565b90555b60005b6152786040516020818651615011818389613cb6565b811015615089576040516020818551615292818388613cb6565b81016002815203019020816000526020526152b1604060002054613e1a565b1561507557600101615262565b90601f1983169184600052816000209260005b81811061530d57509084600195949392106152f4575b505050811b01905561525f565b015160001960f88460031b161c191690553880806152e7565b929360206001819287860151815501950193016152d1565b61535090610c0b6040516020818a5161533f81838d613cb6565b8101600581520301902091856146c8565b905460039190911b1c6001600160a01b03166151d1565b9080518351036157c057604051928251936020818186019661538a81838a613cb6565b810160048152030190205460405160208186516153a881838b613cb6565b81016005815203019020549160009173a8738ae018c03e69d8479aedfafbd32c4290669b935b8084106154b55750505050505060005b60405160208184516153f1818389613cb6565b81016005815203019020548110156141ab5760005b61541c60405160208186516140ce81838b613cb6565b8110156154ac57604051602081855161543681838a613cb6565b8101600081520301902082600052602052604060002081600052602052604060002054158061546c575b61414d57600101615406565b50604051602081855161548081838a613cb6565b810160008152030190208260005260205260406000208160005260205260016040600020015415615460565b506001016153de565b909192959396949760005b6154ca8385614032565b8110156157af5760405160208188516154e481838d613cb6565b810160008152030190208860005260205260406000208160005260205260406000205415158061576e575b61576657615527614bce82610cd9614bc88789614032565b5161554861554283610cd961553c888a614032565b8d6143cc565b876143a2565b5160405191633681229b60e21b8352600483015260248201526040816044818d5af48015612776576000918291615746575b50858310156156ff5761559f836104ff60208c8c604051938492839251928391613cb6565b905460039190911b1c6001600160a01b0316915b6155cb60208b8b604051938492839251928391613cb6565b810160018152030190208b6000526020526040600020846000526020526040600020541490816156bb575b50156156a4575060405161560981613bbe565b61562361561d83610cd961553c888a614032565b8c6143a2565b51815261563a61554283610cd961553c888a614032565b516020820152604051602081806156558c8c51928391613cb6565b810160008152030190208960005260205260406000208260005260205260406000209060005b60028110615690575050506001905b016154c0565b60019060208351930192818501550161567b565b6001600160a01b031633146142f85760019061568a565b9050604051602081806156d28d8d51928391613cb6565b810160018152030190208a60005260205260406000208360005260205260016040600020015414386155f6565b61572e61571a60208b8b604051938492839251928391613cb6565b81016005815203019020610c0b88866146c8565b905460039190911b1c6001600160a01b0316916155b3565b9050615760915060403d811161439b5761438c8183613bf4565b3861557a565b60019061568a565b50604051602081885161578281838d613cb6565b8101600081520301902088600052602052604060002081600052602052600160406000200154151561550f565b5097949693956001019291906153ce565b60405162461bcd60e51b815260206004820152602360248201527f747320616e64207773206d7573742068617665207468652073616d65206c656e6044820152620cee8d60eb1b6064820152608490fd5b81519190604183036158425761583b92506020820151906060604084015193015160001a906158bf565b9192909190565b505060009160029190565b9190916004811015610733578061586357509050565b60006001820361587e5763f645eedf60e01b60005260046000fd5b506002810361589c578263fce698f760e01b60005260045260246000fd5b90916003600092146158ac575050565b6335e2f38360e21b825260045260249150fd5b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841161593c579160209360809260ff60009560405194855216868401526040830152606082015282805260015afa15612776576000516001600160a01b038116156159305790600090600090565b50600090600190600090565b5050506000916003919056fea2646970667358221220505598f002044352c2008106d9fffc29c25a42e54a7bab0077c7e32010474f2064736f6c634300081c0033

Deployed Bytecode

0x6080604052600436101561001257600080fd5b60003560e01c806293ba3914613b665780630505c8c914613b2f5780630958efab14613a7b5780631ea6132714613a49578063245db5bc14613a17578063257734901461399657806329ccb493146134a557806337c7b708146127c05780633ccfd60b146127045780634002eda6146126e657806354bce10f1461269c5780635ecd334014612660578063652f453b146125d95780637f2c0c6f146125835780638257736c146120d057806388af864c1461208e578063a058c89614612071578063a0c3db3914612021578063aa757e7014611f22578063b1694f3114611ecc578063b183fbb51461194d578063bdfaed49146118b9578063c08d1fe51461189b578063db52d6e2146116f9578063e2538f4d14611687578063e3d670d714611649578063e60eedb0146115c5578063e7fb5388146107f7578063eaf0152d146107a5578063ec5b90aa14610749578063f3f7d742146101e05763f5fd2d7c1461017b57600080fd5b346101db5760206101a361018e36613d4d565b92908160405193828580945193849201613cb6565b8101600381520301902080548210156101db576020916101c291613d7e565b905460405160039290921b1c6001600160a01b03168152f35b600080fd5b346101db5760203660031901126101db576004356001600160401b0381116101db57610210903690600401613c30565b60405160ff8251916020818186019461022a818388613cb6565b8101600d815203019020541660088110156107335761024990156145b8565b604051602081845161025c818387613cb6565b81016009815203019020906040519161027483613ba2565b60405161028c816102858185613e54565b0382613bf4565b83526040516102a2816102858160018601613e54565b60208401526040516102bb816102858160028601613e54565b604084015260038101546001600160a01b031660608401908152926102e260048301613faa565b91608082019283526102f660088201613faa565b9160a0810192835261034161030d600c8401613faa565b60c08301908152601084015460e0840190815260119094015461010090930192835296516001600160a01b031615156145f8565b604051602081895161035481838b613cb6565b8101600381520301902054926040516020818a5161037381838c613cb6565b8101600481520301902054946040516020818b5161039281838d613cb6565b81016005815203019020549751518510159182610726575b5081610719575b506103bb88614727565b7f80eba1cd492349e920baefa43c1bdfdbe192d932faaa377a890809e1f5fd81d76080604051931593841581528760208201528860408201528a6060820152a21561059b5750506040516020818751610415818389613cb6565b8101600d815203019020600560ff1982541617905560005b81811061053c57505060005b8181106104e257505060005b82811061044e57005b80610477600192604051602081895161046881838b613cb6565b81016005815203019020613d7e565b838060a01b0391549060031b1c166104c1600f54604080516020818b5161049f81838d613cb6565b8101600b815203019020600090878060a01b0386168252602052205490614032565b9060005260076020526104da6040600020918254614032565b905501610445565b600190600f5461050e826040516020818b516104ff81838d613cb6565b81016004815203019020613d7e565b848060a01b0391549060031b1c1660005260076020526105346040600020918254614032565b905501610439565b600190600f5461056d8261055e6020898c604051938492839251928391613cb6565b81016003815203019020613d7e565b848060a01b0391549060031b1c1660005260076020526105936040600020918254614032565b90550161042d565b926105b36105bb92936105c1959896979851906143cc565b9251906143cc565b90614032565b916105cc848461510d565b938460405160208186516105e1818389613cb6565b8101600c8152030190205560005b81811061065e5750509161065060409261063660207f4ffab350691aa5126b23f1851fcc0c9f14e8638028da934e9d2fd0807d0dcbf7968651809381928651928391613cb6565b8101600d815203019020600160ff19825416179055614727565b9382519182526020820152a2005b80610678600192604051602081895161046881838c613cb6565b838060a01b0391549060031b1c166106c48860406106a36020898b8451938492839251928391613cb6565b8101600b815203019020600090878060a01b038616825260205220546146c8565b81600052600760205260406000206106dd828254614032565b90557fa44638c1db6b4628ba529e00e5ac331c92a1b96fab88467daff8d8931e4b3ea5602061070b89614727565b92604051908152a3016105ef565b90505151861015886103b1565b51518610159150896103aa565b634e487b7160e01b600052602160045260246000fd5b346101db5760203660031901126101db576004356001600160401b0381116101db57610792602061077f81933690600401613c30565b8160405193828580945193849201613cb6565b8101600c81520301902054604051908152f35b346101db576107b336613f42565b9060ff60405160208186516107cb8183858b01613cb6565b8101600d8152030190205416926008841015610733576107f060036107f59514613fdc565b615367565b005b346101db5760203660031901126101db576004356001600160401b0381116101db57610827903690600401613c30565b6040519060ff81519260208181850195610842818389613cb6565b8101600d8152030190205416600881101580610733576006821415806115b7575b81816115a6575b501561153b5780610733578115801561152e575b15610a9a575050906040516020818451610899818387613cb6565b8101600d815203019020600560ff1982541617905560005b60405160208185516108c4818388613cb6565b810160038152030190205481101561092157600190600f546108f382604051602081895161055e81838c613cb6565b848060a01b0391549060031b1c1660005260076020526109196040600020918254614032565b9055016108b1565b5060005b6040516020818551610938818388613cb6565b810160048152030190205481101561099557600190600f546109678260405160208189516104ff81838c613cb6565b848060a01b0391549060031b1c16600052600760205261098d6040600020918254614032565b905501610925565b5060005b60405160208185516109ac818388613cb6565b81016005815203019020548110156107f5576109d581604051602081875161046881838a613cb6565b60018060a01b0391549060031b1c169060ff60405160208187516109fa81838a613cb6565b8101600d815203019020541691600883101561073357600192610a7457610a53604080516020818951610a2e81838c613cb6565b8101600b815203019020600090868060a01b038516825260205220545b600f54614032565b906000526007602052610a6c6040600020918254614032565b905501610999565b610a536040516020818851610a8a81838b613cb6565b8101600c81520301902054610a4b565b610733576002811480611523575b15610e285750906040516020818451610ac2818387613cb6565b8101600d815203019020600760ff198254161790556040516020818451610aea818387613cb6565b8101600381520301902054906040516020818551610b09818387613cb6565b81016004815203019020546040516020818651610b27818388613cb6565b810160058152030190205460009060005b610b428285614032565b811015610cb2576040516020818951610b5c81838b613cb6565b8101600281520301902081600052602052610b7b604060002054613e1a565b15610c245760019084811015610be1576040518851610ba691839160209082906104ff81838e613cb6565b838060a01b0391549060031b1c165b600f5490838060a01b03166000526007602052610bd86040600020918254614032565b90555b01610b38565b610c116040516020818b51610bf781838d613cb6565b81016005815203019020610c0b87846146c8565b90613d7e565b838060a01b0391549060031b1c16610bb5565b91610c3060019161478c565b92848110610bdb576040516020818a51610c4b81838c613cb6565b8101600c81520301902054610c85610c716020898c604051938492839251928391613cb6565b81016005815203019020610c0b88856146c8565b848060a01b0391549060031b1c166000526007602052610cab6040600020918254614032565b9055610bdb565b5093929190610ce990610ce3610cca82600f546143cc565b91610cde88610cd9878a614032565b614032565b6146c8565b9061510d565b9260005b818110610de057505060005b610d038583614032565b8110156107f5576001610d03916040516020818a51610d2381838b613cb6565b8101600281520301902081600052602052610d42604060002054613e1a565b610d4f575b019050610cf9565b83811015610da357610d6e816040516020818c516104ff81838d613cb6565b838060a01b0391549060031b1c165b828060a01b031660005260076020526040600020610d9c878254614032565b9055610d47565b610dcd6040516020818b51610db981838c613cb6565b81016005815203019020610c0b86846146c8565b838060a01b0391549060031b1c16610d7d565b80610dfa6001926040516020818c5161055e81838d613cb6565b838060a01b0391549060031b1c1660005260076020526040600020610e20878254614032565b905501610ced565b6000906003811480611518575b1561124f5750506040516020818351610e4f818388613cb6565b8101600d815203019020600760ff198254161790556040516020818351610e77818388613cb6565b81016003815203019020546040516020818451610e95818389613cb6565b8101600481520301902054926040516020818551610eb4818387613cb6565b8101600581520301902054926000805b858110611083575080610ce3610edf610eee93600f546143cc565b91610cde88610cd98b8a614032565b9260005b81811061103b5750506000945b848610610f0857005b6000955b610f168683614032565b87101561103157610f16600180986040516020818851610f3781838d613cb6565b8101600081520301902084600052602052604060002081600052602052604060002054151580610ff1575b610f70575b01975050610f0c565b84811015610fc657610f9181604051602081806104ff8d8d51928391613cb6565b838060a01b0391549060031b1c165b828060a01b031660005260076020526040600020610fbf898254614032565b9055610f67565b610fde60405160208180610bf78c8c51928391613cb6565b838060a01b0391549060031b1c16610fa0565b50604051602081885161100581838d613cb6565b810160008152030190208460005260205260406000208160005260205281604060002001541515610f62565b6001019550610eff565b80611055600192604051602081885161055e81838d613cb6565b838060a01b0391549060031b1c166000526007602052604060002061107b878254614032565b905501610ef2565b949360005b6110928689614032565b8110156112445760405160208186516110ac81838b613cb6565b8101600081520301902087600052602052604060002081600052602052604060002054151580611203575b15611178576001908881101561113b5761110081604051602081806104ff8c8c51928391613cb6565b838060a01b0391549060031b1c165b600f5490838060a01b031660005260076020526111326040600020918254614032565b90555b01611088565b611165604051602081885161115181838d613cb6565b81016005815203019020610c0b8b846146c8565b838060a01b0391549060031b1c1661110f565b9161118460019161478c565b9288811061113557604051602081875161119f81838c613cb6565b8101600c815203019020546111d6604051602081806111c28c8c51928391613cb6565b81016005815203019020610c0b8c856146c8565b848060a01b0391549060031b1c1660005260076020526111fc6040600020918254614032565b9055611135565b50604051602081865161121781838b613cb6565b810160008152030190208760005260205260406000208160005260205260016040600020015415156110d7565b509394600101610ec4565b6004141590506114d357604051602081835161126c818388613cb6565b8101600d815203019020600660ff198254161790556040516020818351611294818388613cb6565b81016009815203019020906040516112ab81613ba2565b6040516112bc816102858187613e54565b81526040516112d2816102858160018801613e54565b60208201526040516112eb816102858160028801613e54565b604082015260038301546001600160a01b0316606082015261130f60048401613faa565b608082015261132060088401613faa565b60a0820152611331600c8401613faa565b60c0820152610100601160108501549460e0840195865201549101908152604051602081845161136281838a613cb6565b810160038152030190205490604051602081855161138181838b613cb6565b81016004815203019020549160405160208186516113a081838c613cb6565b81016005815203019020549451915160005b82811061147a5750505060005b8281106114225750505060005b8281106113d557005b600190600f546113f482604051602081806104688c8b51928391613cb6565b848060a01b0391549060031b1c16600052600760205261141a6040600020918254614032565b9055016113cc565b60019061143183600f54614032565b61144c826104ff60208b604051809381928d51928391613cb6565b848060a01b0391549060031b1c1660005260076020526114726040600020918254614032565b9055016113bf565b60019061148983600f54614032565b6114a58261055e60208d8c604051938492839251928391613cb6565b848060a01b0391549060031b1c1660005260076020526114cb6040600020918254614032565b9055016113b2565b60405162461bcd60e51b815260206004820152601960248201527f54696d65206c696d697420686173206e6f7420706173736564000000000000006044820152606490fd5b50600e544211610e35565b50600e544211610aa8565b505060006001821461087e565b60405162461bcd60e51b815260206004820152603760248201527f5374617465206d757374206e6f742062652052656164792c205061796f75742c60448201527f2050656e616c74792c206f72205465726d696e617465640000000000000000006064820152608490fd5b90506107335760058214158161086a565b505060006007821415610863565b346101db5760203660031901126101db576004356001600160401b0381116101db576115f5903690600401613c30565b5060405162461bcd60e51b815260206004820152602560248201527f55736520636865636b526571756972656d656e7473416e64537461727420696e6044820152641cdd19585960da1b6064820152608490fd5b346101db5760203660031901126101db576004356001600160a01b038116908190036101db5760005260076020526020604060002054604051908152f35b346101db576116b3602061169a36613dd1565b9491928460409592955193828580945193849201613cb6565b8101600181520301902090600052602052604060002090600052602052604060002060028210156101db576020916116ea91613e0a565b90549060031b1c604051908152f35b346101db5760203660031901126101db576004356001600160401b0381116101db57602061077f61172e923690600401613c30565b810160098152030190206117ed604051916117548361174d8184613e54565b0384613bf4565b60405192611770846117698160018601613e54565b0385613bf4565b604051916117858361174d8160028501613e54565b60038101546001600160a01b03169261188b906118616117a760048501613faa565b6118376117b660088701613faa565b916118096117c6600c8901613faa565b956117fb601160108b01549a01549a6040519e8f9e8f926102408452610240840190613dac565b916020818403910152613dac565b8c810360408e015290613dac565b9860608b015260808a0190606080918051845260208101516020850152604081015160408501520151910152565b80516101008901526020810151610120890152604081015161014089015260600151610160880152565b805161018087015260208101516101a087015260408101516101c0870152606001516101e0860152565b6102008401526102208301520390f35b346101db5760003660031901126101db576020600e54604051908152f35b346101db5760603660031901126101db576004356001600160401b0381116101db576118e9903690600401613c30565b6044356001600160401b0381116101db57611908903690600401613c30565b60ff604051602081855161191f8183858a01613cb6565b8101600d81520301902054169160088310156107335761194460026107f5941461479b565b6024359061512d565b61195636613ed7565b91906040519260ff8351946020818187019761197381838b613cb6565b8101600d815203019020541660088110156107335761199290156145b8565b60405160208185516119a581838a613cb6565b810160098152030190206040516119bb81613ba2565b6040516119cc816102858186613e54565b81526040516119e2816102858160018701613e54565b60208201526040516119fb816102858160028701613e54565b604082015260038201546001600160a01b03166060820190815290611a2260048401613faa565b60808201908152611a3560088501613faa565b9060a08301918252611a80611a4c600c8701613faa565b60c08501908152601087015460e0860190815260119097015461010090950194855294516001600160a01b031615156145f8565b805160408101514210159081611ebd575b5015611e7857602081510151611e04575b50906020611abd611ac995826105bb955101519051906143cc565b935101519051906143cc565b91611ae5611ade600f549460011c8095614032565b3414614747565b611b0c6040516020818751611afb81838c613cb6565b810160058152030190203390614682565b6040516020818651611b1f81838b613cb6565b81016005815203019020546000198101908111611dee576040516020818751611b4981838c613cb6565b8101600681520301902060018060a01b03331660005260205260406000205560405190611b7582613bbe565b815260208101918252604080516020818751611b9281838c613cb6565b600a908201908152030190203360009081526020919091522090518051906001600160401b038211611d6357611bd282611bcc8554613e1a565b856146d5565b602090601f8311600114611d84579180611c079260019594600092611d79575b50508160011b916000199060031b1c19161790565b81555b0190518051906001600160401b038211611d6357611c2c82611bcc8554613e1a565b602090601f8311600114611cf25792611c6783602094611c9f9994611c7b97600092611ce75750508160011b916000199060031b1c19161790565b90555b604051809381928751928391613cb6565b8101600b81520301902060018060a01b033316600052602052604060002055614727565b6040519060408252600260408301526104f560f41b60608301523460208301527f1af46271af54d57fe55a991b9f8ed2ede0043b12ff8a8bd580d9e2b9d384403d60803393a3005b015190508a80611bf2565b90601f1983169184600052816000209260005b818110611d4b575093611c9f9893611c7b96936001938360209810611d32575b505050811b019055611c6a565b015160001960f88460031b161c19169055898080611d25565b92936020600181928786015181550195019301611d05565b634e487b7160e01b600052604160045260246000fd5b015190508980611bf2565b90601f1983169184600052816000209260005b818110611dd65750916001959492918387959310611dbd575b505050811b018155611c0a565b015160001960f88460031b161c19169055888080611db0565b92936020600181928786015181550195019301611d97565b634e487b7160e01b600052601160045260246000fd5b6020611e20818b8b604097969751938492839251928391613cb6565b8101600581520301902054915101511115611e3c579088611aa2565b60405162461bcd60e51b815260206004820152601460248201527313d4081b585e0818dbdd5b9d081c995858da195960621b6044820152606490fd5b60405162461bcd60e51b815260206004820152601d60248201527f4f757473696465204f5020726563727569746d656e7420706572696f640000006044820152606490fd5b6060915001514211158a611a91565b346101db5760203660031901126101db576004356001600160401b0381116101db57611f03602061077f60ff933690600401613c30565b8101600d81520301902054166040516008821015610733576020918152f35b346101db5760403660031901126101db576004356001600160401b0381116101db57611f52903690600401613c30565b6024356001600160401b0381116101db57366023820112156101db578060040135611f7c81613cd9565b91611f8a6040519384613bf4565b8183526024602084019260051b820101903682116101db5760248101925b828410611ff257858560ff6040516020818551611fc88183858a01613cb6565b8101600d815203019020541691600883101561073357611fed60026107f5941461479b565b614d03565b83356001600160401b0381116101db57602091612016839260243691870101613c30565b815201930192611fa8565b346101db5761202f36613f42565b9060ff60405160208186516120478183858b01613cb6565b8101600d81520301902054169260088410156107335761206c60016107f595146143df565b614a13565b346101db5760003660031901126101db576020604051610e108152f35b346101db5760203660031901126101db576004356001600160401b0381116101db576120c86120c36020923690600401613c30565b6147f2565b604051908152f35b6120d936613ed7565b909160405160ff825191602081818601946120f5818388613cb6565b8101600d815203019020541660088110156107335761211490156145b8565b6040516020818451612127818387613cb6565b810160098152030190206121f660405161214081613ba2565b604051612151816102858187613e54565b8152604051612167816102858160018801613e54565b6020820152604051612180816102858160028801613e54565b604082015260038301546001600160a01b031660608201908152906121a760048501613faa565b608082015261010060116121bd60088701613faa565b9560a084019687526121d1600c8201613faa565b60c0850152601081015460e08501520154910152516001600160a01b031615156145f8565b805160408101514210159081612574575b501561252f57602060405181818651612221818389613cb6565b81016004815203019020549151015111156124f357612243600f543414614636565b61226a6040516020818551612259818388613cb6565b810160048152030190203390614682565b604051602081845161227d818387613cb6565b8101600481520301902054906000198201918211611dee5760206122ec916040938451838188516122af818388613cb6565b600690820190815203019020336000908152908452859020558351966122d488613bbe565b87528187019586528351809381928751928391613cb6565b8101600a81520301902060009060018060a01b03331682526020522092519283516001600160401b038111611d635761232f816123298454613e1a565b846146d5565b6020601f821160011461248a57908061236392600195969760009261247f5750508160011b916000199060031b1c19161790565b81555b0191519182516001600160401b038111611d6357612388816123298454613e1a565b6020601f821160011461241a5781906123b993949560009261240f5750508160011b916000199060031b1c19161790565b90555b6123c8600f5491614727565b60405191604083526002604084015261043560f41b606084015260208301527f1af46271af54d57fe55a991b9f8ed2ede0043b12ff8a8bd580d9e2b9d384403d60803393a3005b015190508580611bf2565b601f1982169083600052806000209160005b8181106124675750958360019596971061244e575b505050811b0190556123bc565b015160001960f88460031b161c19169055848080612441565b9192602060018192868b01518155019401920161242c565b015190508780611bf2565b601f1982169583600052816000209660005b8181106124db57509160019596979184879594106124c2575b505050811b018155612366565b015160001960f88460031b161c191690558680806124b5565b8383015189556001909801976020938401930161249c565b60405162461bcd60e51b815260206004820152601460248201527310d4081b585e0818dbdd5b9d081c995858da195960621b6044820152606490fd5b60405162461bcd60e51b815260206004820152601d60248201527f4f75747369646520435020726563727569746d656e7420706572696f640000006044820152606490fd5b60609150015142111586612207565b346101db57602061259661018e36613d4d565b81016002815203019020906000526020526125d56102856125c1604060002060405192838092613e54565b604051918291602083526020830190613dac565b0390f35b346101db5760206125ec61018e36613c75565b8101600a8152030190209060018060a01b031660005260205261265260406000206125d5600161263e6040519361262e856126278184613e54565b0386613bf4565b6102856040518094819301613e54565b604051938493604085526040850190613dac565b908382036020850152613dac565b346101db57602061267361018e36613c75565b8101600b8152030190209060018060a01b03166000526020526020604060002054604051908152f35b346101db576126af602061169a36613dd1565b8101600081520301902090600052602052604060002090600052602052604060002060028210156101db576020916116ea91613e0a565b346101db5760003660031901126101db576020600854604051908152f35b346101db5760003660031901126101db57336000526007602052604060002054801561278257336000526007602052600060408120556000808080843382f115612776576040519081527f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d560203392a2005b6040513d6000823e3d90fd5b60405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b6044820152606490fd5b6102603660031901126101db576004356001600160401b0381116101db576127ec903690600401613c30565b6024356001600160401b0381116101db5761280b903690600401613c30565b6044356001600160401b0381116101db5761282a903690600401613c30565b90610224356001600160401b0381116101db5761284b903690600401613c30565b610244356001600160401b0381116101db5761286b903690600401613c30565b9360016064351061346057600260e4351061341b57600261018435106133d6576084351580156133c8575b156133835760e435610104351061334657610184356101a435106133095761012435156132cc576101c4351561328f5760c43560a435101561324a576101643561014435101561320557610204356101e43510156131c05761291161290161012435610104356143cc565b6105bb6101c4356101a4356143cc565b92612921611ade85600f54614032565b6008549461292e8661478c565b600855858660009772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b81101561319a575b50806d04ee2d6d415b85acef8100000000600a92101561317f575b662386f26fc1000081101561316b575b6305f5e10081101561315a575b61271081101561314b575b606481101561313d575b1015613132575b600a60216129b960018a01613c15565b986129c76040519a8b613bf4565b60018101808b526129d790613c15565b601f19013660208c01378901015b60001901916f181899199a1a9b1b9c1cb0b131b232b360811b8282061a8353048015612a1457600a90916129e5565b5050612a536026604051809865726f756e645f60d01b6020830152612a428151809260208686019101613cb6565b81010301601f198101885287613bf4565b604051612a5f81613bd9565b6064358152608435602082015260a435604082015260c4356060820152604051612a8881613bd9565b60e435815261010435602082015261014435604082015261016435606082015260405191612ab583613bd9565b6101843583526101a43560208401526101e435604084015261020435606084015260405195612ae387613ba2565b86526020860194855260408601938452606086013381526080870191825260a0870192835260c0870193845260e08701946101243586526101008801966101c4358852612b3f60208d8160405193828580945193849201613cb6565b8101600981520301902098518051906001600160401b038211611d6357612b7082612b6a8d54613e1a565b8d6146d5565b602090601f83116001146130cb57612ba0929160009183612fe45750508160011b916000199060031b1c19161790565b89555b51805160018a01916001600160401b038211611d6357612bc782611bcc8554613e1a565b602090601f831160011461306457612bf7929160009183612fe45750508160011b916000199060031b1c19161790565b90555b51805160028901916001600160401b038211611d6357612c1e82611bcc8554613e1a565b602090601f8311600114612fef579360609693612c5d8489979560119d9c9b99958997600092612fe45750508160011b916000199060031b1c19161790565b90555b60038b019060018060a01b039051166bffffffffffffffffffffffff60a01b82541617905551805160048b0155602081015160058b0155604081015160068b0155015160078901555180516008890155602081015160098901556040810151600a8901550151600b870155518051600c8701556020810151600d8701556040810151600e8701550151600f85015551601084015551910155612d236040518451612d0e818360208901613cb6565b81019060058252602081339303019020614682565b6040516020818551612d388183858a01613cb6565b8101600681520301902060018060a01b0333166000526020526000604081205560405190612d6582613bbe565b815260208101938452604080516020818651612d848183858b01613cb6565b600a908201908152030190203360009081526020919091522090518051906001600160401b038211611d6357612dbe82611bcc8554613e1a565b602090601f8311600114612f7a579180612df29260019594600092612f6f5750508160011b916000199060031b1c19161790565b81555b0192519283516001600160401b038111611d6357612e17816123298454613e1a565b6020601f8211600114612f06579080612e4a926125d59760009261247f5750508160011b916000199060031b1c19161790565b90555b6040516020818451612e628183858901613cb6565b8101600b81520301902060018060a01b0333166000526020526040600020556040516020818351612e968183858801613cb6565b8101600d81520301902060ff198154169055612eb181614727565b6040519060843582526101043560208301526101a43560408301527ffebc2122a990b8103bf8a11c9bd5290ae6333f8efa8afdf1f1e1cd941422a7f760603393a3604051918291602083526020830190613dac565b601f1982169583600052816000209660005b818110612f575750916125d59791846001959410612f3e575b505050811b019055612e4d565b015160001960f88460031b161c19169055868080612f31565b83830151895560019098019760209384019301612f18565b015190508880611bf2565b90601f1983169184600052816000209260005b818110612fcc5750916001959492918387959310612fb3575b505050811b018155612df5565b015160001960f88460031b161c19169055878080612fa6565b92936020600181928786015181550195019301612f8d565b015190503880611bf2565b90601f1983169184600052816000209260005b81811061304c57508460119c9b9a989460609a9793948b99958a9860019510613033575b505050811b019055612c60565b015160001960f88460031b161c19169055388080613026565b92936020600181928786015181550195019301613002565b90601f1983169184600052816000209260005b8181106130b3575090846001959493921061309a575b505050811b019055612bfa565b015160001960f88460031b161c191690558f808061308d565b92936020600181928786015181550195019301613077565b90601f198316918c600052816000209260005b81811061311a5750908460019594939210613101575b505050811b018955612ba3565b015160001960f88460031b161c191690558f80806130f4565b929360206001819287860151815501950193016130de565b6001909601956129a9565b6064600291049801976129a2565b61271060049104980197612998565b6305f5e1006008910498019761298d565b662386f26fc1000060109104980197612980565b6d04ee2d6d415b85acef810000000060209104980197612970565b6040985072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b90049050600a612955565b60405162461bcd60e51b815260206004820152601960248201527f4950207265637275697420706572696f6420696e76616c6964000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601960248201527f4350207265637275697420706572696f6420696e76616c6964000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601960248201527f4f50207265637275697420706572696f6420696e76616c6964000000000000006044820152606490fd5b60405162461bcd60e51b81526020600482015260156024820152740495020726577617264206d757374206265203e203605c1b6044820152606490fd5b60405162461bcd60e51b81526020600482015260156024820152740435020726577617264206d757374206265203e203605c1b6044820152606490fd5b60405162461bcd60e51b815260206004820152601560248201527424a81036b0bc1036bab9ba103132901f1e9036b4b760591b6044820152606490fd5b60405162461bcd60e51b815260206004820152601560248201527421a81036b0bc1036bab9ba103132901f1e9036b4b760591b6044820152606490fd5b60405162461bcd60e51b815260206004820152601a60248201527f4f50206d6178206d757374206265203e3d206d696e206f7220300000000000006044820152606490fd5b506064356084351015612896565b60405162461bcd60e51b815260206004820152601960248201527f4950206d696e20636f756e74206d757374206265203e3d2032000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601960248201527f4350206d696e20636f756e74206d757374206265203e3d2032000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601960248201527f4f50206d696e20636f756e74206d757374206265203e3d2031000000000000006044820152606490fd5b60403660031901126101db576004356001600160401b0381116101db576134d0903690600401613c30565b6024356001600160401b0381116101db576134ef903690600401613c30565b6040519160ff8151936020818185019661350a81838a613cb6565b8101600d815203019020541660088110156107335761352990156145b8565b604051602081835161353c818389613cb6565b8101600981520301902061360b60405161355581613ba2565b604051613566816102858187613e54565b815260405161357c816102858160018801613e54565b6020820152604051613595816102858160028801613e54565b604082015260038301546001600160a01b031660608201908152906135bc60048501613faa565b60808201526135cd60088501613faa565b60a082015261010060116135e3600c8701613faa565b60c08401908152601087015460e0850152950154910152516001600160a01b031615156145f8565b805160408101514210159081613987575b50156139425760206040518181855161363681838b613cb6565b810160038152030190205491510151111561390657613658600f543414614636565b61367f604051602081845161366e81838a613cb6565b810160038152030190203390614682565b6040516020818351613692818389613cb6565b81016003815203019020546000198101908111611dee5760405160208184516136bc81838a613cb6565b8101600681520301902060018060a01b0333166000526020526040600020556040516136e781613bbe565b60406137186020809683516136fc8382613bf4565b6000815285528185019687528351809381928851928391613cb6565b600a908201908152030190203360009081529086522090518051906001600160401b038211611d635761374f82611bcc8554613e1a565b8590601f831160011461389c5791806137829260019594600092612f6f5750508160011b916000199060031b1c19161790565b81555b0191519182516001600160401b038111611d63576137a7816123298454613e1a565b8493601f8211600114613838576137d8929394829160009261382d5750508160011b916000199060031b1c19161790565b90555b6137e7600f5491614727565b9060405192604084526002604085015261049560f41b60608501528301527f1af46271af54d57fe55a991b9f8ed2ede0043b12ff8a8bd580d9e2b9d384403d60803393a3005b015190508680611bf2565b601f1982169483600052866000209160005b888882106138865750508360019596971061386d575b505050811b0190556137db565b015160001960f88460031b161c19169055858080613860565b600184958293958501518155019401920161384a565b90601f1983169184600052876000209260005b898282106138f05750509160019594929183879593106138d7575b505050811b018155613785565b015160001960f88460031b161c191690558780806138ca565b60018596829396860151815501950193016138af565b60405162461bcd60e51b81526020600482015260146024820152731254081b585e0818dbdd5b9d081c995858da195960621b6044820152606490fd5b60405162461bcd60e51b815260206004820152601d60248201527f4f75747369646520495020726563727569746d656e7420706572696f640000006044820152606490fd5b6060915001514211158561361c565b346101db5760a03660031901126101db576004356001600160401b0381116101db576139c6903690600401613c30565b60ff60405160208184516139dd8183858901613cb6565b8101600d815203019020541690600882101561073357613a0260016107f593146143df565b60843590606435906044359060243590614423565b346101db576020613a2a61018e36613d4d565b8101600581520301902080548210156101db576020916101c291613d7e565b346101db576020613a5c61018e36613d4d565b8101600481520301902080548210156101db576020916101c291613d7e565b346101db5760803660031901126101db576004356001600160401b0381116101db57613aab903690600401613c30565b6044356001600160401b0381116101db57613aca903690600401613cf0565b6064356001600160401b0381116101db57613ae9903690600401613cf0565b9060ff6040516020818651613b018183858b01613cb6565b8101600d815203019020541692600884101561073357613b2660036107f59514613fdc565b6024359061403f565b346101db5760003660031901126101db576080600f5460105460115460125491604051938452602084015260408301526060820152f35b346101db576020613b7961018e36613c75565b810160068152030190209060018060a01b03166000526020526020604060002054604051908152f35b61012081019081106001600160401b03821117611d6357604052565b604081019081106001600160401b03821117611d6357604052565b608081019081106001600160401b03821117611d6357604052565b90601f801991011681019081106001600160401b03821117611d6357604052565b6001600160401b038111611d6357601f01601f191660200190565b81601f820112156101db57602081359101613c4a82613c15565b92613c586040519485613bf4565b828452828201116101db5781600092602092838601378301015290565b60406003198201126101db57600435906001600160401b0382116101db57613c9f91600401613c30565b906024356001600160a01b03811681036101db5790565b60005b838110613cc95750506000910152565b8181015183820152602001613cb9565b6001600160401b038111611d635760051b60200190565b9080601f830112156101db578135613d0781613cd9565b92613d156040519485613bf4565b81845260208085019260051b8201019283116101db57602001905b828210613d3d5750505090565b8135815260209182019101613d30565b60406003198201126101db57600435906001600160401b0382116101db57613d7791600401613c30565b9060243590565b8054821015613d965760005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b90602091613dc581518092818552858086019101613cb6565b601f01601f1916010190565b60806003198201126101db57600435906001600160401b0382116101db57613dfb91600401613c30565b90602435906044359060643590565b6002821015613d96570190600090565b90600182811c92168015613e4a575b6020831014613e3457565b634e487b7160e01b600052602260045260246000fd5b91607f1691613e29565b60009291815491613e6483613e1a565b8083529260018116908115613eba5750600114613e8057505050565b60009081526020812093945091925b838310613ea0575060209250010190565b600181602092949394548385870101520191019190613e8f565b915050602093945060ff929192191683830152151560051b010190565b60606003198201126101db576004356001600160401b0381116101db5781613f0191600401613c30565b916024356001600160401b0381116101db5782613f2091600401613c30565b91604435906001600160401b0382116101db57613f3f91600401613c30565b90565b60606003198201126101db576004356001600160401b0381116101db5781613f6c91600401613c30565b916024356001600160401b0381116101db5782613f8b91600401613cf0565b91604435906001600160401b0382116101db57613f3f91600401613cf0565b90604051613fb781613bd9565b6060600382948054845260018101546020850152600281015460408501520154910152565b15613fe357565b60405162461bcd60e51b815260206004820152602160248201527f5374617465206d757374206265205369676e6174757265735375626d697474656044820152601960fa1b6064820152608490fd5b91908201809211611dee57565b919092604051938351946020818187019761405b81838b613cb6565b810160058152030190205491600073a8738ae018c03e69d8479aedfafbd32c4290669b905b8481106141db5750505050505060005b60405160208184516140a3818389613cb6565b81016005815203019020548110156141ab5760005b6140fd60405160208186516140ce81838b613cb6565b810160048152030190205460405160208187516140ec81838c613cb6565b810160058152030190205490614032565b8110156141a257604051602081855161411781838a613cb6565b81016000815203019020826000526020526040600020816000526020526040600020541580614162575b61414d576001016140b8565b50505050610e104201804211611dee57600e55565b50604051602081855161417681838a613cb6565b810160008152030190208260005260205260406000208160005260205260016040600020015415614141565b50600101614090565b506141c491602091604051938492839251928391613cb6565b8101600d815203019020600460ff19825416179055565b6141e581876143a2565b516141f082856143a2565b5160405191633681229b60e21b835260048301526024820152604081604481865af4908115612776576000908192614371575b5061423c60208b8b604051938492839251928391613cb6565b810160018152030190208360005260205260406000208660005260205260406000205414908161432d575b50156142f85760405161427981613bbe565b61428382886143a2565b51815261429082856143a2565b516020820152604051602081806142ab8d8d51928391613cb6565b810160008152030190208260005260205260406000208560005260205260406000209060005b600281106142e457505050600101614080565b6001906020835193019281850155016142d1565b60405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420736861726560981b6044820152606490fd5b9050604051602081806143448d8d51928391613cb6565b81016001815203019020826000526020526040600020856000526020526001604060002001541438614267565b9050614394915060403d811161439b575b61438c8183613bf4565b8101906143b6565b9038614223565b503d614382565b8051821015613d965760209160051b010190565b91908260409103126101db576020825192015190565b81810292918115918404141715611dee57565b156143e657565b60405162461bcd60e51b815260206004820152601560248201527414dd185d19481b5d5cdd08189948125b9d9bdad959605a1b6044820152606490fd5b929190936040519261443484613bbe565b83526020830152604051938351946020818187019761445481838b613cb6565b810160018152030190209060005260205260406000209060005260205260406000209060005b600281106145a45750505060005b604051602081845161449b818389613cb6565b81016005815203019020548110156145655760005b6144c660405160208186516140ce81838b613cb6565b81101561455c5760405160208185516144e081838a613cb6565b8101600181520301902082600052602052604060002081600052602052604060002054158061451c575b614516576001016144b0565b50505050565b50604051602081855161453081838a613cb6565b81016001815203019020826000526020526040600020816000526020526001604060002001541561450a565b50600101614488565b5061457e91602091604051938492839251928391613cb6565b8101600d815203019020600260ff19825416179055610e104201804211611dee57600e55565b60019060208351930192818501550161447a565b156145bf57565b60405162461bcd60e51b81526020600482015260116024820152704d75737420626520507265706172696e6760781b6044820152606490fd5b156145ff57565b60405162461bcd60e51b815260206004820152600f60248201526e149bdd5b99081b9bdd08199bdd5b99608a1b6044820152606490fd5b1561463d57565b60405162461bcd60e51b815260206004820152601960248201527f496e76616c69642070617274696369706174696f6e20666565000000000000006044820152606490fd5b805468010000000000000000811015611d63576146a491600182018155613d7e565b81546001600160a01b0393841660039290921b91821b9390911b1916919091179055565b91908203918211611dee57565b601f82116146e257505050565b6000526020600020906020601f840160051c8301931061471d575b601f0160051c01905b818110614711575050565b60008155600101614706565b90915081906146fd565b61473f90602060405192828480945193849201613cb6565b810103902090565b1561474e57565b60405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590819195c1bdcda5d08185b5bdd5b9d60521b6044820152606490fd5b6000198114611dee5760010190565b156147a257565b60405162461bcd60e51b815260206004820152602260248201527f5374617465206d75737420626520436f6d6d69746d656e74735375626d697474604482015261195960f21b6064820152608490fd5b6040519060ff8151926020818185019561480d818389613cb6565b8101600d8152030190205416600881101561073357600261482e911461479b565b6040516020818351614841818388613cb6565b8101600481520301902054916040516020818451614860818387613cb6565b81016005815203019020549161487f6148798486614032565b846143cc565b938460011b9480860460021490151715611dee576148b76148a1869596613cd9565b946148af6040519687613bf4565b808652613cd9565b602085019590601f19013687376000905b80821061492f575050505050604051908160208101936040820192602086525180935260608201909260005b818110614916575050614910925003601f198101835282613bf4565b51902090565b84518352602094850194869450909201916001016148f4565b9193959092949660005b6149438487614032565b8110156149ff5760005b6002811061495e5750600101614939565b604051602081806149738d8d51928391613cb6565b810160018152030190208660005260205260406000208260005260205261499e816040600020613e0a565b90549060031b1c906149b96149b3878a614032565b886143cc565b918260011b9280840460021490151715611dee578360011b84810460021485151715611dee576149f283610cd96149f893600197614032565b8d6143a2565b520161494d565b5096959391909492600101909594956148c8565b908051835103614cb2576040519282519360208181860196614a3681838a613cb6565b81016004815203019020546040516020818651614a5481838b613cb6565b8101600581520301902054916000915b838310614b4a57505050505060005b6040516020818451614a86818389613cb6565b81016005815203019020548110156145655760005b614ab160405160208186516140ce81838b613cb6565b811015614b41576040516020818551614acb81838a613cb6565b81016001815203019020826000526020526040600020816000526020526040600020541580614b01575b61451657600101614a9b565b506040516020818551614b1581838a613cb6565b810160018152030190208260005260205260406000208160005260205260016040600020015415614af5565b50600101614a73565b9091949295939660005b614b5e8884614032565b811015614ca2576040516020818751614b7881838c613cb6565b810160018152030190208760005260205260406000208160005260205260406000205415801590614c61575b614c5957604051614bb481613bbe565b614bd4614bce83610cd9614bc88d89614032565b8c6143cc565b8b6143a2565b518152614bf1614beb83610cd9614bc88d89614032565b866143a2565b5160208201526040516020818851614c0a81838d613cb6565b810160018152030190208860005260205260406000208260005260205260406000209060005b60028110614c45575050506001905b01614b54565b600190602083519301928185015501614c30565b600190614c3f565b506040516020818751614c7581838c613cb6565b81016001815203019020876000526020526040600020816000526020526001604060002001541515614ba4565b5096939592946001019190614a64565b60405162461bcd60e51b815260206004820152602360248201527f787320616e64207973206d7573742068617665207468652073616d65206c656e6044820152620cee8d60eb1b6064820152608490fd5b91906040519083519160208181870194614d1e818388613cb6565b81016004815203019020546040516020818751614d3c818389613cb6565b8101600581520301902054938251614d548684614032565b036150c85760005b614d668684614032565b811015614ff2576040516020818951614d8081838b613cb6565b8101600281520301902081600052602052614d9f604060002054613e1a565b614fe757614dac876147f2565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600052601c52614e36603c600020868984878110600014614f9d576104ff6020614e3f94614e0694604051938492839251928391613cb6565b905460039190911b1c6001600160a01b03165b6001600160a01b0316928392614e2f868a6143a2565b5190615811565b9092919261584d565b6001600160a01b031603614f535750614e5881856143a2565b516040516020818a51614e6c81838c613cb6565b81016002815203019020826000526020526040600020908051906001600160401b038211611d6357614ea282611bcc8554613e1a565b602090601f8311600114614ee55782614d66959360019593614eda93600092612fe45750508160011b916000199060031b1c19161790565b90555b019050614d5c565b90601f1983169184600052816000209260005b818110614f3b57509260019593928592614d669896889510614f22575b505050811b019055614edd565b015160001960f88460031b161c19169055388080614f15565b92936020600181928786015181550195019301614ef8565b3314614f64576001614d6691614edd565b60405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606490fd5b50614fbc6020614e3f93614fd093604051938492839251928391613cb6565b81016005815203019020610c0b88876146c8565b905460039190911b1c6001600160a01b0316614e19565b6001614d6691614edd565b50949350505060005b61502f6040516020818651615011818389613cb6565b810160048152030190205460405160208187516140ec81838a613cb6565b811015615089576040516020818551615049818388613cb6565b8101600281520301902081600052602052615068604060002054613e1a565b1561507557600101614ffb565b505050610e104201804211611dee57600e55565b506020906150a292604051938492839251928391613cb6565b8101600d815203019020600360ff19825416179055610e104201804211611dee57600e55565b60405162461bcd60e51b815260206004820152601c60248201527f496e76616c6964206e756d626572206f66207369676e617475726573000000006044820152606490fd5b8115615117570490565b634e487b7160e01b600052601260045260246000fd5b91615137836147f2565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600052601c52603c6000209161519e6040519361519584875196602081818b019961518481838d613cb6565b810160048152030190205492615811565b9093919361584d565b8083101561532557506151be8260405160208189516104ff81838c613cb6565b905460039190911b1c6001600160a01b03165b6001600160a01b03908116911603614f645760405160208186516151f6818389613cb6565b81016002815203019020906000526020526040600020908051906001600160401b038211611d635761522c82611bcc8554613e1a565b602090601f83116001146152be5761525c929160009183612fe45750508160011b916000199060031b1c19161790565b90555b60005b6152786040516020818651615011818389613cb6565b811015615089576040516020818551615292818388613cb6565b81016002815203019020816000526020526152b1604060002054613e1a565b1561507557600101615262565b90601f1983169184600052816000209260005b81811061530d57509084600195949392106152f4575b505050811b01905561525f565b015160001960f88460031b161c191690553880806152e7565b929360206001819287860151815501950193016152d1565b61535090610c0b6040516020818a5161533f81838d613cb6565b8101600581520301902091856146c8565b905460039190911b1c6001600160a01b03166151d1565b9080518351036157c057604051928251936020818186019661538a81838a613cb6565b810160048152030190205460405160208186516153a881838b613cb6565b81016005815203019020549160009173a8738ae018c03e69d8479aedfafbd32c4290669b935b8084106154b55750505050505060005b60405160208184516153f1818389613cb6565b81016005815203019020548110156141ab5760005b61541c60405160208186516140ce81838b613cb6565b8110156154ac57604051602081855161543681838a613cb6565b8101600081520301902082600052602052604060002081600052602052604060002054158061546c575b61414d57600101615406565b50604051602081855161548081838a613cb6565b810160008152030190208260005260205260406000208160005260205260016040600020015415615460565b506001016153de565b909192959396949760005b6154ca8385614032565b8110156157af5760405160208188516154e481838d613cb6565b810160008152030190208860005260205260406000208160005260205260406000205415158061576e575b61576657615527614bce82610cd9614bc88789614032565b5161554861554283610cd961553c888a614032565b8d6143cc565b876143a2565b5160405191633681229b60e21b8352600483015260248201526040816044818d5af48015612776576000918291615746575b50858310156156ff5761559f836104ff60208c8c604051938492839251928391613cb6565b905460039190911b1c6001600160a01b0316915b6155cb60208b8b604051938492839251928391613cb6565b810160018152030190208b6000526020526040600020846000526020526040600020541490816156bb575b50156156a4575060405161560981613bbe565b61562361561d83610cd961553c888a614032565b8c6143a2565b51815261563a61554283610cd961553c888a614032565b516020820152604051602081806156558c8c51928391613cb6565b810160008152030190208960005260205260406000208260005260205260406000209060005b60028110615690575050506001905b016154c0565b60019060208351930192818501550161567b565b6001600160a01b031633146142f85760019061568a565b9050604051602081806156d28d8d51928391613cb6565b810160018152030190208a60005260205260406000208360005260205260016040600020015414386155f6565b61572e61571a60208b8b604051938492839251928391613cb6565b81016005815203019020610c0b88866146c8565b905460039190911b1c6001600160a01b0316916155b3565b9050615760915060403d811161439b5761438c8183613bf4565b3861557a565b60019061568a565b50604051602081885161578281838d613cb6565b8101600081520301902088600052602052604060002081600052602052600160406000200154151561550f565b5097949693956001019291906153ce565b60405162461bcd60e51b815260206004820152602360248201527f747320616e64207773206d7573742068617665207468652073616d65206c656e6044820152620cee8d60eb1b6064820152608490fd5b81519190604183036158425761583b92506020820151906060604084015193015160001a906158bf565b9192909190565b505060009160029190565b9190916004811015610733578061586357509050565b60006001820361587e5763f645eedf60e01b60005260046000fd5b506002810361589c578263fce698f760e01b60005260045260246000fd5b90916003600092146158ac575050565b6335e2f38360e21b825260045260249150fd5b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841161593c579160209360809260ff60009560405194855216868401526040830152606082015282805260015afa15612776576000516001600160a01b038116156159305790600090600090565b50600090600190600090565b5050506000916003919056fea2646970667358221220505598f002044352c2008106d9fffc29c25a42e54a7bab0077c7e32010474f2064736f6c634300081c0033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
0x8b1e759e962E5835B3f4C1429C876603313cE1b4
Loading...
Loading
Loading...
Loading

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.