ETH Price: $2,295.30 (+0.32%)

Token

k33pr.com (K33PR)
 

Overview

Max Total Supply

400,000 K33PR

Holders

187

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
28.71 K33PR

Value
$0.00
0xD3Fd32e76a1cA37eC408aAc47776b10Fc099F841
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:
K33prNetworkV2_0

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-01
*/

// 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);
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     *
     * _Available since v2.4.0._
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient");

        // solhint-disable-next-line avoid-call-value
        (bool success, ) = recipient.call{value:amount}("");
        require(success, "Address: reverted");
    }
}

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: < 0");
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: !contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: !succeed");
        }
    }
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IGovernance {
    function proposeJob(address job) external;
}

interface IHelper {
    function getQuoteLimit(uint gasUsed) external view returns (uint);
}

contract K33prNetworkV2_0 is ReentrancyGuard {
    using SafeMath for uint;
    using SafeERC20 for IERC20;

    /// @notice K33prNetwork Helper to set max prices for the ecosystem
    IHelper public KPRH;

    /// @notice EIP-20 token name for this token
    string public constant name = "k33pr.com";

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

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

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 0;
    
    uint public constant initialSupply = 400000 * 10 ** 18;

    /// @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;
    }
    
    function getReserve(address pair, address reserve) internal view returns (uint) {
        (uint _r0, uint _r1,) = IUniswapV2Pair(pair).getReserves();
        if (IUniswapV2Pair(pair).token0() == reserve) {
            return _r0;
        } else if (IUniswapV2Pair(pair).token1() == reserve) {
            return _r1;
        } else {
            return 0;
        }
    }

    /**
     * @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 = votes[delegator].add(bonds[delegator][address(this)]);
        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 Submit a job
    event SubmitJob(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Apply credit to a job
    event ApplyCredit(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Remove credit for a job
    event RemoveJob(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Unbond credit for a job
    event UnbondJob(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Added a Job
    event JobAdded(address indexed job, uint block, address governance);

    /// @notice Removed a job
    event JobRemoved(address indexed job, uint block, address governance);

    /// @notice Worked a job
    event KeeperWorked(address indexed credit, address indexed job, address indexed keeper, uint block, uint amount);

    /// @notice Keeper bonding
    event KeeperBonding(address indexed keeper, uint block, uint active, uint bond);

    /// @notice Keeper bonded
    event KeeperBonded(address indexed keeper, uint block, uint activated, uint bond);

    /// @notice Keeper unbonding
    event KeeperUnbonding(address indexed keeper, uint block, uint deactive, uint bond);

    /// @notice Keeper unbound
    event KeeperUnbound(address indexed keeper, uint block, uint deactivated, uint bond);

    /// @notice Keeper slashed
    event KeeperSlashed(address indexed keeper, address indexed slasher, uint block, uint slash);

    /// @notice Keeper disputed
    event KeeperDispute(address indexed keeper, uint block);

    /// @notice Keeper resolved
    event KeeperResolved(address indexed keeper, uint block);

    event AddCredit(address indexed credit, address indexed job, address indexed creditor, uint block, uint amount);

    /// @notice 1 day to bond to become a keeper
    uint constant public BOND = 3 days;
    /// @notice 14 days to unbond to remove funds from being a keeper
    uint constant public UNBOND = 14 days;
    /// @notice 3 days till liquidity can be bound
    uint constant public LIQUIDITYBOND = 3 days;

    /// @notice direct liquidity fee 0.3%
    uint constant public FEE = 30;
    uint constant public BASE = 10000;

    /// @notice address used for ETH transfers
    address constant public ETH = address(0xE);

    /// @notice tracks all current bondings (time)
    mapping(address => mapping(address => uint)) public bondings;
    /// @notice tracks all current unbondings (time)
    mapping(address => mapping(address => uint)) public unbondings;
    /// @notice allows for partial unbonding
    mapping(address => mapping(address => uint)) public partialUnbonding;
    /// @notice tracks all current pending bonds (amount)
    mapping(address => mapping(address => uint)) public pendingbonds;
    /// @notice tracks how much a keeper has bonded
    mapping(address => mapping(address => uint)) public bonds;
    /// @notice tracks underlying votes (that don't have bond)
    mapping(address => uint) public votes;

    /// @notice total bonded (totalSupply for bonds)
    uint public totalBonded = 0;
    /// @notice tracks when a keeper was first registered
    mapping(address => uint) public firstSeen;

    /// @notice tracks if a keeper has a pending dispute
    mapping(address => bool) public disputes;

    /// @notice tracks last job performed for a keeper
    mapping(address => uint) public lastJob;
    /// @notice tracks the total job executions for a keeper
    mapping(address => uint) public workCompleted;
    /// @notice list of all jobs registered for the keeper system
    mapping(address => bool) public jobs;
    /// @notice the current credit available for a job
    mapping(address => mapping(address => uint)) public credits;
    /// @notice the balances for the liquidity providers
    mapping(address => mapping(address => mapping(address => uint))) public liquidityProvided;
    /// @notice liquidity unbonding days
    mapping(address => mapping(address => mapping(address => uint))) public liquidityUnbonding;
    /// @notice liquidity unbonding amounts
    mapping(address => mapping(address => mapping(address => uint))) public liquidityAmountsUnbonding;
    /// @notice job proposal delay
    mapping(address => uint) public jobProposalDelay;
    /// @notice liquidity apply date
    mapping(address => mapping(address => mapping(address => uint))) public liquidityApplied;
    /// @notice liquidity amount to apply
    mapping(address => mapping(address => mapping(address => uint))) public liquidityAmount;

    /// @notice list of all current keepers
    mapping(address => bool) public keepers;
    /// @notice blacklist of keepers not allowed to participate
    mapping(address => bool) public blacklist;

    /// @notice traversable array of keepers to make external management easier
    address[] public keeperList;
    /// @notice traversable array of jobs to make external management easier
    address[] public jobList;

    /// @notice governance address for the governance contract
    address public governance;
    address public pendingGovernance;

    /// @notice the liquidity token supplied by users paying for jobs
    mapping(address => bool) public liquidityAccepted;

    address[] public liquidityPairs;

    uint internal _gasUsed;

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

    /**
     * @notice Add ETH credit to a job to be paid out for work
     * @param job the job being credited
     */
    function addCreditETH(address job) external payable {
        require(jobs[job], "addCreditETH: !job");
        uint _fee = msg.value.mul(FEE).div(BASE);
        credits[job][ETH] = credits[job][ETH].add(msg.value.sub(_fee));
        payable(governance).transfer(_fee);

        emit AddCredit(ETH, job, msg.sender, block.number, msg.value);
    }

    /**
     * @notice Add credit to a job to be paid out for work
     * @param credit the credit being assigned to the job
     * @param job the job being credited
     * @param amount the amount of credit being added to the job
     */
    function addCredit(address credit, address job, uint amount) external nonReentrant {
        require(jobs[job], "addCreditETH: !job");
        uint _before = IERC20(credit).balanceOf(address(this));
        IERC20(credit).safeTransferFrom(msg.sender, address(this), amount);
        uint _received = IERC20(credit).balanceOf(address(this)).sub(_before);
        uint _fee = _received.mul(FEE).div(BASE);
        credits[job][credit] = credits[job][credit].add(_received.sub(_fee));
        IERC20(credit).safeTransfer(governance, _fee);

        emit AddCredit(credit, job, msg.sender, block.number, _received);
    }

    /**
     * @notice Add non transferable votes for governance
     * @param voter to add the votes to
     * @param amount of votes to add
     */
    function addVotes(address voter, uint amount) external {
        require(msg.sender == governance, "addVotes: !gov");
        _activate(voter, address(this));
        votes[voter] = votes[voter].add(amount);
        totalBonded = totalBonded.add(amount);
        _moveDelegates(address(0), delegates[voter], amount);
    }

    /**
     * @notice Remove non transferable votes for governance
     * @param voter to subtract the votes
     * @param amount of votes to remove
     */
    function removeVotes(address voter, uint amount) external {
        require(msg.sender == governance, "addVotes: !gov");
        votes[voter] = votes[voter].sub(amount);
        totalBonded = totalBonded.sub(amount);
        _moveDelegates(delegates[voter], address(0), amount);
    }

    /**
     * @notice Add credit to a job to be paid out for work
     * @param job the job being credited
     * @param amount the amount of credit being added to the job
     */
    function addKPRCredit(address job, uint amount) external {
        require(msg.sender == governance, "addKPRCredit: !gov");
        require(jobs[job], "addKPRCredit: !job");
        credits[job][address(this)] = credits[job][address(this)].add(amount);
        _mint(address(this), amount);
        emit AddCredit(address(this), job, msg.sender, block.number, amount);
    }

    /**
     * @notice Approve a liquidity pair for being accepted in future
     * @param liquidity the liquidity no longer accepted
     */
    function approveLiquidity(address liquidity) external {
        require(msg.sender == governance, "approveLiquidity: !gov");
        require(!liquidityAccepted[liquidity], "approveLiquidity: !pair");
        liquidityAccepted[liquidity] = true;
        liquidityPairs.push(liquidity);
    }

    /**
     * @notice Revoke a liquidity pair from being accepted in future
     * @param liquidity the liquidity no longer accepted
     */
    function revokeLiquidity(address liquidity) external {
        require(msg.sender == governance, "revokeLiquidity: !gov");
        liquidityAccepted[liquidity] = false;
    }

    /**
     * @notice Displays all accepted liquidity pairs
     */
    function pairs() external view returns (address[] memory) {
        return liquidityPairs;
    }

    /**
     * @notice Allows liquidity providers to submit jobs
     * @param liquidity the liquidity being added
     * @param job the job to assign credit to
     * @param amount the amount of liquidity tokens to use
     */
    function addLiquidityToJob(address liquidity, address job, uint amount) external nonReentrant {
        require(liquidityAccepted[liquidity], "addLiquidityToJob: !pair");
        IERC20(liquidity).safeTransferFrom(msg.sender, address(this), amount);
        liquidityProvided[msg.sender][liquidity][job] = liquidityProvided[msg.sender][liquidity][job].add(amount);

        liquidityApplied[msg.sender][liquidity][job] = now.add(LIQUIDITYBOND);
        liquidityAmount[msg.sender][liquidity][job] = liquidityAmount[msg.sender][liquidity][job].add(amount);

        if (!jobs[job] && jobProposalDelay[job] < now) {
            IGovernance(governance).proposeJob(job);
            jobProposalDelay[job] = now.add(UNBOND);
        }
        emit SubmitJob(job, liquidity, msg.sender, block.number, amount);
    }

    /**
     * @notice Applies the credit provided in addLiquidityToJob to the job
     * @param provider the liquidity provider
     * @param liquidity the pair being added as liquidity
     * @param job the job that is receiving the credit
     */
    function applyCreditToJob(address provider, address liquidity, address job) external {
        require(liquidityAccepted[liquidity], "addLiquidityToJob: !pair");
        require(liquidityApplied[provider][liquidity][job] != 0, "credit: no bond");
        require(liquidityApplied[provider][liquidity][job] < now, "credit: bonding");
        uint _liquidity = getReserve(liquidity, address(this));
        uint _credit = _liquidity.mul(liquidityAmount[provider][liquidity][job]).div(IERC20(liquidity).totalSupply());
        _mint(address(this), _credit);
        credits[job][address(this)] = credits[job][address(this)].add(_credit);
        liquidityAmount[provider][liquidity][job] = 0;

        emit ApplyCredit(job, liquidity, provider, block.number, _credit);
    }

    /**
     * @notice Unbond liquidity for a job
     * @param liquidity the pair being unbound
     * @param job the job being unbound from
     * @param amount the amount of liquidity being removed
     */
    function unbondLiquidityFromJob(address liquidity, address job, uint amount) external {
        require(liquidityAmount[msg.sender][liquidity][job] == 0, "credit: pending credit");
        liquidityUnbonding[msg.sender][liquidity][job] = now.add(UNBOND);
        liquidityAmountsUnbonding[msg.sender][liquidity][job] = liquidityAmountsUnbonding[msg.sender][liquidity][job].add(amount);
        require(liquidityAmountsUnbonding[msg.sender][liquidity][job] <= liquidityProvided[msg.sender][liquidity][job], "unbondLiquidityFromJob: insufficient funds");

        uint _liquidity = getReserve(liquidity, address(this));
        uint _credit = _liquidity.mul(amount).div(IERC20(liquidity).totalSupply());
        if (_credit > credits[job][address(this)]) {
            _burn(address(this), credits[job][address(this)]);
            credits[job][address(this)] = 0;
        } else {
            _burn(address(this), _credit);
            credits[job][address(this)] = credits[job][address(this)].sub(_credit);
        }

        emit UnbondJob(job, liquidity, msg.sender, block.number, amount);
    }

    /**
     * @notice Allows liquidity providers to remove liquidity
     * @param liquidity the pair being unbound
     * @param job the job being unbound from
     */
    function removeLiquidityFromJob(address liquidity, address job) external {
        require(liquidityUnbonding[msg.sender][liquidity][job] != 0, "removeJob: unbond");
        require(liquidityUnbonding[msg.sender][liquidity][job] < now, "removeJob: unbonding");
        uint _amount = liquidityAmountsUnbonding[msg.sender][liquidity][job];
        liquidityProvided[msg.sender][liquidity][job] = liquidityProvided[msg.sender][liquidity][job].sub(_amount);
        liquidityAmountsUnbonding[msg.sender][liquidity][job] = 0;
        IERC20(liquidity).safeTransfer(msg.sender, _amount);

        emit RemoveJob(job, liquidity, msg.sender, block.number, _amount);
    }

    function _mint(address dst, uint amount) internal {
        // 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);
    }

    function _burn(address dst, uint amount) internal {
        require(dst != address(0), "_burn: zero address");
        balances[dst] = balances[dst].sub(amount, "_burn: exceeds balance");
        totalSupply = totalSupply.sub(amount);
        emit Transfer(dst, address(0), amount);
    }

    /**
     * @notice Implemented by jobs to show that a keeper performed work
     * @param keeper address of the keeper that performed the work
     */
    function worked(address keeper) external {
        workReceipt(keeper, KPRH.getQuoteLimit(_gasUsed.sub(gasleft())));
    }

    /**
     * @notice Implemented by jobs to show that a keeper performed work
     * @param keeper address of the keeper that performed the work
     * @param amount the reward that should be allocated
     */
    function workReceipt(address keeper, uint amount) public {
        require(jobs[msg.sender], "workReceipt: !job");
        require(amount <= KPRH.getQuoteLimit(_gasUsed.sub(gasleft())), "workReceipt: max limit");
        credits[msg.sender][address(this)] = credits[msg.sender][address(this)].sub(amount, "workReceipt: insuffient funds");
        lastJob[keeper] = now;
        _reward(keeper, amount);
        workCompleted[keeper] = workCompleted[keeper].add(amount);
        emit KeeperWorked(address(this), msg.sender, keeper, block.number, amount);
    }

    /**
     * @notice Implemented by jobs to show that a keeper performed work
     * @param credit the asset being awarded to the keeper
     * @param keeper address of the keeper that performed the work
     * @param amount the reward that should be allocated
     */
    function receipt(address credit, address keeper, uint amount) external {
        require(jobs[msg.sender], "receipt: !job");
        credits[msg.sender][credit] = credits[msg.sender][credit].sub(amount, "workReceipt: insuffient funds");
        lastJob[keeper] = now;
        IERC20(credit).safeTransfer(keeper, amount);
        emit KeeperWorked(credit, msg.sender, keeper, block.number, amount);
    }

    /**
     * @notice Implemented by jobs to show that a keeper performed work
     * @param keeper address of the keeper that performed the work
     * @param amount the amount of ETH sent to the keeper
     */
    function receiptETH(address keeper, uint amount) external {
        require(jobs[msg.sender], "receipt: !job");
        credits[msg.sender][ETH] = credits[msg.sender][ETH].sub(amount, "workReceipt: insuffient funds");
        lastJob[keeper] = now;
        payable(keeper).transfer(amount);
        emit KeeperWorked(ETH, msg.sender, keeper, block.number, amount);
    }

    function _reward(address _from, uint _amount) internal {
        bonds[_from][address(this)] = bonds[_from][address(this)].add(_amount);
        totalBonded = totalBonded.add(_amount);
        _moveDelegates(address(0), delegates[_from], _amount);
        emit Transfer(msg.sender, _from, _amount);
    }

    function _bond(address bonding, address _from, uint _amount) internal {
        bonds[_from][bonding] = bonds[_from][bonding].add(_amount);
        if (bonding == address(this)) {
            totalBonded = totalBonded.add(_amount);
            _moveDelegates(address(0), delegates[_from], _amount);
        }
    }

    function _unbond(address bonding, address _from, uint _amount) internal {
        bonds[_from][bonding] = bonds[_from][bonding].sub(_amount);
        if (bonding == address(this)) {
            totalBonded = totalBonded.sub(_amount);
            _moveDelegates(delegates[_from], address(0), _amount);
        }

    }

    /**
     * @notice Allows governance to add new job systems
     * @param job address of the contract for which work should be performed
     */
    function addJob(address job) external {
        require(msg.sender == governance, "addJob: !gov");
        require(!jobs[job], "addJob: job known");
        jobs[job] = true;
        jobList.push(job);
        emit JobAdded(job, block.number, msg.sender);
    }

    /**
     * @notice Full listing of all jobs ever added
     * @return array blob
     */
    function getJobs() external view returns (address[] memory) {
        return jobList;
    }

    /**
     * @notice Allows governance to remove a job from the systems
     * @param job address of the contract for which work should be performed
     */
    function removeJob(address job) external {
        require(msg.sender == governance, "removeJob: !gov");
        jobs[job] = false;
        emit JobRemoved(job, block.number, msg.sender);
    }

    /**
     * @notice Allows governance to change the K33prNetworkHelper for max spend
     * @param _kprh new helper address to set
     */
    function setHelper(IHelper _kprh) external {
        require(msg.sender == governance, "setHelper: !gov");
        KPRH = _kprh;
    }
    
    /**
     * @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 confirms if the current keeper is registered, can be used for general (non critical) functions
     * @param keeper the keeper being investigated
     * @return true/false if the address is a keeper
     */
    function isKeeper(address keeper) external returns (bool) {
        _gasUsed = gasleft();
        return keepers[keeper];
    }

    /**
     * @notice confirms if the current keeper is registered and has a minimum bond, should be used for protected functions
     * @param keeper the keeper being investigated
     * @param minBond the minimum requirement for the asset provided in bond
     * @param earned the total funds earned in the keepers lifetime
     * @param age the age of the keeper in the system
     * @return true/false if the address is a keeper and has more than the bond
     */
    function isMinKeeper(address keeper, uint minBond, uint earned, uint age) external returns (bool) {
        _gasUsed = gasleft();
        return keepers[keeper]
                && bonds[keeper][address(this)].add(votes[keeper]) >= minBond
                && workCompleted[keeper] >= earned
                && now.sub(firstSeen[keeper]) >= age;
    }

    /**
     * @notice confirms if the current keeper is registered and has a minimum bond, should be used for protected functions
     * @param keeper the keeper being investigated
     * @param bond the bound asset being evaluated
     * @param minBond the minimum requirement for the asset provided in bond
     * @param earned the total funds earned in the keepers lifetime
     * @param age the age of the keeper in the system
     * @return true/false if the address is a keeper and has more than the bond
     */
    function isBondedKeeper(address keeper, address bond, uint minBond, uint earned, uint age) external returns (bool) {
        _gasUsed = gasleft();
        return keepers[keeper]
                && bonds[keeper][bond] >= minBond
                && workCompleted[keeper] >= earned
                && now.sub(firstSeen[keeper]) >= age;
    }

    /**
     * @notice begin the bonding process for a new keeper
     * @param bonding the asset being bound
     * @param amount the amount of bonding asset being bound
     */
    function bond(address bonding, uint amount) external nonReentrant {
        require(!blacklist[msg.sender], "bond: blacklisted");
        bondings[msg.sender][bonding] = now.add(BOND);
        if (bonding == address(this)) {
            _transferTokens(msg.sender, address(this), amount);
        } else {
            uint _before = IERC20(bonding).balanceOf(address(this));
            IERC20(bonding).safeTransferFrom(msg.sender, address(this), amount);
            amount = IERC20(bonding).balanceOf(address(this)).sub(_before);
        }
        pendingbonds[msg.sender][bonding] = pendingbonds[msg.sender][bonding].add(amount);
        emit KeeperBonding(msg.sender, block.number, bondings[msg.sender][bonding], amount);
    }

    /**
     * @notice get full list of keepers in the system
     */
    function getKeepers() external view returns (address[] memory) {
        return keeperList;
    }

    /**
     * @notice allows a keeper to activate/register themselves after bonding
     * @param bonding the asset being activated as bond collateral
     */
    function activate(address bonding) external {
        require(!blacklist[msg.sender], "activate: blacklisted");
        require(bondings[msg.sender][bonding] != 0 && bondings[msg.sender][bonding] < now, "activate: bonding");
        _activate(msg.sender, bonding);
    }
    
    function _activate(address keeper, address bonding) internal {
        if (firstSeen[keeper] == 0) {
          firstSeen[keeper] = now;
          keeperList.push(keeper);
          lastJob[keeper] = now;
        }
        keepers[keeper] = true;
        _bond(bonding, keeper, pendingbonds[keeper][bonding]);
        pendingbonds[keeper][bonding] = 0;
        emit KeeperBonded(keeper, block.number, block.timestamp, bonds[keeper][bonding]);
    }

    /**
     * @notice begin the unbonding process to stop being a keeper
     * @param bonding the asset being unbound
     * @param amount allows for partial unbonding
     */
    function unbond(address bonding, uint amount) external {
        unbondings[msg.sender][bonding] = now.add(UNBOND);
        _unbond(bonding, msg.sender, amount);
        partialUnbonding[msg.sender][bonding] = partialUnbonding[msg.sender][bonding].add(amount);
        emit KeeperUnbonding(msg.sender, block.number, unbondings[msg.sender][bonding], amount);
    }

    /**
     * @notice withdraw funds after unbonding has finished
     * @param bonding the asset to withdraw from the bonding pool
     */
    function withdraw(address bonding) external nonReentrant {
        require(unbondings[msg.sender][bonding] != 0 && unbondings[msg.sender][bonding] < now, "withdraw: unbonding");
        require(!disputes[msg.sender], "withdraw: disputes");

        if (bonding == address(this)) {
            _transferTokens(address(this), msg.sender, partialUnbonding[msg.sender][bonding]);
        } else {
            IERC20(bonding).safeTransfer(msg.sender, partialUnbonding[msg.sender][bonding]);
        }
        emit KeeperUnbound(msg.sender, block.number, block.timestamp, partialUnbonding[msg.sender][bonding]);
        partialUnbonding[msg.sender][bonding] = 0;
    }

    /**
     * @notice allows governance to create a dispute for a given keeper
     * @param keeper the address in dispute
     */
    function dispute(address keeper) external {
        require(msg.sender == governance, "dispute: !gov");
        disputes[keeper] = true;
        emit KeeperDispute(keeper, block.number);
    }

    /**
     * @notice allows governance to slash a keeper based on a dispute
     * @param bonded the asset being slashed
     * @param keeper the address being slashed
     * @param amount the amount being slashed
     */
    function slash(address bonded, address keeper, uint amount) public nonReentrant {
        require(msg.sender == governance, "slash: !gov");
        if (bonded == address(this)) {
            _transferTokens(address(this), governance, amount);
        } else {
            IERC20(bonded).safeTransfer(governance, amount);
        }
        _unbond(bonded, keeper, amount);
        disputes[keeper] = false;
        emit KeeperSlashed(keeper, msg.sender, block.number, amount);
    }

    /**
     * @notice blacklists a keeper from participating in the network
     * @param keeper the address being slashed
     */
    function revoke(address keeper) external {
        require(msg.sender == governance, "slash: !gov");
        keepers[keeper] = false;
        blacklist[keeper] = true;
        slash(address(this), keeper, bonds[keeper][address(this)]);
    }

    /**
     * @notice allows governance to resolve a dispute on a keeper
     * @param keeper the address cleared
     */
    function resolve(address keeper) external {
        require(msg.sender == governance, "resolve: !gov");
        disputes[keeper] = false;
        emit KeeperResolved(keeper, block.number);
    }

    /**
     * @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) public 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) public 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");

        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":[{"internalType":"address","name":"_kprh","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"credit","type":"address"},{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"creditor","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddCredit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"ApplyCredit","type":"event"},{"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":"job","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"address","name":"governance","type":"address"}],"name":"JobAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"address","name":"governance","type":"address"}],"name":"JobRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"activated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperBonded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"active","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperBonding","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperDispute","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperResolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":true,"internalType":"address","name":"slasher","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"slash","type":"uint256"}],"name":"KeeperSlashed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"deactive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperUnbonding","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"deactivated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperUnbound","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"credit","type":"address"},{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"KeeperWorked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"RemoveJob","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"SubmitJob","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"UnbondJob","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KPRH","outputs":[{"internalType":"contract IHelper","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITYBOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNBOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bonding","type":"address"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"credit","type":"address"},{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addCredit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"addCreditETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"addJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addKPRCredit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addLiquidityToJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"voter","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addVotes","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":"provider","type":"address"},{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"}],"name":"applyCreditToJob","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"liquidity","type":"address"}],"name":"approveLiquidity","outputs":[],"stateMutability":"nonpayable","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"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bonding","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"bondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"bonds","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":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"credits","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":"address","name":"keeper","type":"address"}],"name":"dispute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"disputes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"firstSeen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getJobs","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getKeepers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"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":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"address","name":"bond","type":"address"},{"internalType":"uint256","name":"minBond","type":"uint256"},{"internalType":"uint256","name":"earned","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"isBondedKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"isKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"minBond","type":"uint256"},{"internalType":"uint256","name":"earned","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"isMinKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"jobList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"jobProposalDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"jobs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"keeperList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"keepers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastJob","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityAccepted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityAmountsUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityApplied","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"liquidityPairs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityProvided","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityUnbonding","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":"pairs","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"partialUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGovernance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"pendingbonds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"credit","type":"address"},{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"receipt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"receiptETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"removeJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"}],"name":"removeLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"voter","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"removeVotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"resolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"}],"name":"revokeLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IHelper","name":"_kprh","type":"address"}],"name":"setHelper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bonded","type":"address"},{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"slash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBonded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"bonding","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unbond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unbondLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"unbondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"votes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bonding","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"workCompleted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"workReceipt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"worked","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260006002556000600f553480156200001b57600080fd5b506040516200620b3803806200620b833981810160405260208110156200004157600080fd5b50516001600055602080546001600160a01b031916331781556040805180820190915260098152686b333370722e636f6d60b81b9101527f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f357fafa425d79f77d5bcc8d9046bbb530b9c0c0815c3eea4b648c1d2ee4bdd85160f620000c462000146565b604080516020808201959095528082019390935260608301919091523060808084019190915281518084038201815260a09093019091528151918301919091209052600180546001600160a01b0319166001600160a01b038481169190911790915590546200013f91166954b40b1f852bda0000006200014a565b506200023e565b4690565b6200016681600254620001f360201b62004db71790919060201c565b6002556001600160a01b0382166000908152600760209081526040909120546200019b91839062004db7620001f3821b17901c565b6001600160a01b03831660008181526007602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008282018381101562000237576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b9392505050565b608051615fa86200026360003980611b53528061408652806145205250615fa86000f3fe6080604052600436106104ec5760003560e01c8063782d6fe11161028c578063c57981b51161015a578063e74f8239116100cc578063f39c38a011610085578063f39c38a014611625578063f75f9f7b1461163a578063f9d46cf21461166d578063f9f92be4146116bc578063fede7008146116ef578063ffb0a4a014611734576104ec565b8063e74f8239146114fc578063e7a324dc1461153f578063eb421f3b14611554578063ec342ad014611587578063ec4515dd1461159c578063f1127ed8146115c6576104ec565b8063d8bff5a51161011e578063d8bff5a5146113a2578063dd62ed3e146113d5578063de63298d14611410578063deac354114611449578063def7084414611484578063e326ac43146114c9576104ec565b8063c57981b51461128a578063ce6a08801461129f578063d454019d146112d8578063d505accf1461130b578063d8ae6faf14611369576104ec565b8063a515366a116101fe578063b4b5ea57116101b7578063b4b5ea5714611158578063b600702a1461118b578063bb49096d146111be578063c1c1d21814610779578063c3cda52014611203578063c5198abc14611257576104ec565b8063a515366a14611032578063a5d059ca1461106b578063a9059cbb146110a4578063ab033ea9146110dd578063b0103b1a14611110578063b105e39f14611143576104ec565b806388b4ac831161025057806388b4ac8314610eee5780638d9acd2e14610f3157806395d89b4114610f74578063986ccc7f14610f895780639af7728414610fbc578063a39744b514610ff7576104ec565b8063782d6fe114610df55780637ecebe0014610e2e5780638071198914610e615780638322fff214610e9457806383baa69314610ea9576104ec565b80633d1f0bb9116103c9578063603b4d141161033b5780636ba42aaa116102f45780636ba42aaa14610cb75780636dab5dcf14610cea5780636fcfff4514610d1057806370a0823114610d5c57806374a8f10314610d8f5780637724ff6814610dc2576104ec565b8063603b4d1414610b59578063603c686014610b6e578063637cd7f014610ba957806364bb43ee14610be457806367da318414610c1757806368581ebd14610c52576104ec565b806352a4de291161038d57806352a4de2914610a3557806355ea6c4714610a78578063587cde1e14610aab5780635aa6e67514610ade5780635c19a95c14610af35780635feeb79414610b26576104ec565b80633d1f0bb91461093c5780634395d8ba1461096f57806344d96e95146109b45780634b3fde21146109c957806351cff8d914610a02576104ec565b80631df0de131161046257806323b872dd1161042657806323b872dd1461083657806330adf81f14610879578063313ce5671461088e578063378dc3dc146108b957806337feca84146108ce5780633bbd64bc14610909576104ec565b80631df0de13146107795780631ff5f3da1461078e57806320606b70146107d35780632119a62a146107e8578063238efcbc14610821576104ec565b80631778e29c116104b45780631778e29c1461066857806318160ddd1461068f5780631992d206146106a45780631b44555e146106e95780631b7a1fb21461071c5780631c5a9d9c14610746576104ec565b806306fdde03146104f1578063095ea7b31461057b57806309aff02b146105c85780630c33c522146105f95780631101eb4114610623575b600080fd5b3480156104fd57600080fd5b50610506611749565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610540578181015183820152602001610528565b50505050905090810190601f16801561056d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561058757600080fd5b506105b46004803603604081101561059e57600080fd5b506001600160a01b03813516906020013561176e565b604080519115158252519081900360200190f35b3480156105d457600080fd5b506105dd6117d5565b604080516001600160a01b039092168252519081900360200190f35b34801561060557600080fd5b506105dd6004803603602081101561061c57600080fd5b50356117e4565b34801561062f57600080fd5b506106666004803603606081101561064657600080fd5b506001600160a01b0381358116916020810135909116906040013561180b565b005b34801561067457600080fd5b5061067d611b51565b60408051918252519081900360200190f35b34801561069b57600080fd5b5061067d611b75565b3480156106b057600080fd5b5061067d600480360360608110156106c757600080fd5b506001600160a01b038135811691602081013582169160409091013516611b7b565b3480156106f557600080fd5b5061067d6004803603602081101561070c57600080fd5b50356001600160a01b0316611b9e565b34801561072857600080fd5b506105dd6004803603602081101561073f57600080fd5b5035611bb0565b34801561075257600080fd5b506106666004803603602081101561076957600080fd5b50356001600160a01b0316611bbd565b34801561078557600080fd5b5061067d611cc0565b34801561079a57600080fd5b506105b4600480360360808110156107b157600080fd5b506001600160a01b038135169060208101359060408101359060600135611cc7565b3480156107df57600080fd5b5061067d611d89565b3480156107f457600080fd5b506106666004803603604081101561080b57600080fd5b506001600160a01b038135169060200135611dad565b34801561082d57600080fd5b50610666611f0c565b34801561084257600080fd5b506105b46004803603606081101561085957600080fd5b506001600160a01b03813581169160208101359091169060400135611f8f565b34801561088557600080fd5b5061067d612071565b34801561089a57600080fd5b506108a3612095565b6040805160ff9092168252519081900360200190f35b3480156108c557600080fd5b5061067d61209a565b3480156108da57600080fd5b5061067d600480360360408110156108f157600080fd5b506001600160a01b03813581169160200135166120a8565b34801561091557600080fd5b506105b46004803603602081101561092c57600080fd5b50356001600160a01b03166120c5565b34801561094857600080fd5b506105b46004803603602081101561095f57600080fd5b50356001600160a01b03166120da565b34801561097b57600080fd5b506106666004803603606081101561099257600080fd5b506001600160a01b0381358116916020810135821691604090910135166120ef565b3480156109c057600080fd5b5061067d6123b8565b3480156109d557600080fd5b50610666600480360360408110156109ec57600080fd5b506001600160a01b0381351690602001356123be565b348015610a0e57600080fd5b5061066660048036036020811015610a2557600080fd5b50356001600160a01b03166125f9565b348015610a4157600080fd5b5061066660048036036060811015610a5857600080fd5b506001600160a01b0381358116916020810135909116906040013561283d565b348015610a8457600080fd5b5061066660048036036020811015610a9b57600080fd5b50356001600160a01b0316612b3a565b348015610ab757600080fd5b506105dd60048036036020811015610ace57600080fd5b50356001600160a01b0316612be1565b348015610aea57600080fd5b506105dd612bfc565b348015610aff57600080fd5b5061066660048036036020811015610b1657600080fd5b50356001600160a01b0316612c0b565b348015610b3257600080fd5b5061066660048036036020811015610b4957600080fd5b50356001600160a01b0316612c15565b348015610b6557600080fd5b5061067d612c9e565b348015610b7a57600080fd5b5061066660048036036040811015610b9157600080fd5b506001600160a01b0381358116916020013516612ca5565b348015610bb557600080fd5b5061067d60048036036040811015610bcc57600080fd5b506001600160a01b0381358116916020013516612eac565b348015610bf057600080fd5b5061066660048036036020811015610c0757600080fd5b50356001600160a01b0316612ec9565b348015610c2357600080fd5b5061067d60048036036040811015610c3a57600080fd5b506001600160a01b0381358116916020013516612f41565b348015610c5e57600080fd5b50610c67612f5e565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610ca3578181015183820152602001610c8b565b505050509050019250505060405180910390f35b348015610cc357600080fd5b506105b460048036036020811015610cda57600080fd5b50356001600160a01b0316612fc0565b61066660048036036020811015610d0057600080fd5b50356001600160a01b0316612fe5565b348015610d1c57600080fd5b50610d4360048036036020811015610d3357600080fd5b50356001600160a01b031661313b565b6040805163ffffffff9092168252519081900360200190f35b348015610d6857600080fd5b5061067d60048036036020811015610d7f57600080fd5b50356001600160a01b0316613153565b348015610d9b57600080fd5b5061066660048036036020811015610db257600080fd5b50356001600160a01b031661316e565b348015610dce57600080fd5b5061067d60048036036020811015610de557600080fd5b50356001600160a01b031661320f565b348015610e0157600080fd5b5061067d60048036036040811015610e1857600080fd5b506001600160a01b038135169060200135613221565b348015610e3a57600080fd5b5061067d60048036036020811015610e5157600080fd5b50356001600160a01b0316613430565b348015610e6d57600080fd5b5061066660048036036020811015610e8457600080fd5b50356001600160a01b0316613442565b348015610ea057600080fd5b506105dd6134f4565b348015610eb557600080fd5b5061067d60048036036060811015610ecc57600080fd5b506001600160a01b0381358116916020810135821691604090910135166134f9565b348015610efa57600080fd5b5061066660048036036060811015610f1157600080fd5b506001600160a01b0381358116916020810135909116906040013561351c565b348015610f3d57600080fd5b5061066660048036036060811015610f5457600080fd5b506001600160a01b038135811691602081013590911690604001356137d2565b348015610f8057600080fd5b5061050661391e565b348015610f9557600080fd5b5061066660048036036020811015610fac57600080fd5b50356001600160a01b031661393f565b348015610fc857600080fd5b5061067d60048036036040811015610fdf57600080fd5b506001600160a01b03813581169160200135166139b2565b34801561100357600080fd5b5061067d6004803603604081101561101a57600080fd5b506001600160a01b03813581169160200135166139cf565b34801561103e57600080fd5b506106666004803603604081101561105557600080fd5b506001600160a01b0381351690602001356139ec565b34801561107757600080fd5b506106666004803603604081101561108e57600080fd5b506001600160a01b038135169060200135613c75565b3480156110b057600080fd5b506105b4600480360360408110156110c757600080fd5b506001600160a01b038135169060200135613d63565b3480156110e957600080fd5b506106666004803603602081101561110057600080fd5b50356001600160a01b0316613d79565b34801561111c57600080fd5b506105b46004803603602081101561113357600080fd5b50356001600160a01b0316613df0565b34801561114f57600080fd5b50610c67613e05565b34801561116457600080fd5b5061067d6004803603602081101561117b57600080fd5b50356001600160a01b0316613e65565b34801561119757600080fd5b50610666600480360360208110156111ae57600080fd5b50356001600160a01b0316613ec9565b3480156111ca57600080fd5b5061067d600480360360608110156111e157600080fd5b506001600160a01b038135811691602081013582169160409091013516613ff5565b34801561120f57600080fd5b50610666600480360360c081101561122657600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135614018565b34801561126357600080fd5b506106666004803603602081101561127a57600080fd5b50356001600160a01b0316614256565b34801561129657600080fd5b5061067d6143ac565b3480156112ab57600080fd5b50610666600480360360408110156112c257600080fd5b506001600160a01b0381351690602001356143b1565b3480156112e457600080fd5b5061067d600480360360208110156112fb57600080fd5b50356001600160a01b0316614477565b34801561131757600080fd5b50610666600480360360e081101561132e57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135614489565b34801561137557600080fd5b506106666004803603604081101561138c57600080fd5b506001600160a01b03813516906020013561472d565b3480156113ae57600080fd5b5061067d600480360360208110156113c557600080fd5b50356001600160a01b0316614891565b3480156113e157600080fd5b5061067d600480360360408110156113f857600080fd5b506001600160a01b03813581169160200135166148a3565b34801561141c57600080fd5b506106666004803603604081101561143357600080fd5b506001600160a01b0381351690602001356148ce565b34801561145557600080fd5b5061067d6004803603604081101561146c57600080fd5b506001600160a01b0381358116916020013516614999565b34801561149057600080fd5b5061067d600480360360608110156114a757600080fd5b506001600160a01b0381358116916020810135821691604090910135166149b6565b3480156114d557600080fd5b5061067d600480360360208110156114ec57600080fd5b50356001600160a01b03166149d9565b34801561150857600080fd5b506106666004803603606081101561151f57600080fd5b506001600160a01b038135811691602081013590911690604001356149eb565b34801561154b57600080fd5b5061067d614b3c565b34801561156057600080fd5b506105b46004803603602081101561157757600080fd5b50356001600160a01b0316614b60565b34801561159357600080fd5b5061067d614b75565b3480156115a857600080fd5b506105dd600480360360208110156115bf57600080fd5b5035614b7b565b3480156115d257600080fd5b50611605600480360360408110156115e957600080fd5b5080356001600160a01b0316906020013563ffffffff16614b88565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561163157600080fd5b506105dd614bb5565b34801561164657600080fd5b506106666004803603602081101561165d57600080fd5b50356001600160a01b0316614bc4565b34801561167957600080fd5b506105b4600480360360a081101561169057600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060800135614c6e565b3480156116c857600080fd5b506105b4600480360360208110156116df57600080fd5b50356001600160a01b0316614d1f565b3480156116fb57600080fd5b5061067d6004803603606081101561171257600080fd5b506001600160a01b038135811691602081013582169160409091013516614d34565b34801561174057600080fd5b50610c67614d57565b604051806040016040528060098152602001686b333370722e636f6d60b81b81525081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6001546001600160a01b031681565b601f81815481106117f157fe5b6000918252602090912001546001600160a01b0316905081565b336000908152601b602090815260408083206001600160a01b038781168552908352818420908616845290915290205415611886576040805162461bcd60e51b815260206004820152601660248201527518dc99591a5d0e881c195b991a5b99c818dc99591a5d60521b604482015290519081900360640190fd5b6118934262127500614db7565b3360008181526017602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965593835260188252808320938352928152828220938252929092529020546118f09082614db7565b3360008181526018602090815260408083206001600160a01b03898116808652918452828520908916808652818552838620889055958552601684528285209185529083528184209484529382529091205491905210156119825760405162461bcd60e51b815260040180806020018281038252602a815260200180615f02602a913960400191505060405180910390fd5b600061198e8430614dfa565b90506000611a0a856001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156119ce57600080fd5b505afa1580156119e2573d6000803e3d6000fd5b505050506040513d60208110156119f857600080fd5b5051611a048486614f9c565b90614ff4565b6001600160a01b0385166000908152601560209081526040808320308452909152902054909150811115611a90576001600160a01b038416600090815260156020908152604080832030808552925290912054611a67919061501f565b6001600160a01b0384166000908152601560209081526040808320308452909152812055611aed565b611a9a308261501f565b6001600160a01b0384166000908152601560209081526040808320308452909152902054611ac89082615120565b6001600160a01b03851660009081526015602090815260408083203084529091529020555b336001600160a01b0316856001600160a01b0316856001600160a01b03167f6d962fe34dd0cf9a9df3e12a7b8ddfe5f790b3f11668553455d7b52db70a07be4387604051808381526020018281526020019250505060405180910390a45050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025481565b601b60209081526000938452604080852082529284528284209052825290205481565b60136020526000908152604090205481565b602381815481106117f157fe5b336000908152601d602052604090205460ff1615611c1a576040805162461bcd60e51b81526020600482015260156024820152741858dd1a5d985d194e88189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b3360009081526009602090815260408083206001600160a01b038516845290915290205415801590611c6e57503360009081526009602090815260408083206001600160a01b038516845290915290205442115b611cb3576040805162461bcd60e51b815260206004820152601160248201527061637469766174653a20626f6e64696e6760781b604482015290519081900360640190fd5b611cbd338261514b565b50565b6203f48081565b60005a6024556001600160a01b0385166000908152601c602052604090205460ff168015611d2c57506001600160a01b0385166000908152600e6020908152604080832054600d8352818420308552909252909120548591611d299190614db7565b10155b8015611d5057506001600160a01b0385166000908152601360205260409020548311155b8015611d8057506001600160a01b0385166000908152601060205260409020548290611d7d904290615120565b10155b95945050505050565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b3360009081526014602052604090205460ff16611e01576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120600e82529091529190912054611e5c918390615299565b336000908152601560209081526040808320600e84528252808320939093556001600160a01b0385168083526012909152828220429055915183156108fc0291849190818181858888f19350505050158015611ebc573d6000803e3d6000fd5b50604080514381526020810183905281516001600160a01b038516923392600e927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8929181900390910190a45050565b6021546001600160a01b03163314611f6b576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b602154602080546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b038316600081815260066020908152604080832033808552925282205491929091908214801590611fc957506000198114155b1561205a576000611ff585604051806060016040528060278152602001615f4c60279139849190615299565b6001600160a01b0380891660008181526006602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b612065868686615330565b50600195945050505050565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b6954b40b1f852bda00000081565b600960209081526000928352604080842090915290825290205481565b601c6020526000908152604090205460ff1681565b60146020526000908152604090205460ff1681565b6001600160a01b03821660009081526022602052604090205460ff16612157576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a6020908152604080832086851684528252808320938516835292905220546121ca576040805162461bcd60e51b815260206004820152600f60248201526e18dc99591a5d0e881b9bc8189bdb99608a1b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a602090815260408083208685168452825280832093851683529290522054421161223f576040805162461bcd60e51b815260206004820152600f60248201526e6372656469743a20626f6e64696e6760881b604482015290519081900360640190fd5b600061224b8330614dfa565b905060006122f2846001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561228b57600080fd5b505afa15801561229f573d6000803e3d6000fd5b505050506040513d60208110156122b557600080fd5b50516001600160a01b038088166000908152601b602090815260408083208a85168452825280832093891683529290522054611a04908590614f9c565b90506122fe30826154ed565b6001600160a01b038316600090815260156020908152604080832030845290915290205461232c9082614db7565b6001600160a01b038085166000818152601560209081526040808320308452825280832095909555898416808352601b8252858320948a168084529482528583208484528252858320929092558451438152908101869052845191947fa90666688fb32254f45a367c38fbcd5f2664432b061a4354d9d3c9a7abcbec5b92918290030190a45050505050565b600f5481565b3360009081526014602052604090205460ff16612416576040805162461bcd60e51b81526020600482015260116024820152703bb7b935a932b1b2b4b83a1d1010b537b160791b604482015290519081900360640190fd5b6001546001600160a01b031663525ea6316124345a60245490615120565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561246857600080fd5b505afa15801561247c573d6000803e3d6000fd5b505050506040513d602081101561249257600080fd5b50518111156124e1576040805162461bcd60e51b81526020600482015260166024820152751ddbdc9ad49958d95a5c1d0e881b585e081b1a5b5a5d60521b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120308252909152919091205461253b918390615299565b3360009081526015602090815260408083203084528252808320939093556001600160a01b038516825260129052204290556125778282615566565b6001600160a01b03821660009081526013602052604090205461259a9082614db7565b6001600160a01b03831660008181526013602090815260409182902093909355805143815292830184905280519192339230927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8928290030190a45050565b6002600054141561263f576040805162461bcd60e51b815260206004820152601f6024820152600080516020615ee2833981519152604482015290519081900360640190fd5b60026000908155338152600a602090815260408083206001600160a01b0385168452909152902054158015906126975750336000908152600a602090815260408083206001600160a01b038516845290915290205442115b6126de576040805162461bcd60e51b815260206004820152601360248201527277697468647261773a20756e626f6e64696e6760681b604482015290519081900360640190fd5b3360009081526011602052604090205460ff1615612738576040805162461bcd60e51b815260206004820152601260248201527177697468647261773a20646973707574657360701b604482015290519081900360640190fd5b6001600160a01b03811630141561277d57336000818152600b602090815260408083206001600160a01b0386168452909152902054612778913091615330565b6127ac565b336000818152600b602090815260408083206001600160a01b0386168085529252909120546127ac929061561f565b336000818152600b602090815260408083206001600160a01b038616845282529182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600b602090815260408083206001600160a01b0394909416835292905290812081905560019055565b60026000541415612883576040805162461bcd60e51b815260206004820152601f6024820152600080516020615ee2833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03841681526022602052604090205460ff166128ef576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b6129046001600160a01b038416333084615676565b3360009081526016602090815260408083206001600160a01b038781168552908352818420908616845290915290205461293e9082614db7565b3360009081526016602090815260408083206001600160a01b038881168552908352818420908716845290915290205561297b426203f480614db7565b336000818152601a602090815260408083206001600160a01b0389811680865291845282852090891680865290845282852096909655938352601b8252808320938352928152828220938252929092529020546129d89082614db7565b336000908152601b602090815260408083206001600160a01b038881168552908352818420908716845282528083209390935560149052205460ff16158015612a3857506001600160a01b03821660009081526019602052604090205442115b15612ad3576020546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb91602480830192600092919082900301818387803b158015612a8b57600080fd5b505af1158015612a9f573d6000803e3d6000fd5b50505050612ab96212750042614db790919063ffffffff16565b6001600160a01b0383166000908152601960205260409020555b336001600160a01b0316836001600160a01b0316836001600160a01b03167fe1cb44a16adbd63a44f65c279b23b8f447b2c6e120a2bc7f004758b446e05ed14385604051808381526020018281526020019250505060405180910390a45050600160005550565b6020546001600160a01b03163314612b89576040805162461bcd60e51b815260206004820152600d60248201526c3932b9b7b63b329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6003602052600090815260409020546001600160a01b031681565b6020546001600160a01b031681565b611cbd33826156d6565b600154611cbd9082906001600160a01b031663525ea631612c395a60245490615120565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612c6d57600080fd5b505afa158015612c81573d6000803e3d6000fd5b505050506040513d6020811015612c9757600080fd5b50516123be565b6212750081565b3360009081526017602090815260408083206001600160a01b0386811685529083528184209085168452909152902054612d1a576040805162461bcd60e51b81526020600482015260116024820152701c995b5bdd99529bd88e881d5b989bdb99607a1b604482015290519081900360640190fd5b3360009081526017602090815260408083206001600160a01b03868116855290835281842090851684529091529020544211612d94576040805162461bcd60e51b815260206004820152601460248201527372656d6f76654a6f623a20756e626f6e64696e6760601b604482015290519081900360640190fd5b3360008181526018602090815260408083206001600160a01b038781168086529184528285209087168086529084528285205495855260168452828520918552908352818420908452909152902054612ded9082615120565b3360008181526016602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965584845260188352818420818552835281842095845294909152812055612e4a91908361561f565b336001600160a01b0316836001600160a01b0316836001600160a01b03167fb69fc9f6d19ed402461251491f86c736bfcbe966e9584d3fb8a0057b313b69204385604051808381526020018281526020019250505060405180910390a4505050565b601560209081526000928352604080842090915290825290205481565b6020546001600160a01b03163314612f20576040805162461bcd60e51b81526020600482015260156024820152743932bb37b5b2a634b8bab4b234ba3c9d1010b3b7bb60591b604482015290519081900360640190fd5b6001600160a01b03166000908152602260205260409020805460ff19169055565b600b60209081526000928352604080842090915290825290205481565b6060601f805480602002602001604051908101604052809291908181526020018280548015612fb657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612f98575b5050505050905090565b60005a602455506001600160a01b03166000908152601c602052604090205460ff1690565b6001600160a01b03811660009081526014602052604090205460ff16613047576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b600061305a612710611a0434601e614f9c565b90506130946130693483615120565b6001600160a01b0384166000908152601560209081526040808320600e845290915290205490614db7565b6001600160a01b038084166000908152601560209081526040808320600e8452825280832094909455549251929091169183156108fc0291849190818181858888f193505050501580156130ec573d6000803e3d6000fd5b5060408051438152346020820152815133926001600160a01b03861692600e927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b60056020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526007602052604090205490565b6020546001600160a01b031633146131bb576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b0381166000908152601c60209081526040808320805460ff19908116909155601d835281842080549091166001179055600d825280832030808552925290912054611cbd919083906149eb565b60196020526000908152604090205481565b6000438210613268576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205463ffffffff16806132965760009150506117cf565b6001600160a01b038416600090815260046020908152604080832063ffffffff600019860181168552925290912054168310613305576001600160a01b03841660009081526004602090815260408083206000199490940163ffffffff168352929052206001015490506117cf565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff168310156133405760009150506117cf565b600060001982015b8163ffffffff168163ffffffff1611156133f957600282820363ffffffff16048103613372615eca565b506001600160a01b038716600090815260046020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156133d4576020015194506117cf9350505050565b805163ffffffff168711156133eb578193506133f2565b6001820392505b5050613348565b506001600160a01b038516600090815260046020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6020546001600160a01b03163314613493576040805162461bcd60e51b815260206004820152600f60248201526e3932b6b7bb32a537b11d1010b3b7bb60891b604482015290519081900360640190fd5b6001600160a01b038116600081815260146020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b600e81565b601860209081526000938452604080852082529284528284209052825290205481565b60026000541415613562576040805162461bcd60e51b815260206004820152601f6024820152600080516020615ee2833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03831681526014602052604090205460ff166135c8576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561361757600080fd5b505afa15801561362b573d6000803e3d6000fd5b505050506040513d602081101561364157600080fd5b5051905061365a6001600160a01b038516333085615676565b60006136df82866001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156136ad57600080fd5b505afa1580156136c1573d6000803e3d6000fd5b505050506040513d60208110156136d757600080fd5b505190615120565b905060006136f4612710611a0484601e614f9c565b905061372f6137038383615120565b6001600160a01b038088166000908152601560209081526040808320938c168352929052205490614db7565b6001600160a01b0380871660009081526015602090815260408083208b851680855290835292209390935591546137689291168361561f565b336001600160a01b0316856001600160a01b0316876001600160a01b03167fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a4386604051808381526020018281526020019250505060405180910390a45050600160005550505050565b3360009081526014602052604090205460ff16613826576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e6473000000602080830191909152336000908152601582528381206001600160a01b03881682529091529190912054613889918390615299565b3360009081526015602090815260408083206001600160a01b03888116808652918452828520959095559386168352601290915290204290556138cd90838361561f565b604080514381526020810183905281516001600160a01b03808616933393918816927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e89281900390910190a4505050565b60405180604001604052806005815260200164259999a82960d91b81525081565b6020546001600160a01b03163314613990576040805162461bcd60e51b815260206004820152600f60248201526e39b2ba2432b63832b91d1010b3b7bb60891b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600a60209081526000928352604080842090915290825290205481565b600d60209081526000928352604080842090915290825290205481565b60026000541415613a32576040805162461bcd60e51b815260206004820152601f6024820152600080516020615ee2833981519152604482015290519081900360640190fd5b60026000908155338152601d602052604090205460ff1615613a8f576040805162461bcd60e51b8152602060048201526011602482015270189bdb990e88189b1858dadb1a5cdd1959607a1b604482015290519081900360640190fd5b613a9c426203f480614db7565b3360009081526009602090815260408083206001600160a01b038716808552925290912091909155301415613adb57613ad6333083615330565b613bc2565b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613b2a57600080fd5b505afa158015613b3e573d6000803e3d6000fd5b505050506040513d6020811015613b5457600080fd5b50519050613b6d6001600160a01b038416333085615676565b613bbe81846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156136ad57600080fd5b9150505b336000908152600c602090815260408083206001600160a01b0386168452909152902054613bf09082614db7565b336000818152600c602090815260408083206001600160a01b03881680855290835281842095909555838352600982528083209483529381529083902054835143815291820152808301849052915190917fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae4919081900360600190a250506001600055565b613c824262127500614db7565b336000818152600a602090815260408083206001600160a01b0388168452909152902091909155613cb590839083615785565b336000908152600b602090815260408083206001600160a01b0386168452909152902054613ce39082614db7565b336000818152600b602090815260408083206001600160a01b03881680855290835281842095909555838352600a82528083209483529381529083902054835143815291820152808301849052915190917f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e919081900360600190a25050565b6000613d70338484615330565b50600192915050565b6020546001600160a01b03163314613dce576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b60116020526000908152604090205460ff1681565b6060601e805480602002602001604051908101604052809291908181526020018280548015612fb6576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311612f98575050505050905090565b6001600160a01b03811660009081526005602052604081205463ffffffff1680613e90576000613ec2565b6001600160a01b038316600090815260046020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6020546001600160a01b03163314613f21576040805162461bcd60e51b815260206004820152601660248201527530b8383937bb32a634b8bab4b234ba3c9d1010b3b7bb60511b604482015290519081900360640190fd5b6001600160a01b03811660009081526022602052604090205460ff1615613f8f576040805162461bcd60e51b815260206004820152601760248201527f617070726f76654c69717569646974793a202170616972000000000000000000604482015290519081900360640190fd5b6001600160a01b03166000818152602260205260408120805460ff191660019081179091556023805491820181559091527fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f42300180546001600160a01b0319169091179055565b601760209081526000938452604080852082529284528284209052825290205481565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527f000000000000000000000000000000000000000000000000000000000000000060c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa15801561412b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614188576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b038116600090815260086020526040902080546001810190915588146141f3576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b86421115614241576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b61424b818a6156d6565b505050505050505050565b6020546001600160a01b031633146142a4576040805162461bcd60e51b815260206004820152600c60248201526b30b2322537b11d1010b3b7bb60a11b604482015290519081900360640190fd5b6001600160a01b03811660009081526014602052604090205460ff1615614306576040805162461bcd60e51b815260206004820152601160248201527030b2322537b11d103537b11035b737bbb760791b604482015290519081900360640190fd5b6001600160a01b0381166000818152601460209081526040808320805460ff19166001908117909155601f805491820181559093527fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80790920180546001600160a01b031916841790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b601e81565b6020546001600160a01b03163314614401576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b6001600160a01b0382166000908152600e60205260409020546144249082615120565b6001600160a01b0383166000908152600e6020526040902055600f5461444a9082615120565b600f556001600160a01b038083166000908152600360205260408120546144739216908361581a565b5050565b60126020526000908152604090205481565b6001600160a01b0380881660008181526008602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f000000000000000000000000000000000000000000000000000000000000000061010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa1580156145c4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614620576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b03161461467d576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b864211156146c4576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600660209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b6020546001600160a01b03163314614781576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b3b7bb60711b604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff166147e3576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b537b160711b604482015290519081900360640190fd5b6001600160a01b03821660009081526015602090815260408083203084529091529020546148119082614db7565b6001600160a01b03831660009081526015602090815260408083203080855292529091209190915561484390826154ed565b6040805143815260208101839052815133926001600160a01b0386169230927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b600e6020526000908152604090205481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6020546001600160a01b0316331461491e576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b614928823061514b565b6001600160a01b0382166000908152600e602052604090205461494b9082614db7565b6001600160a01b0383166000908152600e6020526040902055600f546149719082614db7565b600f556001600160a01b0380831660009081526003602052604081205461447392168361581a565b600c60209081526000928352604080842090915290825290205481565b601660209081526000938452604080852082529284528284209052825290205481565b60106020526000908152604090205481565b60026000541415614a31576040805162461bcd60e51b815260206004820152601f6024820152600080516020615ee2833981519152604482015290519081900360640190fd5b60026000556020546001600160a01b03163314614a83576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b038316301415614ab157602054614aac9030906001600160a01b031683615330565b614acb565b602054614acb906001600160a01b0385811691168361561f565b614ad6838383615785565b6001600160a01b038216600081815260116020908152604091829020805460ff19169055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050600160005550565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b60226020526000908152604090205460ff1681565b61271081565b601e81815481106117f157fe5b60046020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6021546001600160a01b031681565b6020546001600160a01b03163314614c13576040805162461bcd60e51b815260206004820152600d60248201526c3234b9b83aba329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a250565b60005a6024556001600160a01b0386166000908152601c602052604090205460ff168015614cc157506001600160a01b038087166000908152600d60209081526040808320938916835292905220548411155b8015614ce557506001600160a01b0386166000908152601360205260409020548311155b8015614d1557506001600160a01b0386166000908152601060205260409020548290614d12904290615120565b10155b9695505050505050565b601d6020526000908152604090205460ff1681565b601a60209081526000938452604080852082529284528284209052825290205481565b60606023805480602002602001604051908101604052809291908181526020018280548015612fb6576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311612f98575050505050905090565b600082820183811015613ec2576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b6000806000846001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015614e3857600080fd5b505afa158015614e4c573d6000803e3d6000fd5b505050506040513d6060811015614e6257600080fd5b50805160209182015160408051630dfe168160e01b815290516dffffffffffffffffffffffffffff93841696509290911693506001600160a01b038088169390891692630dfe1681926004808201939291829003018186803b158015614ec757600080fd5b505afa158015614edb573d6000803e3d6000fd5b505050506040513d6020811015614ef157600080fd5b50516001600160a01b03161415614f0a575090506117cf565b836001600160a01b0316856001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015614f4d57600080fd5b505afa158015614f61573d6000803e3d6000fd5b505050506040513d6020811015614f7757600080fd5b50516001600160a01b03161415614f915791506117cf9050565b6000925050506117cf565b600082614fab575060006117cf565b82820282848281614fb857fe5b0414613ec2576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b6000613ec28383604051806040016040528060068152602001656469763a202f60d01b815250615998565b6001600160a01b038216615070576040805162461bcd60e51b81526020600482015260136024820152725f6275726e3a207a65726f206164647265737360681b604482015290519081900360640190fd5b60408051808201825260168152755f6275726e3a20657863656564732062616c616e636560501b6020808301919091526001600160a01b0385166000908152600790915291909120546150c4918390615299565b6001600160a01b0383166000908152600760205260409020556002546150ea9082615120565b6002556040805182815290516000916001600160a01b03851691600080516020615f2c8339815191529181900360200190a35050565b6000613ec28383604051806040016040528060068152602001657375623a202d60d01b815250615299565b6001600160a01b0382166000908152601060205260409020546151d0576001600160a01b03821660008181526010602090815260408083204290819055601e8054600181019091557f50bb669a95c7b50b7e8a6f09454034b2b14cf2b85c730dca9a539ca82cb6e3500180546001600160a01b03191690951790945560129091529020555b6001600160a01b038083166000908152601c60209081526040808320805460ff19166001179055600c82528083209385168352929052205461521590829084906159fd565b6001600160a01b038083166000818152600c60209081526040808320948616808452948252808320839055838352600d825280832094835293815290839020548351438152429281019290925281840152915190917f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad05919081900360600190a25050565b600081848411156153285760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156152ed5781810151838201526020016152d5565b50505050905090810190601f16801561531a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03831661538b576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b0382166153e6576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b60408051808201825260208082527f5f7472616e73666572546f6b656e733a20657863656564732062616c616e6365818301526001600160a01b03861660009081526007909152919091205461543d918390615299565b6001600160a01b0380851660009081526007602081815260408084209590955584518086018652601a81527f5f7472616e73666572546f6b656e733a206f766572666c6f77730000000000008183015293871683525291909120546154a3918390615a95565b6001600160a01b038084166000818152600760209081526040918290209490945580518581529051919392871692600080516020615f2c83398151915292918290030190a3505050565b6002546154fa9082614db7565b6002556001600160a01b0382166000908152600760205260409020546155209082614db7565b6001600160a01b0383166000818152600760209081526040808320949094558351858152935192939192600080516020615f2c8339815191529281900390910190a35050565b6001600160a01b0382166000908152600d602090815260408083203084529091529020546155949082614db7565b6001600160a01b0383166000908152600d60209081526040808320308452909152902055600f546155c59082614db7565b600f556001600160a01b038083166000908152600360205260408120546155ed92168361581a565b6040805182815290516001600160a01b038416913391600080516020615f2c8339815191529181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052615671908490615af3565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526156d0908590615af3565b50505050565b6001600160a01b03808316600081815260036020908152604080832054600d8352818420308552835281842054948452600e909252822054931692909161571d9190614db7565b6001600160a01b0385811660008181526003602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46156d082848361581a565b6001600160a01b038083166000908152600d60209081526040808320938716835292905220546157b59082615120565b6001600160a01b038084166000908152600d602090815260408083209388168084529390915290209190915530141561567157600f546157f59082615120565b600f556001600160a01b03808316600090815260036020526040812054615671921690835b816001600160a01b0316836001600160a01b03161415801561583c5750600081115b15615671576001600160a01b03831615615907576001600160a01b03831660009081526005602052604081205463ffffffff16908161587c5760006158ae565b6001600160a01b038516600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b905060006158f584604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846152999092919063ffffffff16565b905061590386848484615cae565b5050505b6001600160a01b03821615615671576001600160a01b03821660009081526005602052604081205463ffffffff169081615942576000615974565b6001600160a01b038416600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b905060006159828285614db7565b905061599085848484615cae565b505050505050565b600081836159e75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156152ed5781810151838201526020016152d5565b5060008385816159f357fe5b0495945050505050565b6001600160a01b038083166000908152600d6020908152604080832093871683529290522054615a2d9082614db7565b6001600160a01b038084166000908152600d602090815260408083209388168084529390915290209190915530141561567157600f54615a6d9082614db7565b600f556001600160a01b0380831660009081526003602052604081205461567192168361581a565b60008383018285821015615aea5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156152ed5781810151838201526020016152d5565b50949350505050565b615b05826001600160a01b0316615e30565b615b4d576040805162461bcd60e51b815260206004820152601460248201527314d85999515490cc8c0e880858dbdb9d1c9858dd60621b604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310615b8b5780518252601f199092019160209182019101615b6c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114615bed576040519150601f19603f3d011682016040523d82523d6000602084013e615bf2565b606091505b509150915081615c49576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156156d057808060200190516020811015615c6557600080fd5b50516156d0576040805162461bcd60e51b815260206004820152601360248201527214d85999515490cc8c0e88085cdd58d8d95959606a1b604482015290519081900360640190fd5b6000615cef436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a203332206269747300000000000000815250615e6c565b905060008463ffffffff16118015615d3857506001600160a01b038516600090815260046020908152604080832063ffffffff6000198901811685529252909120548282169116145b15615d75576001600160a01b038516600090815260046020908152604080832063ffffffff60001989011684529091529020600101829055615de6565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600484528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260059092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590615e6457508115155b949350505050565b6000816401000000008410615ec25760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156152ed5781810151838201526020016152d5565b509192915050565b60408051808201909152600080825260208201529056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00756e626f6e644c697175696469747946726f6d4a6f623a20696e73756666696369656e742066756e6473ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef7472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a26469706673582212204f04e30edefb81d2c9d2c29713b03c1220e4691d6ebabd94cdc53bc3e083e84764736f6c634300060c00330000000000000000000000000aad60be63bfa5a4a43c601663edc709c1cfaa2a

Deployed Bytecode

0x6080604052600436106104ec5760003560e01c8063782d6fe11161028c578063c57981b51161015a578063e74f8239116100cc578063f39c38a011610085578063f39c38a014611625578063f75f9f7b1461163a578063f9d46cf21461166d578063f9f92be4146116bc578063fede7008146116ef578063ffb0a4a014611734576104ec565b8063e74f8239146114fc578063e7a324dc1461153f578063eb421f3b14611554578063ec342ad014611587578063ec4515dd1461159c578063f1127ed8146115c6576104ec565b8063d8bff5a51161011e578063d8bff5a5146113a2578063dd62ed3e146113d5578063de63298d14611410578063deac354114611449578063def7084414611484578063e326ac43146114c9576104ec565b8063c57981b51461128a578063ce6a08801461129f578063d454019d146112d8578063d505accf1461130b578063d8ae6faf14611369576104ec565b8063a515366a116101fe578063b4b5ea57116101b7578063b4b5ea5714611158578063b600702a1461118b578063bb49096d146111be578063c1c1d21814610779578063c3cda52014611203578063c5198abc14611257576104ec565b8063a515366a14611032578063a5d059ca1461106b578063a9059cbb146110a4578063ab033ea9146110dd578063b0103b1a14611110578063b105e39f14611143576104ec565b806388b4ac831161025057806388b4ac8314610eee5780638d9acd2e14610f3157806395d89b4114610f74578063986ccc7f14610f895780639af7728414610fbc578063a39744b514610ff7576104ec565b8063782d6fe114610df55780637ecebe0014610e2e5780638071198914610e615780638322fff214610e9457806383baa69314610ea9576104ec565b80633d1f0bb9116103c9578063603b4d141161033b5780636ba42aaa116102f45780636ba42aaa14610cb75780636dab5dcf14610cea5780636fcfff4514610d1057806370a0823114610d5c57806374a8f10314610d8f5780637724ff6814610dc2576104ec565b8063603b4d1414610b59578063603c686014610b6e578063637cd7f014610ba957806364bb43ee14610be457806367da318414610c1757806368581ebd14610c52576104ec565b806352a4de291161038d57806352a4de2914610a3557806355ea6c4714610a78578063587cde1e14610aab5780635aa6e67514610ade5780635c19a95c14610af35780635feeb79414610b26576104ec565b80633d1f0bb91461093c5780634395d8ba1461096f57806344d96e95146109b45780634b3fde21146109c957806351cff8d914610a02576104ec565b80631df0de131161046257806323b872dd1161042657806323b872dd1461083657806330adf81f14610879578063313ce5671461088e578063378dc3dc146108b957806337feca84146108ce5780633bbd64bc14610909576104ec565b80631df0de13146107795780631ff5f3da1461078e57806320606b70146107d35780632119a62a146107e8578063238efcbc14610821576104ec565b80631778e29c116104b45780631778e29c1461066857806318160ddd1461068f5780631992d206146106a45780631b44555e146106e95780631b7a1fb21461071c5780631c5a9d9c14610746576104ec565b806306fdde03146104f1578063095ea7b31461057b57806309aff02b146105c85780630c33c522146105f95780631101eb4114610623575b600080fd5b3480156104fd57600080fd5b50610506611749565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610540578181015183820152602001610528565b50505050905090810190601f16801561056d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561058757600080fd5b506105b46004803603604081101561059e57600080fd5b506001600160a01b03813516906020013561176e565b604080519115158252519081900360200190f35b3480156105d457600080fd5b506105dd6117d5565b604080516001600160a01b039092168252519081900360200190f35b34801561060557600080fd5b506105dd6004803603602081101561061c57600080fd5b50356117e4565b34801561062f57600080fd5b506106666004803603606081101561064657600080fd5b506001600160a01b0381358116916020810135909116906040013561180b565b005b34801561067457600080fd5b5061067d611b51565b60408051918252519081900360200190f35b34801561069b57600080fd5b5061067d611b75565b3480156106b057600080fd5b5061067d600480360360608110156106c757600080fd5b506001600160a01b038135811691602081013582169160409091013516611b7b565b3480156106f557600080fd5b5061067d6004803603602081101561070c57600080fd5b50356001600160a01b0316611b9e565b34801561072857600080fd5b506105dd6004803603602081101561073f57600080fd5b5035611bb0565b34801561075257600080fd5b506106666004803603602081101561076957600080fd5b50356001600160a01b0316611bbd565b34801561078557600080fd5b5061067d611cc0565b34801561079a57600080fd5b506105b4600480360360808110156107b157600080fd5b506001600160a01b038135169060208101359060408101359060600135611cc7565b3480156107df57600080fd5b5061067d611d89565b3480156107f457600080fd5b506106666004803603604081101561080b57600080fd5b506001600160a01b038135169060200135611dad565b34801561082d57600080fd5b50610666611f0c565b34801561084257600080fd5b506105b46004803603606081101561085957600080fd5b506001600160a01b03813581169160208101359091169060400135611f8f565b34801561088557600080fd5b5061067d612071565b34801561089a57600080fd5b506108a3612095565b6040805160ff9092168252519081900360200190f35b3480156108c557600080fd5b5061067d61209a565b3480156108da57600080fd5b5061067d600480360360408110156108f157600080fd5b506001600160a01b03813581169160200135166120a8565b34801561091557600080fd5b506105b46004803603602081101561092c57600080fd5b50356001600160a01b03166120c5565b34801561094857600080fd5b506105b46004803603602081101561095f57600080fd5b50356001600160a01b03166120da565b34801561097b57600080fd5b506106666004803603606081101561099257600080fd5b506001600160a01b0381358116916020810135821691604090910135166120ef565b3480156109c057600080fd5b5061067d6123b8565b3480156109d557600080fd5b50610666600480360360408110156109ec57600080fd5b506001600160a01b0381351690602001356123be565b348015610a0e57600080fd5b5061066660048036036020811015610a2557600080fd5b50356001600160a01b03166125f9565b348015610a4157600080fd5b5061066660048036036060811015610a5857600080fd5b506001600160a01b0381358116916020810135909116906040013561283d565b348015610a8457600080fd5b5061066660048036036020811015610a9b57600080fd5b50356001600160a01b0316612b3a565b348015610ab757600080fd5b506105dd60048036036020811015610ace57600080fd5b50356001600160a01b0316612be1565b348015610aea57600080fd5b506105dd612bfc565b348015610aff57600080fd5b5061066660048036036020811015610b1657600080fd5b50356001600160a01b0316612c0b565b348015610b3257600080fd5b5061066660048036036020811015610b4957600080fd5b50356001600160a01b0316612c15565b348015610b6557600080fd5b5061067d612c9e565b348015610b7a57600080fd5b5061066660048036036040811015610b9157600080fd5b506001600160a01b0381358116916020013516612ca5565b348015610bb557600080fd5b5061067d60048036036040811015610bcc57600080fd5b506001600160a01b0381358116916020013516612eac565b348015610bf057600080fd5b5061066660048036036020811015610c0757600080fd5b50356001600160a01b0316612ec9565b348015610c2357600080fd5b5061067d60048036036040811015610c3a57600080fd5b506001600160a01b0381358116916020013516612f41565b348015610c5e57600080fd5b50610c67612f5e565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610ca3578181015183820152602001610c8b565b505050509050019250505060405180910390f35b348015610cc357600080fd5b506105b460048036036020811015610cda57600080fd5b50356001600160a01b0316612fc0565b61066660048036036020811015610d0057600080fd5b50356001600160a01b0316612fe5565b348015610d1c57600080fd5b50610d4360048036036020811015610d3357600080fd5b50356001600160a01b031661313b565b6040805163ffffffff9092168252519081900360200190f35b348015610d6857600080fd5b5061067d60048036036020811015610d7f57600080fd5b50356001600160a01b0316613153565b348015610d9b57600080fd5b5061066660048036036020811015610db257600080fd5b50356001600160a01b031661316e565b348015610dce57600080fd5b5061067d60048036036020811015610de557600080fd5b50356001600160a01b031661320f565b348015610e0157600080fd5b5061067d60048036036040811015610e1857600080fd5b506001600160a01b038135169060200135613221565b348015610e3a57600080fd5b5061067d60048036036020811015610e5157600080fd5b50356001600160a01b0316613430565b348015610e6d57600080fd5b5061066660048036036020811015610e8457600080fd5b50356001600160a01b0316613442565b348015610ea057600080fd5b506105dd6134f4565b348015610eb557600080fd5b5061067d60048036036060811015610ecc57600080fd5b506001600160a01b0381358116916020810135821691604090910135166134f9565b348015610efa57600080fd5b5061066660048036036060811015610f1157600080fd5b506001600160a01b0381358116916020810135909116906040013561351c565b348015610f3d57600080fd5b5061066660048036036060811015610f5457600080fd5b506001600160a01b038135811691602081013590911690604001356137d2565b348015610f8057600080fd5b5061050661391e565b348015610f9557600080fd5b5061066660048036036020811015610fac57600080fd5b50356001600160a01b031661393f565b348015610fc857600080fd5b5061067d60048036036040811015610fdf57600080fd5b506001600160a01b03813581169160200135166139b2565b34801561100357600080fd5b5061067d6004803603604081101561101a57600080fd5b506001600160a01b03813581169160200135166139cf565b34801561103e57600080fd5b506106666004803603604081101561105557600080fd5b506001600160a01b0381351690602001356139ec565b34801561107757600080fd5b506106666004803603604081101561108e57600080fd5b506001600160a01b038135169060200135613c75565b3480156110b057600080fd5b506105b4600480360360408110156110c757600080fd5b506001600160a01b038135169060200135613d63565b3480156110e957600080fd5b506106666004803603602081101561110057600080fd5b50356001600160a01b0316613d79565b34801561111c57600080fd5b506105b46004803603602081101561113357600080fd5b50356001600160a01b0316613df0565b34801561114f57600080fd5b50610c67613e05565b34801561116457600080fd5b5061067d6004803603602081101561117b57600080fd5b50356001600160a01b0316613e65565b34801561119757600080fd5b50610666600480360360208110156111ae57600080fd5b50356001600160a01b0316613ec9565b3480156111ca57600080fd5b5061067d600480360360608110156111e157600080fd5b506001600160a01b038135811691602081013582169160409091013516613ff5565b34801561120f57600080fd5b50610666600480360360c081101561122657600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135614018565b34801561126357600080fd5b506106666004803603602081101561127a57600080fd5b50356001600160a01b0316614256565b34801561129657600080fd5b5061067d6143ac565b3480156112ab57600080fd5b50610666600480360360408110156112c257600080fd5b506001600160a01b0381351690602001356143b1565b3480156112e457600080fd5b5061067d600480360360208110156112fb57600080fd5b50356001600160a01b0316614477565b34801561131757600080fd5b50610666600480360360e081101561132e57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135614489565b34801561137557600080fd5b506106666004803603604081101561138c57600080fd5b506001600160a01b03813516906020013561472d565b3480156113ae57600080fd5b5061067d600480360360208110156113c557600080fd5b50356001600160a01b0316614891565b3480156113e157600080fd5b5061067d600480360360408110156113f857600080fd5b506001600160a01b03813581169160200135166148a3565b34801561141c57600080fd5b506106666004803603604081101561143357600080fd5b506001600160a01b0381351690602001356148ce565b34801561145557600080fd5b5061067d6004803603604081101561146c57600080fd5b506001600160a01b0381358116916020013516614999565b34801561149057600080fd5b5061067d600480360360608110156114a757600080fd5b506001600160a01b0381358116916020810135821691604090910135166149b6565b3480156114d557600080fd5b5061067d600480360360208110156114ec57600080fd5b50356001600160a01b03166149d9565b34801561150857600080fd5b506106666004803603606081101561151f57600080fd5b506001600160a01b038135811691602081013590911690604001356149eb565b34801561154b57600080fd5b5061067d614b3c565b34801561156057600080fd5b506105b46004803603602081101561157757600080fd5b50356001600160a01b0316614b60565b34801561159357600080fd5b5061067d614b75565b3480156115a857600080fd5b506105dd600480360360208110156115bf57600080fd5b5035614b7b565b3480156115d257600080fd5b50611605600480360360408110156115e957600080fd5b5080356001600160a01b0316906020013563ffffffff16614b88565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561163157600080fd5b506105dd614bb5565b34801561164657600080fd5b506106666004803603602081101561165d57600080fd5b50356001600160a01b0316614bc4565b34801561167957600080fd5b506105b4600480360360a081101561169057600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060800135614c6e565b3480156116c857600080fd5b506105b4600480360360208110156116df57600080fd5b50356001600160a01b0316614d1f565b3480156116fb57600080fd5b5061067d6004803603606081101561171257600080fd5b506001600160a01b038135811691602081013582169160409091013516614d34565b34801561174057600080fd5b50610c67614d57565b604051806040016040528060098152602001686b333370722e636f6d60b81b81525081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6001546001600160a01b031681565b601f81815481106117f157fe5b6000918252602090912001546001600160a01b0316905081565b336000908152601b602090815260408083206001600160a01b038781168552908352818420908616845290915290205415611886576040805162461bcd60e51b815260206004820152601660248201527518dc99591a5d0e881c195b991a5b99c818dc99591a5d60521b604482015290519081900360640190fd5b6118934262127500614db7565b3360008181526017602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965593835260188252808320938352928152828220938252929092529020546118f09082614db7565b3360008181526018602090815260408083206001600160a01b03898116808652918452828520908916808652818552838620889055958552601684528285209185529083528184209484529382529091205491905210156119825760405162461bcd60e51b815260040180806020018281038252602a815260200180615f02602a913960400191505060405180910390fd5b600061198e8430614dfa565b90506000611a0a856001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156119ce57600080fd5b505afa1580156119e2573d6000803e3d6000fd5b505050506040513d60208110156119f857600080fd5b5051611a048486614f9c565b90614ff4565b6001600160a01b0385166000908152601560209081526040808320308452909152902054909150811115611a90576001600160a01b038416600090815260156020908152604080832030808552925290912054611a67919061501f565b6001600160a01b0384166000908152601560209081526040808320308452909152812055611aed565b611a9a308261501f565b6001600160a01b0384166000908152601560209081526040808320308452909152902054611ac89082615120565b6001600160a01b03851660009081526015602090815260408083203084529091529020555b336001600160a01b0316856001600160a01b0316856001600160a01b03167f6d962fe34dd0cf9a9df3e12a7b8ddfe5f790b3f11668553455d7b52db70a07be4387604051808381526020018281526020019250505060405180910390a45050505050565b7f2476fd56b41afab1ea11e013ea095f28e2dc475351646d57e4b0b1466ce2231281565b60025481565b601b60209081526000938452604080852082529284528284209052825290205481565b60136020526000908152604090205481565b602381815481106117f157fe5b336000908152601d602052604090205460ff1615611c1a576040805162461bcd60e51b81526020600482015260156024820152741858dd1a5d985d194e88189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b3360009081526009602090815260408083206001600160a01b038516845290915290205415801590611c6e57503360009081526009602090815260408083206001600160a01b038516845290915290205442115b611cb3576040805162461bcd60e51b815260206004820152601160248201527061637469766174653a20626f6e64696e6760781b604482015290519081900360640190fd5b611cbd338261514b565b50565b6203f48081565b60005a6024556001600160a01b0385166000908152601c602052604090205460ff168015611d2c57506001600160a01b0385166000908152600e6020908152604080832054600d8352818420308552909252909120548591611d299190614db7565b10155b8015611d5057506001600160a01b0385166000908152601360205260409020548311155b8015611d8057506001600160a01b0385166000908152601060205260409020548290611d7d904290615120565b10155b95945050505050565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b3360009081526014602052604090205460ff16611e01576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120600e82529091529190912054611e5c918390615299565b336000908152601560209081526040808320600e84528252808320939093556001600160a01b0385168083526012909152828220429055915183156108fc0291849190818181858888f19350505050158015611ebc573d6000803e3d6000fd5b50604080514381526020810183905281516001600160a01b038516923392600e927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8929181900390910190a45050565b6021546001600160a01b03163314611f6b576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b602154602080546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b038316600081815260066020908152604080832033808552925282205491929091908214801590611fc957506000198114155b1561205a576000611ff585604051806060016040528060278152602001615f4c60279139849190615299565b6001600160a01b0380891660008181526006602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b612065868686615330565b50600195945050505050565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b6954b40b1f852bda00000081565b600960209081526000928352604080842090915290825290205481565b601c6020526000908152604090205460ff1681565b60146020526000908152604090205460ff1681565b6001600160a01b03821660009081526022602052604090205460ff16612157576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a6020908152604080832086851684528252808320938516835292905220546121ca576040805162461bcd60e51b815260206004820152600f60248201526e18dc99591a5d0e881b9bc8189bdb99608a1b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a602090815260408083208685168452825280832093851683529290522054421161223f576040805162461bcd60e51b815260206004820152600f60248201526e6372656469743a20626f6e64696e6760881b604482015290519081900360640190fd5b600061224b8330614dfa565b905060006122f2846001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561228b57600080fd5b505afa15801561229f573d6000803e3d6000fd5b505050506040513d60208110156122b557600080fd5b50516001600160a01b038088166000908152601b602090815260408083208a85168452825280832093891683529290522054611a04908590614f9c565b90506122fe30826154ed565b6001600160a01b038316600090815260156020908152604080832030845290915290205461232c9082614db7565b6001600160a01b038085166000818152601560209081526040808320308452825280832095909555898416808352601b8252858320948a168084529482528583208484528252858320929092558451438152908101869052845191947fa90666688fb32254f45a367c38fbcd5f2664432b061a4354d9d3c9a7abcbec5b92918290030190a45050505050565b600f5481565b3360009081526014602052604090205460ff16612416576040805162461bcd60e51b81526020600482015260116024820152703bb7b935a932b1b2b4b83a1d1010b537b160791b604482015290519081900360640190fd5b6001546001600160a01b031663525ea6316124345a60245490615120565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561246857600080fd5b505afa15801561247c573d6000803e3d6000fd5b505050506040513d602081101561249257600080fd5b50518111156124e1576040805162461bcd60e51b81526020600482015260166024820152751ddbdc9ad49958d95a5c1d0e881b585e081b1a5b5a5d60521b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120308252909152919091205461253b918390615299565b3360009081526015602090815260408083203084528252808320939093556001600160a01b038516825260129052204290556125778282615566565b6001600160a01b03821660009081526013602052604090205461259a9082614db7565b6001600160a01b03831660008181526013602090815260409182902093909355805143815292830184905280519192339230927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8928290030190a45050565b6002600054141561263f576040805162461bcd60e51b815260206004820152601f6024820152600080516020615ee2833981519152604482015290519081900360640190fd5b60026000908155338152600a602090815260408083206001600160a01b0385168452909152902054158015906126975750336000908152600a602090815260408083206001600160a01b038516845290915290205442115b6126de576040805162461bcd60e51b815260206004820152601360248201527277697468647261773a20756e626f6e64696e6760681b604482015290519081900360640190fd5b3360009081526011602052604090205460ff1615612738576040805162461bcd60e51b815260206004820152601260248201527177697468647261773a20646973707574657360701b604482015290519081900360640190fd5b6001600160a01b03811630141561277d57336000818152600b602090815260408083206001600160a01b0386168452909152902054612778913091615330565b6127ac565b336000818152600b602090815260408083206001600160a01b0386168085529252909120546127ac929061561f565b336000818152600b602090815260408083206001600160a01b038616845282529182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600b602090815260408083206001600160a01b0394909416835292905290812081905560019055565b60026000541415612883576040805162461bcd60e51b815260206004820152601f6024820152600080516020615ee2833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03841681526022602052604090205460ff166128ef576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b6129046001600160a01b038416333084615676565b3360009081526016602090815260408083206001600160a01b038781168552908352818420908616845290915290205461293e9082614db7565b3360009081526016602090815260408083206001600160a01b038881168552908352818420908716845290915290205561297b426203f480614db7565b336000818152601a602090815260408083206001600160a01b0389811680865291845282852090891680865290845282852096909655938352601b8252808320938352928152828220938252929092529020546129d89082614db7565b336000908152601b602090815260408083206001600160a01b038881168552908352818420908716845282528083209390935560149052205460ff16158015612a3857506001600160a01b03821660009081526019602052604090205442115b15612ad3576020546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb91602480830192600092919082900301818387803b158015612a8b57600080fd5b505af1158015612a9f573d6000803e3d6000fd5b50505050612ab96212750042614db790919063ffffffff16565b6001600160a01b0383166000908152601960205260409020555b336001600160a01b0316836001600160a01b0316836001600160a01b03167fe1cb44a16adbd63a44f65c279b23b8f447b2c6e120a2bc7f004758b446e05ed14385604051808381526020018281526020019250505060405180910390a45050600160005550565b6020546001600160a01b03163314612b89576040805162461bcd60e51b815260206004820152600d60248201526c3932b9b7b63b329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6003602052600090815260409020546001600160a01b031681565b6020546001600160a01b031681565b611cbd33826156d6565b600154611cbd9082906001600160a01b031663525ea631612c395a60245490615120565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612c6d57600080fd5b505afa158015612c81573d6000803e3d6000fd5b505050506040513d6020811015612c9757600080fd5b50516123be565b6212750081565b3360009081526017602090815260408083206001600160a01b0386811685529083528184209085168452909152902054612d1a576040805162461bcd60e51b81526020600482015260116024820152701c995b5bdd99529bd88e881d5b989bdb99607a1b604482015290519081900360640190fd5b3360009081526017602090815260408083206001600160a01b03868116855290835281842090851684529091529020544211612d94576040805162461bcd60e51b815260206004820152601460248201527372656d6f76654a6f623a20756e626f6e64696e6760601b604482015290519081900360640190fd5b3360008181526018602090815260408083206001600160a01b038781168086529184528285209087168086529084528285205495855260168452828520918552908352818420908452909152902054612ded9082615120565b3360008181526016602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965584845260188352818420818552835281842095845294909152812055612e4a91908361561f565b336001600160a01b0316836001600160a01b0316836001600160a01b03167fb69fc9f6d19ed402461251491f86c736bfcbe966e9584d3fb8a0057b313b69204385604051808381526020018281526020019250505060405180910390a4505050565b601560209081526000928352604080842090915290825290205481565b6020546001600160a01b03163314612f20576040805162461bcd60e51b81526020600482015260156024820152743932bb37b5b2a634b8bab4b234ba3c9d1010b3b7bb60591b604482015290519081900360640190fd5b6001600160a01b03166000908152602260205260409020805460ff19169055565b600b60209081526000928352604080842090915290825290205481565b6060601f805480602002602001604051908101604052809291908181526020018280548015612fb657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612f98575b5050505050905090565b60005a602455506001600160a01b03166000908152601c602052604090205460ff1690565b6001600160a01b03811660009081526014602052604090205460ff16613047576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b600061305a612710611a0434601e614f9c565b90506130946130693483615120565b6001600160a01b0384166000908152601560209081526040808320600e845290915290205490614db7565b6001600160a01b038084166000908152601560209081526040808320600e8452825280832094909455549251929091169183156108fc0291849190818181858888f193505050501580156130ec573d6000803e3d6000fd5b5060408051438152346020820152815133926001600160a01b03861692600e927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b60056020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526007602052604090205490565b6020546001600160a01b031633146131bb576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b0381166000908152601c60209081526040808320805460ff19908116909155601d835281842080549091166001179055600d825280832030808552925290912054611cbd919083906149eb565b60196020526000908152604090205481565b6000438210613268576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205463ffffffff16806132965760009150506117cf565b6001600160a01b038416600090815260046020908152604080832063ffffffff600019860181168552925290912054168310613305576001600160a01b03841660009081526004602090815260408083206000199490940163ffffffff168352929052206001015490506117cf565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff168310156133405760009150506117cf565b600060001982015b8163ffffffff168163ffffffff1611156133f957600282820363ffffffff16048103613372615eca565b506001600160a01b038716600090815260046020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156133d4576020015194506117cf9350505050565b805163ffffffff168711156133eb578193506133f2565b6001820392505b5050613348565b506001600160a01b038516600090815260046020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6020546001600160a01b03163314613493576040805162461bcd60e51b815260206004820152600f60248201526e3932b6b7bb32a537b11d1010b3b7bb60891b604482015290519081900360640190fd5b6001600160a01b038116600081815260146020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b600e81565b601860209081526000938452604080852082529284528284209052825290205481565b60026000541415613562576040805162461bcd60e51b815260206004820152601f6024820152600080516020615ee2833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03831681526014602052604090205460ff166135c8576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561361757600080fd5b505afa15801561362b573d6000803e3d6000fd5b505050506040513d602081101561364157600080fd5b5051905061365a6001600160a01b038516333085615676565b60006136df82866001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156136ad57600080fd5b505afa1580156136c1573d6000803e3d6000fd5b505050506040513d60208110156136d757600080fd5b505190615120565b905060006136f4612710611a0484601e614f9c565b905061372f6137038383615120565b6001600160a01b038088166000908152601560209081526040808320938c168352929052205490614db7565b6001600160a01b0380871660009081526015602090815260408083208b851680855290835292209390935591546137689291168361561f565b336001600160a01b0316856001600160a01b0316876001600160a01b03167fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a4386604051808381526020018281526020019250505060405180910390a45050600160005550505050565b3360009081526014602052604090205460ff16613826576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e6473000000602080830191909152336000908152601582528381206001600160a01b03881682529091529190912054613889918390615299565b3360009081526015602090815260408083206001600160a01b03888116808652918452828520959095559386168352601290915290204290556138cd90838361561f565b604080514381526020810183905281516001600160a01b03808616933393918816927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e89281900390910190a4505050565b60405180604001604052806005815260200164259999a82960d91b81525081565b6020546001600160a01b03163314613990576040805162461bcd60e51b815260206004820152600f60248201526e39b2ba2432b63832b91d1010b3b7bb60891b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600a60209081526000928352604080842090915290825290205481565b600d60209081526000928352604080842090915290825290205481565b60026000541415613a32576040805162461bcd60e51b815260206004820152601f6024820152600080516020615ee2833981519152604482015290519081900360640190fd5b60026000908155338152601d602052604090205460ff1615613a8f576040805162461bcd60e51b8152602060048201526011602482015270189bdb990e88189b1858dadb1a5cdd1959607a1b604482015290519081900360640190fd5b613a9c426203f480614db7565b3360009081526009602090815260408083206001600160a01b038716808552925290912091909155301415613adb57613ad6333083615330565b613bc2565b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613b2a57600080fd5b505afa158015613b3e573d6000803e3d6000fd5b505050506040513d6020811015613b5457600080fd5b50519050613b6d6001600160a01b038416333085615676565b613bbe81846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156136ad57600080fd5b9150505b336000908152600c602090815260408083206001600160a01b0386168452909152902054613bf09082614db7565b336000818152600c602090815260408083206001600160a01b03881680855290835281842095909555838352600982528083209483529381529083902054835143815291820152808301849052915190917fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae4919081900360600190a250506001600055565b613c824262127500614db7565b336000818152600a602090815260408083206001600160a01b0388168452909152902091909155613cb590839083615785565b336000908152600b602090815260408083206001600160a01b0386168452909152902054613ce39082614db7565b336000818152600b602090815260408083206001600160a01b03881680855290835281842095909555838352600a82528083209483529381529083902054835143815291820152808301849052915190917f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e919081900360600190a25050565b6000613d70338484615330565b50600192915050565b6020546001600160a01b03163314613dce576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b60116020526000908152604090205460ff1681565b6060601e805480602002602001604051908101604052809291908181526020018280548015612fb6576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311612f98575050505050905090565b6001600160a01b03811660009081526005602052604081205463ffffffff1680613e90576000613ec2565b6001600160a01b038316600090815260046020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6020546001600160a01b03163314613f21576040805162461bcd60e51b815260206004820152601660248201527530b8383937bb32a634b8bab4b234ba3c9d1010b3b7bb60511b604482015290519081900360640190fd5b6001600160a01b03811660009081526022602052604090205460ff1615613f8f576040805162461bcd60e51b815260206004820152601760248201527f617070726f76654c69717569646974793a202170616972000000000000000000604482015290519081900360640190fd5b6001600160a01b03166000818152602260205260408120805460ff191660019081179091556023805491820181559091527fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f42300180546001600160a01b0319169091179055565b601760209081526000938452604080852082529284528284209052825290205481565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527f2476fd56b41afab1ea11e013ea095f28e2dc475351646d57e4b0b1466ce2231260c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa15801561412b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614188576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b038116600090815260086020526040902080546001810190915588146141f3576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b86421115614241576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b61424b818a6156d6565b505050505050505050565b6020546001600160a01b031633146142a4576040805162461bcd60e51b815260206004820152600c60248201526b30b2322537b11d1010b3b7bb60a11b604482015290519081900360640190fd5b6001600160a01b03811660009081526014602052604090205460ff1615614306576040805162461bcd60e51b815260206004820152601160248201527030b2322537b11d103537b11035b737bbb760791b604482015290519081900360640190fd5b6001600160a01b0381166000818152601460209081526040808320805460ff19166001908117909155601f805491820181559093527fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80790920180546001600160a01b031916841790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b601e81565b6020546001600160a01b03163314614401576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b6001600160a01b0382166000908152600e60205260409020546144249082615120565b6001600160a01b0383166000908152600e6020526040902055600f5461444a9082615120565b600f556001600160a01b038083166000908152600360205260408120546144739216908361581a565b5050565b60126020526000908152604090205481565b6001600160a01b0380881660008181526008602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f2476fd56b41afab1ea11e013ea095f28e2dc475351646d57e4b0b1466ce2231261010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa1580156145c4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614620576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b03161461467d576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b864211156146c4576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600660209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b6020546001600160a01b03163314614781576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b3b7bb60711b604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff166147e3576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b537b160711b604482015290519081900360640190fd5b6001600160a01b03821660009081526015602090815260408083203084529091529020546148119082614db7565b6001600160a01b03831660009081526015602090815260408083203080855292529091209190915561484390826154ed565b6040805143815260208101839052815133926001600160a01b0386169230927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b600e6020526000908152604090205481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6020546001600160a01b0316331461491e576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b614928823061514b565b6001600160a01b0382166000908152600e602052604090205461494b9082614db7565b6001600160a01b0383166000908152600e6020526040902055600f546149719082614db7565b600f556001600160a01b0380831660009081526003602052604081205461447392168361581a565b600c60209081526000928352604080842090915290825290205481565b601660209081526000938452604080852082529284528284209052825290205481565b60106020526000908152604090205481565b60026000541415614a31576040805162461bcd60e51b815260206004820152601f6024820152600080516020615ee2833981519152604482015290519081900360640190fd5b60026000556020546001600160a01b03163314614a83576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b038316301415614ab157602054614aac9030906001600160a01b031683615330565b614acb565b602054614acb906001600160a01b0385811691168361561f565b614ad6838383615785565b6001600160a01b038216600081815260116020908152604091829020805460ff19169055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050600160005550565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b60226020526000908152604090205460ff1681565b61271081565b601e81815481106117f157fe5b60046020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6021546001600160a01b031681565b6020546001600160a01b03163314614c13576040805162461bcd60e51b815260206004820152600d60248201526c3234b9b83aba329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a250565b60005a6024556001600160a01b0386166000908152601c602052604090205460ff168015614cc157506001600160a01b038087166000908152600d60209081526040808320938916835292905220548411155b8015614ce557506001600160a01b0386166000908152601360205260409020548311155b8015614d1557506001600160a01b0386166000908152601060205260409020548290614d12904290615120565b10155b9695505050505050565b601d6020526000908152604090205460ff1681565b601a60209081526000938452604080852082529284528284209052825290205481565b60606023805480602002602001604051908101604052809291908181526020018280548015612fb6576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311612f98575050505050905090565b600082820183811015613ec2576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b6000806000846001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015614e3857600080fd5b505afa158015614e4c573d6000803e3d6000fd5b505050506040513d6060811015614e6257600080fd5b50805160209182015160408051630dfe168160e01b815290516dffffffffffffffffffffffffffff93841696509290911693506001600160a01b038088169390891692630dfe1681926004808201939291829003018186803b158015614ec757600080fd5b505afa158015614edb573d6000803e3d6000fd5b505050506040513d6020811015614ef157600080fd5b50516001600160a01b03161415614f0a575090506117cf565b836001600160a01b0316856001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015614f4d57600080fd5b505afa158015614f61573d6000803e3d6000fd5b505050506040513d6020811015614f7757600080fd5b50516001600160a01b03161415614f915791506117cf9050565b6000925050506117cf565b600082614fab575060006117cf565b82820282848281614fb857fe5b0414613ec2576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b6000613ec28383604051806040016040528060068152602001656469763a202f60d01b815250615998565b6001600160a01b038216615070576040805162461bcd60e51b81526020600482015260136024820152725f6275726e3a207a65726f206164647265737360681b604482015290519081900360640190fd5b60408051808201825260168152755f6275726e3a20657863656564732062616c616e636560501b6020808301919091526001600160a01b0385166000908152600790915291909120546150c4918390615299565b6001600160a01b0383166000908152600760205260409020556002546150ea9082615120565b6002556040805182815290516000916001600160a01b03851691600080516020615f2c8339815191529181900360200190a35050565b6000613ec28383604051806040016040528060068152602001657375623a202d60d01b815250615299565b6001600160a01b0382166000908152601060205260409020546151d0576001600160a01b03821660008181526010602090815260408083204290819055601e8054600181019091557f50bb669a95c7b50b7e8a6f09454034b2b14cf2b85c730dca9a539ca82cb6e3500180546001600160a01b03191690951790945560129091529020555b6001600160a01b038083166000908152601c60209081526040808320805460ff19166001179055600c82528083209385168352929052205461521590829084906159fd565b6001600160a01b038083166000818152600c60209081526040808320948616808452948252808320839055838352600d825280832094835293815290839020548351438152429281019290925281840152915190917f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad05919081900360600190a25050565b600081848411156153285760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156152ed5781810151838201526020016152d5565b50505050905090810190601f16801561531a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03831661538b576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b0382166153e6576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b60408051808201825260208082527f5f7472616e73666572546f6b656e733a20657863656564732062616c616e6365818301526001600160a01b03861660009081526007909152919091205461543d918390615299565b6001600160a01b0380851660009081526007602081815260408084209590955584518086018652601a81527f5f7472616e73666572546f6b656e733a206f766572666c6f77730000000000008183015293871683525291909120546154a3918390615a95565b6001600160a01b038084166000818152600760209081526040918290209490945580518581529051919392871692600080516020615f2c83398151915292918290030190a3505050565b6002546154fa9082614db7565b6002556001600160a01b0382166000908152600760205260409020546155209082614db7565b6001600160a01b0383166000818152600760209081526040808320949094558351858152935192939192600080516020615f2c8339815191529281900390910190a35050565b6001600160a01b0382166000908152600d602090815260408083203084529091529020546155949082614db7565b6001600160a01b0383166000908152600d60209081526040808320308452909152902055600f546155c59082614db7565b600f556001600160a01b038083166000908152600360205260408120546155ed92168361581a565b6040805182815290516001600160a01b038416913391600080516020615f2c8339815191529181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052615671908490615af3565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526156d0908590615af3565b50505050565b6001600160a01b03808316600081815260036020908152604080832054600d8352818420308552835281842054948452600e909252822054931692909161571d9190614db7565b6001600160a01b0385811660008181526003602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46156d082848361581a565b6001600160a01b038083166000908152600d60209081526040808320938716835292905220546157b59082615120565b6001600160a01b038084166000908152600d602090815260408083209388168084529390915290209190915530141561567157600f546157f59082615120565b600f556001600160a01b03808316600090815260036020526040812054615671921690835b816001600160a01b0316836001600160a01b03161415801561583c5750600081115b15615671576001600160a01b03831615615907576001600160a01b03831660009081526005602052604081205463ffffffff16908161587c5760006158ae565b6001600160a01b038516600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b905060006158f584604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846152999092919063ffffffff16565b905061590386848484615cae565b5050505b6001600160a01b03821615615671576001600160a01b03821660009081526005602052604081205463ffffffff169081615942576000615974565b6001600160a01b038416600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b905060006159828285614db7565b905061599085848484615cae565b505050505050565b600081836159e75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156152ed5781810151838201526020016152d5565b5060008385816159f357fe5b0495945050505050565b6001600160a01b038083166000908152600d6020908152604080832093871683529290522054615a2d9082614db7565b6001600160a01b038084166000908152600d602090815260408083209388168084529390915290209190915530141561567157600f54615a6d9082614db7565b600f556001600160a01b0380831660009081526003602052604081205461567192168361581a565b60008383018285821015615aea5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156152ed5781810151838201526020016152d5565b50949350505050565b615b05826001600160a01b0316615e30565b615b4d576040805162461bcd60e51b815260206004820152601460248201527314d85999515490cc8c0e880858dbdb9d1c9858dd60621b604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310615b8b5780518252601f199092019160209182019101615b6c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114615bed576040519150601f19603f3d011682016040523d82523d6000602084013e615bf2565b606091505b509150915081615c49576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156156d057808060200190516020811015615c6557600080fd5b50516156d0576040805162461bcd60e51b815260206004820152601360248201527214d85999515490cc8c0e88085cdd58d8d95959606a1b604482015290519081900360640190fd5b6000615cef436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a203332206269747300000000000000815250615e6c565b905060008463ffffffff16118015615d3857506001600160a01b038516600090815260046020908152604080832063ffffffff6000198901811685529252909120548282169116145b15615d75576001600160a01b038516600090815260046020908152604080832063ffffffff60001989011684529091529020600101829055615de6565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600484528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260059092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590615e6457508115155b949350505050565b6000816401000000008410615ec25760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156152ed5781810151838201526020016152d5565b509192915050565b60408051808201909152600080825260208201529056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00756e626f6e644c697175696469747946726f6d4a6f623a20696e73756666696369656e742066756e6473ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef7472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a26469706673582212204f04e30edefb81d2c9d2c29713b03c1220e4691d6ebabd94cdc53bc3e083e84764736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000aad60be63bfa5a4a43c601663edc709c1cfaa2a

-----Decoded View---------------
Arg [0] : _kprh (address): 0x0AAd60Be63Bfa5a4A43C601663edc709C1CFaA2A

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000aad60be63bfa5a4a43c601663edc709c1cfaa2a


Deployed Bytecode Sourcemap

20961:40166:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21229:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57575:205;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57575:205:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21151:19;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;21151:19:0;;;;;;;;;;;;;;34657:24;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34657:24:0;;:::i;41523:1114::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41523:1114:0;;;;;;;;;;;;;;;;;:::i;:::-;;22327:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;21532:27;;;;;;;;;;;;;:::i;34162:87::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34162:87:0;;;;;;;;;;;;;;;;;;;:::i;33169:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33169:45:0;-1:-1:-1;;;;;33169:45:0;;:::i;34956:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34956:31:0;;:::i;52740:274::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52740:274:0;-1:-1:-1;;;;;52740:274:0;;:::i;31709:43::-;;;;;;;;;;;;;:::i;50217:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50217:355:0;;;;;;;;;;;;;;;;;;:::i;22201:119::-;;;;;;;;;;;;;:::i;46089:376::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;46089:376:0;;;;;;;;:::i;49189:170::-;;;;;;;;;;;;;:::i;59969:553::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;59969:553:0;;;;;;;;;;;;;;;;;:::i;22662:128::-;;;;;;;;;;;;;:::i;21433:35::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21572:54;;;;;;;;;;;;;:::i;32033:60::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32033:60:0;;;;;;;;;;:::i;34303:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34303:39:0;-1:-1:-1;;;;;34303:39:0;;:::i;33288:36::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33288:36:0;-1:-1:-1;;;;;33288:36:0;;:::i;40518:782::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40518:782:0;;;;;;;;;;;;;;;;;;;:::i;32755:27::-;;;;;;;;;;;;;:::i;44602:567::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44602:567:0;;;;;;;;:::i;54195:673::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54195:673:0;-1:-1:-1;;;;;54195:673:0;;:::i;39432:822::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39432:822:0;;;;;;;;;;;;;;;;;:::i;56462:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56462:198:0;-1:-1:-1;;;;;56462:198:0;;:::i;21687:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21687:45:0;-1:-1:-1;;;;;21687:45:0;;:::i;34754:25::-;;;;;;;;;;;;;:::i;23991:95::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23991:95:0;-1:-1:-1;;;;;23991:95:0;;:::i;44253:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44253:124:0;-1:-1:-1;;;;;44253:124:0;;:::i;31613:37::-;;;;;;;;;;;;;:::i;42820:673::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42820:673:0;;;;;;;;;;:::i;33387:59::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33387:59:0;;;;;;;;;;:::i;38835:177::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38835:177:0;-1:-1:-1;;;;;38835:177:0;;:::i;32269:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32269:68:0;;;;;;;;;;:::i;47975:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49602:130;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49602:130:0;-1:-1:-1;;;;;49602:130:0;;:::i;35473:354::-;;;;;;;;;;;;;;;;-1:-1:-1;35473:354:0;-1:-1:-1;;;;;35473:354:0;;:::i;21954:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21954:49:0;-1:-1:-1;;;;;21954:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;59146:108;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59146:108:0;-1:-1:-1;;;;;59146:108:0;;:::i;56081:246::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56081:246:0;-1:-1:-1;;;;;56081:246:0;;:::i;33931:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33931:48:0;-1:-1:-1;;;;;33931:48:0;;:::i;25976:1191::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25976:1191:0;;;;;;;;:::i;22873:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22873:39:0;-1:-1:-1;;;;;22873:39:0;;:::i;48239:197::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48239:197:0;-1:-1:-1;;;;;48239:197:0;;:::i;31930:42::-;;;;;;;;;;;;;:::i;33791:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33791:97:0;;;;;;;;;;;;;;;;;;;:::i;36080:627::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36080:627:0;;;;;;;;;;;;;;;;;:::i;45454:409::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45454:409:0;;;;;;;;;;;;;;;;;:::i;21331:39::-;;;;;;;;;;;;;:::i;48590:137::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48590:137:0;-1:-1:-1;;;;;48590:137:0;;:::i;32154:62::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32154:62:0;;;;;;;;;;:::i;32527:57::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32527:57:0;;;;;;;;;;:::i;51645:743::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51645:743:0;;;;;;;;:::i;53674:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;53674:368:0;;;;;;;;:::i;59515:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;59515:147:0;;;;;;;;:::i;48896:170::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48896:170:0;-1:-1:-1;;;;;48896:170:0;;:::i;32956:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32956:40:0;-1:-1:-1;;;;;32956:40:0;;:::i;52469:99::-;;;;;;;;;;;;;:::i;25325:220::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25325:220:0;-1:-1:-1;;;;;25325:220:0;;:::i;38386:295::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38386:295:0;-1:-1:-1;;;;;38386:295:0;;:::i;33649:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33649:90:0;;;;;;;;;;;;;;;;;;;:::i;24520:604::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24520:604:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;47603:267::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47603:267:0;-1:-1:-1;;;;;47603:267:0;;:::i;31804:29::-;;;;;;;;;;;;;:::i;37369:289::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37369:289:0;;;;;;;;:::i;33061:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33061:39:0;-1:-1:-1;;;;;33061:39:0;;:::i;58267:676::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;58267:676:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;37852:380::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37852:380:0;;;;;;;;:::i;32655:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32655:37:0;-1:-1:-1;;;;;32655:37:0;;:::i;56964:136::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;56964:136:0;;;;;;;;;;:::i;36870:328::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36870:328:0;;;;;;;;:::i;32403:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32403:64:0;;;;;;;;;;:::i;33511:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33511:89:0;;;;;;;;;;;;;;;;;;;:::i;32848:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32848:41:0;-1:-1:-1;;;;;32848:41:0;;:::i;55446:491::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;55446:491:0;;;;;;;;;;;;;;;;;:::i;22461:111::-;;;;;;;;;;;;;:::i;34898:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34898:49:0;-1:-1:-1;;;;;34898:49:0;;:::i;31840:33::-;;;;;;;;;;;;;:::i;34545:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34545:27:0;;:::i;21815:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21815:70:0;;-1:-1:-1;;;;;21815:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;34786:32;;;;;;;;;;;;;:::i;55012:196::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55012:196:0;-1:-1:-1;;;;;55012:196:0;;:::i;51109:344::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51109:344:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;34414:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34414:41:0;-1:-1:-1;;;;;34414:41:0;;:::i;34024:88::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34024:88:0;;;;;;;;;;;;;;;;;;;:::i;39092:98::-;;;;;;;;;;;;;:::i;21229:41::-;;;;;;;;;;;;;;-1:-1:-1;;;21229:41:0;;;;:::o;57575:205::-;57666:10;57638:4;57655:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;57655:31:0;;;;;;;;;;;:40;;;57713:37;;;;;;;57638:4;;57655:31;;57666:10;;57713:37;;;;;;;;-1:-1:-1;57768:4:0;57575:205;;;;;:::o;21151:19::-;;;-1:-1:-1;;;;;21151:19:0;;:::o;34657:24::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34657:24:0;;-1:-1:-1;34657:24:0;:::o;41523:1114::-;41644:10;41628:27;;;;:15;:27;;;;;;;;-1:-1:-1;;;;;41628:38:0;;;;;;;;;;;:43;;;;;;;;;;;:48;41620:83;;;;;-1:-1:-1;;;41620:83:0;;;;;;;;;;;;-1:-1:-1;;;41620:83:0;;;;;;;;;;;;;;;41763:15;:3;31643:7;41763;:15::i;:::-;41733:10;41714:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;41714:41:0;;;;;;;;;;;;:46;;;;;;;;;;;;:64;;;;41845:37;;;:25;:37;;;;;:48;;;;;;;;;:53;;;;;;;;;;:65;;41903:6;41845:57;:65::i;:::-;41815:10;41789:37;;;;:25;:37;;;;;;;;-1:-1:-1;;;;;41789:48:0;;;;;;;;;;;;:53;;;;;;;;;;;;:121;;;41986:29;;;:17;:29;;;;;:40;;;;;;;;;:45;;;;;;;;;;41929:53;;;-1:-1:-1;41929:102:0;41921:157;;;;-1:-1:-1;;;41921:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42091:15;42109:36;42120:9;42139:4;42109:10;:36::i;:::-;42091:54;;42156:12;42171:59;42205:9;-1:-1:-1;;;;;42198:29:0;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42198:31:0;42171:22;:10;42186:6;42171:14;:22::i;:::-;:26;;:59::i;:::-;-1:-1:-1;;;;;42255:12:0;;;;;;:7;:12;;;;;;;;42276:4;42255:27;;;;;;;;42156:74;;-1:-1:-1;42245:37:0;;42241:312;;;-1:-1:-1;;;;;42320:12:0;;;;;;:7;:12;;;;;;;;42313:4;42320:27;;;;;;;;;42299:49;;42313:4;42299:5;:49::i;:::-;-1:-1:-1;;;;;42363:12:0;;42393:1;42363:12;;;:7;:12;;;;;;;;42384:4;42363:27;;;;;;;:31;42241:312;;;42427:29;42441:4;42448:7;42427:5;:29::i;:::-;-1:-1:-1;;;;;42501:12:0;;;;;;:7;:12;;;;;;;;42522:4;42501:27;;;;;;;;:40;;42533:7;42501:31;:40::i;:::-;-1:-1:-1;;;;;42471:12:0;;;;;;:7;:12;;;;;;;;42492:4;42471:27;;;;;;;:70;42241:312;42596:10;-1:-1:-1;;;;;42570:59:0;42585:9;-1:-1:-1;;;;;42570:59:0;42580:3;-1:-1:-1;;;;;42570:59:0;;42608:12;42622:6;42570:59;;;;;;;;;;;;;;;;;;;;;;;;41523:1114;;;;;:::o;22327:40::-;;;:::o;21532:27::-;;;;:::o;34162:87::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33169:45::-;;;;;;;;;;;;;:::o;34956:31::-;;;;;;;;;;52740:274;52814:10;52804:21;;;;:9;:21;;;;;;;;52803:22;52795:56;;;;;-1:-1:-1;;;52795:56:0;;;;;;;;;;;;-1:-1:-1;;;52795:56:0;;;;;;;;;;;;;;;52879:10;52870:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;52870:29:0;;;;;;;;;;:34;;;;:73;;-1:-1:-1;52917:10:0;52908:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;52908:29:0;;;;;;;;;;52940:3;-1:-1:-1;52870:73:0;52862:103;;;;;-1:-1:-1;;;52862:103:0;;;;;;;;;;;;-1:-1:-1;;;52862:103:0;;;;;;;;;;;;;;;52976:30;52986:10;52998:7;52976:9;:30::i;:::-;52740:274;:::o;31709:43::-;31746:6;31709:43;:::o;50217:355::-;50309:4;50337:9;50326:8;:20;-1:-1:-1;;;;;50364:15:0;;;;;;:7;:15;;;;;;;;:94;;;;-1:-1:-1;;;;;;50433:13:0;;;;;;:5;:13;;;;;;;;;50400:5;:13;;;;;50422:4;50400:28;;;;;;;;;50451:7;;50400:47;;:28;:32;:47::i;:::-;:58;;50364:94;:146;;;;-1:-1:-1;;;;;;50479:21:0;;;;;;:13;:21;;;;;;:31;-1:-1:-1;50479:31:0;50364:146;:200;;;;-1:-1:-1;;;;;;50539:17:0;;;;;;:9;:17;;;;;;50561:3;;50531:26;;:3;;:7;:26::i;:::-;:33;;50364:200;50357:207;50217:355;-1:-1:-1;;;;;50217:355:0:o;22201:119::-;22243:77;22201:119;:::o;46089:376::-;46171:10;46166:16;;;;:4;:16;;;;;;;;46158:42;;;;;-1:-1:-1;;;46158:42:0;;;;;;;;;;;;-1:-1:-1;;;46158:42:0;;;;;;;;;;;;;;;46238:69;;;;;;;;;;;;;;;;;;;;46246:10;-1:-1:-1;46238:19:0;;;:7;:19;;;;;31968:3;46238:24;;;;;;;;;;:69;;46267:6;;46238:28;:69::i;:::-;46219:10;46211:19;;;;:7;:19;;;;;;;;31968:3;46211:24;;;;;;;:96;;;;-1:-1:-1;;;;;46318:15:0;;;;;:7;:15;;;;;;46336:3;46318:21;;46350:32;;;;;;;46375:6;;46350:32;;46211:19;46350:32;46375:6;46318:15;46350:32;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46398:59:0;;;46436:12;46398:59;;;;;;;;;;-1:-1:-1;;;;;46398:59:0;;;46416:10;;31968:3;;46398:59;;;;;;;;;;;46089:376;;:::o;49189:170::-;49259:17;;-1:-1:-1;;;;;49259:17:0;49245:10;:31;49237:73;;;;;-1:-1:-1;;;49237:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;49334:17;;49321:10;:30;;-1:-1:-1;;;;;;49321:30:0;-1:-1:-1;;;;;49334:17:0;;;49321:30;;;;;;49189:170::o;59969:553::-;-1:-1:-1;;;;;60128:15:0;;60048:4;60128:15;;;:10;:15;;;;;;;;60083:10;60128:24;;;;;;;;60048:4;;60083:10;;60128:24;60169:14;;;;;:46;;;-1:-1:-1;;60187:16:0;:28;;60169:46;60165:282;;;60232:17;60252:71;60273:6;60252:71;;;;;;;;;;;;;;;;;:16;;:71;:20;:71::i;:::-;-1:-1:-1;;;;;60338:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;60399:36;;;;;;;60232:91;;-1:-1:-1;60338:24:0;;:15;;60399:36;;;;;;;;;60165:282;;60459:33;60475:3;60480;60485:6;60459:15;:33::i;:::-;-1:-1:-1;60510:4:0;;59969:553;-1:-1:-1;;;;;59969:553:0:o;22662:128::-;22704:86;22662:128;:::o;21433:35::-;21466:2;21433:35;:::o;21572:54::-;21609:17;21572:54;:::o;32033:60::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;34303:39::-;;;;;;;;;;;;;;;:::o;33288:36::-;;;;;;;;;;;;;;;:::o;40518:782::-;-1:-1:-1;;;;;40622:28:0;;;;;;:17;:28;;;;;;;;40614:65;;;;;-1:-1:-1;;;40614:65:0;;;;;;;;;;;;-1:-1:-1;;;40614:65:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40698:26:0;;;;;;;:16;:26;;;;;;;;:37;;;;;;;;;;:42;;;;;;;;;;40690:75;;;;;-1:-1:-1;;;40690:75:0;;;;;;;;;;;;-1:-1:-1;;;40690:75:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40784:26:0;;;;;;;:16;:26;;;;;;;;:37;;;;;;;;;;:42;;;;;;;;;;40829:3;-1:-1:-1;40776:76:0;;;;;-1:-1:-1;;;40776:76:0;;;;;;;;;;;;-1:-1:-1;;;40776:76:0;;;;;;;;;;;;;;;40863:15;40881:36;40892:9;40911:4;40881:10;:36::i;:::-;40863:54;;40928:12;40943:94;41012:9;-1:-1:-1;;;;;41005:29:0;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41005:31:0;-1:-1:-1;;;;;40958:25:0;;;;;;;:15;41005:31;40958:25;;;;;;;:36;;;;;;;;;;:41;;;;;;;;;;40943:57;;:10;;:14;:57::i;:94::-;40928:109;;41048:29;41062:4;41069:7;41048:5;:29::i;:::-;-1:-1:-1;;;;;41118:12:0;;;;;;:7;:12;;;;;;;;41139:4;41118:27;;;;;;;;:40;;41150:7;41118:31;:40::i;:::-;-1:-1:-1;;;;;41088:12:0;;;;;;;:7;:12;;;;;;;;41109:4;41088:27;;;;;;;:70;;;;41169:25;;;;;;:15;:25;;;;;:36;;;;;;;;;;;;:41;;;;;;;;:45;;;;41232:60;;41270:12;41232:60;;;;;;;;;;41169:25;;41232:60;;;;;;;;;40518:782;;;;;:::o;32755:27::-;;;;:::o;44602:567::-;44683:10;44678:16;;;;:4;:16;;;;;;;;44670:46;;;;;-1:-1:-1;;;44670:46:0;;;;;;;;;;;;-1:-1:-1;;;44670:46:0;;;;;;;;;;;;;;;44745:4;;-1:-1:-1;;;;;44745:4:0;:18;44764:23;44777:9;44764:8;;;:12;:23::i;:::-;44745:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44745:43:0;44735:53;;;44727:88;;;;;-1:-1:-1;;;44727:88:0;;;;;;;;;;;;-1:-1:-1;;;44727:88:0;;;;;;;;;;;;;;;44863:79;;;;;;;;;;;;;;;;;;;;44871:10;-1:-1:-1;44863:19:0;;;:7;:19;;;;;44891:4;44863:34;;;;;;;;;;:79;;44902:6;;44863:38;:79::i;:::-;44834:10;44826:19;;;;:7;:19;;;;;;;;44854:4;44826:34;;;;;;;:116;;;;-1:-1:-1;;;;;44953:15:0;;;;:7;:15;;;44971:3;44953:21;;44985:23;44961:6;45001;44985:7;:23::i;:::-;-1:-1:-1;;;;;45043:21:0;;;;;;:13;:21;;;;;;:33;;45069:6;45043:25;:33::i;:::-;-1:-1:-1;;;;;45019:21:0;;;;;;:13;:21;;;;;;;;;:57;;;;45092:69;;45140:12;45092:69;;;;;;;;;;45019:21;;45120:10;;45113:4;;45092:69;;;;;;;;44602:567;;:::o;54195:673::-;13723:1;14329:7;;:19;;14321:63;;;;;-1:-1:-1;;;14321:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14321:63:0;;;;;;;;;;;;;;;13723:1;14462:7;:18;;;54282:10:::1;54271:22:::0;;:10:::1;:22;::::0;;;;;;;-1:-1:-1;;;;;54271:31:0;::::1;::::0;;;;;;;;:36;;::::1;::::0;:77:::1;;-1:-1:-1::0;54322:10:0::1;54311:22;::::0;;;:10:::1;:22;::::0;;;;;;;-1:-1:-1;;;;;54311:31:0;::::1;::::0;;;;;;;;54345:3:::1;-1:-1:-1::0;54271:77:0::1;54263:109;;;::::0;;-1:-1:-1;;;54263:109:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54263:109:0;;;;;;;;;;;;;::::1;;54401:10;54392:20;::::0;;;:8:::1;:20;::::0;;;;;::::1;;54391:21;54383:52;;;::::0;;-1:-1:-1;;;54383:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54383:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;54452:24:0;::::1;54471:4;54452:24;54448:250;;;54524:10;54536:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;54536:37:0;::::1;::::0;;;;;;;;54493:81:::1;::::0;54517:4:::1;::::0;54493:15:::1;:81::i;:::-;54448:250;;;54636:10;54648:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;54648:37:0;::::1;::::0;;;;;;;;;54607:79:::1;::::0;54636:10;54607:28:::1;:79::i;:::-;54727:10;54770:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;54770:37:0;::::1;::::0;;;;;;;;;54713:95;;54739:12:::1;54713:95:::0;;54753:15:::1;54713:95:::0;;::::1;::::0;;;;;;;;;;::::1;::::0;;;;;;;::::1;54836:10;54859:1;54819:28:::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;54819:37:0;;;::::1;::::0;;;;;;;;:41;;;13679:1;14641:22;;54195:673::o;39432:822::-;13723:1;14329:7;;:19;;14321:63;;;;;-1:-1:-1;;;14321:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14321:63:0;;;;;;;;;;;;;;;13723:1;14462:7;:18;;;-1:-1:-1;;;;;39545:28:0;::::1;::::0;;:17:::1;:28;::::0;;;;;::::1;;39537:65;;;::::0;;-1:-1:-1;;;39537:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;39537:65:0;;;;;;;;;;;;;::::1;;39613:69;-1:-1:-1::0;;;;;39613:34:0;::::1;39648:10;39668:4;39675:6:::0;39613:34:::1;:69::i;:::-;39759:10;39741:29;::::0;;;:17:::1;:29;::::0;;;;;;;-1:-1:-1;;;;;39741:40:0;;::::1;::::0;;;;;;;;:45;;::::1;::::0;;;;;;;;:57:::1;::::0;39791:6;39741:49:::1;:57::i;:::-;39711:10;39693:29;::::0;;;:17:::1;:29;::::0;;;;;;;-1:-1:-1;;;;;39693:40:0;;::::1;::::0;;;;;;;;:45;;::::1;::::0;;;;;;;:105;39858:22:::1;:3;31746:6;39858:7;:22::i;:::-;39828:10;39811:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;39811:39:0;;::::1;::::0;;;;;;;;;:44;;::::1;::::0;;;;;;;;;:69;;;;39937:27;;;:15:::1;:27:::0;;;;;:38;;;;;;;;;:43;;;;;;;;;;:55:::1;::::0;39985:6;39937:47:::1;:55::i;:::-;39907:10;39891:27;::::0;;;:15:::1;:27;::::0;;;;;;;-1:-1:-1;;;;;39891:38:0;;::::1;::::0;;;;;;;;:43;;::::1;::::0;;;;;;;:101;;;;40010:4:::1;:9:::0;;;;::::1;;40009:10;:41:::0;::::1;;;-1:-1:-1::0;;;;;;40023:21:0;::::1;;::::0;;;:16:::1;:21;::::0;;;;;40047:3:::1;-1:-1:-1::0;40009:41:0::1;40005:167;;;40079:10;::::0;40067:39:::1;::::0;;-1:-1:-1;;;40067:39:0;;-1:-1:-1;;;;;40067:39:0;;::::1;;::::0;::::1;::::0;;;40079:10;;;::::1;::::0;40067:34:::1;::::0;:39;;;;;40079:10:::1;::::0;40067:39;;;;;;;40079:10;;40067:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40145:15;31643:7;40145:3;:7;;:15;;;;:::i;:::-;-1:-1:-1::0;;;;;40121:21:0;::::1;;::::0;;;:16:::1;:21;::::0;;;;:39;40005:167:::1;40213:10;-1:-1:-1::0;;;;;40187:59:0::1;40202:9;-1:-1:-1::0;;;;;40187:59:0::1;40197:3;-1:-1:-1::0;;;;;40187:59:0::1;;40225:12;40239:6;40187:59;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;13679:1:0;14641:7;:22;-1:-1:-1;39432:822:0:o;56462:198::-;56537:10;;-1:-1:-1;;;;;56537:10:0;56523;:24;56515:50;;;;;-1:-1:-1;;;56515:50:0;;;;;;;;;;;;-1:-1:-1;;;56515:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56576:16:0;;56595:5;56576:16;;;:8;:16;;;;;;;;;:24;;-1:-1:-1;;56576:24:0;;;56616:36;;56639:12;56616:36;;;;;;;;;;;;;;56462:198;:::o;21687:45::-;;;;;;;;;;;;-1:-1:-1;;;;;21687:45:0;;:::o;34754:25::-;;;-1:-1:-1;;;;;34754:25:0;;:::o;23991:95::-;24046:32;24056:10;24068:9;24046;:32::i;44253:124::-;44325:4;;44305:64;;44317:6;;-1:-1:-1;;;;;44325:4:0;:18;44344:23;44357:9;44344:8;;;:12;:23::i;:::-;44325:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44325:43:0;44305:11;:64::i;31613:37::-;31643:7;31613:37;:::o;42820:673::-;42931:10;42912:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;42912:41:0;;;;;;;;;;;:46;;;;;;;;;;;42904:81;;;;;-1:-1:-1;;;42904:81:0;;;;;;;;;;;;-1:-1:-1;;;42904:81:0;;;;;;;;;;;;;;;43023:10;43004:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;43004:41:0;;;;;;;;;;;:46;;;;;;;;;;;43053:3;-1:-1:-1;42996:85:0;;;;;-1:-1:-1;;;42996:85:0;;;;;;;;;;;;-1:-1:-1;;;42996:85:0;;;;;;;;;;;;;;;43133:10;43092:12;43107:37;;;:25;:37;;;;;;;;-1:-1:-1;;;;;43107:48:0;;;;;;;;;;;;:53;;;;;;;;;;;;;43219:29;;;:17;:29;;;;;:40;;;;;;;;;:45;;;;;;;;;:58;;43107:53;43219:49;:58::i;:::-;43189:10;43171:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;43171:40:0;;;;;;;;;;;;:45;;;;;;;;;;;;:106;;;;43288:37;;;:25;:37;;;;;:48;;;;;;;;:53;;;;;;;;;:57;43356:51;;43171:40;43399:7;43356:30;:51::i;:::-;43451:10;-1:-1:-1;;;;;43425:60:0;43440:9;-1:-1:-1;;;;;43425:60:0;43435:3;-1:-1:-1;;;;;43425:60:0;;43463:12;43477:7;43425:60;;;;;;;;;;;;;;;;;;;;;;;;42820:673;;;:::o;33387:59::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;38835:177::-;38921:10;;-1:-1:-1;;;;;38921:10:0;38907;:24;38899:58;;;;;-1:-1:-1;;;38899:58:0;;;;;;;;;;;;-1:-1:-1;;;38899:58:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38968:28:0;38999:5;38968:28;;;:17;:28;;;;;:36;;-1:-1:-1;;38968:36:0;;;38835:177::o;32269:68::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;47975:93::-;48017:16;48053:7;48046:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48046:14:0;;;;;;;;;;;;;;;;;;;;;;;47975:93;:::o;49602:130::-;49654:4;49682:9;49671:8;:20;-1:-1:-1;;;;;;49709:15:0;;;;;:7;:15;;;;;;;;;49602:130::o;35473:354::-;-1:-1:-1;;;;;35544:9:0;;;;;;:4;:9;;;;;;;;35536:40;;;;;-1:-1:-1;;;35536:40:0;;;;;;;;;;;;-1:-1:-1;;;35536:40:0;;;;;;;;;;;;;;;35587:9;35599:28;31868:5;35599:18;:9;31831:2;35599:13;:18::i;:28::-;35587:40;-1:-1:-1;35658:42:0;35680:19;:9;35587:40;35680:13;:19::i;:::-;-1:-1:-1;;;;;35658:12:0;;;;;;:7;:12;;;;;;;;31968:3;35658:17;;;;;;;;;:21;:42::i;:::-;-1:-1:-1;;;;;35638:12:0;;;;;;;:7;:12;;;;;;;;31968:3;35638:17;;;;;;;:62;;;;35719:10;35711:34;;35719:10;;;;;35711:34;;;;;35740:4;;35711:34;;35638:12;35711:34;35740:4;35719:10;35711:34;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35763:56:0;;;35795:12;35763:56;;35809:9;35763:56;;;;;;35783:10;;-1:-1:-1;;;;;35763:56:0;;;31968:3;;35763:56;;;;;;;;;;;35473:354;;:::o;21954:49::-;;;;;;;;;;;;;;;:::o;59146:108::-;-1:-1:-1;;;;;59229:17:0;59205:4;59229:17;;;:8;:17;;;;;;;59146:108::o;56081:246::-;56155:10;;-1:-1:-1;;;;;56155:10:0;56141;:24;56133:48;;;;;-1:-1:-1;;;56133:48:0;;;;;;;;;;;;-1:-1:-1;;;56133:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56192:15:0;;56210:5;56192:15;;;:7;:15;;;;;;;;:23;;-1:-1:-1;;56192:23:0;;;;;;56226:9;:17;;;;;:24;;;;;56192:23;56226:24;;;56290:5;:13;;;;;56275:4;56290:28;;;;;;;;;56261:58;;56275:4;56200:6;;56261:5;:58::i;33931:48::-;;;;;;;;;;;;;:::o;25976:1191::-;26055:4;26094:12;26080:11;:26;26072:53;;;;;-1:-1:-1;;;26072:53:0;;;;;;;;;;;;-1:-1:-1;;;26072:53:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26160:23:0;;26138:19;26160:23;;;:14;:23;;;;;;;;26198:17;26194:58;;26239:1;26232:8;;;;;26194:58;-1:-1:-1;;;;;26312:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;26333:16:0;;26312:38;;;;;;;;;:48;;:63;-1:-1:-1;26308:147:0;;-1:-1:-1;;;;;26399:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;26420:16:0;;;;26399:38;;;;;;;;26435:1;26399:44;;;-1:-1:-1;26392:51:0;;26308:147;-1:-1:-1;;;;;26516:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;26512:88:0;;;26587:1;26580:8;;;;;26512:88;26612:12;-1:-1:-1;;26654:16:0;;26681:428;26696:5;26688:13;;:5;:13;;;26681:428;;;26760:1;26743:13;;;26742:19;;;26734:27;;26803:20;;:::i;:::-;-1:-1:-1;;;;;;26826:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;26803:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26873:27;;26869:229;;;26928:8;;;;-1:-1:-1;26921:15:0;;-1:-1:-1;;;;26921:15:0;26869:229;26962:12;;:26;;;-1:-1:-1;26958:140:0;;;27017:6;27009:14;;26958:140;;;27081:1;27072:6;:10;27064:18;;26958:140;26681:428;;;;;-1:-1:-1;;;;;;27126:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;25976:1191:0;;;;:::o;22873:39::-;;;;;;;;;;;;;:::o;48239:197::-;48313:10;;-1:-1:-1;;;;;48313:10:0;48299;:24;48291:52;;;;;-1:-1:-1;;;48291:52:0;;;;;;;;;;;;-1:-1:-1;;;48291:52:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48354:9:0;;48366:5;48354:9;;;:4;:9;;;;;;;;;:17;;-1:-1:-1;;48354:17:0;;;48387:41;;48403:12;48387:41;;48417:10;48387:41;;;;;;;;;;;;;;;;;;;;48239:197;:::o;31930:42::-;31968:3;31930:42;:::o;33791:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36080:627::-;13723:1;14329:7;;:19;;14321:63;;;;;-1:-1:-1;;;14321:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14321:63:0;;;;;;;;;;;;;;;13723:1;14462:7;:18;;;-1:-1:-1;;;;;36182:9:0;::::1;::::0;;:4:::1;:9;::::0;;;;;::::1;;36174:40;;;::::0;;-1:-1:-1;;;36174:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;36174:40:0;;;;;;;;;;;;;::::1;;36225:12;36247:6;-1:-1:-1::0;;;;;36240:24:0::1;;36273:4;36240:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;36240:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36240:39:0;;-1:-1:-1;36290:66:0::1;-1:-1:-1::0;;;;;36290:31:0;::::1;36322:10;36342:4;36349:6:::0;36290:31:::1;:66::i;:::-;36367:14;36384:52;36428:7;36391:6;-1:-1:-1::0;;;;;36384:24:0::1;;36417:4;36384:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;36384:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36384:39:0;;:43:::1;:52::i;:::-;36367:69:::0;-1:-1:-1;36447:9:0::1;36459:28;31868:5;36459:18;36367:69:::0;31831:2:::1;36459:13;:18::i;:28::-;36447:40:::0;-1:-1:-1;36521:45:0::1;36546:19;:9:::0;36447:40;36546:13:::1;:19::i;:::-;-1:-1:-1::0;;;;;36521:12:0;;::::1;;::::0;;;:7:::1;:12;::::0;;;;;;;:20;;::::1;::::0;;;;;;;;:24:::1;:45::i;:::-;-1:-1:-1::0;;;;;36498:12:0;;::::1;;::::0;;;:7:::1;:12;::::0;;;;;;;:20;;::::1;::::0;;;;;;;;:68;;;;36605:10;;36577:45:::1;::::0;36498:20;36605:10:::1;36617:4:::0;36577:27:::1;:45::i;:::-;36663:10;-1:-1:-1::0;;;;;36640:59:0::1;36658:3;-1:-1:-1::0;;;;;36640:59:0::1;36650:6;-1:-1:-1::0;;;;;36640:59:0::1;;36675:12;36689:9;36640:59;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;13679:1:0;14641:7;:22;-1:-1:-1;;;;36080:627:0:o;45454:409::-;45549:10;45544:16;;;;:4;:16;;;;;;;;45536:42;;;;;-1:-1:-1;;;45536:42:0;;;;;;;;;;;;-1:-1:-1;;;45536:42:0;;;;;;;;;;;;;;;45619:72;;;;;;;;;;;;;;;;;;;;45627:10;-1:-1:-1;45619:19:0;;;:7;:19;;;;;-1:-1:-1;;;;;45619:27:0;;;;;;;;;;;;:72;;45651:6;;45619:31;:72::i;:::-;45597:10;45589:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;45589:27:0;;;;;;;;;;;;:102;;;;45702:15;;;;;:7;:15;;;;;45720:3;45702:21;;45734:43;;45710:6;45770;45734:27;:43::i;:::-;45793:62;;;45834:12;45793:62;;;;;;;;;;-1:-1:-1;;;;;45793:62:0;;;;45814:10;;45793:62;;;;;;;;;;;;;;45454:409;;;:::o;21331:39::-;;;;;;;;;;;;;;-1:-1:-1;;;21331:39:0;;;;:::o;48590:137::-;48666:10;;-1:-1:-1;;;;;48666:10:0;48652;:24;48644:52;;;;;-1:-1:-1;;;48644:52:0;;;;;;;;;;;;-1:-1:-1;;;48644:52:0;;;;;;;;;;;;;;;48707:4;:12;;-1:-1:-1;;;;;;48707:12:0;-1:-1:-1;;;;;48707:12:0;;;;;;;;;;48590:137::o;32154:62::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;32527:57::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;51645:743::-;13723:1;14329:7;;:19;;14321:63;;;;;-1:-1:-1;;;14321:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14321:63:0;;;;;;;;;;;;;;;13723:1;14462:7;:18;;;51741:10:::1;51731:21:::0;;:9:::1;:21;::::0;;;;;::::1;;51730:22;51722:52;;;::::0;;-1:-1:-1;;;51722:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;51722:52:0;;;;;;;;;;;;;::::1;;51817:13;:3;31529:6;51817:7;:13::i;:::-;51794:10;51785:20;::::0;;;:8:::1;:20;::::0;;;;;;;-1:-1:-1;;;;;51785:29:0;::::1;::::0;;;;;;;;:45;;;;51864:4:::1;51845:24;51841:354;;;51886:50;51902:10;51922:4;51929:6;51886:15;:50::i;:::-;51841:354;;;51969:12;51991:7;-1:-1:-1::0;;;;;51984:25:0::1;;52018:4;51984:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;51984:40:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;51984:40:0;;-1:-1:-1;52039:67:0::1;-1:-1:-1::0;;;;;52039:32:0;::::1;52072:10;52092:4;52099:6:::0;52039:32:::1;:67::i;:::-;52130:53;52175:7;52137;-1:-1:-1::0;;;;;52130:25:0::1;;52164:4;52130:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;52130:40:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;:53;52121:62;;51841:354;;52254:10;52241:24;::::0;;;:12:::1;:24;::::0;;;;;;;-1:-1:-1;;;;;52241:33:0;::::1;::::0;;;;;;;;:45:::1;::::0;52279:6;52241:37:::1;:45::i;:::-;52218:10;52205:24;::::0;;;:12:::1;:24;::::0;;;;;;;-1:-1:-1;;;;;52205:33:0;::::1;::::0;;;;;;;;;:81;;;;52342:20;;;:8:::1;:20:::0;;;;;:29;;;;;;;;;;;52302:78;;52328:12:::1;52302:78:::0;;;;::::1;::::0;;;;;;;;;52218:10;;52302:78:::1;::::0;;;;;;;;::::1;-1:-1:-1::0;;13679:1:0;14641:7;:22;51645:743::o;53674:368::-;53774:15;:3;31643:7;53774;:15::i;:::-;53751:10;53740:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;53740:31:0;;;;;;;;;:49;;;;53800:36;;53763:7;;53829:6;53800:7;:36::i;:::-;53904:10;53887:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;53887:37:0;;;;;;;;;;:49;;53929:6;53887:41;:49::i;:::-;53864:10;53847:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;53847:37:0;;;;;;;;;;;:89;;;;53994:22;;;:10;:22;;;;;:31;;;;;;;;;;;53952:82;;53980:12;53952:82;;;;;;;;;;;;;;53864:10;;53952:82;;;;;;;;;;53674:368;;:::o;59515:147::-;59575:4;59592:40;59608:10;59620:3;59625:6;59592:15;:40::i;:::-;-1:-1:-1;59650:4:0;59515:147;;;;:::o;48896:170::-;48982:10;;-1:-1:-1;;;;;48982:10:0;48968;:24;48960:56;;;;;-1:-1:-1;;;48960:56:0;;;;;;;;;;;;-1:-1:-1;;;48960:56:0;;;;;;;;;;;;;;;49027:17;:31;;-1:-1:-1;;;;;;49027:31:0;-1:-1:-1;;;;;49027:31:0;;;;;;;;;;48896:170::o;32956:40::-;;;;;;;;;;;;;;;:::o;52469:99::-;52514:16;52550:10;52543:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52543:17:0;;;;;;;;;;;;;;;;;;;;;;52469:99;:::o;25325:220::-;-1:-1:-1;;;;;25429:23:0;;25390:4;25429:23;;;:14;:23;;;;;;;;25470:16;:67;;25536:1;25470:67;;;-1:-1:-1;;;;;25489:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;25510:16:0;;25489:38;;;;;;;;25525:1;25489:44;;25470:67;25463:74;25325:220;-1:-1:-1;;;25325:220:0:o;38386:295::-;38473:10;;-1:-1:-1;;;;;38473:10:0;38459;:24;38451:59;;;;;-1:-1:-1;;;38451:59:0;;;;;;;;;;;;-1:-1:-1;;;38451:59:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38530:28:0;;;;;;:17;:28;;;;;;;;38529:29;38521:65;;;;;-1:-1:-1;;;38521:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38597:28:0;;;;;:17;:28;;;;;:35;;-1:-1:-1;;38597:35:0;38628:4;38597:35;;;;;;38643:14;:30;;;;;;;;;;;;;;-1:-1:-1;;;;;;38643:30:0;;;;;;38386:295::o;33649:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24520:604::-;24667:57;;;22507:65;24667:57;;;;;;;;-1:-1:-1;;;;;24667:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24657:68;;;;;;-1:-1:-1;;;24763:57:0;;;;24792:15;24763:57;;;;;;;;;;;;;;;;;;;;;;;;;;;24753:68;;;;;;;;;24636:18;24852:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24657:68;;24753;24636:18;;24852:26;;;;;;;-1:-1:-1;;24852:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24852:26:0;;-1:-1:-1;;24852:26:0;;;-1:-1:-1;;;;;;;24897:23:0;;24889:54;;;;;-1:-1:-1;;;24889:54:0;;;;;;;;;;;;-1:-1:-1;;;24889:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24971:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;24962:28;;24954:61;;;;;-1:-1:-1;;;24954:61:0;;;;;;;;;;;;-1:-1:-1;;;24954:61:0;;;;;;;;;;;;;;;25041:6;25034:3;:13;;25026:48;;;;;-1:-1:-1;;;25026:48:0;;;;;;;;;;;;-1:-1:-1;;;25026:48:0;;;;;;;;;;;;;;;25085:31;25095:9;25106;25085;:31::i;:::-;24520:604;;;;;;;;;:::o;47603:267::-;47674:10;;-1:-1:-1;;;;;47674:10:0;47660;:24;47652:49;;;;;-1:-1:-1;;;47652:49:0;;;;;;;;;;;;-1:-1:-1;;;47652:49:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47721:9:0;;;;;;:4;:9;;;;;;;;47720:10;47712:40;;;;;-1:-1:-1;;;47712:40:0;;;;;;;;;;;;-1:-1:-1;;;47712:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47763:9:0;;;;;;:4;:9;;;;;;;;:16;;-1:-1:-1;;47763:16:0;47775:4;47763:16;;;;;;47790:7;:17;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;47790:17:0;;;;;47823:39;;47837:12;47823:39;;47851:10;47823:39;;;;;;;;;;;;;;;;;;;;47603:267;:::o;31804:29::-;31831:2;31804:29;:::o;37369:289::-;37460:10;;-1:-1:-1;;;;;37460:10:0;37446;:24;37438:51;;;;;-1:-1:-1;;;37438:51:0;;;;;;;;;;;;-1:-1:-1;;;37438:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37515:12:0;;;;;;:5;:12;;;;;;:24;;37532:6;37515:16;:24::i;:::-;-1:-1:-1;;;;;37500:12:0;;;;;;:5;:12;;;;;:39;37564:11;;:23;;37580:6;37564:15;:23::i;:::-;37550:11;:37;-1:-1:-1;;;;;37613:16:0;;;;;;;:9;:16;;;;;;37598:52;;37613:16;;37643:6;37598:14;:52::i;:::-;37369:289;;:::o;33061:39::-;;;;;;;;;;;;;:::o;58267:676::-;-1:-1:-1;;;;;58477:13:0;;;58394:18;58477:13;;;:6;:13;;;;;;;;:15;;;;;;;;;58425:78;;22704:86;58425:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58415:89;;;;;;-1:-1:-1;;;58542:57:0;;;;58571:15;58542:57;;;;;;;;;;;;;;;;;;;;;;;;;;;58532:68;;;;;;;;;58631:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58415:89;;58532:68;;58477:15;;58631:26;;;;;58477:13;;-1:-1:-1;;58631:26:0;;;;;;;;;;58477:15;58631:26;;;;;;;;;;;;;;;-1:-1:-1;;58631:26:0;;-1:-1:-1;;58631:26:0;;;-1:-1:-1;;;;;;;58676:23:0;;58668:53;;;;;-1:-1:-1;;;58668:53:0;;;;;;;;;;;;-1:-1:-1;;;58668:53:0;;;;;;;;;;;;;;;58753:5;-1:-1:-1;;;;;58740:18:0;:9;-1:-1:-1;;;;;58740:18:0;;58732:51;;;;;-1:-1:-1;;;58732:51:0;;;;;;;;;;;;-1:-1:-1;;;58732:51:0;;;;;;;;;;;;;;;58809:8;58802:3;:15;;58794:43;;;;;-1:-1:-1;;;58794:43:0;;;;;;;;;;;;-1:-1:-1;;;58794:43:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;58850:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;58903:32;;;;;;;;;;;;;;;;;58267:676;;;;;;;;;;:::o;37852:380::-;37942:10;;-1:-1:-1;;;;;37942:10:0;37928;:24;37920:55;;;;;-1:-1:-1;;;37920:55:0;;;;;;;;;;;;-1:-1:-1;;;37920:55:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37994:9:0;;;;;;:4;:9;;;;;;;;37986:40;;;;;-1:-1:-1;;;37986:40:0;;;;;;;;;;;;-1:-1:-1;;;37986:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38067:12:0;;;;;;:7;:12;;;;;;;;38088:4;38067:27;;;;;;;;:39;;38099:6;38067:31;:39::i;:::-;-1:-1:-1;;;;;38037:12:0;;;;;;:7;:12;;;;;;;;38058:4;38037:27;;;;;;;;:69;;;;38117:28;;38138:6;38117:5;:28::i;:::-;38161:63;;;38203:12;38161:63;;;;;;;;;;38191:10;;-1:-1:-1;;;;;38161:63:0;;;38179:4;;38161:63;;;;;;;;;;;37852:380;;:::o;32655:37::-;;;;;;;;;;;;;:::o;56964:136::-;-1:-1:-1;;;;;57064:19:0;;;57040:4;57064:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;56964:136::o;36870:328::-;36958:10;;-1:-1:-1;;;;;36958:10:0;36944;:24;36936:51;;;;;-1:-1:-1;;;36936:51:0;;;;;;;;;;;;-1:-1:-1;;;36936:51:0;;;;;;;;;;;;;;;36998:31;37008:5;37023:4;36998:9;:31::i;:::-;-1:-1:-1;;;;;37055:12:0;;;;;;:5;:12;;;;;;:24;;37072:6;37055:16;:24::i;:::-;-1:-1:-1;;;;;37040:12:0;;;;;;:5;:12;;;;;:39;37104:11;;:23;;37120:6;37104:15;:23::i;:::-;37090:11;:37;-1:-1:-1;;;;;37165:16:0;;;37161:1;37165:16;;;:9;:16;;;;;;37138:52;;37165:16;37183:6;37138:14;:52::i;32403:64::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;33511:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32848:41::-;;;;;;;;;;;;;:::o;55446:491::-;13723:1;14329:7;;:19;;14321:63;;;;;-1:-1:-1;;;14321:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14321:63:0;;;;;;;;;;;;;;;13723:1;14462:7;:18;55559:10:::1;::::0;-1:-1:-1;;;;;55559:10:0::1;55545;:24;55537:48;;;::::0;;-1:-1:-1;;;55537:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55537:48:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;55600:23:0;::::1;55618:4;55600:23;55596:186;;;55671:10;::::0;55640:50:::1;::::0;55664:4:::1;::::0;-1:-1:-1;;;;;55671:10:0::1;55683:6:::0;55640:15:::1;:50::i;:::-;55596:186;;;55751:10;::::0;55723:47:::1;::::0;-1:-1:-1;;;;;55723:27:0;;::::1;::::0;55751:10:::1;55763:6:::0;55723:27:::1;:47::i;:::-;55792:31;55800:6;55808;55816;55792:7;:31::i;:::-;-1:-1:-1::0;;;;;55834:16:0;::::1;55853:5;55834:16:::0;;;:8:::1;:16;::::0;;;;;;;;:24;;-1:-1:-1;;55834:24:0::1;::::0;;55874:55;;55908:12:::1;55874:55:::0;;;;::::1;::::0;;;;;55896:10:::1;::::0;55834:16;55874:55:::1;::::0;;;;;;::::1;-1:-1:-1::0;;13679:1:0;14641:7;:22;-1:-1:-1;55446:491:0:o;22461:111::-;22507:65;22461:111;:::o;34898:49::-;;;;;;;;;;;;;;;:::o;31840:33::-;31868:5;31840:33;:::o;34545:27::-;;;;;;;;;;21815:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34786:32::-;;;-1:-1:-1;;;;;34786:32:0;;:::o;55012:196::-;55087:10;;-1:-1:-1;;;;;55087:10:0;55073;:24;55065:50;;;;;-1:-1:-1;;;55065:50:0;;;;;;;;;;;;-1:-1:-1;;;55065:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;55126:16:0;;;;;;:8;:16;;;;;;;;;:23;;-1:-1:-1;;55126:23:0;55145:4;55126:23;;;55165:35;;55187:12;55165:35;;;;;;;;;;;;;;55012:196;:::o;51109:344::-;51218:4;51246:9;51235:8;:20;-1:-1:-1;;;;;51273:15:0;;;;;;:7;:15;;;;;;;;:66;;;;-1:-1:-1;;;;;;51309:13:0;;;;;;;:5;:13;;;;;;;;:19;;;;;;;;;;:30;-1:-1:-1;51309:30:0;51273:66;:118;;;;-1:-1:-1;;;;;;51360:21:0;;;;;;:13;:21;;;;;;:31;-1:-1:-1;51360:31:0;51273:118;:172;;;;-1:-1:-1;;;;;;51420:17:0;;;;;;:9;:17;;;;;;51442:3;;51412:26;;:3;;:7;:26::i;:::-;:33;;51273:172;51266:179;51109:344;-1:-1:-1;;;;;;51109:344:0:o;34414:41::-;;;;;;;;;;;;;;;:::o;34024:88::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39092:98::-;39132:16;39168:14;39161:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39161:21:0;;;;;;;;;;;;;;;;;;;;;;39092:98;:::o;1019:148::-;1071:4;1097:5;;;1121:6;;;;1113:25;;;;;-1:-1:-1;;;1113:25:0;;;;;;;;;;;;-1:-1:-1;;;1113:25:0;;;;;;;;;;;;;;23463:380;23537:4;23555:8;23565;23593:4;-1:-1:-1;;;;;23578:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23578:34:0;;;;;;;;23627:29;;-1:-1:-1;;;23627:29:0;;;;23554:58;;;;;-1:-1:-1;23554:58:0;;;;;-1:-1:-1;;;;;;23627:40:0;;;;:27;;;;;;:29;;;;;23578:34;23627:29;;;;;;:27;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23627:29:0;-1:-1:-1;;;;;23627:40:0;;23623:213;;;-1:-1:-1;23691:3:0;-1:-1:-1;23684:10:0;;23623:213;23749:7;-1:-1:-1;;;;;23716:40:0;23731:4;-1:-1:-1;;;;;23716:27:0;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23716:29:0;-1:-1:-1;;;;;23716:40:0;;23712:124;;;23780:3;-1:-1:-1;23773:10:0;;-1:-1:-1;23773:10:0;23712:124;23823:1;23816:8;;;;;;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;43793:293::-;-1:-1:-1;;;;;43862:17:0;;43854:49;;;;;-1:-1:-1;;;43854:49:0;;;;;;;;;;;;-1:-1:-1;;;43854:49:0;;;;;;;;;;;;;;;43930:51;;;;;;;;;;;-1:-1:-1;;;43930:51:0;;;;;;;;-1:-1:-1;;;;;43930:13:0;;-1:-1:-1;43930:13:0;;;:8;:13;;;;;;;;:51;;43948:6;;43930:17;:51::i;:::-;-1:-1:-1;;;;;43914:13:0;;;;;;:8;:13;;;;;:67;44006:11;;:23;;44022:6;44006:15;:23::i;:::-;43992:11;:37;44045:33;;;;;;;;44067:1;;-1:-1:-1;;;;;44045:33:0;;;-1:-1:-1;;;;;;;;;;;44045:33:0;;;;;;;;43793:293;;:::o;1867:103::-;1919:4;1943:19;1947:1;1950;1943:19;;;;;;;;;;;;;-1:-1:-1;;;1943:19:0;;;:3;:19::i;53026:457::-;-1:-1:-1;;;;;53102:17:0;;;;;;:9;:17;;;;;;53098:146;;-1:-1:-1;;;;;53139:17:0;;;;;;:9;:17;;;;;;;;53159:3;53139:23;;;;53175:10;:23;;;;;;;;;;;;-1:-1:-1;;;;;;53175:23:0;;;;;;;53211:7;:15;;;;;:21;53098:146;-1:-1:-1;;;;;53254:15:0;;;;;;;:7;:15;;;;;;;;:22;;-1:-1:-1;;53254:22:0;53272:4;53254:22;;;53310:12;:20;;;;;:29;;;;;;;;;;53287:53;;53293:7;;53262:6;;53287:5;:53::i;:::-;-1:-1:-1;;;;;53351:20:0;;;53383:1;53351:20;;;:12;:20;;;;;;;;:29;;;;;;;;;;;;:33;;;53452:13;;;:5;:13;;;;;:22;;;;;;;;;;;53400:75;;53421:12;53400:75;;53435:15;53400:75;;;;;;;;;;;;;53351:20;;53400:75;;;;;;;;;;53026:457;;:::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;60530:435::-;-1:-1:-1;;;;;60622:17:0;;60614:59;;;;;-1:-1:-1;;;60614:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60692:17:0;;60684:59;;;;;-1:-1:-1;;;60684:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;60772:61;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60772:13:0;;-1:-1:-1;60772:13:0;;;:8;:13;;;;;;;;:61;;60790:6;;60772:17;:61::i;:::-;-1:-1:-1;;;;;60756:13:0;;;;;;;:8;:13;;;;;;;;:77;;;;60860:55;;;;;;;;;;;;;;;:13;;;;;;;;;;;:55;;60878:6;;60860:17;:55::i;:::-;-1:-1:-1;;;;;60844:13:0;;;;;;;:8;:13;;;;;;;;;:71;;;;60931:26;;;;;;;60844:13;;60931:26;;;;-1:-1:-1;;;;;;;;;;;60931:26:0;;;;;;;;60530:435;;;:::o;43501:284::-;43604:11;;:23;;43620:6;43604:15;:23::i;:::-;43590:11;:37;-1:-1:-1;;;;;43703:13:0;;;;;;:8;:13;;;;;;:25;;43721:6;43703:17;:25::i;:::-;-1:-1:-1;;;;;43687:13:0;;;;;;:8;:13;;;;;;;;:41;;;;43744:33;;;;;;;43687:13;;;;-1:-1:-1;;;;;;;;;;;43744:33:0;;;;;;;;;43501:284;;:::o;46473:309::-;-1:-1:-1;;;;;46569:12:0;;;;;;:5;:12;;;;;;;;46590:4;46569:27;;;;;;;;:40;;46601:7;46569:31;:40::i;:::-;-1:-1:-1;;;;;46539:12:0;;;;;;:5;:12;;;;;;;;46560:4;46539:27;;;;;;;:70;46634:11;;:24;;46650:7;46634:15;:24::i;:::-;46620:11;:38;-1:-1:-1;;;;;46696:16:0;;;46692:1;46696:16;;;:9;:16;;;;;;46669:53;;46696:16;46714:7;46669:14;:53::i;:::-;46738:36;;;;;;;;-1:-1:-1;;;;;46738:36:0;;;46747:10;;-1:-1:-1;;;;;;;;;;;46738:36:0;;;;;;;;46473:309;;:::o;15236:176::-;15345:58;;;-1:-1:-1;;;;;15345:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15345:58:0;-1:-1:-1;;;15345:58:0;;;15319:85;;15338:5;;15319:18;:85::i;:::-;15236:176;;;:::o;15420:204::-;15547:68;;;-1:-1:-1;;;;;15547:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15547:68:0;-1:-1:-1;;;15547:68:0;;;15521:95;;15540:5;;15521:18;:95::i;:::-;15420:204;;;;:::o;27175:407::-;-1:-1:-1;;;;;27278:20:0;;;27252:23;27278:20;;;:9;:20;;;;;;;;;27354:5;:16;;;;;27379:4;27354:31;;;;;;;;27333:16;;;:5;:16;;;;;;27278:20;;;27252:23;;27333:53;;:16;:20;:53::i;:::-;-1:-1:-1;;;;;27397:20:0;;;;;;;:9;:20;;;;;;:32;;-1:-1:-1;;;;;;27397:32:0;;;;;;;;;;27447:54;;27309:77;;-1:-1:-1;27397:32:0;27447:54;;;;;;27397:20;27447:54;27514:60;27529:15;27546:9;27557:16;27514:14;:60::i;47118:324::-;-1:-1:-1;;;;;47225:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;:34;;47251:7;47225:25;:34::i;:::-;-1:-1:-1;;;;;47201:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;;;:58;;;;47293:4;47274:24;47270:163;;;47329:11;;:24;;47345:7;47329:15;:24::i;:::-;47315:11;:38;-1:-1:-1;;;;;47383:16:0;;;;;;;:9;:16;;;;;;47368:53;;47383:16;;47413:7;27590:862;27693:6;-1:-1:-1;;;;;27683:16:0;:6;-1:-1:-1;;;;;27683:16:0;;;:30;;;;;27712:1;27703:6;:10;27683:30;27679:766;;;-1:-1:-1;;;;;27734:20:0;;;27730:357;;-1:-1:-1;;;;;27794:22:0;;27775:16;27794:22;;;:14;:22;;;;;;;;;27852:13;:60;;27911:1;27852:60;;;-1:-1:-1;;;;;27868:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;27888:13:0;;27868:34;;;;;;;;27900:1;27868:40;;27852:60;27835:77;;27931:14;27948:47;27962:6;27948:47;;;;;;;;;;;;;-1:-1:-1;;;27948:47:0;;;:9;:13;;:47;;;;;:::i;:::-;27931:64;;28014:57;28031:6;28039:9;28050;28061;28014:16;:57::i;:::-;27730:357;;;;-1:-1:-1;;;;;28107:20:0;;;28103:331;;-1:-1:-1;;;;;28167:22:0;;28148:16;28167:22;;;:14;:22;;;;;;;;;28225:13;:60;;28284:1;28225:60;;;-1:-1:-1;;;;;28241:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;28261:13:0;;28241:34;;;;;;;;28273:1;28241:40;;28225:60;28208:77;-1:-1:-1;28304:14:0;28321:21;28208:77;28335:6;28321:13;:21::i;:::-;28304:38;;28361:57;28378:6;28386:9;28397;28408;28361:16;:57::i;:::-;28103:331;;;27590:862;;;:::o;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;46790:320::-;-1:-1:-1;;;;;46895:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;:34;;46921:7;46895:25;:34::i;:::-;-1:-1:-1;;;;;46871:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;;;:58;;;;46963:4;46944:24;46940:163;;;46999:11;;:24;;47015:7;46999:15;:24::i;:::-;46985:11;:38;-1:-1:-1;;;;;47065:16:0;;;47061:1;47065:16;;;:9;:16;;;;;;47038:53;;47065:16;47083:7;47038:14;:53::i;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;17248:1080::-;17852:27;17860:5;-1:-1:-1;;;;;17852:25:0;;:27::i;:::-;17844:60;;;;;-1:-1:-1;;;17844:60:0;;;;;;;;;;;;-1:-1:-1;;;17844:60:0;;;;;;;;;;;;;;;17978:12;17992:23;18027:5;-1:-1:-1;;;;;18019:19:0;18039:4;18019:25;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18019:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17977:67;;;;18063:7;18055:52;;;;;-1:-1:-1;;;18055:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18124:17;;:21;18120:201;;18266:10;18255:30;;;;;;;;;;;;;;;-1:-1:-1;18255:30:0;18247:62;;;;;-1:-1:-1;;;18247:62:0;;;;;;;;;;;;-1:-1:-1;;;18247:62:0;;;;;;;;;;;;;;28460:598;28574:18;28595:49;28602:12;28595:49;;;;;;;;;;;;;;;;;:6;:49::i;:::-;28574:70;;28674:1;28659:12;:16;;;:85;;;;-1:-1:-1;;;;;;28679:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;28702:16:0;;28679:40;;;;;;;;;:50;:65;;;:50;;:65;28659:85;28655:329;;;-1:-1:-1;;;;;28759:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;28782:16:0;;28759:40;;;;;;;;28797:1;28759:46;:57;;;28655:329;;;28884:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28845:22:0;;-1:-1:-1;28845:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;28845:72:0;;;;;;;;;;;;;28930:25;;;:14;:25;;;;;;:44;;28958:16;;;28930:44;;;;;;;;;;28655:329;28999:51;;;;;;;;;;;;;;-1:-1:-1;;;;;28999:51:0;;;;;;;;;;;28460:598;;;;;:::o;9812:619::-;9872:4;10340:20;;10183:66;10380:23;;;;;;:42;;-1:-1:-1;10407:15:0;;;10380:42;10372:51;9812:619;-1:-1:-1;;;;9812:619:0:o;29066:161::-;29141:6;29179:12;29172:5;29168:9;;29160:32;;;;-1:-1:-1;;;29160:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29217:1:0;;29066:161;-1:-1:-1;;29066:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://4f04e30edefb81d2c9d2c29713b03c1220e4691d6ebabd94cdc53bc3e083e847
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.