ETH Price: $3,105.53 (-3.22%)
Gas: 8 Gwei

Token

veCRV-DAO yVault (yveCRV-DAO)
 

Overview

Max Total Supply

20,499,621.297749849132487599 yveCRV-DAO

Holders

615 (0.00%)

Market

Price

$0.66 @ 0.000212 ETH

Onchain Market Cap

$13,480,243.47

Circulating Supply Market Cap

$13,480,251.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 yveCRV-DAO

Value
$0.00
0x01d7f32b6e463c96c00575fa97b8224326c6a6b9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
veCurveVault

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-05
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when 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 SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint a, uint b) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, "add: +");

        return c;
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting with custom message on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, errorMessage);

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint a, uint b) internal pure returns (uint) {
        return sub(a, b, "sub: -");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        require(b <= a, errorMessage);
        uint c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint a, uint b) internal pure returns (uint) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint c = a * b;
        require(c / a == b, "mul: *");

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint c = a * b;
        require(c / a == b, errorMessage);

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint a, uint b) internal pure returns (uint) {
        return div(a, b, "div: /");
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts with custom message on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint a, uint b) internal pure returns (uint) {
        return mod(a, b, "mod: %");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface StrategyProxy {
    function lock() external;
}

interface FeeDistribution {
    function claim(address) external;
}

contract veCurveVault {
    using SafeMath for uint;

    /// @notice EIP-20 token name for this token
    string public constant name = "veCRV-DAO yVault";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "yveCRV-DAO";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 0; // Initial 0

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    mapping (address => mapping (address => uint)) internal allowances;
    mapping (address => uint) internal balances;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint chainId,address verifyingContract)");
    bytes32 public immutable DOMAINSEPARATOR;

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint nonce,uint expiry)");

    /// @notice The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint value,uint nonce,uint deadline)");


    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint votes;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", DOMAINSEPARATOR, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "delegateBySig: sig");
        require(nonce == nonces[signatory]++, "delegateBySig: nonce");
        require(now <= expiry, "delegateBySig: expired");
        _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) public view returns (uint) {
        require(blockNumber < block.number, "getPriorVotes:");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint srcRepNew = srcRepOld.sub(amount, "_moveVotes: underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint oldVotes, uint newVotes) internal {
      uint32 blockNumber = safe32(block.number, "_writeCheckpoint: 32 bits");

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint amount);

    /// @notice governance address for the governance contract
    address public governance;
    address public pendingGovernance;
    
    IERC20 public constant CRV = IERC20(0xD533a949740bb3306d119CC777fa900bA034cd52);
    address public constant LOCK = address(0xF147b8125d2ef93FB6965Db97D6746952a133934);
    address public proxy = address(0x7A1848e7847F3f5FfB4d8e63BdB9569db535A4f0);
    address public feeDistribution;
    
    IERC20 public constant rewards = IERC20(0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490);
    
    uint public index = 0;
    uint public bal = 0;
    
    mapping(address => uint) public supplyIndex;
    
    function update() external {
        _update();
    }
    
    function _update() internal {
        if (totalSupply > 0) {
            _claim();
            uint256 _bal = rewards.balanceOf(address(this));
            if (_bal > bal) {
                uint256 _diff = _bal.sub(bal, "veCRV::_update: bal _diff");
                if (_diff > 0) {
                    uint256 _ratio = _diff.mul(1e18).div(totalSupply);
                    if (_ratio > 0) {
                      index = index.add(_ratio);
                      bal = _bal;
                    }
                }
            }
        }
    }
    
    function _claim() internal {
        if (feeDistribution != address(0x0)) {
            FeeDistribution(feeDistribution).claim(address(this));
        }
    }
    
    function updateFor(address recipient) public {
        _update();
        uint256 _supplied = balances[recipient];
        if (_supplied > 0) {
            uint256 _supplyIndex = supplyIndex[recipient];
            supplyIndex[recipient] = index;
            uint256 _delta = index.sub(_supplyIndex, "veCRV::_claimFor: index delta");
            if (_delta > 0) {
              uint256 _share = _supplied.mul(_delta).div(1e18);
              claimable[recipient] = claimable[recipient].add(_share);
            }
        } else {
            supplyIndex[recipient] = index;
        }
    }
    
    mapping(address => uint) public claimable;
    
    function claim() external {
        _claimFor(msg.sender);
    }
    function claimFor(address recipient) external {
        _claimFor(recipient);
    }
    
    function _claimFor(address recipient) internal {
        updateFor(recipient);
        rewards.transfer(recipient, claimable[recipient]);
        claimable[recipient] = 0;
        bal = rewards.balanceOf(address(this));
    }

    constructor() public {
        // Set governance for this token
        governance = msg.sender;
        DOMAINSEPARATOR = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), _getChainId(), address(this)));
    }

    function _mint(address dst, uint amount) internal {
        updateFor(dst);
        // mint the amount
        totalSupply = totalSupply.add(amount);
        // transfer the amount to the recipient
        balances[dst] = balances[dst].add(amount);
        emit Transfer(address(0), dst, amount);
        
        // move delegates
        _moveDelegates(address(0), delegates[dst], amount);
    }
    
    function depositAll() external {
        _deposit(CRV.balanceOf(msg.sender));
    }
    
    function deposit(uint _amount) external {
        _deposit(_amount);
    }
    
    function _deposit(uint _amount) internal {
        CRV.transferFrom(msg.sender, LOCK, _amount);
        _mint(msg.sender, _amount);
        StrategyProxy(proxy).lock();
    }
    
    function setProxy(address _proxy) external {
        require(msg.sender == governance, "setGovernance: !gov");
        proxy = _proxy;
    }
    
    function setFeeDistribution(address _feeDistribution) external {
        require(msg.sender == governance, "setGovernance: !gov");
        feeDistribution = _feeDistribution;
    }
    
    /**
     * @notice Allows governance to change governance (for future upgradability)
     * @param _governance new governance address to set
     */
    function setGovernance(address _governance) external {
        require(msg.sender == governance, "setGovernance: !gov");
        pendingGovernance = _governance;
    }

    /**
     * @notice Allows pendingGovernance to accept their role as governance (protection pattern)
     */
    function acceptGovernance() external {
        require(msg.sender == pendingGovernance, "acceptGovernance: !pendingGov");
        governance = pendingGovernance;
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint amount) external returns (bool) {
        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Triggers an approval from owner to spends
     * @param owner The address to approve from
     * @param spender The address to be approved
     * @param amount The number of tokens that are approved (2^256-1 means infinite)
     * @param deadline The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function permit(address owner, address spender, uint amount, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, amount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", DOMAINSEPARATOR, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "permit: signature");
        require(signatory == owner, "permit: unauthorized");
        require(now <= deadline, "permit: expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint amount) external returns (bool) {
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint amount) external returns (bool) {
        address spender = msg.sender;
        uint spenderAllowance = allowances[src][spender];

        if (spender != src && spenderAllowance != uint(-1)) {
            uint newAllowance = spenderAllowance.sub(amount, "transferFrom: exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    function _transferTokens(address src, address dst, uint amount) internal {
        require(src != address(0), "_transferTokens: zero address");
        require(dst != address(0), "_transferTokens: zero address");
        
        updateFor(src);
        updateFor(dst);

        balances[src] = balances[src].sub(amount, "_transferTokens: exceeds balance");
        balances[dst] = balances[dst].add(amount, "_transferTokens: overflows");
        emit Transfer(src, dst, amount);
    }

    function _getChainId() internal pure returns (uint) {
        uint chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CRV","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAINSEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"claimFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDistribution","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGovernance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewards","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_feeDistribution","type":"address"}],"name":"setFeeDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxy","type":"address"}],"name":"setProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"supplyIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"updateFor","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000808055600980546001600160a01b031916737a1848e7847f3f5ffb4d8e63bdb9569db535a4f0179055600b819055600c5534801561004357600080fd5b50600780546001600160a01b0319163317905560408051808201909152601081526f1d9950d4958b511053c81e55985d5b1d60821b6020909101527f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f357fe221ea24e1957eed640af1c444f368d3df27b92f51aaa842e46ce73f81cadd6f6100c8610119565b3060405160200180858152602001848152602001838152602001826001600160a01b03168152602001945050505050604051602081830303815290604052805190602001206080818152505061011d565b4690565b6080516123a66101416000398061098c52806110f5528061135c52506123a66000f3fe608060405234801561001057600080fd5b50600436106102695760003560e01c8063782d6fe111610151578063b6b55f25116100c3578063de5f626811610087578063de5f626814610743578063e380fcad1461074b578063e7a324dc14610771578063ec55688914610779578063f1127ed814610781578063f39c38a0146107d357610269565b8063b6b55f251461063a578063c3cda52014610657578063d505accf1461069e578063dd62ed3e146106ef578063ddeae0331461071d57610269565b80639ec5a894116101155780639ec5a894146105aa578063a2e62045146105b2578063a4f0d7d0146105ba578063a9059cbb146105c2578063ab033ea9146105ee578063b4b5ea571461061457610269565b8063782d6fe1146105225780637ecebe001461054e578063945c91421461057457806395d89b411461057c57806397107d6d1461058457610269565b80632986c0e5116101ea5780634e71d92d116101ae5780634e71d92d14610461578063587cde1e146104695780635aa6e6751461048f5780635c19a95c146104975780636fcfff45146104bd57806370a08231146104fc57610269565b80632986c0e51461040557806330adf81f1461040d578063313ce567146104155780633d79d1c814610433578063402914f51461043b57610269565b80631919db33116102315780631919db331461037557806320606b701461039b578063238efcbc146103a357806323b872dd146103ab5780632479b177146103e157610269565b806306fdde031461026e578063095ea7b3146102eb5780630e0a59681461032b5780631778e29c1461035357806318160ddd1461036d575b600080fd5b6102766107db565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103176004803603604081101561030157600080fd5b506001600160a01b038135169060200135610807565b604080519115158252519081900360200190f35b6103516004803603602081101561034157600080fd5b50356001600160a01b031661086e565b005b61035b61098a565b60408051918252519081900360200190f35b61035b6109ae565b6103516004803603602081101561038b57600080fd5b50356001600160a01b03166109b4565b61035b610a2b565b610351610a4f565b610317600480360360608110156103c157600080fd5b506001600160a01b03813581169160208101359091169060400135610ad2565b6103e9610bb4565b604080516001600160a01b039092168252519081900360200190f35b61035b610bc3565b61035b610bc9565b61041d610bed565b6040805160ff9092168252519081900360200190f35b61035b610bf2565b61035b6004803603602081101561045157600080fd5b50356001600160a01b0316610bf8565b610351610c0a565b6103e96004803603602081101561047f57600080fd5b50356001600160a01b0316610c15565b6103e9610c30565b610351600480360360208110156104ad57600080fd5b50356001600160a01b0316610c3f565b6104e3600480360360208110156104d357600080fd5b50356001600160a01b0316610c4c565b6040805163ffffffff9092168252519081900360200190f35b61035b6004803603602081101561051257600080fd5b50356001600160a01b0316610c64565b61035b6004803603604081101561053857600080fd5b506001600160a01b038135169060200135610c7f565b61035b6004803603602081101561056457600080fd5b50356001600160a01b0316610e8e565b6103e9610ea0565b610276610eb8565b6103516004803603602081101561059a57600080fd5b50356001600160a01b0316610ede565b6103e9610f55565b610351610f6d565b6103e9610f75565b610317600480360360408110156105d857600080fd5b506001600160a01b038135169060200135610f8d565b6103516004803603602081101561060457600080fd5b50356001600160a01b0316610fa3565b61035b6004803603602081101561062a57600080fd5b50356001600160a01b031661101a565b6103516004803603602081101561065057600080fd5b503561107e565b610351600480360360c081101561066d57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611087565b610351600480360360e08110156106b457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356112c5565b61035b6004803603604081101561070557600080fd5b506001600160a01b0381358116916020013516611569565b6103516004803603602081101561073357600080fd5b50356001600160a01b0316611594565b61035161159d565b61035b6004803603602081101561076157600080fd5b50356001600160a01b0316611624565b61035b611636565b6103e961165a565b6107b36004803603604081101561079757600080fd5b5080356001600160a01b0316906020013563ffffffff16611669565b6040805163ffffffff909316835260208301919091528051918290030190f35b6103e9611696565b6040518060400160405280601081526020016f1d9950d4958b511053c81e55985d5b1d60821b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6108766116a5565b6001600160a01b0381166000908152600560205260409020548015610969576001600160a01b0382166000908152600d602090815260408083208054600b54918290558251808401909352601d83527f76654352563a3a5f636c61696d466f723a20696e6465782064656c7461000000938301939093529192916108fb9184906117d6565b90508015610962576000610921670de0b6b3a764000061091b868561186d565b906118c5565b6001600160a01b0386166000908152600e602052604090205490915061094790826118f0565b6001600160a01b0386166000908152600e6020526040902055505b5050610986565b600b546001600160a01b0383166000908152600d60205260409020555b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60005481565b6007546001600160a01b03163314610a09576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b6008546001600160a01b03163314610aae576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b600854600780546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b038316600081815260046020908152604080832033808552925282205491929091908214801590610b0c57506000198114155b15610b9d576000610b388560405180606001604052806027815260200161234a602791398491906117d6565b6001600160a01b0380891660008181526004602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b610ba8868686611933565b50600195945050505050565b600a546001600160a01b031681565b600b5481565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b600c5481565b600e6020526000908152604090205481565b610c1333611b14565b565b6001602052600090815260409020546001600160a01b031681565b6007546001600160a01b031681565b610c493382611c56565b50565b60036020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526005602052604090205490565b6000438210610cc6576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526003602052604090205463ffffffff1680610cf4576000915050610868565b6001600160a01b038416600090815260026020908152604080832063ffffffff600019860181168552925290912054168310610d63576001600160a01b03841660009081526002602090815260408083206000199490940163ffffffff16835292905220600101549050610868565b6001600160a01b038416600090815260026020908152604080832083805290915290205463ffffffff16831015610d9e576000915050610868565b600060001982015b8163ffffffff168163ffffffff161115610e5757600282820363ffffffff16048103610dd0612332565b506001600160a01b038716600090815260026020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610e32576020015194506108689350505050565b805163ffffffff16871115610e4957819350610e50565b6001820392505b5050610da6565b506001600160a01b038516600090815260026020908152604080832063ffffffff9094168352929052206001015491505092915050565b60066020526000908152604090205481565b73d533a949740bb3306d119cc777fa900ba034cd5281565b6040518060400160405280600a8152602001697976654352562d44414f60b01b81525081565b6007546001600160a01b03163314610f33576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b736c3f90f043a72fa612cbac8115ee7e52bde6e49081565b610c136116a5565b73f147b8125d2ef93fb6965db97d6746952a13393481565b6000610f9a338484611933565b50600192915050565b6007546001600160a01b03163314610ff8576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526003602052604081205463ffffffff1680611045576000611077565b6001600160a01b038316600090815260026020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b610c4981611cd6565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527f000000000000000000000000000000000000000000000000000000000000000060c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa15801561119a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166111f7576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090208054600181019091558814611262576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b864211156112b0576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b6112ba818a611c56565b505050505050505050565b6001600160a01b0380881660008181526006602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f000000000000000000000000000000000000000000000000000000000000000061010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa158015611400573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661145c576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b0316146114b9576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b86421115611500576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600460209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610c4981611b14565b604080516370a0823160e01b81523360048201529051610c139173d533a949740bb3306d119cc777fa900ba034cd52916370a0823191602480820192602092909190829003018186803b1580156115f357600080fd5b505afa158015611607573d6000803e3d6000fd5b505050506040513d602081101561161d57600080fd5b5051611cd6565b600d6020526000908152604090205481565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b6009546001600160a01b031681565b60026020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6008546001600160a01b031681565b60005415610c13576116b5611dec565b604080516370a0823160e01b81523060048201529051600091736c3f90f043a72fa612cbac8115ee7e52bde6e490916370a0823191602480820192602092909190829003018186803b15801561170a57600080fd5b505afa15801561171e573d6000803e3d6000fd5b505050506040513d602081101561173457600080fd5b5051600c54909150811115610c49576000611791600c546040518060400160405280601981526020017f76654352563a3a5f7570646174653a2062616c205f6469666600000000000000815250846117d69092919063ffffffff16565b9050801561098657600080546117b39061091b84670de0b6b3a764000061186d565b905080156117d157600b546117c890826118f0565b600b55600c8390555b505050565b600081848411156118655760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561182a578181015183820152602001611812565b50505050905090810190601f1680156118575780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261187c57506000610868565b8282028284828161188957fe5b0414611077576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b60006110778383604051806040016040528060068152602001656469763a202f60d01b815250611e5d565b600082820183811015611077576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b6001600160a01b03831661198e576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b0382166119e9576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6119f28361086e565b6119fb8261086e565b60408051808201825260208082527f5f7472616e73666572546f6b656e733a20657863656564732062616c616e6365818301526001600160a01b038616600090815260059091529190912054611a529183906117d6565b6001600160a01b0380851660009081526005602081815260408084209590955584518086018652601a81527f5f7472616e73666572546f6b656e733a206f766572666c6f7773000000000000818301529387168352529190912054611ab8918390611ec2565b6001600160a01b0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b611b1d8161086e565b6001600160a01b0381166000818152600e6020908152604080832054815163a9059cbb60e01b81526004810195909552602485015251736c3f90f043a72fa612cbac8115ee7e52bde6e4909363a9059cbb9360448083019493928390030190829087803b158015611b8d57600080fd5b505af1158015611ba1573d6000803e3d6000fd5b505050506040513d6020811015611bb757600080fd5b50506001600160a01b0381166000908152600e602090815260408083209290925581516370a0823160e01b81523060048201529151736c3f90f043a72fa612cbac8115ee7e52bde6e490926370a08231926024808301939192829003018186803b158015611c2457600080fd5b505afa158015611c38573d6000803e3d6000fd5b505050506040513d6020811015611c4e57600080fd5b5051600c5550565b6001600160a01b03808316600081815260016020818152604080842080546005845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611cd0828483611f20565b50505050565b604080516323b872dd60e01b815233600482015273f147b8125d2ef93fb6965db97d6746952a133934602482015260448101839052905173d533a949740bb3306d119cc777fa900ba034cd52916323b872dd9160648083019260209291908290030181600087803b158015611d4a57600080fd5b505af1158015611d5e573d6000803e3d6000fd5b505050506040513d6020811015611d7457600080fd5b50611d819050338261209e565b600960009054906101000a90046001600160a01b03166001600160a01b031663f83d08ba6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611dd157600080fd5b505af1158015611de5573d6000803e3d6000fd5b5050505050565b600a546001600160a01b031615610c1357600a5460408051630f41a04d60e11b815230600482015290516001600160a01b0390921691631e83409a9160248082019260009290919082900301818387803b158015611e4957600080fd5b505af1158015611cd0573d6000803e3d6000fd5b60008183611eac5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b506000838581611eb857fe5b0495945050505050565b60008383018285821015611f175760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b50949350505050565b816001600160a01b0316836001600160a01b031614158015611f425750600081115b156117d1576001600160a01b0383161561200d576001600160a01b03831660009081526003602052604081205463ffffffff169081611f82576000611fb4565b6001600160a01b038516600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000611ffb84604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846117d69092919063ffffffff16565b905061200986848484612152565b5050505b6001600160a01b038216156117d1576001600160a01b03821660009081526003602052604081205463ffffffff16908161204857600061207a565b6001600160a01b038416600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b9050600061208882856118f0565b905061209685848484612152565b505050505050565b6120a78261086e565b6000546120b490826118f0565b60009081556001600160a01b0383168152600560205260409020546120d990826118f0565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36001600160a01b03808316600090815260016020526040812054610986921683611f20565b6000612193436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a2033322062697473000000000000008152506122d4565b905060008463ffffffff161180156121dc57506001600160a01b038516600090815260026020908152604080832063ffffffff6000198901811685529252909120548282169116145b15612219576001600160a01b038516600090815260026020908152604080832063ffffffff6000198901168452909152902060010182905561228a565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600284528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260039092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081640100000000841061232a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b509192915050565b60408051808201909152600080825260208201529056fe7472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a26469706673582212204745d5514ecf1b4145071f481ec1cb2f808a0d54aa6575cf47521ebb86c0364164736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102695760003560e01c8063782d6fe111610151578063b6b55f25116100c3578063de5f626811610087578063de5f626814610743578063e380fcad1461074b578063e7a324dc14610771578063ec55688914610779578063f1127ed814610781578063f39c38a0146107d357610269565b8063b6b55f251461063a578063c3cda52014610657578063d505accf1461069e578063dd62ed3e146106ef578063ddeae0331461071d57610269565b80639ec5a894116101155780639ec5a894146105aa578063a2e62045146105b2578063a4f0d7d0146105ba578063a9059cbb146105c2578063ab033ea9146105ee578063b4b5ea571461061457610269565b8063782d6fe1146105225780637ecebe001461054e578063945c91421461057457806395d89b411461057c57806397107d6d1461058457610269565b80632986c0e5116101ea5780634e71d92d116101ae5780634e71d92d14610461578063587cde1e146104695780635aa6e6751461048f5780635c19a95c146104975780636fcfff45146104bd57806370a08231146104fc57610269565b80632986c0e51461040557806330adf81f1461040d578063313ce567146104155780633d79d1c814610433578063402914f51461043b57610269565b80631919db33116102315780631919db331461037557806320606b701461039b578063238efcbc146103a357806323b872dd146103ab5780632479b177146103e157610269565b806306fdde031461026e578063095ea7b3146102eb5780630e0a59681461032b5780631778e29c1461035357806318160ddd1461036d575b600080fd5b6102766107db565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103176004803603604081101561030157600080fd5b506001600160a01b038135169060200135610807565b604080519115158252519081900360200190f35b6103516004803603602081101561034157600080fd5b50356001600160a01b031661086e565b005b61035b61098a565b60408051918252519081900360200190f35b61035b6109ae565b6103516004803603602081101561038b57600080fd5b50356001600160a01b03166109b4565b61035b610a2b565b610351610a4f565b610317600480360360608110156103c157600080fd5b506001600160a01b03813581169160208101359091169060400135610ad2565b6103e9610bb4565b604080516001600160a01b039092168252519081900360200190f35b61035b610bc3565b61035b610bc9565b61041d610bed565b6040805160ff9092168252519081900360200190f35b61035b610bf2565b61035b6004803603602081101561045157600080fd5b50356001600160a01b0316610bf8565b610351610c0a565b6103e96004803603602081101561047f57600080fd5b50356001600160a01b0316610c15565b6103e9610c30565b610351600480360360208110156104ad57600080fd5b50356001600160a01b0316610c3f565b6104e3600480360360208110156104d357600080fd5b50356001600160a01b0316610c4c565b6040805163ffffffff9092168252519081900360200190f35b61035b6004803603602081101561051257600080fd5b50356001600160a01b0316610c64565b61035b6004803603604081101561053857600080fd5b506001600160a01b038135169060200135610c7f565b61035b6004803603602081101561056457600080fd5b50356001600160a01b0316610e8e565b6103e9610ea0565b610276610eb8565b6103516004803603602081101561059a57600080fd5b50356001600160a01b0316610ede565b6103e9610f55565b610351610f6d565b6103e9610f75565b610317600480360360408110156105d857600080fd5b506001600160a01b038135169060200135610f8d565b6103516004803603602081101561060457600080fd5b50356001600160a01b0316610fa3565b61035b6004803603602081101561062a57600080fd5b50356001600160a01b031661101a565b6103516004803603602081101561065057600080fd5b503561107e565b610351600480360360c081101561066d57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611087565b610351600480360360e08110156106b457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356112c5565b61035b6004803603604081101561070557600080fd5b506001600160a01b0381358116916020013516611569565b6103516004803603602081101561073357600080fd5b50356001600160a01b0316611594565b61035161159d565b61035b6004803603602081101561076157600080fd5b50356001600160a01b0316611624565b61035b611636565b6103e961165a565b6107b36004803603604081101561079757600080fd5b5080356001600160a01b0316906020013563ffffffff16611669565b6040805163ffffffff909316835260208301919091528051918290030190f35b6103e9611696565b6040518060400160405280601081526020016f1d9950d4958b511053c81e55985d5b1d60821b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6108766116a5565b6001600160a01b0381166000908152600560205260409020548015610969576001600160a01b0382166000908152600d602090815260408083208054600b54918290558251808401909352601d83527f76654352563a3a5f636c61696d466f723a20696e6465782064656c7461000000938301939093529192916108fb9184906117d6565b90508015610962576000610921670de0b6b3a764000061091b868561186d565b906118c5565b6001600160a01b0386166000908152600e602052604090205490915061094790826118f0565b6001600160a01b0386166000908152600e6020526040902055505b5050610986565b600b546001600160a01b0383166000908152600d60205260409020555b5050565b7f9daca681dfb07e11018ec70f5a8fc5eea940db96b4782e74fafb82df515fc18f81565b60005481565b6007546001600160a01b03163314610a09576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b6008546001600160a01b03163314610aae576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b600854600780546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b038316600081815260046020908152604080832033808552925282205491929091908214801590610b0c57506000198114155b15610b9d576000610b388560405180606001604052806027815260200161234a602791398491906117d6565b6001600160a01b0380891660008181526004602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b610ba8868686611933565b50600195945050505050565b600a546001600160a01b031681565b600b5481565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b600c5481565b600e6020526000908152604090205481565b610c1333611b14565b565b6001602052600090815260409020546001600160a01b031681565b6007546001600160a01b031681565b610c493382611c56565b50565b60036020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526005602052604090205490565b6000438210610cc6576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526003602052604090205463ffffffff1680610cf4576000915050610868565b6001600160a01b038416600090815260026020908152604080832063ffffffff600019860181168552925290912054168310610d63576001600160a01b03841660009081526002602090815260408083206000199490940163ffffffff16835292905220600101549050610868565b6001600160a01b038416600090815260026020908152604080832083805290915290205463ffffffff16831015610d9e576000915050610868565b600060001982015b8163ffffffff168163ffffffff161115610e5757600282820363ffffffff16048103610dd0612332565b506001600160a01b038716600090815260026020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610e32576020015194506108689350505050565b805163ffffffff16871115610e4957819350610e50565b6001820392505b5050610da6565b506001600160a01b038516600090815260026020908152604080832063ffffffff9094168352929052206001015491505092915050565b60066020526000908152604090205481565b73d533a949740bb3306d119cc777fa900ba034cd5281565b6040518060400160405280600a8152602001697976654352562d44414f60b01b81525081565b6007546001600160a01b03163314610f33576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b736c3f90f043a72fa612cbac8115ee7e52bde6e49081565b610c136116a5565b73f147b8125d2ef93fb6965db97d6746952a13393481565b6000610f9a338484611933565b50600192915050565b6007546001600160a01b03163314610ff8576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526003602052604081205463ffffffff1680611045576000611077565b6001600160a01b038316600090815260026020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b610c4981611cd6565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527f9daca681dfb07e11018ec70f5a8fc5eea940db96b4782e74fafb82df515fc18f60c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa15801561119a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166111f7576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090208054600181019091558814611262576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b864211156112b0576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b6112ba818a611c56565b505050505050505050565b6001600160a01b0380881660008181526006602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f9daca681dfb07e11018ec70f5a8fc5eea940db96b4782e74fafb82df515fc18f61010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa158015611400573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661145c576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b0316146114b9576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b86421115611500576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600460209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610c4981611b14565b604080516370a0823160e01b81523360048201529051610c139173d533a949740bb3306d119cc777fa900ba034cd52916370a0823191602480820192602092909190829003018186803b1580156115f357600080fd5b505afa158015611607573d6000803e3d6000fd5b505050506040513d602081101561161d57600080fd5b5051611cd6565b600d6020526000908152604090205481565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b6009546001600160a01b031681565b60026020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6008546001600160a01b031681565b60005415610c13576116b5611dec565b604080516370a0823160e01b81523060048201529051600091736c3f90f043a72fa612cbac8115ee7e52bde6e490916370a0823191602480820192602092909190829003018186803b15801561170a57600080fd5b505afa15801561171e573d6000803e3d6000fd5b505050506040513d602081101561173457600080fd5b5051600c54909150811115610c49576000611791600c546040518060400160405280601981526020017f76654352563a3a5f7570646174653a2062616c205f6469666600000000000000815250846117d69092919063ffffffff16565b9050801561098657600080546117b39061091b84670de0b6b3a764000061186d565b905080156117d157600b546117c890826118f0565b600b55600c8390555b505050565b600081848411156118655760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561182a578181015183820152602001611812565b50505050905090810190601f1680156118575780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261187c57506000610868565b8282028284828161188957fe5b0414611077576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b60006110778383604051806040016040528060068152602001656469763a202f60d01b815250611e5d565b600082820183811015611077576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b6001600160a01b03831661198e576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b0382166119e9576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6119f28361086e565b6119fb8261086e565b60408051808201825260208082527f5f7472616e73666572546f6b656e733a20657863656564732062616c616e6365818301526001600160a01b038616600090815260059091529190912054611a529183906117d6565b6001600160a01b0380851660009081526005602081815260408084209590955584518086018652601a81527f5f7472616e73666572546f6b656e733a206f766572666c6f7773000000000000818301529387168352529190912054611ab8918390611ec2565b6001600160a01b0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b611b1d8161086e565b6001600160a01b0381166000818152600e6020908152604080832054815163a9059cbb60e01b81526004810195909552602485015251736c3f90f043a72fa612cbac8115ee7e52bde6e4909363a9059cbb9360448083019493928390030190829087803b158015611b8d57600080fd5b505af1158015611ba1573d6000803e3d6000fd5b505050506040513d6020811015611bb757600080fd5b50506001600160a01b0381166000908152600e602090815260408083209290925581516370a0823160e01b81523060048201529151736c3f90f043a72fa612cbac8115ee7e52bde6e490926370a08231926024808301939192829003018186803b158015611c2457600080fd5b505afa158015611c38573d6000803e3d6000fd5b505050506040513d6020811015611c4e57600080fd5b5051600c5550565b6001600160a01b03808316600081815260016020818152604080842080546005845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611cd0828483611f20565b50505050565b604080516323b872dd60e01b815233600482015273f147b8125d2ef93fb6965db97d6746952a133934602482015260448101839052905173d533a949740bb3306d119cc777fa900ba034cd52916323b872dd9160648083019260209291908290030181600087803b158015611d4a57600080fd5b505af1158015611d5e573d6000803e3d6000fd5b505050506040513d6020811015611d7457600080fd5b50611d819050338261209e565b600960009054906101000a90046001600160a01b03166001600160a01b031663f83d08ba6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611dd157600080fd5b505af1158015611de5573d6000803e3d6000fd5b5050505050565b600a546001600160a01b031615610c1357600a5460408051630f41a04d60e11b815230600482015290516001600160a01b0390921691631e83409a9160248082019260009290919082900301818387803b158015611e4957600080fd5b505af1158015611cd0573d6000803e3d6000fd5b60008183611eac5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b506000838581611eb857fe5b0495945050505050565b60008383018285821015611f175760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b50949350505050565b816001600160a01b0316836001600160a01b031614158015611f425750600081115b156117d1576001600160a01b0383161561200d576001600160a01b03831660009081526003602052604081205463ffffffff169081611f82576000611fb4565b6001600160a01b038516600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000611ffb84604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846117d69092919063ffffffff16565b905061200986848484612152565b5050505b6001600160a01b038216156117d1576001600160a01b03821660009081526003602052604081205463ffffffff16908161204857600061207a565b6001600160a01b038416600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b9050600061208882856118f0565b905061209685848484612152565b505050505050565b6120a78261086e565b6000546120b490826118f0565b60009081556001600160a01b0383168152600560205260409020546120d990826118f0565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36001600160a01b03808316600090815260016020526040812054610986921683611f20565b6000612193436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a2033322062697473000000000000008152506122d4565b905060008463ffffffff161180156121dc57506001600160a01b038516600090815260026020908152604080832063ffffffff6000198901811685529252909120548282169116145b15612219576001600160a01b038516600090815260026020908152604080832063ffffffff6000198901168452909152902060010182905561228a565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600284528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260039092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081640100000000841061232a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561182a578181015183820152602001611812565b509192915050565b60408051808201909152600080825260208201529056fe7472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a26469706673582212204745d5514ecf1b4145071f481ec1cb2f808a0d54aa6575cf47521ebb86c0364164736f6c634300060c0033

Deployed Bytecode Sourcemap

9263:16984:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9374:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22631:207;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22631:207:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18642:603;;;;;;;;;;;;;;;;-1:-1:-1;18642:603:0;-1:-1:-1;;;;;18642:603:0;;:::i;:::-;;10430:40;;;:::i;:::-;;;;;;;;;;;;;;;;9689:27;;;:::i;20901:183::-;;;;;;;;;;;;;;;;-1:-1:-1;20901:183:0;-1:-1:-1;;;;;20901:183:0;;:::i;10304:119::-;;;:::i;21546:170::-;;;:::i;25029:553::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25029:553:0;;;;;;;;;;;;;;;;;:::i;17575:30::-;;;:::i;:::-;;;;-1:-1:-1;;;;;17575:30:0;;;;;;;;;;;;;;17714:21;;;:::i;10765:128::-;;;:::i;9590:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17742:19;;;:::i;19257:41::-;;;;;;;;;;;;;;;;-1:-1:-1;19257:41:0;-1:-1:-1;;;;;19257:41:0;;:::i;19311:66::-;;;:::i;9790:45::-;;;;;;;;;;;;;;;;-1:-1:-1;9790:45:0;-1:-1:-1;;;;;9790:45:0;;:::i;17242:25::-;;;:::i;11702:95::-;;;;;;;;;;;;;;;;-1:-1:-1;11702:95:0;-1:-1:-1;;;;;11702:95:0;;:::i;10057:49::-;;;;;;;;;;;;;;;;-1:-1:-1;10057:49:0;-1:-1:-1;;;;;10057:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;24204:108;;;;;;;;;;;;;;;;-1:-1:-1;24204:108:0;-1:-1:-1;;;;;24204:108:0;;:::i;13687:1191::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13687:1191:0;;;;;;;;:::i;10976:39::-;;;;;;;;;;;;;;;;-1:-1:-1;10976:39:0;-1:-1:-1;;;;;10976:39:0;;:::i;17319:79::-;;;:::i;9483:44::-;;;:::i;20746:143::-;;;;;;;;;;;;;;;;-1:-1:-1;20746:143:0;-1:-1:-1;;;;;20746:143:0;;:::i;17618:83::-;;;:::i;17830:55::-;;;:::i;17405:82::-;;;:::i;24573:149::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24573:149:0;;;;;;;;:::i;21253:170::-;;;;;;;;;;;;;;;;-1:-1:-1;21253:170:0;-1:-1:-1;;;;;21253:170:0;;:::i;13036:220::-;;;;;;;;;;;;;;;;-1:-1:-1;13036:220:0;-1:-1:-1;;;;;13036:220:0;;:::i;20468:76::-;;;;;;;;;;;;;;;;-1:-1:-1;20468:76:0;;:::i;12231:604::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12231:604:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23325:676::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23325:676:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;22020:136::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22020:136:0;;;;;;;;;;:::i;19383:85::-;;;;;;;;;;;;;;;;-1:-1:-1;19383:85:0;-1:-1:-1;;;;;19383:85:0;;:::i;20371:::-;;;:::i;17774:43::-;;;;;;;;;;;;;;;;-1:-1:-1;17774:43:0;-1:-1:-1;;;;;17774:43:0;;:::i;10564:111::-;;;:::i;17494:74::-;;;:::i;9918:70::-;;;;;;;;;;;;;;;;-1:-1:-1;9918:70:0;;-1:-1:-1;;;;;9918:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;17274:32;;;:::i;9374:48::-;;;;;;;;;;;;;;-1:-1:-1;;;9374:48:0;;;;:::o;22631:207::-;22724:10;22696:4;22713:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;22713:31:0;;;;;;;;;;;:40;;;22771:37;;;;;;;22696:4;;22713:31;;22724:10;;22771:37;;;;;;;;-1:-1:-1;22826:4:0;22631:207;;;;;:::o;18642:603::-;18698:9;:7;:9::i;:::-;-1:-1:-1;;;;;18738:19:0;;18718:17;18738:19;;;:8;:19;;;;;;18772:13;;18768:470;;-1:-1:-1;;;;;18825:22:0;;18802:20;18825:22;;;:11;:22;;;;;;;;;;18887:5;;18862:30;;;;18924:56;;;;;;;;;;;;;;;;;;;18825:22;;18802:20;18924:56;;18825:22;;18924:9;:56::i;:::-;18907:73;-1:-1:-1;18999:10:0;;18995:169;;19028:14;19045:31;19071:4;19045:21;:9;19059:6;19045:13;:21::i;:::-;:25;;:31::i;:::-;-1:-1:-1;;;;;19116:20:0;;;;;;:9;:20;;;;;;19028:48;;-1:-1:-1;19116:32:0;;19028:48;19116:24;:32::i;:::-;-1:-1:-1;;;;;19093:20:0;;;;;;:9;:20;;;;;:55;-1:-1:-1;18995:169:0;18768:470;;;;;19221:5;;-1:-1:-1;;;;;19196:22:0;;;;;;:11;:22;;;;;:30;18768:470;18642:603;;:::o;10430:40::-;;;:::o;9689:27::-;;;;:::o;20901:183::-;20997:10;;-1:-1:-1;;;;;20997:10:0;20983;:24;20975:56;;;;;-1:-1:-1;;;20975:56:0;;;;;;;;;;;;-1:-1:-1;;;20975:56:0;;;;;;;;;;;;;;;21042:15;:34;;-1:-1:-1;;;;;;21042:34:0;-1:-1:-1;;;;;21042:34:0;;;;;;;;;;20901:183::o;10304:119::-;10346:77;10304:119;:::o;21546:170::-;21616:17;;-1:-1:-1;;;;;21616:17:0;21602:10;:31;21594:73;;;;;-1:-1:-1;;;21594:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21691:17;;21678:10;:30;;-1:-1:-1;;;;;;21678:30:0;-1:-1:-1;;;;;21691:17:0;;;21678:30;;;;;;21546:170::o;25029:553::-;-1:-1:-1;;;;;25188:15:0;;25108:4;25188:15;;;:10;:15;;;;;;;;25143:10;25188:24;;;;;;;;25108:4;;25143:10;;25188:24;25229:14;;;;;:46;;;-1:-1:-1;;25247:16:0;:28;;25229:46;25225:282;;;25292:17;25312:71;25333:6;25312:71;;;;;;;;;;;;;;;;;:16;;:71;:20;:71::i;:::-;-1:-1:-1;;;;;25398:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;25459:36;;;;;;;25292:91;;-1:-1:-1;25398:24:0;;:15;;25459:36;;;;;;;;;25225:282;;25519:33;25535:3;25540;25545:6;25519:15;:33::i;:::-;-1:-1:-1;25570:4:0;;25029:553;-1:-1:-1;;;;;25029:553:0:o;17575:30::-;;;-1:-1:-1;;;;;17575:30:0;;:::o;17714:21::-;;;;:::o;10765:128::-;10807:86;10765:128;:::o;9590:35::-;9623:2;9590:35;:::o;17742:19::-;;;;:::o;19257:41::-;;;;;;;;;;;;;:::o;19311:66::-;19348:21;19358:10;19348:9;:21::i;:::-;19311:66::o;9790:45::-;;;;;;;;;;;;-1:-1:-1;;;;;9790:45:0;;:::o;17242:25::-;;;-1:-1:-1;;;;;17242:25:0;;:::o;11702:95::-;11757:32;11767:10;11779:9;11757;:32::i;:::-;11702:95;:::o;10057:49::-;;;;;;;;;;;;;;;:::o;24204:108::-;-1:-1:-1;;;;;24287:17:0;24263:4;24287:17;;;:8;:17;;;;;;;24204:108::o;13687:1191::-;13766:4;13805:12;13791:11;:26;13783:53;;;;;-1:-1:-1;;;13783:53:0;;;;;;;;;;;;-1:-1:-1;;;13783:53:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13871:23:0;;13849:19;13871:23;;;:14;:23;;;;;;;;13909:17;13905:58;;13950:1;13943:8;;;;;13905:58;-1:-1:-1;;;;;14023:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;14044:16:0;;14023:38;;;;;;;;;:48;;:63;-1:-1:-1;14019:147:0;;-1:-1:-1;;;;;14110:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;14131:16:0;;;;14110:38;;;;;;;;14146:1;14110:44;;;-1:-1:-1;14103:51:0;;14019:147;-1:-1:-1;;;;;14227:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;14223:88:0;;;14298:1;14291:8;;;;;14223:88;14323:12;-1:-1:-1;;14365:16:0;;14392:428;14407:5;14399:13;;:5;:13;;;14392:428;;;14471:1;14454:13;;;14453:19;;;14445:27;;14514:20;;:::i;:::-;-1:-1:-1;;;;;;14537:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;14514:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14584:27;;14580:229;;;14639:8;;;;-1:-1:-1;14632:15:0;;-1:-1:-1;;;;14632:15:0;14580:229;14673:12;;:26;;;-1:-1:-1;14669:140:0;;;14728:6;14720:14;;14669:140;;;14792:1;14783:6;:10;14775:18;;14669:140;14392:428;;;;;-1:-1:-1;;;;;;14837:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;13687:1191:0;;;;:::o;10976:39::-;;;;;;;;;;;;;:::o;17319:79::-;17355:42;17319:79;:::o;9483:44::-;;;;;;;;;;;;;;-1:-1:-1;;;9483:44:0;;;;:::o;20746:143::-;20822:10;;-1:-1:-1;;;;;20822:10:0;20808;:24;20800:56;;;;;-1:-1:-1;;;20800:56:0;;;;;;;;;;;;-1:-1:-1;;;20800:56:0;;;;;;;;;;;;;;;20867:5;:14;;-1:-1:-1;;;;;;20867:14:0;-1:-1:-1;;;;;20867:14:0;;;;;;;;;;20746:143::o;17618:83::-;17658:42;17618:83;:::o;17830:55::-;17868:9;:7;:9::i;17405:82::-;17444:42;17405:82;:::o;24573:149::-;24635:4;24652:40;24668:10;24680:3;24685:6;24652:15;:40::i;:::-;-1:-1:-1;24710:4:0;24573:149;;;;:::o;21253:170::-;21339:10;;-1:-1:-1;;;;;21339:10:0;21325;:24;21317:56;;;;;-1:-1:-1;;;21317:56:0;;;;;;;;;;;;-1:-1:-1;;;21317:56:0;;;;;;;;;;;;;;;21384:17;:31;;-1:-1:-1;;;;;;21384:31:0;-1:-1:-1;;;;;21384:31:0;;;;;;;;;;21253:170::o;13036:220::-;-1:-1:-1;;;;;13140:23:0;;13101:4;13140:23;;;:14;:23;;;;;;;;13181:16;:67;;13247:1;13181:67;;;-1:-1:-1;;;;;13200:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;13221:16:0;;13200:38;;;;;;;;13236:1;13200:44;;13181:67;13174:74;13036:220;-1:-1:-1;;;13036:220:0:o;20468:76::-;20519:17;20528:7;20519:8;:17::i;12231:604::-;12378:57;;;10610:65;12378:57;;;;;;;;-1:-1:-1;;;;;12378:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12368:68;;;;;;-1:-1:-1;;;12474:57:0;;;;12503:15;12474:57;;;;;;;;;;;;;;;;;;;;;;;;;;;12464:68;;;;;;;;;12347:18;12563:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12368:68;;12464;12347:18;;12563:26;;;;;;;-1:-1:-1;;12563:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;12563:26:0;;-1:-1:-1;;12563:26:0;;;-1:-1:-1;;;;;;;12608:23:0;;12600:54;;;;;-1:-1:-1;;;12600:54:0;;;;;;;;;;;;-1:-1:-1;;;12600:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;12682:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;12673:28;;12665:61;;;;;-1:-1:-1;;;12665:61:0;;;;;;;;;;;;-1:-1:-1;;;12665:61:0;;;;;;;;;;;;;;;12752:6;12745:3;:13;;12737:48;;;;;-1:-1:-1;;;12737:48:0;;;;;;;;;;;;-1:-1:-1;;;12737:48:0;;;;;;;;;;;;;;;12796:31;12806:9;12817;12796;:31::i;:::-;12231:604;;;;;;;;;:::o;23325:676::-;-1:-1:-1;;;;;23535:13:0;;;23452:18;23535:13;;;:6;:13;;;;;;;;:15;;;;;;;;;23483:78;;10807:86;23483:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23473:89;;;;;;-1:-1:-1;;;23600:57:0;;;;23629:15;23600:57;;;;;;;;;;;;;;;;;;;;;;;;;;;23590:68;;;;;;;;;23689:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23473:89;;23590:68;;23535:15;;23689:26;;;;;23535:13;;-1:-1:-1;;23689:26:0;;;;;;;;;;23535:15;23689:26;;;;;;;;;;;;;;;-1:-1:-1;;23689:26:0;;-1:-1:-1;;23689:26:0;;;-1:-1:-1;;;;;;;23734:23:0;;23726:53;;;;;-1:-1:-1;;;23726:53:0;;;;;;;;;;;;-1:-1:-1;;;23726:53:0;;;;;;;;;;;;;;;23811:5;-1:-1:-1;;;;;23798:18:0;:9;-1:-1:-1;;;;;23798:18:0;;23790:51;;;;;-1:-1:-1;;;23790:51:0;;;;;;;;;;;;-1:-1:-1;;;23790:51:0;;;;;;;;;;;;;;;23867:8;23860:3;:15;;23852:43;;;;;-1:-1:-1;;;23852:43:0;;;;;;;;;;;;-1:-1:-1;;;23852:43:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23908:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;23961:32;;;;;;;;;;;;;;;;;23325:676;;;;;;;;;;:::o;22020:136::-;-1:-1:-1;;;;;22120:19:0;;;22096:4;22120:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;22020:136::o;19383:85::-;19440:20;19450:9;19440;:20::i;20371:85::-;20422:25;;;-1:-1:-1;;;20422:25:0;;20436:10;20422:25;;;;;;20413:35;;17355:42;;20422:13;;:25;;;;;;;;;;;;;;;17355:42;20422:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20422:25:0;20413:8;:35::i;17774:43::-;;;;;;;;;;;;;:::o;10564:111::-;10610:65;10564:111;:::o;17494:74::-;;;-1:-1:-1;;;;;17494:74:0;;:::o;9918:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17274:32::-;;;-1:-1:-1;;;;;17274:32:0;;:::o;17897:559::-;17954:1;17940:11;:15;17936:513;;17972:8;:6;:8::i;:::-;18010:32;;;-1:-1:-1;;;18010:32:0;;18036:4;18010:32;;;;;;17995:12;;17658:42;;18010:17;;:32;;;;;;;;;;;;;;;17658:42;18010:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18010:32:0;18068:3;;18010:32;;-1:-1:-1;18061:10:0;;18057:381;;;18092:13;18108:42;18117:3;;18108:42;;;;;;;;;;;;;;;;;:4;:8;;:42;;;;;:::i;:::-;18092:58;-1:-1:-1;18173:9:0;;18169:254;;18207:14;18244:11;;18224:32;;:15;:5;18234:4;18224:9;:15::i;:32::-;18207:49;-1:-1:-1;18283:10:0;;18279:125;;18328:5;;:17;;18338:6;18328:9;:17::i;:::-;18320:5;:25;18370:3;:10;;;18279:125;18169:254;18057:381;17936:513;17897:559::o;2259:180::-;2339:4;2372:12;2364:6;;;;2356:29;;;;-1:-1:-1;;;2356:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2405:5:0;;;2259:180::o;2682:432::-;2734:4;2976:6;2972:47;;-1:-1:-1;3006:1:0;2999:8;;2972:47;3040:5;;;3044:1;3040;:5;:1;3064:5;;;;;:10;3056:29;;;;;-1:-1:-1;;;3056:29:0;;;;;;;;;;;;-1:-1:-1;;;3056:29:0;;;;;;;;;;;;;;4289:103;4341:4;4365:19;4369:1;4372;4365:19;;;;;;;;;;;;;-1:-1:-1;;;4365:19:0;;;:3;:19::i;1019:148::-;1071:4;1097:5;;;1121:6;;;;1113:25;;;;;-1:-1:-1;;;1113:25:0;;;;;;;;;;;;-1:-1:-1;;;1113:25:0;;;;;;;;;;;;;;25590:495;-1:-1:-1;;;;;25682:17:0;;25674:59;;;;;-1:-1:-1;;;25674:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25752:17:0;;25744:59;;;;;-1:-1:-1;;;25744:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25824:14;25834:3;25824:9;:14::i;:::-;25849;25859:3;25849:9;:14::i;:::-;25892:61;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25892:13:0;;-1:-1:-1;25892:13:0;;;:8;:13;;;;;;;;:61;;25910:6;;25892:17;:61::i;:::-;-1:-1:-1;;;;;25876:13:0;;;;;;;:8;:13;;;;;;;;:77;;;;25980:55;;;;;;;;;;;;;;;:13;;;;;;;;;;;:55;;25998:6;;25980:17;:55::i;:::-;-1:-1:-1;;;;;25964:13:0;;;;;;;:8;:13;;;;;;;;;:71;;;;26051:26;;;;;;;25964:13;;26051:26;;;;;;;;;;;;;25590:495;;;:::o;19480:230::-;19538:20;19548:9;19538;:20::i;:::-;-1:-1:-1;;;;;19597:20:0;;;;;;:9;:20;;;;;;;;;19569:49;;-1:-1:-1;;;19569:49:0;;;;;;;;;;;;;;17658:42;;19569:16;;:49;;;;;19597:20;19569:49;;;;;;;;17658:42;19569:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;19629:20:0;;19652:1;19629:20;;;:9;19569:49;19629:20;;;;;;;:24;;;;19670:32;;-1:-1:-1;;;19670:32:0;;19696:4;19670:32;;;;;;17658:42;;19670:17;;:32;;;;;19569:49;;19670:32;;;;;17658:42;19670:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19670:32:0;19664:3;:38;-1:-1:-1;19480:230:0:o;14886:373::-;-1:-1:-1;;;;;14989:20:0;;;14963:23;14989:20;;;:9;:20;;;;;;;;;;15044:8;:19;;;;;;15074:20;;;;:32;;;-1:-1:-1;;;;;;15074:32:0;;;;;;;15124:54;;14989:20;;;;;15044:19;;15074:32;;14989:20;;;15124:54;;14963:23;15124:54;15191:60;15206:15;15223:9;15234:16;15191:14;:60::i;:::-;14886:373;;;;:::o;20556:178::-;20608:43;;;-1:-1:-1;;;20608:43:0;;20625:10;20608:43;;;;17444:42;20608:43;;;;;;;;;;;;17355:42;;20608:16;;:43;;;;;;;;;;;;;;-1:-1:-1;17355:42:0;20608:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20662:26:0;;-1:-1:-1;20668:10:0;20680:7;20662:5;:26::i;:::-;20713:5;;;;;;;;;-1:-1:-1;;;;;20713:5:0;-1:-1:-1;;;;;20699:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20556:178;:::o;18468:162::-;18510:15;;-1:-1:-1;;;;;18510:15:0;:31;18506:117;;18574:15;;18558:53;;;-1:-1:-1;;;18558:53:0;;18605:4;18558:53;;;;;;-1:-1:-1;;;;;18574:15:0;;;;18558:38;;:53;;;;;18574:15;;18558:53;;;;;;;;18574:15;;18558:53;;;;;;;;;;;;;;;;;;;;;;;;;;4880:333;4960:4;5059:12;5052:5;5044:28;;;;-1:-1:-1;;;5044:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5083:6;5096:1;5092;:5;;;;;;;4880:333;-1:-1:-1;;;;;4880:333:0:o;1418:180::-;1498:4;1524:5;;;1556:12;1548:6;;;;1540:29;;;;-1:-1:-1;;;1540:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1589:1:0;1418:180;-1:-1:-1;;;;1418:180:0:o;15267:862::-;15370:6;-1:-1:-1;;;;;15360:16:0;:6;-1:-1:-1;;;;;15360:16:0;;;:30;;;;;15389:1;15380:6;:10;15360:30;15356:766;;;-1:-1:-1;;;;;15411:20:0;;;15407:357;;-1:-1:-1;;;;;15471:22:0;;15452:16;15471:22;;;:14;:22;;;;;;;;;15529:13;:60;;15588:1;15529:60;;;-1:-1:-1;;;;;15545:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;15565:13:0;;15545:34;;;;;;;;15577:1;15545:40;;15529:60;15512:77;;15608:14;15625:47;15639:6;15625:47;;;;;;;;;;;;;-1:-1:-1;;;15625:47:0;;;:9;:13;;:47;;;;;:::i;:::-;15608:64;;15691:57;15708:6;15716:9;15727;15738;15691:16;:57::i;:::-;15407:357;;;;-1:-1:-1;;;;;15784:20:0;;;15780:331;;-1:-1:-1;;;;;15844:22:0;;15825:16;15844:22;;;:14;:22;;;;;;;;;15902:13;:60;;15961:1;15902:60;;;-1:-1:-1;;;;;15918:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;15938:13:0;;15918:34;;;;;;;;15950:1;15918:40;;15902:60;15885:77;-1:-1:-1;15981:14:0;15998:21;15885:77;16012:6;15998:13;:21::i;:::-;15981:38;;16038:57;16055:6;16063:9;16074;16085;16038:16;:57::i;:::-;15780:331;;;15267:862;;;:::o;19952:407::-;20013:14;20023:3;20013:9;:14::i;:::-;20080:11;;:23;;20096:6;20080:15;:23::i;:::-;20066:11;:37;;;-1:-1:-1;;;;;20179:13:0;;;;:8;:13;;;;;;:25;;20197:6;20179:17;:25::i;:::-;-1:-1:-1;;;;;20163:13:0;;;;;;:8;:13;;;;;;;;:41;;;;20220:33;;;;;;;20163:13;;;;20220:33;;;;;;;;;;-1:-1:-1;;;;;20328:14:0;;;20324:1;20328:14;;;:9;:14;;;;;;20301:50;;20328:14;20344:6;20301:14;:50::i;16137:598::-;16251:18;16272:49;16279:12;16272:49;;;;;;;;;;;;;;;;;:6;:49::i;:::-;16251:70;;16351:1;16336:12;:16;;;:85;;;;-1:-1:-1;;;;;;16356:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;16379:16:0;;16356:40;;;;;;;;;:50;:65;;;:50;;:65;16336:85;16332:329;;;-1:-1:-1;;;;;16436:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;16459:16:0;;16436:40;;;;;;;;16474:1;16436:46;:57;;;16332:329;;;16561:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16522:22:0;;-1:-1:-1;16522:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;16522:72:0;;;;;;;;;;;;;16607:25;;;:14;:25;;;;;;:44;;16635:16;;;16607:44;;;;;;;;;;16332:329;16676:51;;;;;;;;;;;;;;-1:-1:-1;;;;;16676:51:0;;;;;;;;;;;16137:598;;;;;:::o;16743:161::-;16818:6;16856:12;16849:5;16845:9;;16837:32;;;;-1:-1:-1;;;16837:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16894:1:0;;16743:161;-1:-1:-1;;16743:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://4745d5514ecf1b4145071f481ec1cb2f808a0d54aa6575cf47521ebb86c03641
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.