ETH Price: $2,632.11 (+1.18%)

Contract

0x1A16e1894dF4579650E1E611e5b0b92eaE478BB2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw115137872020-12-24 3:10:431392 days ago1608779443IN
0x1A16e189...eaE478BB2
0 ETH0.01064931105
Deposit115137842020-12-24 3:10:291392 days ago1608779429IN
0x1A16e189...eaE478BB2
0 ETH0.01287699105
Set114973502020-12-21 14:37:291394 days ago1608561449IN
0x1A16e189...eaE478BB2
0 ETH0.01179626114
Withdraw114810192020-12-19 2:39:221397 days ago1608345562IN
0x1A16e189...eaE478BB2
0 ETH0.01024604101
Withdraw114763792020-12-18 9:30:341398 days ago1608283834IN
0x1A16e189...eaE478BB2
0 ETH0.0094649772
Deposit114428452020-12-13 5:54:521403 days ago1607838892IN
0x1A16e189...eaE478BB2
0 ETH0.0025164919
Deposit114388492020-12-12 15:08:471403 days ago1607785727IN
0x1A16e189...eaE478BB2
0 ETH0.0030138628
Deposit114304552020-12-11 8:12:211405 days ago1607674341IN
0x1A16e189...eaE478BB2
0 ETH0.0056413446
Deposit113540992020-11-29 14:11:371416 days ago1606659097IN
0x1A16e189...eaE478BB2
0 ETH0.0018542514.00000134
Deposit113540292020-11-29 13:54:491416 days ago1606658089IN
0x1A16e189...eaE478BB2
0 ETH0.0018298417
Withdraw113449922020-11-28 5:00:111418 days ago1606539611IN
0x1A16e189...eaE478BB2
0 ETH0.0016304114.00000145
Deposit113445342020-11-28 3:19:251418 days ago1606533565IN
0x1A16e189...eaE478BB2
0 ETH0.0016694615.51
Deposit113125162020-11-23 5:05:321423 days ago1606107932IN
0x1A16e189...eaE478BB2
0 ETH0.0026909525.00000134
Deposit112936352020-11-20 7:27:411426 days ago1605857261IN
0x1A16e189...eaE478BB2
0 ETH0.0077030454
Deposit112859382020-11-19 3:20:531427 days ago1605756053IN
0x1A16e189...eaE478BB2
0 ETH0.0035767127
Deposit112856062020-11-19 2:11:031427 days ago1605751863IN
0x1A16e189...eaE478BB2
0 ETH0.0024527620.0000016
Withdraw112766772020-11-17 17:04:571428 days ago1605632697IN
0x1A16e189...eaE478BB2
0 ETH0.01420076140
Deposit112766712020-11-17 17:02:571428 days ago1605632577IN
0x1A16e189...eaE478BB2
0 ETH0.01485404138
Deposit112675622020-11-16 7:23:061430 days ago1605511386IN
0x1A16e189...eaE478BB2
0 ETH0.0031790124
Deposit112673932020-11-16 6:46:351430 days ago1605509195IN
0x1A16e189...eaE478BB2
0 ETH0.0022711621.1
Deposit112626652020-11-15 13:28:161430 days ago1605446896IN
0x1A16e189...eaE478BB2
0 ETH0.0025833124
Deposit112562622020-11-14 14:02:361431 days ago1605362556IN
0x1A16e189...eaE478BB2
0 ETH0.0029062227
Deposit112443122020-11-12 18:06:031433 days ago1605204363IN
0x1A16e189...eaE478BB2
0 ETH0.0022074818
Deposit112412492020-11-12 6:38:171434 days ago1605163097IN
0x1A16e189...eaE478BB2
0 ETH0.0026494220
Deposit112404572020-11-12 3:44:341434 days ago1605152674IN
0x1A16e189...eaE478BB2
0 ETH0.0024137722
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
C42LiquidityMinter

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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);
}

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @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(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 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(uint256 a, uint256 b) internal pure returns (uint256) {
        // 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;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        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(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 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(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.5.5;

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

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

// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol

pragma solidity ^0.5.0;




/**
 * @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: decreased allowance below zero");
        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: call to non-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: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/utils/EnumerableSet.sol

pragma solidity ^0.5.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * As of v2.5.0, only `address` sets are supported.
 *
 * Include with `using EnumerableSet for EnumerableSet.AddressSet;`.
 *
 * _Available since v2.5.0._
 *
 * @author Alberto Cuesta Cañada
 */
library EnumerableSet {

    struct AddressSet {
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (address => uint256) index;
        address[] values;
    }

    /**
     * @dev Add a value to a set. O(1).
     * Returns false if the value was already in the set.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        if (!contains(set, value)){
            set.index[value] = set.values.push(value);
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     * Returns false if the value was not present in the set.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        if (contains(set, value)){
            uint256 toDeleteIndex = set.index[value] - 1;
            uint256 lastIndex = set.values.length - 1;

            // If the element we're deleting is the last one, we can just remove it without doing a swap
            if (lastIndex != toDeleteIndex) {
                address lastValue = set.values[lastIndex];

                // Move the last value to the index where the deleted value is
                set.values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set.index[lastValue] = toDeleteIndex + 1; // All indexes are 1-based
            }

            // Delete the index entry for the deleted value
            delete set.index[value];

            // Delete the old entry for the moved value
            set.values.pop();

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return set.index[value] != 0;
    }

    /**
     * @dev Returns an array with all values in the set. O(N).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.

     * WARNING: This function may run out of gas on large sets: use {length} and
     * {get} instead in these cases.
     */
    function enumerate(AddressSet storage set)
        internal
        view
        returns (address[] memory)
    {
        address[] memory output = new address[](set.values.length);
        for (uint256 i; i < set.values.length; i++){
            output[i] = set.values[i];
        }
        return output;
    }

    /**
     * @dev Returns the number of elements on the set. O(1).
     */
    function length(AddressSet storage set)
        internal
        view
        returns (uint256)
    {
        return set.values.length;
    }

   /** @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function get(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return set.values[index];
    }
}

// File: @openzeppelin/contracts/GSN/Context.sol

pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.0;


/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

// File: @openzeppelin/contracts/access/Roles.sol

pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: @openzeppelin/contracts/access/roles/MinterRole.sol

pragma solidity ^0.5.0;



contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Mintable.sol

pragma solidity ^0.5.0;



/**
 * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol

pragma solidity ^0.5.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev See {ERC20-_burnFrom}.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

// File: contracts/Clover42Token.sol

pragma solidity >=0.4.25 <0.7.0;





contract Clover42Token is
    ERC20,
    ERC20Detailed,
    ERC20Mintable,
    ERC20Burnable
{
    constructor(
        string memory name,
        string memory symbol,
        uint8 decimals,
        uint256 totalSupply
    ) public ERC20Detailed(name, symbol, decimals) {
        // Boost uniswap liquidity
        _mint(msg.sender, totalSupply * (10**uint256(decimals)));
    }
}

// File: contracts/C42LiquidityMinter.sol

pragma solidity >=0.4.25 <0.7.0;







interface IMigratorC42 {
    function migrate(IERC20 token) external returns (IERC20);
}

contract C42LiquidityMinter is Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    // Info of each user.
    struct UserInfo {
        uint256 amount;     // How many LP tokens the user has provided.
        uint256 rewardDebt; // Reward debt.
    }

    // Info of each pools.
    struct PoolInfo {
        IERC20 lpToken;           
        uint256 allocPoint;
        uint256 lastRewardBlock;
        uint256 accC42PerShare;
    }

    Clover42Token public c42;
    uint256 public constant BLOCK_PER_28D = 201600;
    uint256 public bonusEndBlock;
    uint256 public c42PerBlock;
    // Bonus muliplier for early c42 makers.
    uint256 public constant BONUS_MULTIPLIER = 10;
    // The migrator contract. It has a lot of power. Can only be set through governance (owner).
    IMigratorC42 public migrator;

    PoolInfo[] public poolInfo;
    // Info of each user that stakes LP tokens.
    mapping (uint256 => mapping (address => UserInfo)) public userInfo;
    // Total allocation poitns. Must be the sum of all allocation points in all pools.
    uint256 public totalAllocPoint = 0;
    // The block number when C42 mining starts.
    uint256 public startBlock;
    // Dev address.
    address public devaddr;

    event Deposit(address indexed user, uint256 indexed pid, uint256 amount);
    event Withdraw(address indexed user, uint256 indexed pid, uint256 amount);
    event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount);

    constructor(
        Clover42Token _c42,
        uint256 _c42PerBlock,
        address _devaddr
    ) public {
        c42 = _c42;
        c42PerBlock = _c42PerBlock;
        bonusEndBlock = block.number + BLOCK_PER_28D;
        startBlock = block.number;
        devaddr = _devaddr;
    }

    function poolLength() external view returns (uint256) {
        return poolInfo.length;
    }

    function add(uint256 _allocPoint, IERC20 _lpToken, bool _withUpdate) public onlyOwner {
        if (_withUpdate) {
            massUpdatePools();
        }
        uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock;
        totalAllocPoint = totalAllocPoint.add(_allocPoint);
        poolInfo.push(PoolInfo({
            allocPoint: _allocPoint,
            lpToken: _lpToken,
            lastRewardBlock: lastRewardBlock,
            accC42PerShare: 0
        }));
    }

    function set(uint256 _pid, uint256 _allocPoint, bool _withUpdate) public onlyOwner {
        if (_withUpdate) {
            massUpdatePools();
        }
        totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint);
        poolInfo[_pid].allocPoint = _allocPoint;
    }

    // Set the migrator contract. Can only be called by the owner.
    function setMigrator(IMigratorC42 _migrator) public onlyOwner {
        migrator = _migrator;
    }

    // Migrate lp token to another lp contract. Can be called by anyone. We trust that migrator contract is good.
    function migrate(uint256 _pid) public {
        require(address(migrator) != address(0), "migrate: no migrator");
        PoolInfo storage pool = poolInfo[_pid];
        IERC20 lpToken = pool.lpToken;
        uint256 bal = lpToken.balanceOf(address(this));
        lpToken.safeApprove(address(migrator), bal);
        IERC20 newLpToken = migrator.migrate(lpToken);
        require(bal == newLpToken.balanceOf(address(this)), "migrate: bad");
        pool.lpToken = newLpToken;
    }

    // Return reward multiplier over the given _from to _to block.
    function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) {
        if (_to <= bonusEndBlock) {
            return _to.sub(_from).mul(BONUS_MULTIPLIER);
        } else if (_from >= bonusEndBlock) {
            return _to.sub(_from);
        } else {
            return bonusEndBlock.sub(_from).mul(BONUS_MULTIPLIER).add(
                _to.sub(bonusEndBlock)
            );
        }
    }

    function pendingC42(uint256 _pid, address _user) external view returns (uint256) {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][_user];
        uint256 accC42PerShare = pool.accC42PerShare;
        uint256 lpSupply = pool.lpToken.balanceOf(address(this));
        if (block.number > pool.lastRewardBlock && lpSupply != 0) {
            uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
            uint256 c42Reward = multiplier.mul(c42PerBlock).mul(pool.allocPoint).div(totalAllocPoint);
            accC42PerShare = accC42PerShare.add(c42Reward.mul(1e12).div(lpSupply));
        }
        return user.amount.mul(accC42PerShare).div(1e12).sub(user.rewardDebt);
    }

    // Update reward variables for all pools. Be careful of gas spending!
    function massUpdatePools() public {
        uint256 length = poolInfo.length;
        for (uint256 pid = 0; pid < length; ++pid) {
            updatePool(pid);
        }
    }

    // Update reward variables of the given pool to be up-to-date.
    function updatePool(uint256 _pid) public {
        PoolInfo storage pool = poolInfo[_pid];
        if (block.number <= pool.lastRewardBlock) {
            return;
        }
        uint256 lpSupply = pool.lpToken.balanceOf(address(this));
        if (lpSupply == 0) {
            pool.lastRewardBlock = block.number;
            return;
        }
        uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
        uint256 c42Reward = multiplier.mul(c42PerBlock).mul(pool.allocPoint).div(totalAllocPoint);
        c42.mint(devaddr, c42Reward.div(10));
        c42.mint(address(this), c42Reward);
        pool.accC42PerShare = pool.accC42PerShare.add(c42Reward.mul(1e12).div(lpSupply));
        pool.lastRewardBlock = block.number;
    }

    // Deposit LP tokens to C42LiquidityMinter for C42 allocation.
    function deposit(uint256 _pid, uint256 _amount) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        updatePool(_pid);
        if (user.amount > 0) {
            uint256 pending = user.amount.mul(pool.accC42PerShare).div(1e12).sub(user.rewardDebt);
            if(pending > 0) {
                safeC42Transfer(msg.sender, pending);
            }
        }
        if(_amount > 0) {
            pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
            user.amount = user.amount.add(_amount);
        }
        user.rewardDebt = user.amount.mul(pool.accC42PerShare).div(1e12);
        emit Deposit(msg.sender, _pid, _amount);
    }

    // Withdraw LP tokens from C42C42LiquidityMinter.
    function withdraw(uint256 _pid, uint256 _amount) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        require(user.amount >= _amount, "withdraw: not good");
        updatePool(_pid);
        uint256 pending = user.amount.mul(pool.accC42PerShare).div(1e12).sub(user.rewardDebt);
        if(pending > 0) {
            safeC42Transfer(msg.sender, pending);
        }
        if(_amount > 0) {
            user.amount = user.amount.sub(_amount);
            pool.lpToken.safeTransfer(address(msg.sender), _amount);
        }
        user.rewardDebt = user.amount.mul(pool.accC42PerShare).div(1e12);
        emit Withdraw(msg.sender, _pid, _amount);
    }

    // Withdraw without caring about rewards. EMERGENCY ONLY.
    function emergencyWithdraw(uint256 _pid) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        pool.lpToken.safeTransfer(address(msg.sender), user.amount);
        emit EmergencyWithdraw(msg.sender, _pid, user.amount);
        user.amount = 0;
        user.rewardDebt = 0;
    }

    // Safe c42 transfer function, just in case if rounding error causes pool to not have enough C42s.
    function safeC42Transfer(address _to, uint256 _amount) internal {
        uint256 c42Bal = c42.balanceOf(address(this));
        if (_amount > c42Bal) {
            c42.transfer(_to, c42Bal);
        } else {
            c42.transfer(_to, _amount);
        }
    }

    // Update dev address by the previous dev.
    function dev(address _devaddr) public {
        require(msg.sender == devaddr, "dev: wut?");
        devaddr = _devaddr;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract Clover42Token","name":"_c42","type":"address"},{"internalType":"uint256","name":"_c42PerBlock","type":"uint256"},{"internalType":"address","name":"_devaddr","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"constant":true,"inputs":[],"name":"BLOCK_PER_28D","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BONUS_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"c42","outputs":[{"internalType":"contract Clover42Token","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"c42PerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_devaddr","type":"address"}],"name":"dev","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"devaddr","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"massUpdatePools","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"migrate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"migrator","outputs":[{"internalType":"contract IMigratorC42","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingC42","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accC42PerShare","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IMigratorC42","name":"_migrator","type":"address"}],"name":"setMigrator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405260006007553480156200001657600080fd5b506040516200312738038062003127833981810160405260608110156200003c57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190505050600062000073620001b660201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35082600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816003819055506203138043016002819055504360088190555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620001be565b600033905090565b612f5980620001ce6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f95780638f32d59b11610097578063e04bc47511610071578063e04bc475146106cf578063e2bbb15814610731578063ebd6d30714610769578063f2fde38b146107b3576101c4565b80638f32d59b146105fa57806393f1a40b1461061c578063d49e77cd14610685576101c4565b80638aa28550116100d35780638aa28550146105025780638d88a90e146105205780638da5cb5b146105645780638dbb1e3a146105ae576101c4565b8063715018a6146104905780637cd07e471461049a57806382a0b7f8146104e4576101c4565b8063441a3e701161016657806351eb05a61161014057806351eb05a6146103e65780635312ea8e14610414578063630b5ba11461044257806364482f791461044c576101c4565b8063441a3e7014610362578063454b06081461039a57806348cd4cb1146103c8576101c4565b80631aed6553116101a25780631aed6553146102885780631eaaa045146102a657806321a2f6d91461030057806323cf31181461031e576101c4565b8063081e3eda146101c95780631526fe27146101e757806317caf6f11461026a575b600080fd5b6101d16107f7565b6040518082815260200191505060405180910390f35b610213600480360360208110156101fd57600080fd5b8101908080359060200190929190505050610804565b604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390f35b610272610861565b6040518082815260200191505060405180910390f35b610290610867565b6040518082815260200191505060405180910390f35b6102fe600480360360608110156102bc57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061086d565b005b6103086109fb565b6040518082815260200191505060405180910390f35b6103606004803603602081101561033457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a02565b005b6103986004803603604081101561037857600080fd5b810190808035906020019092919080359060200190929190505050610ac0565b005b6103c6600480360360208110156103b057600080fd5b8101908080359060200190929190505050610d1e565b005b6103d061118a565b6040518082815260200191505060405180910390f35b610412600480360360208110156103fc57600080fd5b8101908080359060200190929190505050611190565b005b6104406004803603602081101561042a57600080fd5b8101908080359060200190929190505050611566565b005b61044a611698565b005b61048e6004803603606081101561046257600080fd5b8101908080359060200190929190803590602001909291908035151590602001909291905050506116c8565b005b6104986117c4565b005b6104a26118fd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104ec611923565b6040518082815260200191505060405180910390f35b61050a611929565b6040518082815260200191505060405180910390f35b6105626004803603602081101561053657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061192e565b005b61056c611a35565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105e4600480360360408110156105c457600080fd5b810190808035906020019092919080359060200190929190505050611a5e565b6040518082815260200191505060405180910390f35b610602611b10565b604051808215151515815260200191505060405180910390f35b6106686004803603604081101561063257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b6e565b604051808381526020018281526020019250505060405180910390f35b61068d611b9f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61071b600480360360408110156106e557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bc5565b6040518082815260200191505060405180910390f35b6107676004803603604081101561074757600080fd5b810190808035906020019092919080359060200190929190505050611e21565b005b610771612015565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107f5600480360360208110156107c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061203b565b005b6000600580549050905090565b6005818154811061081157fe5b90600052602060002090600402016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154905084565b60075481565b60025481565b610875611b10565b6108e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80156108f6576108f5611698565b5b600060085443116109095760085461090b565b435b9050610922846007546120c190919063ffffffff16565b600781905550600560405180608001604052808573ffffffffffffffffffffffffffffffffffffffff16815260200186815260200183815260200160008152509080600181540180825580915050906001820390600052602060002090600402016000909192909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015550505050505050565b6203138081565b610a0a611b10565b610a7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060058381548110610acf57fe5b9060005260206000209060040201905060006006600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015610bad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b610bb684611190565b6000610c008260010154610bf264e8d4a51000610be48760030154876000015461214990919063ffffffff16565b6121cf90919063ffffffff16565b61221990919063ffffffff16565b90506000811115610c1657610c153382612263565b5b6000841115610c8e57610c3684836000015461221990919063ffffffff16565b8260000181905550610c8d33858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661251e9092919063ffffffff16565b5b610cc064e8d4a51000610cb28560030154856000015461214990919063ffffffff16565b6121cf90919063ffffffff16565b8260010181905550843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a35050505050565b600073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610de3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6d6967726174653a206e6f206d69677261746f7200000000000000000000000081525060200191505060405180910390fd5b600060058281548110610df257fe5b9060005260206000209060040201905060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610eaa57600080fd5b505afa158015610ebe573d6000803e3d6000fd5b505050506040513d6020811015610ed457600080fd5b81019080805190602001909291905050509050610f34600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828473ffffffffffffffffffffffffffffffffffffffff166125ef9092919063ffffffff16565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ce5494bb846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015610fd757600080fd5b505af1158015610feb573d6000803e3d6000fd5b505050506040513d602081101561100157600080fd5b810190808051906020019092919050505090508073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561109157600080fd5b505afa1580156110a5573d6000803e3d6000fd5b505050506040513d60208110156110bb57600080fd5b81019080805190602001909291905050508214611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f6d6967726174653a20626164000000000000000000000000000000000000000081525060200191505060405180910390fd5b808460000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b60085481565b60006005828154811061119f57fe5b90600052602060002090600402019050806002015443116111c05750611563565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561126357600080fd5b505afa158015611277573d6000803e3d6000fd5b505050506040513d602081101561128d57600080fd5b8101908080519060200190929190505050905060008114156112b9574382600201819055505050611563565b60006112c9836002015443611a5e565b9050600061130c6007546112fe86600101546112f06003548761214990919063ffffffff16565b61214990919063ffffffff16565b6121cf90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611383600a856121cf90919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156113ec57600080fd5b505af1158015611400573d6000803e3d6000fd5b505050506040513d602081101561141657600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156114d157600080fd5b505af11580156114e5573d6000803e3d6000fd5b505050506040513d60208110156114fb57600080fd5b81019080805190602001909291905050505061154d61153a8461152c64e8d4a510008561214990919063ffffffff16565b6121cf90919063ffffffff16565b85600301546120c190919063ffffffff16565b8460030181905550438460020181905550505050505b50565b60006005828154811061157557fe5b9060005260206000209060040201905060006006600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061162c3382600001548460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661251e9092919063ffffffff16565b823373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae059583600001546040518082815260200191505060405180910390a36000816000018190555060008160010181905550505050565b6000600580549050905060008090505b818110156116c4576116b981611190565b8060010190506116a8565b5050565b6116d0611b10565b611742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801561175157611750611698565b5b611796826117886005868154811061176557fe5b90600052602060002090600402016001015460075461221990919063ffffffff16565b6120c190919063ffffffff16565b60078190555081600584815481106117aa57fe5b906000526020600020906004020160010181905550505050565b6117cc611b10565b61183e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b600a81565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6465763a207775743f000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006002548211611a9657611a8f600a611a81858561221990919063ffffffff16565b61214990919063ffffffff16565b9050611b0a565b6002548310611ab957611ab2838361221990919063ffffffff16565b9050611b0a565b611b07611ad16002548461221990919063ffffffff16565b611af9600a611aeb8760025461221990919063ffffffff16565b61214990919063ffffffff16565b6120c190919063ffffffff16565b90505b92915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611b5261280f565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6006602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060058481548110611bd557fe5b9060005260206000209060040201905060006006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611ce557600080fd5b505afa158015611cf9573d6000803e3d6000fd5b505050506040513d6020811015611d0f57600080fd5b81019080805190602001909291905050509050836002015443118015611d36575060008114155b15611dd1576000611d4b856002015443611a5e565b90506000611d8e600754611d808860010154611d726003548761214990919063ffffffff16565b61214990919063ffffffff16565b6121cf90919063ffffffff16565b9050611dcc611dbd84611daf64e8d4a510008561214990919063ffffffff16565b6121cf90919063ffffffff16565b856120c190919063ffffffff16565b935050505b611e158360010154611e0764e8d4a51000611df986886000015461214990919063ffffffff16565b6121cf90919063ffffffff16565b61221990919063ffffffff16565b94505050505092915050565b600060058381548110611e3057fe5b9060005260206000209060040201905060006006600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611e9d84611190565b600081600001541115611f0c576000611ef48260010154611ee664e8d4a51000611ed88760030154876000015461214990919063ffffffff16565b6121cf90919063ffffffff16565b61221990919063ffffffff16565b90506000811115611f0a57611f093382612263565b5b505b6000831115611f8657611f663330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612817909392919063ffffffff16565b611f7d8382600001546120c190919063ffffffff16565b81600001819055505b611fb864e8d4a51000611faa8460030154846000015461214990919063ffffffff16565b6121cf90919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a350505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612043611b10565b6120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6120be8161291d565b50565b60008082840190508381101561213f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561215c57600090506121c9565b600082840290508284828161216d57fe5b04146121c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612ea46021913960400191505060405180910390fd5b809150505b92915050565b600061221183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a61565b905092915050565b600061225b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612b27565b905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561230457600080fd5b505afa158015612318573d6000803e3d6000fd5b505050506040513d602081101561232e57600080fd5b810190808051906020019092919050505090508082111561243357600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156123f257600080fd5b505af1158015612406573d6000803e3d6000fd5b505050506040513d602081101561241c57600080fd5b810190808051906020019092919050505050612519565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156124dc57600080fd5b505af11580156124f0573d6000803e3d6000fd5b505050506040513d602081101561250657600080fd5b8101908080519060200190929190505050505b505050565b6125ea838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612be7565b505050565b60008114806126e9575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b1580156126ac57600080fd5b505afa1580156126c0573d6000803e3d6000fd5b505050506040513d60208110156126d657600080fd5b8101908080519060200190929190505050145b61273e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180612eef6036913960400191505060405180910390fd5b61280a838473ffffffffffffffffffffffffffffffffffffffff1663095ea7b3905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612be7565b505050565b600033905090565b612917848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612be7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129a3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612e7e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008083118290612b0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ad2578082015181840152602081019050612ab7565b50505050905090810190601f168015612aff5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612b1957fe5b049050809150509392505050565b6000838311158290612bd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b99578082015181840152602081019050612b7e565b50505050905090810190601f168015612bc65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b612c068273ffffffffffffffffffffffffffffffffffffffff16612e32565b612c78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b60208310612cc75780518252602082019150602081019050602083039250612ca4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612d29576040519150601f19603f3d011682016040523d82523d6000602084013e612d2e565b606091505b509150915081612da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b600081511115612e2c57808060200190516020811015612dc557600080fd5b8101908080519060200190929190505050612e2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612ec5602a913960400191505060405180910390fd5b5b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015612e7457506000801b8214155b9250505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a72315820d4b3440b99d6498176febd5e55bb7505f2e28e0086be6518c150530051cec1a164736f6c6343000510003200000000000000000000000008a840a446bad3269122abe7f638d969a993ee6400000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000003391844ad67f026b29147287a5ed39072921077e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f95780638f32d59b11610097578063e04bc47511610071578063e04bc475146106cf578063e2bbb15814610731578063ebd6d30714610769578063f2fde38b146107b3576101c4565b80638f32d59b146105fa57806393f1a40b1461061c578063d49e77cd14610685576101c4565b80638aa28550116100d35780638aa28550146105025780638d88a90e146105205780638da5cb5b146105645780638dbb1e3a146105ae576101c4565b8063715018a6146104905780637cd07e471461049a57806382a0b7f8146104e4576101c4565b8063441a3e701161016657806351eb05a61161014057806351eb05a6146103e65780635312ea8e14610414578063630b5ba11461044257806364482f791461044c576101c4565b8063441a3e7014610362578063454b06081461039a57806348cd4cb1146103c8576101c4565b80631aed6553116101a25780631aed6553146102885780631eaaa045146102a657806321a2f6d91461030057806323cf31181461031e576101c4565b8063081e3eda146101c95780631526fe27146101e757806317caf6f11461026a575b600080fd5b6101d16107f7565b6040518082815260200191505060405180910390f35b610213600480360360208110156101fd57600080fd5b8101908080359060200190929190505050610804565b604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390f35b610272610861565b6040518082815260200191505060405180910390f35b610290610867565b6040518082815260200191505060405180910390f35b6102fe600480360360608110156102bc57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061086d565b005b6103086109fb565b6040518082815260200191505060405180910390f35b6103606004803603602081101561033457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a02565b005b6103986004803603604081101561037857600080fd5b810190808035906020019092919080359060200190929190505050610ac0565b005b6103c6600480360360208110156103b057600080fd5b8101908080359060200190929190505050610d1e565b005b6103d061118a565b6040518082815260200191505060405180910390f35b610412600480360360208110156103fc57600080fd5b8101908080359060200190929190505050611190565b005b6104406004803603602081101561042a57600080fd5b8101908080359060200190929190505050611566565b005b61044a611698565b005b61048e6004803603606081101561046257600080fd5b8101908080359060200190929190803590602001909291908035151590602001909291905050506116c8565b005b6104986117c4565b005b6104a26118fd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104ec611923565b6040518082815260200191505060405180910390f35b61050a611929565b6040518082815260200191505060405180910390f35b6105626004803603602081101561053657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061192e565b005b61056c611a35565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105e4600480360360408110156105c457600080fd5b810190808035906020019092919080359060200190929190505050611a5e565b6040518082815260200191505060405180910390f35b610602611b10565b604051808215151515815260200191505060405180910390f35b6106686004803603604081101561063257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b6e565b604051808381526020018281526020019250505060405180910390f35b61068d611b9f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61071b600480360360408110156106e557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bc5565b6040518082815260200191505060405180910390f35b6107676004803603604081101561074757600080fd5b810190808035906020019092919080359060200190929190505050611e21565b005b610771612015565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107f5600480360360208110156107c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061203b565b005b6000600580549050905090565b6005818154811061081157fe5b90600052602060002090600402016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154905084565b60075481565b60025481565b610875611b10565b6108e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80156108f6576108f5611698565b5b600060085443116109095760085461090b565b435b9050610922846007546120c190919063ffffffff16565b600781905550600560405180608001604052808573ffffffffffffffffffffffffffffffffffffffff16815260200186815260200183815260200160008152509080600181540180825580915050906001820390600052602060002090600402016000909192909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015550505050505050565b6203138081565b610a0a611b10565b610a7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060058381548110610acf57fe5b9060005260206000209060040201905060006006600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015610bad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b610bb684611190565b6000610c008260010154610bf264e8d4a51000610be48760030154876000015461214990919063ffffffff16565b6121cf90919063ffffffff16565b61221990919063ffffffff16565b90506000811115610c1657610c153382612263565b5b6000841115610c8e57610c3684836000015461221990919063ffffffff16565b8260000181905550610c8d33858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661251e9092919063ffffffff16565b5b610cc064e8d4a51000610cb28560030154856000015461214990919063ffffffff16565b6121cf90919063ffffffff16565b8260010181905550843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a35050505050565b600073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610de3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6d6967726174653a206e6f206d69677261746f7200000000000000000000000081525060200191505060405180910390fd5b600060058281548110610df257fe5b9060005260206000209060040201905060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610eaa57600080fd5b505afa158015610ebe573d6000803e3d6000fd5b505050506040513d6020811015610ed457600080fd5b81019080805190602001909291905050509050610f34600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828473ffffffffffffffffffffffffffffffffffffffff166125ef9092919063ffffffff16565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ce5494bb846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015610fd757600080fd5b505af1158015610feb573d6000803e3d6000fd5b505050506040513d602081101561100157600080fd5b810190808051906020019092919050505090508073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561109157600080fd5b505afa1580156110a5573d6000803e3d6000fd5b505050506040513d60208110156110bb57600080fd5b81019080805190602001909291905050508214611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f6d6967726174653a20626164000000000000000000000000000000000000000081525060200191505060405180910390fd5b808460000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b60085481565b60006005828154811061119f57fe5b90600052602060002090600402019050806002015443116111c05750611563565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561126357600080fd5b505afa158015611277573d6000803e3d6000fd5b505050506040513d602081101561128d57600080fd5b8101908080519060200190929190505050905060008114156112b9574382600201819055505050611563565b60006112c9836002015443611a5e565b9050600061130c6007546112fe86600101546112f06003548761214990919063ffffffff16565b61214990919063ffffffff16565b6121cf90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611383600a856121cf90919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156113ec57600080fd5b505af1158015611400573d6000803e3d6000fd5b505050506040513d602081101561141657600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156114d157600080fd5b505af11580156114e5573d6000803e3d6000fd5b505050506040513d60208110156114fb57600080fd5b81019080805190602001909291905050505061154d61153a8461152c64e8d4a510008561214990919063ffffffff16565b6121cf90919063ffffffff16565b85600301546120c190919063ffffffff16565b8460030181905550438460020181905550505050505b50565b60006005828154811061157557fe5b9060005260206000209060040201905060006006600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061162c3382600001548460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661251e9092919063ffffffff16565b823373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae059583600001546040518082815260200191505060405180910390a36000816000018190555060008160010181905550505050565b6000600580549050905060008090505b818110156116c4576116b981611190565b8060010190506116a8565b5050565b6116d0611b10565b611742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801561175157611750611698565b5b611796826117886005868154811061176557fe5b90600052602060002090600402016001015460075461221990919063ffffffff16565b6120c190919063ffffffff16565b60078190555081600584815481106117aa57fe5b906000526020600020906004020160010181905550505050565b6117cc611b10565b61183e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b600a81565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6465763a207775743f000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006002548211611a9657611a8f600a611a81858561221990919063ffffffff16565b61214990919063ffffffff16565b9050611b0a565b6002548310611ab957611ab2838361221990919063ffffffff16565b9050611b0a565b611b07611ad16002548461221990919063ffffffff16565b611af9600a611aeb8760025461221990919063ffffffff16565b61214990919063ffffffff16565b6120c190919063ffffffff16565b90505b92915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611b5261280f565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6006602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060058481548110611bd557fe5b9060005260206000209060040201905060006006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611ce557600080fd5b505afa158015611cf9573d6000803e3d6000fd5b505050506040513d6020811015611d0f57600080fd5b81019080805190602001909291905050509050836002015443118015611d36575060008114155b15611dd1576000611d4b856002015443611a5e565b90506000611d8e600754611d808860010154611d726003548761214990919063ffffffff16565b61214990919063ffffffff16565b6121cf90919063ffffffff16565b9050611dcc611dbd84611daf64e8d4a510008561214990919063ffffffff16565b6121cf90919063ffffffff16565b856120c190919063ffffffff16565b935050505b611e158360010154611e0764e8d4a51000611df986886000015461214990919063ffffffff16565b6121cf90919063ffffffff16565b61221990919063ffffffff16565b94505050505092915050565b600060058381548110611e3057fe5b9060005260206000209060040201905060006006600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611e9d84611190565b600081600001541115611f0c576000611ef48260010154611ee664e8d4a51000611ed88760030154876000015461214990919063ffffffff16565b6121cf90919063ffffffff16565b61221990919063ffffffff16565b90506000811115611f0a57611f093382612263565b5b505b6000831115611f8657611f663330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612817909392919063ffffffff16565b611f7d8382600001546120c190919063ffffffff16565b81600001819055505b611fb864e8d4a51000611faa8460030154846000015461214990919063ffffffff16565b6121cf90919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a350505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612043611b10565b6120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6120be8161291d565b50565b60008082840190508381101561213f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561215c57600090506121c9565b600082840290508284828161216d57fe5b04146121c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612ea46021913960400191505060405180910390fd5b809150505b92915050565b600061221183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a61565b905092915050565b600061225b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612b27565b905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561230457600080fd5b505afa158015612318573d6000803e3d6000fd5b505050506040513d602081101561232e57600080fd5b810190808051906020019092919050505090508082111561243357600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156123f257600080fd5b505af1158015612406573d6000803e3d6000fd5b505050506040513d602081101561241c57600080fd5b810190808051906020019092919050505050612519565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156124dc57600080fd5b505af11580156124f0573d6000803e3d6000fd5b505050506040513d602081101561250657600080fd5b8101908080519060200190929190505050505b505050565b6125ea838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612be7565b505050565b60008114806126e9575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b1580156126ac57600080fd5b505afa1580156126c0573d6000803e3d6000fd5b505050506040513d60208110156126d657600080fd5b8101908080519060200190929190505050145b61273e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180612eef6036913960400191505060405180910390fd5b61280a838473ffffffffffffffffffffffffffffffffffffffff1663095ea7b3905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612be7565b505050565b600033905090565b612917848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612be7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129a3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612e7e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008083118290612b0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ad2578082015181840152602081019050612ab7565b50505050905090810190601f168015612aff5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612b1957fe5b049050809150509392505050565b6000838311158290612bd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b99578082015181840152602081019050612b7e565b50505050905090810190601f168015612bc65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b612c068273ffffffffffffffffffffffffffffffffffffffff16612e32565b612c78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b60208310612cc75780518252602082019150602081019050602083039250612ca4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612d29576040519150601f19603f3d011682016040523d82523d6000602084013e612d2e565b606091505b509150915081612da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b600081511115612e2c57808060200190516020811015612dc557600080fd5b8101908080519060200190929190505050612e2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612ec5602a913960400191505060405180910390fd5b5b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015612e7457506000801b8214155b9250505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a72315820d4b3440b99d6498176febd5e55bb7505f2e28e0086be6518c150530051cec1a164736f6c63430005100032

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

00000000000000000000000008a840a446bad3269122abe7f638d969a993ee6400000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000003391844ad67f026b29147287a5ed39072921077e

-----Decoded View---------------
Arg [0] : _c42 (address): 0x08A840a446baD3269122aBE7f638D969A993Ee64
Arg [1] : _c42PerBlock (uint256): 50000000000000000
Arg [2] : _devaddr (address): 0x3391844Ad67f026B29147287A5Ed39072921077E

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000008a840a446bad3269122abe7f638d969a993ee64
Arg [1] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [2] : 0000000000000000000000003391844ad67f026b29147287a5ed39072921077e


Deployed Bytecode Sourcemap

37327:8552:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37327:8552:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39170:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38196:26;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38196:26:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38439:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37895:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39273:512;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39273:512:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37842:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40173:101;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40173:101:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;44144:737;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44144:737:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40397:491;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40397:491:0;;;;;;;;;;;;;;;;;:::i;:::-;;38529:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42484:772;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42484:772:0;;;;;;;;;;;;;;;;;:::i;:::-;;44952:356;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44952:356:0;;;;;;;;;;;;;;;;;:::i;:::-;;42228:180;;;:::i;:::-;;39793:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39793:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22398:140;;;:::i;:::-;;38159:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;37930:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38009:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45747:129;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45747:129:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;21587:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;40964:423;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40964:423:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21953:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38278:66;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38278:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;38582:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41395:750;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41395:750:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43332:749;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43332:749:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37811:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22693:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22693:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;39170:95;39215:7;39242:8;:15;;;;39235:22;;39170:95;:::o;38196:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38439:34::-;;;;:::o;37895:28::-;;;;:::o;39273:512::-;21799:9;:7;:9::i;:::-;21791:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39374:11;39370:61;;;39402:17;:15;:17::i;:::-;39370:61;39441:23;39482:10;;39467:12;:25;:53;;39510:10;;39467:53;;;39495:12;39467:53;39441:79;;39549:32;39569:11;39549:15;;:19;;:32;;;;:::i;:::-;39531:15;:50;;;;39592:8;39606:170;;;;;;;;39677:8;39606:170;;;;;;39642:11;39606:170;;;;39717:15;39606:170;;;;39763:1;39606:170;;;39592:185;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;39592:185:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21856:1;39273:512;;;:::o;37842:46::-;37882:6;37842:46;:::o;40173:101::-;21799:9;:7;:9::i;:::-;21791:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40257:9;40246:8;;:20;;;;;;;;;;;;;;;;;;40173:101;:::o;44144:737::-;44211:21;44235:8;44244:4;44235:14;;;;;;;;;;;;;;;;;;44211:38;;44260:21;44284:8;:14;44293:4;44284:14;;;;;;;;;;;:26;44299:10;44284:26;;;;;;;;;;;;;;;44260:50;;44344:7;44329:4;:11;;;:22;;44321:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44385:16;44396:4;44385:10;:16::i;:::-;44412:15;44430:67;44481:4;:15;;;44430:46;44471:4;44430:36;44446:4;:19;;;44430:4;:11;;;:15;;:36;;;;:::i;:::-;:40;;:46;;;;:::i;:::-;:50;;:67;;;;:::i;:::-;44412:85;;44521:1;44511:7;:11;44508:79;;;44539:36;44555:10;44567:7;44539:15;:36::i;:::-;44508:79;44610:1;44600:7;:11;44597:151;;;44642:24;44658:7;44642:4;:11;;;:15;;:24;;;;:::i;:::-;44628:4;:11;;:38;;;;44681:55;44715:10;44728:7;44681:4;:12;;;;;;;;;;;;:25;;;;:55;;;;;:::i;:::-;44597:151;44776:46;44817:4;44776:36;44792:4;:19;;;44776:4;:11;;;:15;;:36;;;;:::i;:::-;:40;;:46;;;;:::i;:::-;44758:4;:15;;:64;;;;44859:4;44847:10;44838:35;;;44865:7;44838:35;;;;;;;;;;;;;;;;;;44144:737;;;;;:::o;40397:491::-;40483:1;40454:31;;40462:8;;;;;;;;;;;40454:31;;;;40446:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40521:21;40545:8;40554:4;40545:14;;;;;;;;;;;;;;;;;;40521:38;;40570:14;40587:4;:12;;;;;;;;;;;;40570:29;;40610:11;40624:7;:17;;;40650:4;40624:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40624:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40624:32:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40624:32:0;;;;;;;;;;;;;;;;40610:46;;40667:43;40695:8;;;;;;;;;;;40706:3;40667:7;:19;;;;:43;;;;;:::i;:::-;40721:17;40741:8;;;;;;;;;;;:16;;;40758:7;40741:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40741:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40741:25:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40741:25:0;;;;;;;;;;;;;;;;40721:45;;40792:10;:20;;;40821:4;40792:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40792:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40792:35:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40792:35:0;;;;;;;;;;;;;;;;40785:3;:42;40777:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40870:10;40855:4;:12;;;:25;;;;;;;;;;;;;;;;;;40397:491;;;;;:::o;38529:25::-;;;;:::o;42484:772::-;42536:21;42560:8;42569:4;42560:14;;;;;;;;;;;;;;;;;;42536:38;;42605:4;:20;;;42589:12;:36;42585:75;;42642:7;;;42585:75;42670:16;42689:4;:12;;;;;;;;;;;;:22;;;42720:4;42689:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42689:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42689:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42689:37:0;;;;;;;;;;;;;;;;42670:56;;42753:1;42741:8;:13;42737:102;;;42794:12;42771:4;:20;;:35;;;;42821:7;;;;42737:102;42849:18;42870:49;42884:4;:20;;;42906:12;42870:13;:49::i;:::-;42849:70;;42930:17;42950:69;43003:15;;42950:48;42982:4;:15;;;42950:27;42965:11;;42950:10;:14;;:27;;;;:::i;:::-;:31;;:48;;;;:::i;:::-;:52;;:69;;;;:::i;:::-;42930:89;;43030:3;;;;;;;;;;;:8;;;43039:7;;;;;;;;;;;43048:17;43062:2;43048:9;:13;;:17;;;;:::i;:::-;43030:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43030:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43030:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43030:36:0;;;;;;;;;;;;;;;;;43077:3;;;;;;;;;;;:8;;;43094:4;43101:9;43077:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43077:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43077:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43077:34:0;;;;;;;;;;;;;;;;;43144:58;43168:33;43192:8;43168:19;43182:4;43168:9;:13;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;43144:4;:19;;;:23;;:58;;;;:::i;:::-;43122:4;:19;;:80;;;;43236:12;43213:4;:20;;:35;;;;42484:772;;;;;;:::o;44952:356::-;45011:21;45035:8;45044:4;45035:14;;;;;;;;;;;;;;;;;;45011:38;;45060:21;45084:8;:14;45093:4;45084:14;;;;;;;;;;;:26;45099:10;45084:26;;;;;;;;;;;;;;;45060:50;;45121:59;45155:10;45168:4;:11;;;45121:4;:12;;;;;;;;;;;;:25;;;;:59;;;;;:::i;:::-;45226:4;45214:10;45196:48;;;45232:4;:11;;;45196:48;;;;;;;;;;;;;;;;;;45269:1;45255:4;:11;;:15;;;;45299:1;45281:4;:15;;:19;;;;44952:356;;;:::o;42228:180::-;42273:14;42290:8;:15;;;;42273:32;;42321:11;42335:1;42321:15;;42316:85;42344:6;42338:3;:12;42316:85;;;42374:15;42385:3;42374:10;:15::i;:::-;42352:5;;;;;42316:85;;;;42228:180;:::o;39793:304::-;21799:9;:7;:9::i;:::-;21791:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39891:11;39887:61;;;39919:17;:15;:17::i;:::-;39887:61;39976:63;40027:11;39976:46;39996:8;40005:4;39996:14;;;;;;;;;;;;;;;;;;:25;;;39976:15;;:19;;:46;;;;:::i;:::-;:50;;:63;;;;:::i;:::-;39958:15;:81;;;;40078:11;40050:8;40059:4;40050:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;39793:304;;;:::o;22398:140::-;21799:9;:7;:9::i;:::-;21791:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22497:1;22460:40;;22481:6;;;;;;;;;;;22460:40;;;;;;;;;;;;22528:1;22511:6;;:19;;;;;;;;;;;;;;;;;;22398:140::o;38159:28::-;;;;;;;;;;;;;:::o;37930:26::-;;;;:::o;38009:45::-;38052:2;38009:45;:::o;45747:129::-;45818:7;;;;;;;;;;;45804:21;;:10;:21;;;45796:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45860:8;45850:7;;:18;;;;;;;;;;;;;;;;;;45747:129;:::o;21587:79::-;21625:7;21652:6;;;;;;;;;;;21645:13;;21587:79;:::o;40964:423::-;41036:7;41067:13;;41060:3;:20;41056:324;;41104:36;38052:2;41104:14;41112:5;41104:3;:7;;:14;;;;:::i;:::-;:18;;:36;;;;:::i;:::-;41097:43;;;;41056:324;41171:13;;41162:5;:22;41158:222;;41208:14;41216:5;41208:3;:7;;:14;;;;:::i;:::-;41201:21;;;;41158:222;41262:106;41331:22;41339:13;;41331:3;:7;;:22;;;;:::i;:::-;41262:46;38052:2;41262:24;41280:5;41262:13;;:17;;:24;;;;:::i;:::-;:28;;:46;;;;:::i;:::-;:50;;:106;;;;:::i;:::-;41255:113;;40964:423;;;;;:::o;21953:94::-;21993:4;22033:6;;;;;;;;;;;22017:22;;:12;:10;:12::i;:::-;:22;;;22010:29;;21953:94;:::o;38278:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38582:22::-;;;;;;;;;;;;;:::o;41395:750::-;41467:7;41487:21;41511:8;41520:4;41511:14;;;;;;;;;;;;;;;;;;41487:38;;41536:21;41560:8;:14;41569:4;41560:14;;;;;;;;;;;:21;41575:5;41560:21;;;;;;;;;;;;;;;41536:45;;41592:22;41617:4;:19;;;41592:44;;41647:16;41666:4;:12;;;;;;;;;;;;:22;;;41697:4;41666:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41666:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41666:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41666:37:0;;;;;;;;;;;;;;;;41647:56;;41733:4;:20;;;41718:12;:35;:52;;;;;41769:1;41757:8;:13;;41718:52;41714:344;;;41787:18;41808:49;41822:4;:20;;;41844:12;41808:13;:49::i;:::-;41787:70;;41872:17;41892:69;41945:15;;41892:48;41924:4;:15;;;41892:27;41907:11;;41892:10;:14;;:27;;;;:::i;:::-;:31;;:48;;;;:::i;:::-;:52;;:69;;;;:::i;:::-;41872:89;;41993:53;42012:33;42036:8;42012:19;42026:4;42012:9;:13;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;41993:14;:18;;:53;;;;:::i;:::-;41976:70;;41714:344;;;42075:62;42121:4;:15;;;42075:41;42111:4;42075:31;42091:14;42075:4;:11;;;:15;;:31;;;;:::i;:::-;:35;;:41;;;;:::i;:::-;:45;;:62;;;;:::i;:::-;42068:69;;;;;;41395:750;;;;:::o;43332:749::-;43398:21;43422:8;43431:4;43422:14;;;;;;;;;;;;;;;;;;43398:38;;43447:21;43471:8;:14;43480:4;43471:14;;;;;;;;;;;:26;43486:10;43471:26;;;;;;;;;;;;;;;43447:50;;43508:16;43519:4;43508:10;:16::i;:::-;43553:1;43539:4;:11;;;:15;43535:234;;;43571:15;43589:67;43640:4;:15;;;43589:46;43630:4;43589:36;43605:4;:19;;;43589:4;:11;;;:15;;:36;;;;:::i;:::-;:40;;:46;;;;:::i;:::-;:50;;:67;;;;:::i;:::-;43571:85;;43684:1;43674:7;:11;43671:87;;;43706:36;43722:10;43734:7;43706:15;:36::i;:::-;43671:87;43535:234;;43792:1;43782:7;:11;43779:170;;;43810:74;43848:10;43869:4;43876:7;43810:4;:12;;;;;;;;;;;;:29;;;;:74;;;;;;:::i;:::-;43913:24;43929:7;43913:4;:11;;;:15;;:24;;;;:::i;:::-;43899:4;:11;;:38;;;;43779:170;43977:46;44018:4;43977:36;43993:4;:19;;;43977:4;:11;;;:15;;:36;;;;:::i;:::-;:40;;:46;;;;:::i;:::-;43959:4;:15;;:64;;;;44059:4;44047:10;44039:34;;;44065:7;44039:34;;;;;;;;;;;;;;;;;;43332:749;;;;:::o;37811:24::-;;;;;;;;;;;;;:::o;22693:109::-;21799:9;:7;:9::i;:::-;21791:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22766:28;22785:8;22766:18;:28::i;:::-;22693:109;:::o;3793:181::-;3851:7;3871:9;3887:1;3883;:5;3871:17;;3912:1;3907;:6;;3899:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3965:1;3958:8;;;3793:181;;;;:::o;5165:471::-;5223:7;5473:1;5468;:6;5464:47;;;5498:1;5491:8;;;;5464:47;5523:9;5539:1;5535;:5;5523:17;;5568:1;5563;5559;:5;;;;;;:10;5551:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5627:1;5620:8;;;5165:471;;;;;:::o;6104:132::-;6162:7;6189:39;6193:1;6196;6189:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6182:46;;6104:132;;;;:::o;4249:136::-;4307:7;4334:43;4338:1;4341;4334:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4327:50;;4249:136;;;;:::o;45420:271::-;45495:14;45512:3;;;;;;;;;;;:13;;;45534:4;45512:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45512:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45512:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45512:28:0;;;;;;;;;;;;;;;;45495:45;;45565:6;45555:7;:16;45551:133;;;45588:3;;;;;;;;;;;:12;;;45601:3;45606:6;45588:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45588:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45588:25:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45588:25:0;;;;;;;;;;;;;;;;;45551:133;;;45646:3;;;;;;;;;;;:12;;;45659:3;45664:7;45646:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45646:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45646:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45646:26:0;;;;;;;;;;;;;;;;;45551:133;45420:271;;;:::o;12124:176::-;12207:85;12226:5;12256;:14;;;:23;;;;12281:2;12285:5;12233:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;12233:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;12233:58:0;12207:18;:85::i;:::-;12124:176;;;:::o;12520:621::-;12899:1;12890:5;:10;12889:62;;;;12949:1;12906:5;:15;;;12930:4;12937:7;12906:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12906:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12906:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12906:39:0;;;;;;;;;;;;;;;;:44;12889:62;12881:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13044:89;13063:5;13093;:13;;;:22;;;;13117:7;13126:5;13070:62;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;13070:62:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;13070:62:0;13044:18;:89::i;:::-;12520:621;;;:::o;20293:98::-;20338:15;20373:10;20366:17;;20293:98;:::o;12308:204::-;12409:95;12428:5;12458;:18;;;:27;;;;12487:4;12493:2;12497:5;12435:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;12435:68:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;12435:68:0;12409:18;:95::i;:::-;12308:204;;;;:::o;22908:229::-;23002:1;22982:22;;:8;:22;;;;22974:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23092:8;23063:38;;23084:6;;;;;;;;;;;23063:38;;;;;;;;;;;;23121:8;23112:6;;:17;;;;;;;;;;;;;;;;;;22908:229;:::o;6766:345::-;6852:7;6951:1;6947;:5;6954:12;6939:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6939:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6978:9;6994:1;6990;:5;;;;;;6978:17;;7102:1;7095:8;;;6766:345;;;;;:::o;4722:192::-;4808:7;4841:1;4836;:6;;4844:12;4828:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4828:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4868:9;4884:1;4880;:5;4868:17;;4905:1;4898:8;;;4722:192;;;;;:::o;14163:1114::-;14767:27;14775:5;14767:25;;;:27::i;:::-;14759:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14904:12;14918:23;14953:5;14945:19;;14965:4;14945:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;14945:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;14903:67:0;;;;14989:7;14981:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15070:1;15050:10;:17;:21;15046:224;;;15192:10;15181:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15181:30:0;;;;;;;;;;;;;;;;15173:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15046:224;14163:1114;;;;:::o;9153:619::-;9213:4;9475:16;9502:19;9524:66;9502:88;;;;9693:7;9681:20;9669:32;;9733:11;9721:8;:23;;:42;;;;;9760:3;9748:15;;:8;:15;;9721:42;9713:51;;;;9153:619;;;:::o

Swarm Source

bzzr://d4b3440b99d6498176febd5e55bb7505f2e28e0086be6518c150530051cec1a1

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

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